],\n transform: {\n '^.+\\\\.(ts|tsx)
: 'babel-jest',\n },\n watchPlugins: [\n 'jest-watch-typeahead\u002Ffilename',\n 'jest-watch-typeahead\u002Ftestname',\n ],\n moduleNameMapper: {\n '\\\\.(css|less|sass|scss)
: 'identity-obj-proxy',\n '\\\\.(gif|ttf|eot|svg|png)
: '\u003CrootDir\u003E\u002Ftest\u002F__mocks__\u002FfileMock.js',\n },\n setupFiles: ['\u003CrootDir\u003E\u002Ftest\u002FsetupTest.js'],\n}\n","id":"c35da878-bb27-4fd0-ad1a-b394a243eca7","is_binary":false,"title":"jest.config.js","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"Bkbe64DbiyO","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":null},{"code":"\u002F\u002F\u002F \u003Creference types=\"next\" \u002F\u003E\n\u002F\u002F\u002F \u003Creference types=\"next\u002Ftypes\u002Fglobal\" \u002F\u003E\n","id":"a635a8ea-2a9b-486e-9aee-7eaf35da71b5","is_binary":false,"title":"next-env.d.ts","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"BkzgpED-jJd","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":null},{"code":"{\n \"name\": \"swapi-example\",\n \"author\": \"@jcofman\",\n \"license\": \"MIT\",\n \"version\": \"1.0.0\",\n \"scripts\": {\n \"dev\": \"next dev\",\n \"build\": \"next build\",\n \"start\": \"next start\",\n \"type-check\": \"tsc --pretty --noEmit\",\n \"format\": \"prettier --write .\",\n \"lint\": \"eslint . --ext ts --ext tsx --ext js\",\n \"test\": \"jest\",\n \"test-all\": \"yarn lint && yarn type-check && yarn test\"\n },\n \"husky\": {\n \"hooks\": {\n \"pre-commit\": \"lint-staged\",\n \"pre-push\": \"yarn run type-check\"\n }\n },\n \"lint-staged\": {\n \"*.@(ts|tsx)\": [\n \"yarn lint\",\n \"yarn format\"\n ]\n },\n \"dependencies\": {\n \"@testing-library\u002Fjest-dom\": \"^5.11.5\",\n \"next\": \"canary\",\n \"react\": \"^17.0.1\",\n \"react-dom\": \"^17.0.1\",\n \"react-virtualized-auto-sizer\": \"^1.0.2\",\n \"react-window\": \"^1.8.6\",\n \"react-window-infinite-loader\": \"^1.0.5\",\n \"styled-components\": \"^5.2.1\",\n \"swr\": \"^0.3.8\"\n },\n \"devDependencies\": {\n \"@testing-library\u002Freact\": \"^10.0.1\",\n \"@types\u002Fjest\": \"^25.1.4\",\n \"@types\u002Fnode\": \"^13.9.5\",\n \"@types\u002Freact\": \"^16.9.27\",\n \"@types\u002Freact-virtualized-auto-sizer\": \"^1.0.0\",\n \"@types\u002Freact-window\": \"^1.8.2\",\n \"@types\u002Freact-window-infinite-loader\": \"^1.0.3\",\n \"@types\u002Fstyled-components\": \"^5.1.4\",\n \"@typescript-eslint\u002Feslint-plugin\": \"^2.25.0\",\n \"@typescript-eslint\u002Fparser\": \"^2.25.0\",\n \"babel-jest\": \"^25.2.3\",\n \"babel-plugin-styled-components\": \"^1.11.1\",\n \"eslint\": \"^6.8.0\",\n \"eslint-config-prettier\": \"^6.10.1\",\n \"eslint-plugin-react\": \"^7.19.0\",\n \"husky\": \"^4.2.3\",\n \"jest\": \"^25.2.3\",\n \"jest-watch-typeahead\": \"^0.5.0\",\n \"lint-staged\": \"^10.0.10\",\n \"prettier\": \"^2.0.2\",\n \"typescript\": \"^4.0.5\"\n }\n}\n","id":"808be628-418d-416e-85cf-8f6abd60c7f2","is_binary":false,"title":"package.json","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"H17xp4wZoJO","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":null},{"code":"import { createGlobalStyle } from 'styled-components'\n\nconst GlobalStyle = createGlobalStyle`\n body {\n background-color: white;\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',\n 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',\n sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n }\n .App {\n text-align: center;\n}\n`\n\nexport default function App({ Component, pageProps }) {\n return (\n \u003C\u003E\n \u003CGlobalStyle \u002F\u003E\n \u003CComponent {...pageProps} \u002F\u003E\n \u003C\u002F\u003E\n )\n}\n","id":"3e2af58b-8463-47b9-af91-82d5497d2b6e","is_binary":false,"title":"_app.tsx","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"ryEepNPZoJ_","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":"SkxpVvWjJu"},{"code":"import Document from 'next\u002Fdocument'\nimport { ServerStyleSheet } from 'styled-components'\n\nexport default class MyDocument extends Document {\n static async getInitialProps(ctx) {\n const sheet = new ServerStyleSheet()\n const originalRenderPage = ctx.renderPage\n\n try {\n ctx.renderPage = () =\u003E\n originalRenderPage({\n enhanceApp: (App) =\u003E (props) =\u003E\n sheet.collectStyles(\u003CApp {...props} \u002F\u003E),\n })\n\n const initialProps = await Document.getInitialProps(ctx)\n return {\n ...initialProps,\n styles: (\n \u003C\u003E\n {initialProps.styles}\n {sheet.getStyleElement()}\n \u003C\u002F\u003E\n ),\n }\n } finally {\n sheet.seal()\n }\n }\n}\n","id":"c69c7aca-468a-4ee9-b01c-d965822ad865","is_binary":false,"title":"_document.tsx","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"BJHxTEv-jyu","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":"SkxpVvWjJu"},{"code":"\u002F\u002F Next.js API route support: https:\u002F\u002Fnextjs.org\u002Fdocs\u002Fapi-routes\u002Fintroduction\n\nimport { NextApiRequest, NextApiResponse } from 'next'\n\nconst handler = (req: NextApiRequest, res: NextApiResponse) =\u003E {\n res.statusCode = 200\n res.json({ name: 'John Doe' })\n}\n\nexport default handler\n","id":"b2303966-da1e-4bc4-a853-185e2642b21d","is_binary":false,"title":"hello.ts","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"HJ8laVPZoyu","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":"rkZaNDWikO"},{"code":"import React from 'react'\nimport styled from 'styled-components'\nimport { FixedSizeList as List } from 'react-window'\nimport InfiniteLoader from 'react-window-infinite-loader'\nimport AutoSizer from 'react-virtualized-auto-sizer'\nimport { useSWRInfinite } from 'swr'\n\nimport StarWarsPlanetCard from '..\u002Fcomponents\u002FStarWarsPlanetCard'\nimport fetch from '..\u002Futils\u002Ffetch'\nimport { StarWarsPlanets } from '..\u002Ftypes\u002Ftypes'\n\nconst Button = styled.button`\n background: palevioletred;\n color: white;\n font-size: 1em;\n margin: 1em;\n padding: 0.25em 1em;\n border: 2px solid palevioletred;\n border-radius: 3px;\n`\nconst StyledStarWarsLogo = styled.img`\n height: 200px;\n pointer-events: none;\n`\n\nconst StyledHeader = styled.header`\n display: flex;\n justify-content: center;\n align-items: center;\n`\n\nconst StyledAutoSizeWrapper = styled.div`\n flex: 1 1 auto;\n`\n\nconst StyledApp = styled.div`\n display: flex;\n align-items: center;\n justify-content: center;\n overflow: hidden;\n`\n\nconst InfiniteWrapper = ({\n hasNextPage,\n\n isNextPageLoading,\n\n items,\n\n loadNextPage,\n}: {\n hasNextPage: boolean\n isNextPageLoading: boolean\n items: any[]\n loadNextPage: () =\u003E {}\n}) =\u003E {\n const itemCount = hasNextPage ? items.length + 1 : items.length\n const loadMoreItems = isNextPageLoading ? () =\u003E null : loadNextPage\n const isItemLoaded = (index: number) =\u003E !hasNextPage || index \u003C items.length\n const [switchImageSrc, setSwitchImgSrc] = React.useState('NEXT')\n\n const Item = ({\n index,\n style,\n }: {\n index: number\n style: React.CSSProperties\n }) =\u003E {\n if (!isItemLoaded(index)) {\n return \u003Cdiv style={style}\u003ELoading...\u003C\u002Fdiv\u003E\n } else {\n const starWarsPlanetData = items[index]\n return (\n \u003Cdiv style={style}\u003E\n \u003CStarWarsPlanetCard\n isNextImage={switchImageSrc === 'NEXT'}\n {...starWarsPlanetData}\n \u003E\u003C\u002FStarWarsPlanetCard\u003E\n \u003C\u002Fdiv\u003E\n )\n }\n }\n\n return (\n \u003CStyledAutoSizeWrapper\u003E\n \u003Cdiv style={{ display: 'flex', justifyContent: 'center' }}\u003E\n \u003CButton\n onClick={() =\u003E {\n if (switchImageSrc === 'STANDARD') {\n setSwitchImgSrc('NEXT')\n } else {\n setSwitchImgSrc('STANDARD')\n }\n }}\n \u003E\n {switchImageSrc}\n \u003C\u002FButton\u003E\n \u003C\u002Fdiv\u003E\n\n \u003CAutoSizer disableHeight\u003E\n {({ width }: { width: number }) =\u003E (\n \u003CInfiniteLoader\n isItemLoaded={isItemLoaded}\n itemCount={itemCount}\n loadMoreItems={loadMoreItems}\n \u003E\n {({ onItemsRendered, ref }) =\u003E (\n \u003CList\n height={800}\n itemCount={itemCount}\n itemSize={300}\n layout=\"horizontal\"\n onItemsRendered={onItemsRendered}\n ref={ref}\n width={width}\n \u003E\n {Item}\n \u003C\u002FList\u003E\n )}\n \u003C\u002FInfiniteLoader\u003E\n )}\n \u003C\u002FAutoSizer\u003E\n \u003C\u002FStyledAutoSizeWrapper\u003E\n )\n}\n\nconst addImageToData = (data: StarWarsPlanets) =\u003E {\n return data.results.map((resultData, index) =\u003E {\n const imageSource = `\u002Fimages\u002Fplanet-${index}.jpg`\n return { ...resultData, imageSrc: imageSource }\n })\n}\n\nconst MAX_PAGE = 100\nconst MAX_SIZE = 6\nconst START_PAGE = 1\n\nconst App = () =\u003E {\n const { data, error, size, setSize } = useSWRInfinite(\n (index) =\u003E `https:\u002F\u002Fswapi.dev\u002Fapi\u002Fplanets\u002F?page=${index + START_PAGE}`,\n fetch,\n {\n revalidateOnFocus: false,\n }\n )\n const starWarsPlanets = data\n ? [].concat(\n ...data.map((data) =\u003E {\n return addImageToData(data)\n })\n )\n : []\n const isLoadingInitialData = !data && !error\n const isLoadingMore =\n isLoadingInitialData ||\n (size \u003E 0 && data && typeof data[size - 1] === 'undefined')\n const isEmpty = data?.[0]?.length === 0\n const isReachingEnd =\n isEmpty || (data && data[data.length - 1]?.length \u003C MAX_PAGE)\n\n if (error) return \u003Cdiv\u003Efailed to load {JSON.stringify(error)}\u003C\u002Fdiv\u003E\n\n return (\n \u003Cdiv\u003E\n \u003CStyledHeader\u003E\n \u003CStyledStarWarsLogo\n height={200}\n src={'.\u002Fstar-wars-logo.svg'}\n alt=\"star-wars-logo\"\n \u002F\u003E\n \u003C\u002FStyledHeader\u003E\n\n \u003Cmain\u003E\n \u003CStyledApp\u003E\n \u003CInfiniteWrapper\n hasNextPage={!isReachingEnd}\n isNextPageLoading={isLoadingMore}\n items={starWarsPlanets}\n loadNextPage={() =\u003E\n setSize((size) =\u003E {\n if (size === MAX_SIZE) {\n return 1\n } else {\n return size + 1\n }\n })\n }\n \u003E\u003C\u002FInfiniteWrapper\u003E\n \u003C\u002FStyledApp\u003E\n \u003C\u002Fmain\u003E\n \u003C\u002Fdiv\u003E\n )\n}\n\nexport const Home = (): JSX.Element =\u003E \u003CApp\u003E\u003C\u002FApp\u003E\n\nexport default Home\n","id":"0e7cfd8c-1deb-4c66-80dd-4742d0e5f663","is_binary":false,"title":"index.tsx","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"r1Dl6VvZsy_","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":"SkxpVvWjJu"},{"code":"https:\u002F\u002Frawcdn.githack.com\u002FJCofman\u002Fswapi-example\u002F218595478db9fda3a7bd6ad125a94149974569fa\u002Fpublic\u002Fimages\u002Fplanet-0.jpg","id":"055797b8-0a18-44e9-9b38-6e8d141475c4","is_binary":true,"title":"planet-0.jpg","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"HkZfpEDWoJO","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":"Hyv6VDZoy_"},{"code":"\u003Csvg xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" width=\"2500\" height=\"2500\" viewBox=\"0 0 192.756 192.756\"\u003E\u003Cg fill-rule=\"evenodd\" clip-rule=\"evenodd\"\u003E\u003Cpath fill=\"#fff\" d=\"M0 0h192.756v192.756H0V0z\"\u002F\u003E\u003Cpath d=\"M5.669 81.215v12.65h37.003c4.301 0 9.796-3.977 9.796-10.556 0-2.646 1.012-4.372-2.098-7.872l-4.733-5.608c-2.712-2.53.324-2.53 2.602-2.53h15.623v26.566h12.39V67.299h16.699V55.922H38.877c-6.579 0-9.796 6.317-9.615 9.606.182 3.289.787 7.427 6.254 12.398 4.987 4.533-2.469 3.289-3.218 3.289H5.669zM120.348 55.922H100.36L89.155 93.866h12.47l2.023-5.313h13.156l1.953 5.313h12.215l-10.624-37.944zm-13.916 23.522l4.301-13.916 4.049 13.916h-8.35zM170.443 81.215c-4.807 0-4.807-1.771-4.807-1.771 4.119 0 7.771-6.001 7.771-12.145s-6-11.377-10.809-11.377h-26.891v37.944h13.664v-12.65s5.818 6.831 8.854 9.614c3.037 2.783 3.289 3.036 7.41 3.036h21.449v-12.65c.002-.001-11.834-.001-16.641-.001zm-12.398-8.855h-8.672v-6.832h8.672c3.976 0 4.664 6.832 0 6.832zM5.669 98.672h13.979l3.542 12.652 3.289-12.652h14.675l3.795 12.652 3.796-12.652h12.144l-11.133 37.953H38.624l-4.878-17.965-5.496 17.965H16.865L5.669 98.672zM89.578 98.891H69.59l-11.204 37.943h12.469l2.024-5.312h13.157l1.953 5.312h12.216L89.578 98.891zm-13.915 23.521l4.301-13.916 4.048 13.916h-8.349zM170.695 110.059c-2.275 0-4.756.266-2.043 2.795l4.734 5.609c3.109 3.5 3.059 4.959 3.059 7.607 0 6.578-6.508 10.555-10.809 10.555l-29.896.201c-4.119 0-4.371-.252-7.408-3.035-3.035-2.783-8.855-9.615-8.855-9.615v12.65h-13.662V98.883h26.891c4.807 0 10.809 5.234 10.809 11.377 0 6.145-3.652 12.145-7.773 12.145 0 0 1.812 1.822 4.848 1.822 3.037 0 14.727.012 14.727.012.748 0 8.203 1.244 3.217-3.289-5.467-4.971-6.072-9.107-6.254-12.396s2.662-9.881 9.238-9.881h25.57v11.387h-16.393v-.001zm-42.545 5.261h-8.674v-6.832h8.674c3.977 0 4.664 6.832 0 6.832z\"\u002F\u003E\u003C\u002Fg\u003E\u003C\u002Fsvg\u003E","id":"f5280076-bacf-4e0f-87ec-43b6cb3eeeb8","is_binary":false,"title":"star-wars-logo.svg","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"S1ula4wbjJd","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":"BkzaEwWoyO"},{"code":"\u003Csvg width=\"283\" height=\"64\" viewBox=\"0 0 283 64\" fill=\"none\" \n xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"\u003E\n \u003Cpath d=\"M141.04 16c-11.04 0-19 7.2-19 18s8.96 18 20 18c6.67 0 12.55-2.64 16.19-7.09l-7.65-4.42c-2.02 2.21-5.09 3.5-8.54 3.5-4.79 0-8.86-2.5-10.37-6.5h28.02c.22-1.12.35-2.28.35-3.5 0-10.79-7.96-17.99-19-17.99zm-9.46 14.5c1.25-3.99 4.67-6.5 9.45-6.5 4.79 0 8.21 2.51 9.45 6.5h-18.9zM248.72 16c-11.04 0-19 7.2-19 18s8.96 18 20 18c6.67 0 12.55-2.64 16.19-7.09l-7.65-4.42c-2.02 2.21-5.09 3.5-8.54 3.5-4.79 0-8.86-2.5-10.37-6.5h28.02c.22-1.12.35-2.28.35-3.5 0-10.79-7.96-17.99-19-17.99zm-9.45 14.5c1.25-3.99 4.67-6.5 9.45-6.5 4.79 0 8.21 2.51 9.45 6.5h-18.9zM200.24 34c0 6 3.92 10 10 10 4.12 0 7.21-1.87 8.8-4.92l7.68 4.43c-3.18 5.3-9.14 8.49-16.48 8.49-11.05 0-19-7.2-19-18s7.96-18 19-18c7.34 0 13.29 3.19 16.48 8.49l-7.68 4.43c-1.59-3.05-4.68-4.92-8.8-4.92-6.07 0-10 4-10 10zm82.48-29v46h-9V5h9zM36.95 0L73.9 64H0L36.95 0zm92.38 5l-27.71 48L73.91 5H84.3l17.32 30 17.32-30h10.39zm58.91 12v9.69c-1-.29-2.06-.49-3.2-.49-5.81 0-10 4-10 10V51h-9V17h9v9.2c0-5.08 5.91-9.2 13.2-9.2z\" fill=\"#000\"\u002F\u003E\n\u003C\u002Fsvg\u003E","id":"04f5b4b5-72da-4085-b4b8-0440402641e2","is_binary":false,"title":"vercel.svg","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"rJYlpVP-skd","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":"BkzaEwWoyO"},{"code":"module.exports = 'test-file-stub'\n","id":"a474baa2-727c-4826-9a34-7e12f981a00d","is_binary":false,"title":"fileMock.js","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"r15xa4PWsk_","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":"rJNpEwboJO"},{"code":"process.env = {\n ...process.env,\n __NEXT_IMAGE_OPTS: {\n deviceSizes: [320, 420, 768, 1024, 1200],\n imageSizes: [],\n domains: ['images.example.com'],\n path: '\u002F_next\u002Fimage',\n loader: 'default',\n },\n}\n","id":"8626c261-f0d4-430a-a722-25b057aa51df","is_binary":false,"title":"setupTest.js","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"SyseT4wZiyu","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":"rym6Nv-jk_"},{"code":"import { render } from '@testing-library\u002Freact'\nimport '@testing-library\u002Fjest-dom'\n\n\u002F\u002F import { ThemeProvider } from \"my-ui-lib\"\n\u002F\u002F import { TranslationProvider } from \"my-i18n-lib\"\n\u002F\u002F import defaultStrings from \"i18n\u002Fen-x-default\"\n\nconst Providers = ({ children }) =\u003E {\n return children\n \u002F\u002F return (\n \u002F\u002F \u003CThemeProvider theme=\"light\"\u003E\n \u002F\u002F \u003CTranslationProvider messages={defaultStrings}\u003E\n \u002F\u002F {children}\n \u002F\u002F \u003C\u002FTranslationProvider\u003E\n \u002F\u002F \u003C\u002FThemeProvider\u003E\n \u002F\u002F )\n}\n\nconst customRender = (ui, options = {}) =\u003E\n render(ui, { wrapper: Providers, ...options })\n\n\u002F\u002F re-export everything\nexport * from '@testing-library\u002Freact'\n\n\u002F\u002F override render method\nexport { customRender as render }\n","id":"b571ddb0-c1a3-4454-81b8-e3ee3308aa8b","is_binary":false,"title":"testUtils.ts","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"rJ2gpEPZjJd","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":"rym6Nv-jk_"},{"code":"{\n \"compilerOptions\": {\n \"target\": \"es5\",\n \"lib\": [\"dom\", \"dom.iterable\", \"esnext\"],\n \"allowJs\": true,\n \"skipLibCheck\": true,\n \"strict\": false,\n \"forceConsistentCasingInFileNames\": true,\n \"noEmit\": true,\n \"esModuleInterop\": true,\n \"module\": \"esnext\",\n \"moduleResolution\": \"node\",\n \"resolveJsonModule\": true,\n \"isolatedModules\": true,\n \"jsx\": \"preserve\"\n },\n \"exclude\": [\"node_modules\", \".next\", \"out\"],\n \"include\": [\"next-env.d.ts\", \"**\u002F*.ts\", \"**\u002F*.tsx\", \"**\u002F*.js\"]\n}\n","id":"b8e6550f-bb8a-4add-b9fe-92f5541113e6","is_binary":false,"title":"tsconfig.json","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"S1TxTNDbi1_","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":null},{"code":"export type StarWarsPlanet = {\n name: string\n rotation_period: string\n orbital_period: string\n diameter: string\n climate: string\n gravity: string\n terrain: string\n surface_water: string\n population: string\n residents: string[]\n films: string[]\n created: string\n edited: string\n url: string\n imageSrc?: string\n}\n\nexport interface StarWarsPlanets {\n count: number\n next: string\n previous: any\n results: StarWarsPlanet[]\n}\n","id":"e156aab2-cae3-4fbc-b2d2-f9ace787f704","is_binary":false,"title":"types.ts","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"H10epNPbjkd","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":"BySp4vbskO"},{"code":"async function fetcher\u003CJSON = any\u003E(\n input: RequestInfo,\n init?: RequestInit\n): Promise\u003CJSON\u003E {\n const res = await fetch(input, init)\n return res.json()\n}\nexport default fetcher\n","id":"cd9c7136-334c-41d7-addc-9c3bf0a3f1dc","is_binary":false,"title":"fetch.ts","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"B11WpEwWokO","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":"Hk8pVvZo1O"},{"code":"{\n \"name\": \"with-typescript-eslint-jest\",\n \"version\": \"1.0.0\",\n \"lockfileVersion\": 1,\n \"requires\": true,\n \"dependencies\": {\n \"@ampproject\u002Ftoolbox-core\": {\n \"version\": \"2.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@ampproject\u002Ftoolbox-core\u002F-\u002Ftoolbox-core-2.6.1.tgz\",\n \"integrity\": \"sha512-hTsd9J2yy3JPMClG8BuUhUfMDtd3oDhCuRe\u002FSyZJYQfNMN8hQHt7LNXtdOzZr0Kw7nTepHmn7GODS68fZN4OQQ==\",\n \"requires\": {\n \"cross-fetch\": \"3.0.6\",\n \"lru-cache\": \"6.0.0\"\n },\n \"dependencies\": {\n \"cross-fetch\": {\n \"version\": \"3.0.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcross-fetch\u002F-\u002Fcross-fetch-3.0.6.tgz\",\n \"integrity\": \"sha512-KBPUbqgFjzWlVcURG+Svp9TlhA5uliYtiNx\u002F0r8nv0pdypeQCRJ9IaSIc3q\u002Fx3q8t3F75cHuwxVql1HFGHCNJQ==\",\n \"requires\": {\n \"node-fetch\": \"2.6.1\"\n }\n }\n }\n },\n \"@ampproject\u002Ftoolbox-optimizer\": {\n \"version\": \"2.7.0-alpha.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@ampproject\u002Ftoolbox-optimizer\u002F-\u002Ftoolbox-optimizer-2.7.0-alpha.1.tgz\",\n \"integrity\": \"sha512-2wTvOyM6GP6FrYQzxSQCg43STo1jMRGeDKa6YUkYXYH9fm9Wbt2wTRx+ajjb48JQ6WwUnGwga1MhQhVFzRQ+wQ==\",\n \"requires\": {\n \"@ampproject\u002Ftoolbox-core\": \"^2.6.0\",\n \"@ampproject\u002Ftoolbox-runtime-version\": \"^2.7.0-alpha.1\",\n \"@ampproject\u002Ftoolbox-script-csp\": \"^2.5.4\",\n \"@ampproject\u002Ftoolbox-validator-rules\": \"^2.5.4\",\n \"abort-controller\": \"3.0.0\",\n \"cross-fetch\": \"3.0.5\",\n \"cssnano-simple\": \"1.2.0\",\n \"dom-serializer\": \"1.0.1\",\n \"domhandler\": \"3.0.0\",\n \"domutils\": \"2.1.0\",\n \"htmlparser2\": \"4.1.0\",\n \"https-proxy-agent\": \"5.0.0\",\n \"lru-cache\": \"6.0.0\",\n \"node-fetch\": \"2.6.0\",\n \"normalize-html-whitespace\": \"1.0.0\",\n \"postcss\": \"7.0.32\",\n \"postcss-safe-parser\": \"4.0.2\",\n \"terser\": \"5.1.0\"\n },\n \"dependencies\": {\n \"cssnano-simple\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcssnano-simple\u002F-\u002Fcssnano-simple-1.2.0.tgz\",\n \"integrity\": \"sha512-pton9cZ70\u002FwOCWMAbEGHO1ACsW1KggTB6Ikj7k71uOEsz6SfByH++86+WAmXjRSc9q\u002Fg9gxkpFP9bDX9vRotdA==\",\n \"requires\": {\n \"cssnano-preset-simple\": \"1.2.0\",\n \"postcss\": \"^7.0.32\"\n }\n },\n \"node-fetch\": {\n \"version\": \"2.6.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnode-fetch\u002F-\u002Fnode-fetch-2.6.0.tgz\",\n \"integrity\": \"sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY\u002FZumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq\u002FTbdOcmNA==\"\n },\n \"postcss\": {\n \"version\": \"7.0.32\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpostcss\u002F-\u002Fpostcss-7.0.32.tgz\",\n \"integrity\": \"sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g\u002FO\u002FUQRuOle2aRtiIRDg9tDcTGAkLfKw==\",\n \"requires\": {\n \"chalk\": \"^2.4.2\",\n \"source-map\": \"^0.6.1\",\n \"supports-color\": \"^6.1.0\"\n }\n },\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\"\n },\n \"supports-color\": {\n \"version\": \"6.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-6.1.0.tgz\",\n \"integrity\": \"sha512-qe1jfm1Mg7Nq\u002FNSh6XE24gPXROEVsWHxC1LIx\u002F\u002FXNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==\",\n \"requires\": {\n \"has-flag\": \"^3.0.0\"\n }\n }\n }\n },\n \"@ampproject\u002Ftoolbox-runtime-version\": {\n \"version\": \"2.7.0-alpha.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@ampproject\u002Ftoolbox-runtime-version\u002F-\u002Ftoolbox-runtime-version-2.7.0-alpha.1.tgz\",\n \"integrity\": \"sha512-JruvO4RfaC\u002FpiKOY\u002F2w6vuasNjdrHnb+xvmQTl4zBBdMsDooohZKsN9jv9YiKIdpny4MzLt1ce497840vJJq+g==\",\n \"requires\": {\n \"@ampproject\u002Ftoolbox-core\": \"^2.6.0\"\n }\n },\n \"@ampproject\u002Ftoolbox-script-csp\": {\n \"version\": \"2.5.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@ampproject\u002Ftoolbox-script-csp\u002F-\u002Ftoolbox-script-csp-2.5.4.tgz\",\n \"integrity\": \"sha512-+knTYetI5nWllRZ9wFcj7mYxelkiiFVRAAW\u002Fhl0ad8EnKHMH82tRlk40CapEnUHhp6Er5sCYkumQ8dngs3Q4zQ==\"\n },\n \"@ampproject\u002Ftoolbox-validator-rules\": {\n \"version\": \"2.5.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@ampproject\u002Ftoolbox-validator-rules\u002F-\u002Ftoolbox-validator-rules-2.5.4.tgz\",\n \"integrity\": \"sha512-bS7uF+h0s5aiklc\u002FiRaujiSsiladOsZBLrJ6QImJDXvubCAQtvE7om7ShlGSXixkMAO0OVMDWyuwLlEy8V1Ing==\",\n \"requires\": {\n \"cross-fetch\": \"3.0.5\"\n }\n },\n \"@babel\u002Fcode-frame\": {\n \"version\": \"7.10.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fcode-frame\u002F-\u002Fcode-frame-7.10.4.tgz\",\n \"integrity\": \"sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd\u002FsGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==\",\n \"requires\": {\n \"@babel\u002Fhighlight\": \"^7.10.4\"\n }\n },\n \"@babel\u002Fcore\": {\n \"version\": \"7.12.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fcore\u002F-\u002Fcore-7.12.3.tgz\",\n \"integrity\": \"sha512-0qXcZYKZp3\u002F6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0\u002FaynWjMbiGd87EQL4WyA8reiJVh92AVla9g==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fcode-frame\": \"^7.10.4\",\n \"@babel\u002Fgenerator\": \"^7.12.1\",\n \"@babel\u002Fhelper-module-transforms\": \"^7.12.1\",\n \"@babel\u002Fhelpers\": \"^7.12.1\",\n \"@babel\u002Fparser\": \"^7.12.3\",\n \"@babel\u002Ftemplate\": \"^7.10.4\",\n \"@babel\u002Ftraverse\": \"^7.12.1\",\n \"@babel\u002Ftypes\": \"^7.12.1\",\n \"convert-source-map\": \"^1.7.0\",\n \"debug\": \"^4.1.0\",\n \"gensync\": \"^1.0.0-beta.1\",\n \"json5\": \"^2.1.2\",\n \"lodash\": \"^4.17.19\",\n \"resolve\": \"^1.3.2\",\n \"semver\": \"^5.4.1\",\n \"source-map\": \"^0.5.0\"\n }\n },\n \"@babel\u002Fgenerator\": {\n \"version\": \"7.12.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fgenerator\u002F-\u002Fgenerator-7.12.5.tgz\",\n \"integrity\": \"sha512-m16TQQJ8hPt7E+OS\u002FXVQg\u002F7U184MLXtvuGbCdA7na61vha+ImkyyNM\u002F9DDA0unYCVZn3ZOhng+qz48\u002FKBOT96A==\",\n \"requires\": {\n \"@babel\u002Ftypes\": \"^7.12.5\",\n \"jsesc\": \"^2.5.1\",\n \"source-map\": \"^0.5.0\"\n }\n },\n \"@babel\u002Fhelper-annotate-as-pure\": {\n \"version\": \"7.10.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fhelper-annotate-as-pure\u002F-\u002Fhelper-annotate-as-pure-7.10.4.tgz\",\n \"integrity\": \"sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK\u002FrBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z\u002FOnId1jpJdNAZ3BFQjWG68rcA==\",\n \"requires\": {\n \"@babel\u002Ftypes\": \"^7.10.4\"\n }\n },\n \"@babel\u002Fhelper-function-name\": {\n \"version\": \"7.10.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fhelper-function-name\u002F-\u002Fhelper-function-name-7.10.4.tgz\",\n \"integrity\": \"sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8\u002F\u002FqKkmqOckrGgTYa+6sceqQ==\",\n \"requires\": {\n \"@babel\u002Fhelper-get-function-arity\": \"^7.10.4\",\n \"@babel\u002Ftemplate\": \"^7.10.4\",\n \"@babel\u002Ftypes\": \"^7.10.4\"\n }\n },\n \"@babel\u002Fhelper-get-function-arity\": {\n \"version\": \"7.10.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fhelper-get-function-arity\u002F-\u002Fhelper-get-function-arity-7.10.4.tgz\",\n \"integrity\": \"sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==\",\n \"requires\": {\n \"@babel\u002Ftypes\": \"^7.10.4\"\n }\n },\n \"@babel\u002Fhelper-member-expression-to-functions\": {\n \"version\": \"7.12.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fhelper-member-expression-to-functions\u002F-\u002Fhelper-member-expression-to-functions-7.12.1.tgz\",\n \"integrity\": \"sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Ftypes\": \"^7.12.1\"\n }\n },\n \"@babel\u002Fhelper-module-imports\": {\n \"version\": \"7.12.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fhelper-module-imports\u002F-\u002Fhelper-module-imports-7.12.5.tgz\",\n \"integrity\": \"sha512-SR713Ogqg6++uexFRORf\u002F+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==\",\n \"requires\": {\n \"@babel\u002Ftypes\": \"^7.12.5\"\n }\n },\n \"@babel\u002Fhelper-module-transforms\": {\n \"version\": \"7.12.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fhelper-module-transforms\u002F-\u002Fhelper-module-transforms-7.12.1.tgz\",\n \"integrity\": \"sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV\u002Fw==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fhelper-module-imports\": \"^7.12.1\",\n \"@babel\u002Fhelper-replace-supers\": \"^7.12.1\",\n \"@babel\u002Fhelper-simple-access\": \"^7.12.1\",\n \"@babel\u002Fhelper-split-export-declaration\": \"^7.11.0\",\n \"@babel\u002Fhelper-validator-identifier\": \"^7.10.4\",\n \"@babel\u002Ftemplate\": \"^7.10.4\",\n \"@babel\u002Ftraverse\": \"^7.12.1\",\n \"@babel\u002Ftypes\": \"^7.12.1\",\n \"lodash\": \"^4.17.19\"\n }\n },\n \"@babel\u002Fhelper-optimise-call-expression\": {\n \"version\": \"7.10.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fhelper-optimise-call-expression\u002F-\u002Fhelper-optimise-call-expression-7.10.4.tgz\",\n \"integrity\": \"sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Ftypes\": \"^7.10.4\"\n }\n },\n \"@babel\u002Fhelper-plugin-utils\": {\n \"version\": \"7.10.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fhelper-plugin-utils\u002F-\u002Fhelper-plugin-utils-7.10.4.tgz\",\n \"integrity\": \"sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj\u002FrfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==\",\n \"dev\": true\n },\n \"@babel\u002Fhelper-replace-supers\": {\n \"version\": \"7.12.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fhelper-replace-supers\u002F-\u002Fhelper-replace-supers-7.12.5.tgz\",\n \"integrity\": \"sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fhelper-member-expression-to-functions\": \"^7.12.1\",\n \"@babel\u002Fhelper-optimise-call-expression\": \"^7.10.4\",\n \"@babel\u002Ftraverse\": \"^7.12.5\",\n \"@babel\u002Ftypes\": \"^7.12.5\"\n }\n },\n \"@babel\u002Fhelper-simple-access\": {\n \"version\": \"7.12.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fhelper-simple-access\u002F-\u002Fhelper-simple-access-7.12.1.tgz\",\n \"integrity\": \"sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3\u002F6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Ftypes\": \"^7.12.1\"\n }\n },\n \"@babel\u002Fhelper-split-export-declaration\": {\n \"version\": \"7.11.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fhelper-split-export-declaration\u002F-\u002Fhelper-split-export-declaration-7.11.0.tgz\",\n \"integrity\": \"sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==\",\n \"requires\": {\n \"@babel\u002Ftypes\": \"^7.11.0\"\n }\n },\n \"@babel\u002Fhelper-validator-identifier\": {\n \"version\": \"7.10.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fhelper-validator-identifier\u002F-\u002Fhelper-validator-identifier-7.10.4.tgz\",\n \"integrity\": \"sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg\u002FNhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA\u002FADXw==\"\n },\n \"@babel\u002Fhelpers\": {\n \"version\": \"7.12.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fhelpers\u002F-\u002Fhelpers-7.12.5.tgz\",\n \"integrity\": \"sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a\u002FUpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Ftemplate\": \"^7.10.4\",\n \"@babel\u002Ftraverse\": \"^7.12.5\",\n \"@babel\u002Ftypes\": \"^7.12.5\"\n }\n },\n \"@babel\u002Fhighlight\": {\n \"version\": \"7.10.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fhighlight\u002F-\u002Fhighlight-7.10.4.tgz\",\n \"integrity\": \"sha512-i6rgnR\u002FYgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7\u002FRIkmA==\",\n \"requires\": {\n \"@babel\u002Fhelper-validator-identifier\": \"^7.10.4\",\n \"chalk\": \"^2.0.0\",\n \"js-tokens\": \"^4.0.0\"\n }\n },\n \"@babel\u002Fparser\": {\n \"version\": \"7.12.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fparser\u002F-\u002Fparser-7.12.5.tgz\",\n \"integrity\": \"sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ==\"\n },\n \"@babel\u002Fplugin-syntax-async-generators\": {\n \"version\": \"7.8.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fplugin-syntax-async-generators\u002F-\u002Fplugin-syntax-async-generators-7.8.4.tgz\",\n \"integrity\": \"sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk\u002FeDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fhelper-plugin-utils\": \"^7.8.0\"\n }\n },\n \"@babel\u002Fplugin-syntax-bigint\": {\n \"version\": \"7.8.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fplugin-syntax-bigint\u002F-\u002Fplugin-syntax-bigint-7.8.3.tgz\",\n \"integrity\": \"sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE\u002FmDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe\u002FN6dCXpU+zL3Npg==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fhelper-plugin-utils\": \"^7.8.0\"\n }\n },\n \"@babel\u002Fplugin-syntax-class-properties\": {\n \"version\": \"7.12.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fplugin-syntax-class-properties\u002F-\u002Fplugin-syntax-class-properties-7.12.1.tgz\",\n \"integrity\": \"sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fhelper-plugin-utils\": \"^7.10.4\"\n }\n },\n \"@babel\u002Fplugin-syntax-import-meta\": {\n \"version\": \"7.10.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fplugin-syntax-import-meta\u002F-\u002Fplugin-syntax-import-meta-7.10.4.tgz\",\n \"integrity\": \"sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fhelper-plugin-utils\": \"^7.10.4\"\n }\n },\n \"@babel\u002Fplugin-syntax-json-strings\": {\n \"version\": \"7.8.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fplugin-syntax-json-strings\u002F-\u002Fplugin-syntax-json-strings-7.8.3.tgz\",\n \"integrity\": \"sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT\u002FZgrFbXlDNiiaxQnAtgVCZ6jv30EA==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fhelper-plugin-utils\": \"^7.8.0\"\n }\n },\n \"@babel\u002Fplugin-syntax-logical-assignment-operators\": {\n \"version\": \"7.10.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fplugin-syntax-logical-assignment-operators\u002F-\u002Fplugin-syntax-logical-assignment-operators-7.10.4.tgz\",\n \"integrity\": \"sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV\u002F4+RRszNY7D17ba0te0ig==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fhelper-plugin-utils\": \"^7.10.4\"\n }\n },\n \"@babel\u002Fplugin-syntax-nullish-coalescing-operator\": {\n \"version\": \"7.8.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fplugin-syntax-nullish-coalescing-operator\u002F-\u002Fplugin-syntax-nullish-coalescing-operator-7.8.3.tgz\",\n \"integrity\": \"sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA\u002FR+UlWDzfnHFCxxleFT0PMIrR36XLNQ==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fhelper-plugin-utils\": \"^7.8.0\"\n }\n },\n \"@babel\u002Fplugin-syntax-numeric-separator\": {\n \"version\": \"7.10.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fplugin-syntax-numeric-separator\u002F-\u002Fplugin-syntax-numeric-separator-7.10.4.tgz\",\n \"integrity\": \"sha512-9H6YdfkcK\u002FuOnY\u002FK7\u002FaA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fhelper-plugin-utils\": \"^7.10.4\"\n }\n },\n \"@babel\u002Fplugin-syntax-object-rest-spread\": {\n \"version\": \"7.8.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fplugin-syntax-object-rest-spread\u002F-\u002Fplugin-syntax-object-rest-spread-7.8.3.tgz\",\n \"integrity\": \"sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fhelper-plugin-utils\": \"^7.8.0\"\n }\n },\n \"@babel\u002Fplugin-syntax-optional-catch-binding\": {\n \"version\": \"7.8.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fplugin-syntax-optional-catch-binding\u002F-\u002Fplugin-syntax-optional-catch-binding-7.8.3.tgz\",\n \"integrity\": \"sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E\u002F91FV3RjLWoVTglWcSV3Q==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fhelper-plugin-utils\": \"^7.8.0\"\n }\n },\n \"@babel\u002Fplugin-syntax-optional-chaining\": {\n \"version\": \"7.8.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fplugin-syntax-optional-chaining\u002F-\u002Fplugin-syntax-optional-chaining-7.8.3.tgz\",\n \"integrity\": \"sha512-KoK9ErH1MBlCPxV0VANkXW2\u002Fdw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v\u002FwPTKbQgBjkg==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fhelper-plugin-utils\": \"^7.8.0\"\n }\n },\n \"@babel\u002Fruntime\": {\n \"version\": \"7.12.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fruntime\u002F-\u002Fruntime-7.12.5.tgz\",\n \"integrity\": \"sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET\u002F0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==\",\n \"requires\": {\n \"regenerator-runtime\": \"^0.13.4\"\n }\n },\n \"@babel\u002Fruntime-corejs3\": {\n \"version\": \"7.12.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Fruntime-corejs3\u002F-\u002Fruntime-corejs3-7.12.5.tgz\",\n \"integrity\": \"sha512-roGr54CsTmNPPzZoCP1AmDXuBoNao7tnSA83TXTwt+UK5QVyh1DIJnrgYRPWKCF2flqZQXwa7Yr8v7VmLzF0YQ==\",\n \"dev\": true,\n \"requires\": {\n \"core-js-pure\": \"^3.0.0\",\n \"regenerator-runtime\": \"^0.13.4\"\n }\n },\n \"@babel\u002Ftemplate\": {\n \"version\": \"7.10.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Ftemplate\u002F-\u002Ftemplate-7.10.4.tgz\",\n \"integrity\": \"sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs\u002F1tA==\",\n \"requires\": {\n \"@babel\u002Fcode-frame\": \"^7.10.4\",\n \"@babel\u002Fparser\": \"^7.10.4\",\n \"@babel\u002Ftypes\": \"^7.10.4\"\n }\n },\n \"@babel\u002Ftraverse\": {\n \"version\": \"7.12.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Ftraverse\u002F-\u002Ftraverse-7.12.5.tgz\",\n \"integrity\": \"sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P\u002Fi83FAAcMpW8+A\u002FQayntzuqA==\",\n \"requires\": {\n \"@babel\u002Fcode-frame\": \"^7.10.4\",\n \"@babel\u002Fgenerator\": \"^7.12.5\",\n \"@babel\u002Fhelper-function-name\": \"^7.10.4\",\n \"@babel\u002Fhelper-split-export-declaration\": \"^7.11.0\",\n \"@babel\u002Fparser\": \"^7.12.5\",\n \"@babel\u002Ftypes\": \"^7.12.5\",\n \"debug\": \"^4.1.0\",\n \"globals\": \"^11.1.0\",\n \"lodash\": \"^4.17.19\"\n }\n },\n \"@babel\u002Ftypes\": {\n \"version\": \"7.12.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Ftypes\u002F-\u002Ftypes-7.12.6.tgz\",\n \"integrity\": \"sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB\u002F1b7cGXvEoKogA==\",\n \"requires\": {\n \"@babel\u002Fhelper-validator-identifier\": \"^7.10.4\",\n \"lodash\": \"^4.17.19\",\n \"to-fast-properties\": \"^2.0.0\"\n }\n },\n \"@bcoe\u002Fv8-coverage\": {\n \"version\": \"0.2.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@bcoe\u002Fv8-coverage\u002F-\u002Fv8-coverage-0.2.3.tgz\",\n \"integrity\": \"sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==\",\n \"dev\": true\n },\n \"@cnakazawa\u002Fwatch\": {\n \"version\": \"1.0.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@cnakazawa\u002Fwatch\u002F-\u002Fwatch-1.0.4.tgz\",\n \"integrity\": \"sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw\u002FN3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==\",\n \"dev\": true,\n \"requires\": {\n \"exec-sh\": \"^0.3.2\",\n \"minimist\": \"^1.2.0\"\n }\n },\n \"@emotion\u002Fis-prop-valid\": {\n \"version\": \"0.8.8\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@emotion\u002Fis-prop-valid\u002F-\u002Fis-prop-valid-0.8.8.tgz\",\n \"integrity\": \"sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==\",\n \"requires\": {\n \"@emotion\u002Fmemoize\": \"0.7.4\"\n }\n },\n \"@emotion\u002Fmemoize\": {\n \"version\": \"0.7.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@emotion\u002Fmemoize\u002F-\u002Fmemoize-0.7.4.tgz\",\n \"integrity\": \"sha512-Ja\u002FVfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==\"\n },\n \"@emotion\u002Fstylis\": {\n \"version\": \"0.8.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@emotion\u002Fstylis\u002F-\u002Fstylis-0.8.5.tgz\",\n \"integrity\": \"sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S\u002FYI1AYhuZ1kjaE\u002F5EaOOI2NqSylQ==\"\n },\n \"@emotion\u002Funitless\": {\n \"version\": \"0.7.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@emotion\u002Funitless\u002F-\u002Funitless-0.7.5.tgz\",\n \"integrity\": \"sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh\u002FA96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==\"\n },\n \"@hapi\u002Faccept\": {\n \"version\": \"5.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@hapi\u002Faccept\u002F-\u002Faccept-5.0.1.tgz\",\n \"integrity\": \"sha512-fMr4d7zLzsAXo28PRRQPXR1o2Wmu+6z+VY1UzDp0iFo13Twj8WePakwXBiqn3E1aAlTpSNzCXdnnQXFhst8h8Q==\",\n \"requires\": {\n \"@hapi\u002Fboom\": \"9.x.x\",\n \"@hapi\u002Fhoek\": \"9.x.x\"\n }\n },\n \"@hapi\u002Fboom\": {\n \"version\": \"9.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@hapi\u002Fboom\u002F-\u002Fboom-9.1.0.tgz\",\n \"integrity\": \"sha512-4nZmpp4tXbm162LaZT45P7F7sgiem8dwAh2vHWT6XX24dozNjGMg6BvKCRvtCUcmcXqeMIUqWN8Rc5X8yKuROQ==\",\n \"requires\": {\n \"@hapi\u002Fhoek\": \"9.x.x\"\n }\n },\n \"@hapi\u002Fhoek\": {\n \"version\": \"9.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@hapi\u002Fhoek\u002F-\u002Fhoek-9.1.0.tgz\",\n \"integrity\": \"sha512-i9YbZPN3QgfighY\u002F1X1Pu118VUz2Fmmhd6b2n0\u002FO8YVgGGfw0FbUYoA97k7FkpGJ+pLCFEDLUmAPPV4D1kpeFw==\"\n },\n \"@istanbuljs\u002Fload-nyc-config\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@istanbuljs\u002Fload-nyc-config\u002F-\u002Fload-nyc-config-1.1.0.tgz\",\n \"integrity\": \"sha512-VjeHSlIzpv\u002FNyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==\",\n \"dev\": true,\n \"requires\": {\n \"camelcase\": \"^5.3.1\",\n \"find-up\": \"^4.1.0\",\n \"get-package-type\": \"^0.1.0\",\n \"js-yaml\": \"^3.13.1\",\n \"resolve-from\": \"^5.0.0\"\n }\n },\n \"@istanbuljs\u002Fschema\": {\n \"version\": \"0.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@istanbuljs\u002Fschema\u002F-\u002Fschema-0.1.2.tgz\",\n \"integrity\": \"sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==\",\n \"dev\": true\n },\n \"@jest\u002Fconsole\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@jest\u002Fconsole\u002F-\u002Fconsole-25.5.0.tgz\",\n \"integrity\": \"sha512-T48kZa6MK1Y6k4b89sexwmSF4YLeZS\u002FUdqg3Jj3jG\u002FcHH+N\u002FsLFCEoXEDMOKugJQ9FxPN1osxIknvKkxt6MKyw==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"chalk\": \"^3.0.0\",\n \"jest-message-util\": \"^25.5.0\",\n \"jest-util\": \"^25.5.0\",\n \"slash\": \"^3.0.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"@jest\u002Fcore\": {\n \"version\": \"25.5.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@jest\u002Fcore\u002F-\u002Fcore-25.5.4.tgz\",\n \"integrity\": \"sha512-3uSo7laYxF00Dg\u002FDMgbn4xMJKmDdWvZnf89n8Xj\u002F5\u002FAeQ2dOQmn6b6Hkj\u002FMleyzZWXpwv+WSdYWl4cLsy2JsoA==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Fconsole\": \"^25.5.0\",\n \"@jest\u002Freporters\": \"^25.5.1\",\n \"@jest\u002Ftest-result\": \"^25.5.0\",\n \"@jest\u002Ftransform\": \"^25.5.1\",\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"ansi-escapes\": \"^4.2.1\",\n \"chalk\": \"^3.0.0\",\n \"exit\": \"^0.1.2\",\n \"graceful-fs\": \"^4.2.4\",\n \"jest-changed-files\": \"^25.5.0\",\n \"jest-config\": \"^25.5.4\",\n \"jest-haste-map\": \"^25.5.1\",\n \"jest-message-util\": \"^25.5.0\",\n \"jest-regex-util\": \"^25.2.6\",\n \"jest-resolve\": \"^25.5.1\",\n \"jest-resolve-dependencies\": \"^25.5.4\",\n \"jest-runner\": \"^25.5.4\",\n \"jest-runtime\": \"^25.5.4\",\n \"jest-snapshot\": \"^25.5.1\",\n \"jest-util\": \"^25.5.0\",\n \"jest-validate\": \"^25.5.0\",\n \"jest-watcher\": \"^25.5.0\",\n \"micromatch\": \"^4.0.2\",\n \"p-each-series\": \"^2.1.0\",\n \"realpath-native\": \"^2.0.0\",\n \"rimraf\": \"^3.0.0\",\n \"slash\": \"^3.0.0\",\n \"strip-ansi\": \"^6.0.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"rimraf\": {\n \"version\": \"3.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frimraf\u002F-\u002Frimraf-3.0.2.tgz\",\n \"integrity\": \"sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX\u002F2o0L9UBw9O\u002FY3o6wFw\u002Fi9YLapcUJWwqbi3kdxIPdC62TIA==\",\n \"dev\": true,\n \"requires\": {\n \"glob\": \"^7.1.3\"\n }\n },\n \"strip-ansi\": {\n \"version\": \"6.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstrip-ansi\u002F-\u002Fstrip-ansi-6.0.0.tgz\",\n \"integrity\": \"sha512-AuvKTrTfQNYNIctbR1K\u002FYGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-regex\": \"^5.0.0\"\n }\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"@jest\u002Fenvironment\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@jest\u002Fenvironment\u002F-\u002Fenvironment-25.5.0.tgz\",\n \"integrity\": \"sha512-U2VXPEqL07E\u002FV7pSZMSQCvV5Ea4lqOlT+0ZFijl\u002Fi316cRMHvZ4qC+jBdryd+lmRetjQo0YIQr6cVPNxxK87mA==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ffake-timers\": \"^25.5.0\",\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"jest-mock\": \"^25.5.0\"\n }\n },\n \"@jest\u002Ffake-timers\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@jest\u002Ffake-timers\u002F-\u002Ffake-timers-25.5.0.tgz\",\n \"integrity\": \"sha512-9y2+uGnESw\u002FoyOI3eww9yaxdZyHq7XvprfP\u002FeeoCsjqKYts2yRlsHS\u002FSgjPDV8FyMfn2nbMy8YzUk6nyvdLOpQ==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"jest-message-util\": \"^25.5.0\",\n \"jest-mock\": \"^25.5.0\",\n \"jest-util\": \"^25.5.0\",\n \"lolex\": \"^5.0.0\"\n }\n },\n \"@jest\u002Fglobals\": {\n \"version\": \"25.5.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@jest\u002Fglobals\u002F-\u002Fglobals-25.5.2.tgz\",\n \"integrity\": \"sha512-AgAS\u002FNy7Q2RCIj5kZ+0MuKM1wbF0WMLxbCVl\u002FGOMoCNbODRdJ541IxJ98xnZdVSZXivKpJlNPIWa3QmY0l4CXA==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Fenvironment\": \"^25.5.0\",\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"expect\": \"^25.5.0\"\n }\n },\n \"@jest\u002Freporters\": {\n \"version\": \"25.5.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@jest\u002Freporters\u002F-\u002Freporters-25.5.1.tgz\",\n \"integrity\": \"sha512-3jbd8pPDTuhYJ7vqiHXbSwTJQNavczPs+f1kRprRDxETeE3u6srJ+f0NPuwvOmk+lmunZzPkYWIFZDLHQPkviw==\",\n \"dev\": true,\n \"requires\": {\n \"@bcoe\u002Fv8-coverage\": \"^0.2.3\",\n \"@jest\u002Fconsole\": \"^25.5.0\",\n \"@jest\u002Ftest-result\": \"^25.5.0\",\n \"@jest\u002Ftransform\": \"^25.5.1\",\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"chalk\": \"^3.0.0\",\n \"collect-v8-coverage\": \"^1.0.0\",\n \"exit\": \"^0.1.2\",\n \"glob\": \"^7.1.2\",\n \"graceful-fs\": \"^4.2.4\",\n \"istanbul-lib-coverage\": \"^3.0.0\",\n \"istanbul-lib-instrument\": \"^4.0.0\",\n \"istanbul-lib-report\": \"^3.0.0\",\n \"istanbul-lib-source-maps\": \"^4.0.0\",\n \"istanbul-reports\": \"^3.0.2\",\n \"jest-haste-map\": \"^25.5.1\",\n \"jest-resolve\": \"^25.5.1\",\n \"jest-util\": \"^25.5.0\",\n \"jest-worker\": \"^25.5.0\",\n \"node-notifier\": \"^6.0.0\",\n \"slash\": \"^3.0.0\",\n \"source-map\": \"^0.6.0\",\n \"string-length\": \"^3.1.0\",\n \"terminal-link\": \"^2.0.0\",\n \"v8-to-istanbul\": \"^4.1.3\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"@jest\u002Fsource-map\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@jest\u002Fsource-map\u002F-\u002Fsource-map-25.5.0.tgz\",\n \"integrity\": \"sha512-eIGx0xN12yVpMcPaVpjXPnn3N30QGJCJQSkEDUt9x1fI1Gdvb07Ml6K5iN2hG7NmMP6FDmtPEssE3z6doOYUwQ==\",\n \"dev\": true,\n \"requires\": {\n \"callsites\": \"^3.0.0\",\n \"graceful-fs\": \"^4.2.4\",\n \"source-map\": \"^0.6.0\"\n },\n \"dependencies\": {\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\",\n \"dev\": true\n }\n }\n },\n \"@jest\u002Ftest-result\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@jest\u002Ftest-result\u002F-\u002Ftest-result-25.5.0.tgz\",\n \"integrity\": \"sha512-oV+hPJgXN7IQf\u002FfHWkcS99y0smKLU2czLBJ9WA0jHITLst58HpQMtzSYxzaBvYc6U5U6jfoMthqsUlUlbRXs0A==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Fconsole\": \"^25.5.0\",\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"@types\u002Fistanbul-lib-coverage\": \"^2.0.0\",\n \"collect-v8-coverage\": \"^1.0.0\"\n }\n },\n \"@jest\u002Ftest-sequencer\": {\n \"version\": \"25.5.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@jest\u002Ftest-sequencer\u002F-\u002Ftest-sequencer-25.5.4.tgz\",\n \"integrity\": \"sha512-pTJGEkSeg1EkCO2YWq6hbFvKNXk8ejqlxiOg1jBNLnWrgXOkdY6UmqZpwGFXNnRt9B8nO1uWMzLLZ4eCmhkPNA==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftest-result\": \"^25.5.0\",\n \"graceful-fs\": \"^4.2.4\",\n \"jest-haste-map\": \"^25.5.1\",\n \"jest-runner\": \"^25.5.4\",\n \"jest-runtime\": \"^25.5.4\"\n }\n },\n \"@jest\u002Ftransform\": {\n \"version\": \"25.5.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@jest\u002Ftransform\u002F-\u002Ftransform-25.5.1.tgz\",\n \"integrity\": \"sha512-Y8CEoVwXb4QwA6Y\u002F9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fcore\": \"^7.1.0\",\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"babel-plugin-istanbul\": \"^6.0.0\",\n \"chalk\": \"^3.0.0\",\n \"convert-source-map\": \"^1.4.0\",\n \"fast-json-stable-stringify\": \"^2.0.0\",\n \"graceful-fs\": \"^4.2.4\",\n \"jest-haste-map\": \"^25.5.1\",\n \"jest-regex-util\": \"^25.2.6\",\n \"jest-util\": \"^25.5.0\",\n \"micromatch\": \"^4.0.2\",\n \"pirates\": \"^4.0.1\",\n \"realpath-native\": \"^2.0.0\",\n \"slash\": \"^3.0.0\",\n \"source-map\": \"^0.6.1\",\n \"write-file-atomic\": \"^3.0.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"@jest\u002Ftypes\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@jest\u002Ftypes\u002F-\u002Ftypes-25.5.0.tgz\",\n \"integrity\": \"sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==\",\n \"dev\": true,\n \"requires\": {\n \"@types\u002Fistanbul-lib-coverage\": \"^2.0.0\",\n \"@types\u002Fistanbul-reports\": \"^1.1.1\",\n \"@types\u002Fyargs\": \"^15.0.0\",\n \"chalk\": \"^3.0.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"@next\u002Fenv\": {\n \"version\": \"10.0.2-canary.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@next\u002Fenv\u002F-\u002Fenv-10.0.2-canary.7.tgz\",\n \"integrity\": \"sha512-0B2UgrWV5I5BUML9P++atkrZQvruRV4PJszNDfRbQmQor1pJe3OSMhd1dLzVVhSJqwKvolVFaNR8fnt+tyiijg==\"\n },\n \"@next\u002Fpolyfill-module\": {\n \"version\": \"10.0.2-canary.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@next\u002Fpolyfill-module\u002F-\u002Fpolyfill-module-10.0.2-canary.7.tgz\",\n \"integrity\": \"sha512-h\u002FQOk50yVa6uZ3trJt7Exf91gtUfHYLZ4ntAbqxX0DE+\u002FenkFrRtFLkkKeQKxE1DSaF8vPNfOTt8RziHr\u002F1bxQ==\"\n },\n \"@next\u002Freact-dev-overlay\": {\n \"version\": \"10.0.2-canary.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@next\u002Freact-dev-overlay\u002F-\u002Freact-dev-overlay-10.0.2-canary.7.tgz\",\n \"integrity\": \"sha512-MPRwoE+3j6HtXrVUxgDbzy1p5Hw1N+9wNIGw4PizfLFkZXZBV8q2ic2v6BPVtCmPvecgE3MsG8719aJpDPmEbQ==\",\n \"requires\": {\n \"@babel\u002Fcode-frame\": \"7.10.4\",\n \"ally.js\": \"1.4.1\",\n \"anser\": \"1.4.9\",\n \"chalk\": \"4.0.0\",\n \"classnames\": \"2.2.6\",\n \"data-uri-to-buffer\": \"3.0.0\",\n \"shell-quote\": \"1.7.2\",\n \"source-map\": \"0.8.0-beta.0\",\n \"stacktrace-parser\": \"0.1.10\",\n \"strip-ansi\": \"6.0.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-4.0.0.tgz\",\n \"integrity\": \"sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==\",\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\"\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\"\n },\n \"source-map\": {\n \"version\": \"0.8.0-beta.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.8.0-beta.0.tgz\",\n \"integrity\": \"sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==\",\n \"requires\": {\n \"whatwg-url\": \"^7.0.0\"\n }\n },\n \"strip-ansi\": {\n \"version\": \"6.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstrip-ansi\u002F-\u002Fstrip-ansi-6.0.0.tgz\",\n \"integrity\": \"sha512-AuvKTrTfQNYNIctbR1K\u002FYGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==\",\n \"requires\": {\n \"ansi-regex\": \"^5.0.0\"\n }\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"@next\u002Freact-refresh-utils\": {\n \"version\": \"10.0.2-canary.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@next\u002Freact-refresh-utils\u002F-\u002Freact-refresh-utils-10.0.2-canary.7.tgz\",\n \"integrity\": \"sha512-g5+oq1rkCUrqWrH\u002Fz8sQ3UaV7jDYGRdkf3HYblNlpfABWk+\u002FZYJDh9c5xvsOk\u002FK\u002Fd3\u002FUfP3koZFpmRD532FeYQ==\"\n },\n \"@sinonjs\u002Fcommons\": {\n \"version\": \"1.8.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@sinonjs\u002Fcommons\u002F-\u002Fcommons-1.8.1.tgz\",\n \"integrity\": \"sha512-892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy\u002FDNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw==\",\n \"dev\": true,\n \"requires\": {\n \"type-detect\": \"4.0.8\"\n }\n },\n \"@testing-library\u002Fdom\": {\n \"version\": \"7.26.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@testing-library\u002Fdom\u002F-\u002Fdom-7.26.5.tgz\",\n \"integrity\": \"sha512-2v\u002Ffv0s4keQjJIcD4bjfJMFtvxz5icartxUWdIZVNJR539WD9oxVrvIAPw+3Ydg4RLgxt0rvQx3L9cAjCci0Kg==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fcode-frame\": \"^7.10.4\",\n \"@babel\u002Fruntime\": \"^7.10.3\",\n \"@types\u002Faria-query\": \"^4.2.0\",\n \"aria-query\": \"^4.2.2\",\n \"chalk\": \"^4.1.0\",\n \"dom-accessibility-api\": \"^0.5.1\",\n \"lz-string\": \"^1.4.4\",\n \"pretty-format\": \"^26.4.2\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"4.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-4.1.0.tgz\",\n \"integrity\": \"sha512-qwx12AxXe2Q5xQ43Ac\u002F\u002FI6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"@testing-library\u002Freact\": {\n \"version\": \"10.4.9\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@testing-library\u002Freact\u002F-\u002Freact-10.4.9.tgz\",\n \"integrity\": \"sha512-pHZKkqUy0tmiD81afs8xfiuseXfU\u002FN7rAX3iKjeZYje86t9VaB0LrxYVa+OOsvkrveX5jCK3IjajVn2MbePvqA==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fruntime\": \"^7.10.3\",\n \"@testing-library\u002Fdom\": \"^7.22.3\"\n }\n },\n \"@types\u002Faria-query\": {\n \"version\": \"4.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Faria-query\u002F-\u002Faria-query-4.2.0.tgz\",\n \"integrity\": \"sha512-iIgQNzCm0v7QMhhe4Jjn9uRh+I6GoPmt03CbEtwx3ao8\u002FEfoQcmgtqH4vQ5Db\u002FlxiIGaWDv6nwvunuh0RyX0+A==\",\n \"dev\": true\n },\n \"@types\u002Fbabel__core\": {\n \"version\": \"7.1.12\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fbabel__core\u002F-\u002Fbabel__core-7.1.12.tgz\",\n \"integrity\": \"sha512-wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq\u002F6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fparser\": \"^7.1.0\",\n \"@babel\u002Ftypes\": \"^7.0.0\",\n \"@types\u002Fbabel__generator\": \"*\",\n \"@types\u002Fbabel__template\": \"*\",\n \"@types\u002Fbabel__traverse\": \"*\"\n }\n },\n \"@types\u002Fbabel__generator\": {\n \"version\": \"7.6.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fbabel__generator\u002F-\u002Fbabel__generator-7.6.2.tgz\",\n \"integrity\": \"sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Ftypes\": \"^7.0.0\"\n }\n },\n \"@types\u002Fbabel__template\": {\n \"version\": \"7.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fbabel__template\u002F-\u002Fbabel__template-7.0.3.tgz\",\n \"integrity\": \"sha512-uCoznIPDmnickEi6D0v11SBpW0OuVqHJCa7syXqQHy5uktSCreIlt0iglsCnmvz8yCb38hGcWeseA8cWJSwv5Q==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fparser\": \"^7.1.0\",\n \"@babel\u002Ftypes\": \"^7.0.0\"\n }\n },\n \"@types\u002Fbabel__traverse\": {\n \"version\": \"7.0.15\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fbabel__traverse\u002F-\u002Fbabel__traverse-7.0.15.tgz\",\n \"integrity\": \"sha512-Pzh9O3sTK8V6I1olsXpCfj2k\u002FygO2q1X0vhhnDrEQyYLHZesWz+zMZMVcwXLCYf0U36EtmyYaFGPfXlTtDHe3A==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Ftypes\": \"^7.3.0\"\n }\n },\n \"@types\u002Feslint-visitor-keys\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Feslint-visitor-keys\u002F-\u002Feslint-visitor-keys-1.0.0.tgz\",\n \"integrity\": \"sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ\u002F7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==\",\n \"dev\": true\n },\n \"@types\u002Fgraceful-fs\": {\n \"version\": \"4.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fgraceful-fs\u002F-\u002Fgraceful-fs-4.1.4.tgz\",\n \"integrity\": \"sha512-mWA\u002F4zFQhfvOA8zWkXobwJvBD7vzcxgrOQ0J5CH1votGqdq9m7+FwtGaqyCZqC3NyyBkc9z4m+iry4LlqcMWJg==\",\n \"dev\": true,\n \"requires\": {\n \"@types\u002Fnode\": \"*\"\n }\n },\n \"@types\u002Fhoist-non-react-statics\": {\n \"version\": \"3.3.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fhoist-non-react-statics\u002F-\u002Fhoist-non-react-statics-3.3.1.tgz\",\n \"integrity\": \"sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==\",\n \"dev\": true,\n \"requires\": {\n \"@types\u002Freact\": \"*\",\n \"hoist-non-react-statics\": \"^3.3.0\"\n }\n },\n \"@types\u002Fistanbul-lib-coverage\": {\n \"version\": \"2.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fistanbul-lib-coverage\u002F-\u002Fistanbul-lib-coverage-2.0.3.tgz\",\n \"integrity\": \"sha512-sz7iLqvVUg1gIedBOvlkxPlc8\u002FuVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==\",\n \"dev\": true\n },\n \"@types\u002Fistanbul-lib-report\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fistanbul-lib-report\u002F-\u002Fistanbul-lib-report-3.0.0.tgz\",\n \"integrity\": \"sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi\u002FP+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==\",\n \"dev\": true,\n \"requires\": {\n \"@types\u002Fistanbul-lib-coverage\": \"*\"\n }\n },\n \"@types\u002Fistanbul-reports\": {\n \"version\": \"1.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fistanbul-reports\u002F-\u002Fistanbul-reports-1.1.2.tgz\",\n \"integrity\": \"sha512-P\u002FW9yOX\u002F3oPZSpaYOCQzGqgCQRXn0FFO\u002FV8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==\",\n \"dev\": true,\n \"requires\": {\n \"@types\u002Fistanbul-lib-coverage\": \"*\",\n \"@types\u002Fistanbul-lib-report\": \"*\"\n }\n },\n \"@types\u002Fjest\": {\n \"version\": \"25.2.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fjest\u002F-\u002Fjest-25.2.3.tgz\",\n \"integrity\": \"sha512-JXc1nK\u002FtXHiDhV55dvfzqtmP4S3sy3T3ouV2tkViZgxY\u002FzeUkcpQcQPGRlgF4KmWzWW5oiWYSZwtCB+2RsE4Fw==\",\n \"dev\": true,\n \"requires\": {\n \"jest-diff\": \"^25.2.1\",\n \"pretty-format\": \"^25.2.1\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"pretty-format\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpretty-format\u002F-\u002Fpretty-format-25.5.0.tgz\",\n \"integrity\": \"sha512-kbo\u002Fkq2LQ\u002FA\u002Fis0PQwsEHM7Ca6\u002F\u002FbGPPvU6UnsdDRSKTWxT\u002Fru\u002Fxb88v4BJf6a69H+uTytOEsTusT9ksd\u002F1iWQ==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"ansi-regex\": \"^5.0.0\",\n \"ansi-styles\": \"^4.0.0\",\n \"react-is\": \"^16.12.0\"\n }\n }\n }\n },\n \"@types\u002Fjson-schema\": {\n \"version\": \"7.0.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fjson-schema\u002F-\u002Fjson-schema-7.0.6.tgz\",\n \"integrity\": \"sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g\u002FDXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==\"\n },\n \"@types\u002Fnode\": {\n \"version\": \"13.13.30\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fnode\u002F-\u002Fnode-13.13.30.tgz\",\n \"integrity\": \"sha512-HmqFpNzp3TSELxU\u002FbUuRK+xzarVOAsR00hzcvM0TXrMlt\u002F+wcSLa5q6YhTb6\u002FcA6wqDCZLDcfd8fSL95x5h7AA==\",\n \"dev\": true\n },\n \"@types\u002Fnormalize-package-data\": {\n \"version\": \"2.4.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fnormalize-package-data\u002F-\u002Fnormalize-package-data-2.4.0.tgz\",\n \"integrity\": \"sha512-f5j5b\u002FGf71L+dbqxIpQ4Z2WlmI\u002FmPJ0fOkGGmFgtb6sAu97EPczzbS3\u002FtJKxmcYDj55OX6ssqwDAWOHIYDRDGA==\",\n \"dev\": true\n },\n \"@types\u002Fparse-json\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fparse-json\u002F-\u002Fparse-json-4.0.0.tgz\",\n \"integrity\": \"sha512-\u002F\u002FoorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl\u002FL5wOnpyBGRe\u002FMmf5CVW3PwEBE1NjiMZ\u002FssFh4wA==\",\n \"dev\": true\n },\n \"@types\u002Fprettier\": {\n \"version\": \"1.19.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fprettier\u002F-\u002Fprettier-1.19.1.tgz\",\n \"integrity\": \"sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ==\",\n \"dev\": true\n },\n \"@types\u002Fprop-types\": {\n \"version\": \"15.7.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fprop-types\u002F-\u002Fprop-types-15.7.3.tgz\",\n \"integrity\": \"sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==\",\n \"dev\": true\n },\n \"@types\u002Freact\": {\n \"version\": \"16.9.55\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Freact\u002F-\u002Freact-16.9.55.tgz\",\n \"integrity\": \"sha512-6KLe6lkILeRwyyy7yG9rULKJ0sXplUsl98MGoCfpteXf9sPWFWWMknDcsvubcpaTdBuxtsLF6HDUwdApZL\u002FxIg==\",\n \"dev\": true,\n \"requires\": {\n \"@types\u002Fprop-types\": \"*\",\n \"csstype\": \"^3.0.2\"\n }\n },\n \"@types\u002Freact-native\": {\n \"version\": \"0.63.32\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Freact-native\u002F-\u002Freact-native-0.63.32.tgz\",\n \"integrity\": \"sha512-q9JyN8eoCwLcPPyF7ldzWXAo1SOFIsh97b2WOZJVraozkvpTDcA9SZMdHxNhjP9M9KdKY0GWKB2B0pjew8VT3w==\",\n \"dev\": true,\n \"requires\": {\n \"@types\u002Freact\": \"*\"\n }\n },\n \"@types\u002Freact-virtualized-auto-sizer\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Freact-virtualized-auto-sizer\u002F-\u002Freact-virtualized-auto-sizer-1.0.0.tgz\",\n \"integrity\": \"sha512-NMErdIdSnm2j\u002F7IqMteRiRvRulpjoELnXWUwdbucYCz84xG9PHcoOrr7QfXwB\u002Fku7wd6egiKFrzt\u002F+QK4Imeeg==\",\n \"dev\": true,\n \"requires\": {\n \"@types\u002Freact\": \"*\"\n }\n },\n \"@types\u002Freact-window\": {\n \"version\": \"1.8.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Freact-window\u002F-\u002Freact-window-1.8.2.tgz\",\n \"integrity\": \"sha512-gP1xam68Wc4ZTAee++zx6pTdDAH08rAkQrWm4B4F\u002Fy6hhmlT9Mgx2q8lTCXnrPHXsr15XjRN9+K2DLKcz44qEQ==\",\n \"dev\": true,\n \"requires\": {\n \"@types\u002Freact\": \"*\"\n }\n },\n \"@types\u002Freact-window-infinite-loader\": {\n \"version\": \"1.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Freact-window-infinite-loader\u002F-\u002Freact-window-infinite-loader-1.0.3.tgz\",\n \"integrity\": \"sha512-P+XLcLxH23dwDJgPr571vUL79n++pHweCaCa5XocyxEt9YqdV627F6TCM\u002F\u002F2zoUbGw\u002FJnT94F8kSJ7\u002FijcUSIg==\",\n \"dev\": true,\n \"requires\": {\n \"@types\u002Freact\": \"*\",\n \"@types\u002Freact-window\": \"*\"\n }\n },\n \"@types\u002Fstack-utils\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fstack-utils\u002F-\u002Fstack-utils-1.0.1.tgz\",\n \"integrity\": \"sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==\",\n \"dev\": true\n },\n \"@types\u002Fstyled-components\": {\n \"version\": \"5.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fstyled-components\u002F-\u002Fstyled-components-5.1.4.tgz\",\n \"integrity\": \"sha512-78f5Zuy0v\u002FLTQNOYfpH+CINHpchzMMmAt9amY2YNtSgsk1TmlKm8L2Wijss\u002FmtTrsUAVTm2CdGB8VOM65vA8xg==\",\n \"dev\": true,\n \"requires\": {\n \"@types\u002Fhoist-non-react-statics\": \"*\",\n \"@types\u002Freact\": \"*\",\n \"@types\u002Freact-native\": \"*\",\n \"csstype\": \"^3.0.2\"\n }\n },\n \"@types\u002Fyargs\": {\n \"version\": \"15.0.9\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fyargs\u002F-\u002Fyargs-15.0.9.tgz\",\n \"integrity\": \"sha512-HmU8SeIRhZCWcnRskCs36Q1Q00KBV6Cqh\u002Fora8WN1+22dY07AZdn6Gel8QZ3t26XYPImtcL8WV\u002FeqjhVmMEw4g==\",\n \"dev\": true,\n \"requires\": {\n \"@types\u002Fyargs-parser\": \"*\"\n }\n },\n \"@types\u002Fyargs-parser\": {\n \"version\": \"15.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fyargs-parser\u002F-\u002Fyargs-parser-15.0.0.tgz\",\n \"integrity\": \"sha512-FA\u002FBWv8t8ZWJ+gEOnLLd8ygxH\u002F2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==\",\n \"dev\": true\n },\n \"@typescript-eslint\u002Feslint-plugin\": {\n \"version\": \"2.34.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@typescript-eslint\u002Feslint-plugin\u002F-\u002Feslint-plugin-2.34.0.tgz\",\n \"integrity\": \"sha512-4zY3Z88rEE99+CNvTbXSyovv2z9PNOVffTWD2W8QF5s2prBQtwN2zadqERcrHpcR7O\u002F+KMI3fcTAmUUhK\u002FiQcQ==\",\n \"dev\": true,\n \"requires\": {\n \"@typescript-eslint\u002Fexperimental-utils\": \"2.34.0\",\n \"functional-red-black-tree\": \"^1.0.1\",\n \"regexpp\": \"^3.0.0\",\n \"tsutils\": \"^3.17.1\"\n }\n },\n \"@typescript-eslint\u002Fexperimental-utils\": {\n \"version\": \"2.34.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@typescript-eslint\u002Fexperimental-utils\u002F-\u002Fexperimental-utils-2.34.0.tgz\",\n \"integrity\": \"sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg\u002FnS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA==\",\n \"dev\": true,\n \"requires\": {\n \"@types\u002Fjson-schema\": \"^7.0.3\",\n \"@typescript-eslint\u002Ftypescript-estree\": \"2.34.0\",\n \"eslint-scope\": \"^5.0.0\",\n \"eslint-utils\": \"^2.0.0\"\n }\n },\n \"@typescript-eslint\u002Fparser\": {\n \"version\": \"2.34.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@typescript-eslint\u002Fparser\u002F-\u002Fparser-2.34.0.tgz\",\n \"integrity\": \"sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3\u002FZ3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA==\",\n \"dev\": true,\n \"requires\": {\n \"@types\u002Feslint-visitor-keys\": \"^1.0.0\",\n \"@typescript-eslint\u002Fexperimental-utils\": \"2.34.0\",\n \"@typescript-eslint\u002Ftypescript-estree\": \"2.34.0\",\n \"eslint-visitor-keys\": \"^1.1.0\"\n }\n },\n \"@typescript-eslint\u002Ftypescript-estree\": {\n \"version\": \"2.34.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@typescript-eslint\u002Ftypescript-estree\u002F-\u002Ftypescript-estree-2.34.0.tgz\",\n \"integrity\": \"sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG\u002FFCwnKhXCIM7hnVg==\",\n \"dev\": true,\n \"requires\": {\n \"debug\": \"^4.1.1\",\n \"eslint-visitor-keys\": \"^1.1.0\",\n \"glob\": \"^7.1.6\",\n \"is-glob\": \"^4.0.1\",\n \"lodash\": \"^4.17.15\",\n \"semver\": \"^7.3.2\",\n \"tsutils\": \"^3.17.1\"\n },\n \"dependencies\": {\n \"semver\": {\n \"version\": \"7.3.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsemver\u002F-\u002Fsemver-7.3.2.tgz\",\n \"integrity\": \"sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6\u002F5XpPNp2DuRH6+9QLw\u002Forhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==\",\n \"dev\": true\n }\n }\n },\n \"@webassemblyjs\u002Fast\": {\n \"version\": \"1.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@webassemblyjs\u002Fast\u002F-\u002Fast-1.9.0.tgz\",\n \"integrity\": \"sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN\u002F\u002FYisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH\u002FRJyEA==\",\n \"requires\": {\n \"@webassemblyjs\u002Fhelper-module-context\": \"1.9.0\",\n \"@webassemblyjs\u002Fhelper-wasm-bytecode\": \"1.9.0\",\n \"@webassemblyjs\u002Fwast-parser\": \"1.9.0\"\n }\n },\n \"@webassemblyjs\u002Ffloating-point-hex-parser\": {\n \"version\": \"1.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@webassemblyjs\u002Ffloating-point-hex-parser\u002F-\u002Ffloating-point-hex-parser-1.9.0.tgz\",\n \"integrity\": \"sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey\u002F7YL\u002FxN+36rRjl\u002FBlGE\u002FNcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==\"\n },\n \"@webassemblyjs\u002Fhelper-api-error\": {\n \"version\": \"1.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@webassemblyjs\u002Fhelper-api-error\u002F-\u002Fhelper-api-error-1.9.0.tgz\",\n \"integrity\": \"sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==\"\n },\n \"@webassemblyjs\u002Fhelper-buffer\": {\n \"version\": \"1.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@webassemblyjs\u002Fhelper-buffer\u002F-\u002Fhelper-buffer-1.9.0.tgz\",\n \"integrity\": \"sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e\u002FPpKSiLfyetpaBnogSbNCfBwyB00CA==\"\n },\n \"@webassemblyjs\u002Fhelper-code-frame\": {\n \"version\": \"1.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@webassemblyjs\u002Fhelper-code-frame\u002F-\u002Fhelper-code-frame-1.9.0.tgz\",\n \"integrity\": \"sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq\u002FME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==\",\n \"requires\": {\n \"@webassemblyjs\u002Fwast-printer\": \"1.9.0\"\n }\n },\n \"@webassemblyjs\u002Fhelper-fsm\": {\n \"version\": \"1.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@webassemblyjs\u002Fhelper-fsm\u002F-\u002Fhelper-fsm-1.9.0.tgz\",\n \"integrity\": \"sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH\u002FdWKlk\u002FmzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==\"\n },\n \"@webassemblyjs\u002Fhelper-module-context\": {\n \"version\": \"1.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@webassemblyjs\u002Fhelper-module-context\u002F-\u002Fhelper-module-context-1.9.0.tgz\",\n \"integrity\": \"sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8\u002F7ph\u002FVGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==\",\n \"requires\": {\n \"@webassemblyjs\u002Fast\": \"1.9.0\"\n }\n },\n \"@webassemblyjs\u002Fhelper-wasm-bytecode\": {\n \"version\": \"1.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@webassemblyjs\u002Fhelper-wasm-bytecode\u002F-\u002Fhelper-wasm-bytecode-1.9.0.tgz\",\n \"integrity\": \"sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId\u002FhMOd20I+v8wDXEn+bjfKDLzTepoaUw==\"\n },\n \"@webassemblyjs\u002Fhelper-wasm-section\": {\n \"version\": \"1.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@webassemblyjs\u002Fhelper-wasm-section\u002F-\u002Fhelper-wasm-section-1.9.0.tgz\",\n \"integrity\": \"sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==\",\n \"requires\": {\n \"@webassemblyjs\u002Fast\": \"1.9.0\",\n \"@webassemblyjs\u002Fhelper-buffer\": \"1.9.0\",\n \"@webassemblyjs\u002Fhelper-wasm-bytecode\": \"1.9.0\",\n \"@webassemblyjs\u002Fwasm-gen\": \"1.9.0\"\n }\n },\n \"@webassemblyjs\u002Fieee754\": {\n \"version\": \"1.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@webassemblyjs\u002Fieee754\u002F-\u002Fieee754-1.9.0.tgz\",\n \"integrity\": \"sha512-dcX8JuYU\u002FgvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==\",\n \"requires\": {\n \"@xtuc\u002Fieee754\": \"^1.2.0\"\n }\n },\n \"@webassemblyjs\u002Fleb128\": {\n \"version\": \"1.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@webassemblyjs\u002Fleb128\u002F-\u002Fleb128-1.9.0.tgz\",\n \"integrity\": \"sha512-ENVzM5VwV1ojs9jam6vPys97B\u002FS65YQtv\u002FaanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==\",\n \"requires\": {\n \"@xtuc\u002Flong\": \"4.2.2\"\n }\n },\n \"@webassemblyjs\u002Futf8\": {\n \"version\": \"1.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@webassemblyjs\u002Futf8\u002F-\u002Futf8-1.9.0.tgz\",\n \"integrity\": \"sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge\u002FMf+csMJAjEdSwhOyLAS0AoR3AG5P8w==\"\n },\n \"@webassemblyjs\u002Fwasm-edit\": {\n \"version\": \"1.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@webassemblyjs\u002Fwasm-edit\u002F-\u002Fwasm-edit-1.9.0.tgz\",\n \"integrity\": \"sha512-FgHzBm80uwz5M8WKnMTn6j\u002FsVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==\",\n \"requires\": {\n \"@webassemblyjs\u002Fast\": \"1.9.0\",\n \"@webassemblyjs\u002Fhelper-buffer\": \"1.9.0\",\n \"@webassemblyjs\u002Fhelper-wasm-bytecode\": \"1.9.0\",\n \"@webassemblyjs\u002Fhelper-wasm-section\": \"1.9.0\",\n \"@webassemblyjs\u002Fwasm-gen\": \"1.9.0\",\n \"@webassemblyjs\u002Fwasm-opt\": \"1.9.0\",\n \"@webassemblyjs\u002Fwasm-parser\": \"1.9.0\",\n \"@webassemblyjs\u002Fwast-printer\": \"1.9.0\"\n }\n },\n \"@webassemblyjs\u002Fwasm-gen\": {\n \"version\": \"1.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@webassemblyjs\u002Fwasm-gen\u002F-\u002Fwasm-gen-1.9.0.tgz\",\n \"integrity\": \"sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO\u002FBHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==\",\n \"requires\": {\n \"@webassemblyjs\u002Fast\": \"1.9.0\",\n \"@webassemblyjs\u002Fhelper-wasm-bytecode\": \"1.9.0\",\n \"@webassemblyjs\u002Fieee754\": \"1.9.0\",\n \"@webassemblyjs\u002Fleb128\": \"1.9.0\",\n \"@webassemblyjs\u002Futf8\": \"1.9.0\"\n }\n },\n \"@webassemblyjs\u002Fwasm-opt\": {\n \"version\": \"1.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@webassemblyjs\u002Fwasm-opt\u002F-\u002Fwasm-opt-1.9.0.tgz\",\n \"integrity\": \"sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP\u002FFwkl2A==\",\n \"requires\": {\n \"@webassemblyjs\u002Fast\": \"1.9.0\",\n \"@webassemblyjs\u002Fhelper-buffer\": \"1.9.0\",\n \"@webassemblyjs\u002Fwasm-gen\": \"1.9.0\",\n \"@webassemblyjs\u002Fwasm-parser\": \"1.9.0\"\n }\n },\n \"@webassemblyjs\u002Fwasm-parser\": {\n \"version\": \"1.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@webassemblyjs\u002Fwasm-parser\u002F-\u002Fwasm-parser-1.9.0.tgz\",\n \"integrity\": \"sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==\",\n \"requires\": {\n \"@webassemblyjs\u002Fast\": \"1.9.0\",\n \"@webassemblyjs\u002Fhelper-api-error\": \"1.9.0\",\n \"@webassemblyjs\u002Fhelper-wasm-bytecode\": \"1.9.0\",\n \"@webassemblyjs\u002Fieee754\": \"1.9.0\",\n \"@webassemblyjs\u002Fleb128\": \"1.9.0\",\n \"@webassemblyjs\u002Futf8\": \"1.9.0\"\n }\n },\n \"@webassemblyjs\u002Fwast-parser\": {\n \"version\": \"1.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@webassemblyjs\u002Fwast-parser\u002F-\u002Fwast-parser-1.9.0.tgz\",\n \"integrity\": \"sha512-qsqSAP3QQ3LyZjNC\u002F0jBJ\u002FToSxfYJ8kYyuiGvtn\u002F8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==\",\n \"requires\": {\n \"@webassemblyjs\u002Fast\": \"1.9.0\",\n \"@webassemblyjs\u002Ffloating-point-hex-parser\": \"1.9.0\",\n \"@webassemblyjs\u002Fhelper-api-error\": \"1.9.0\",\n \"@webassemblyjs\u002Fhelper-code-frame\": \"1.9.0\",\n \"@webassemblyjs\u002Fhelper-fsm\": \"1.9.0\",\n \"@xtuc\u002Flong\": \"4.2.2\"\n }\n },\n \"@webassemblyjs\u002Fwast-printer\": {\n \"version\": \"1.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@webassemblyjs\u002Fwast-printer\u002F-\u002Fwast-printer-1.9.0.tgz\",\n \"integrity\": \"sha512-2J0nE95rHXHyQ24cWjMKJ1tqB\u002Fds8z\u002FcyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==\",\n \"requires\": {\n \"@webassemblyjs\u002Fast\": \"1.9.0\",\n \"@webassemblyjs\u002Fwast-parser\": \"1.9.0\",\n \"@xtuc\u002Flong\": \"4.2.2\"\n }\n },\n \"@xtuc\u002Fieee754\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@xtuc\u002Fieee754\u002F-\u002Fieee754-1.2.0.tgz\",\n \"integrity\": \"sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT\u002FMIYTOTPeA==\"\n },\n \"@xtuc\u002Flong\": {\n \"version\": \"4.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@xtuc\u002Flong\u002F-\u002Flong-4.2.2.tgz\",\n \"integrity\": \"sha512-NuHqBY1PB\u002FD8xU6s\u002FthBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN\u002FYPhktdIoucipkAQ==\"\n },\n \"abab\": {\n \"version\": \"2.0.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fabab\u002F-\u002Fabab-2.0.5.tgz\",\n \"integrity\": \"sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M\u002FJwmUa8idz6Eci6eKfJryPs6Q==\",\n \"dev\": true\n },\n \"abort-controller\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fabort-controller\u002F-\u002Fabort-controller-3.0.0.tgz\",\n \"integrity\": \"sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5\u002F+l06Au2Pcriv\u002FGmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==\",\n \"requires\": {\n \"event-target-shim\": \"^5.0.0\"\n }\n },\n \"acorn\": {\n \"version\": \"7.4.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Facorn\u002F-\u002Facorn-7.4.1.tgz\",\n \"integrity\": \"sha512-nQyp0o1\u002FmNdbTO1PO6kHkwSrmgZ0MT\u002FjCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==\",\n \"dev\": true\n },\n \"acorn-globals\": {\n \"version\": \"4.3.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Facorn-globals\u002F-\u002Facorn-globals-4.3.4.tgz\",\n \"integrity\": \"sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==\",\n \"dev\": true,\n \"requires\": {\n \"acorn\": \"^6.0.1\",\n \"acorn-walk\": \"^6.0.1\"\n },\n \"dependencies\": {\n \"acorn\": {\n \"version\": \"6.4.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Facorn\u002F-\u002Facorn-6.4.2.tgz\",\n \"integrity\": \"sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh\u002F7+gfDBmHCQ==\",\n \"dev\": true\n }\n }\n },\n \"acorn-jsx\": {\n \"version\": \"5.3.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Facorn-jsx\u002F-\u002Facorn-jsx-5.3.1.tgz\",\n \"integrity\": \"sha512-K0Ptm\u002F47OKfQRpNQ2J\u002FoIN\u002F3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg\u002Fg+zi1E+jvJha5ng==\",\n \"dev\": true\n },\n \"acorn-walk\": {\n \"version\": \"6.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Facorn-walk\u002F-\u002Facorn-walk-6.2.0.tgz\",\n \"integrity\": \"sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe\u002F\u002FvS0QqfqqjCS2JkiIs0cA==\",\n \"dev\": true\n },\n \"adjust-sourcemap-loader\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fadjust-sourcemap-loader\u002F-\u002Fadjust-sourcemap-loader-3.0.0.tgz\",\n \"integrity\": \"sha512-YBrGyT2\u002FuVQ\u002Fc6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E\u002Fri63RYyG1IacMZtqw==\",\n \"requires\": {\n \"loader-utils\": \"^2.0.0\",\n \"regex-parser\": \"^2.2.11\"\n }\n },\n \"agent-base\": {\n \"version\": \"6.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fagent-base\u002F-\u002Fagent-base-6.0.2.tgz\",\n \"integrity\": \"sha512-RZNwNclF7+MS\u002F8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==\",\n \"requires\": {\n \"debug\": \"4\"\n }\n },\n \"aggregate-error\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Faggregate-error\u002F-\u002Faggregate-error-3.1.0.tgz\",\n \"integrity\": \"sha512-4I7Td01quW\u002FRpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==\",\n \"dev\": true,\n \"requires\": {\n \"clean-stack\": \"^2.0.0\",\n \"indent-string\": \"^4.0.0\"\n }\n },\n \"ajv\": {\n \"version\": \"6.12.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fajv\u002F-\u002Fajv-6.12.6.tgz\",\n \"integrity\": \"sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==\",\n \"requires\": {\n \"fast-deep-equal\": \"^3.1.1\",\n \"fast-json-stable-stringify\": \"^2.0.0\",\n \"json-schema-traverse\": \"^0.4.1\",\n \"uri-js\": \"^4.2.2\"\n }\n },\n \"ajv-errors\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fajv-errors\u002F-\u002Fajv-errors-1.0.1.tgz\",\n \"integrity\": \"sha512-DCRfO\u002F4nQ+89p\u002FRK43i8Ezd41EqdGIU4ld7nGF8OQ14oc\u002Fwe5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==\"\n },\n \"ajv-keywords\": {\n \"version\": \"3.5.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fajv-keywords\u002F-\u002Fajv-keywords-3.5.2.tgz\",\n \"integrity\": \"sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq\u002F3hvfwd1aof6L386Ougkx6RfyMIQ==\"\n },\n \"ally.js\": {\n \"version\": \"1.4.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fally.js\u002F-\u002Fally.js-1.4.1.tgz\",\n \"integrity\": \"sha1-n7fmuljvrE7pExyymqnuO1QLzx4=\",\n \"requires\": {\n \"css.escape\": \"^1.5.0\",\n \"platform\": \"1.3.3\"\n }\n },\n \"anser\": {\n \"version\": \"1.4.9\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fanser\u002F-\u002Fanser-1.4.9.tgz\",\n \"integrity\": \"sha512-AI+BjTeGt2+WFk4eWcqbQ7snZpDBt8SaLlj0RT2h5xfdWaiy51OjYvqwMrNzJLGy8iOAL6nKDITWO+rd4MkYEA==\"\n },\n \"ansi-colors\": {\n \"version\": \"4.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-colors\u002F-\u002Fansi-colors-4.1.1.tgz\",\n \"integrity\": \"sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666\u002FhhCGKN5t9QFjbJQKUU\u002Fg8MNbFDbvfrgKXvI1QpZplPOnwIo99lX\u002FAAmA==\",\n \"dev\": true\n },\n \"ansi-escapes\": {\n \"version\": \"4.3.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-escapes\u002F-\u002Fansi-escapes-4.3.1.tgz\",\n \"integrity\": \"sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly\u002FLmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==\",\n \"dev\": true,\n \"requires\": {\n \"type-fest\": \"^0.11.0\"\n }\n },\n \"ansi-regex\": {\n \"version\": \"5.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-regex\u002F-\u002Fansi-regex-5.0.0.tgz\",\n \"integrity\": \"sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f\u002Flg==\"\n },\n \"ansi-styles\": {\n \"version\": \"3.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-3.2.1.tgz\",\n \"integrity\": \"sha512-VT0ZI6kZRdTh8YyJw3SMbYm\u002Fu+NqfsAxEpWO0Pf9sq8\u002Fe94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==\",\n \"requires\": {\n \"color-convert\": \"^1.9.0\"\n }\n },\n \"anymatch\": {\n \"version\": \"3.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fanymatch\u002F-\u002Fanymatch-3.1.1.tgz\",\n \"integrity\": \"sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==\",\n \"requires\": {\n \"normalize-path\": \"^3.0.0\",\n \"picomatch\": \"^2.0.4\"\n }\n },\n \"aproba\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Faproba\u002F-\u002Faproba-1.2.0.tgz\",\n \"integrity\": \"sha512-Y9J6ZjXtoYh8RnXVCMOU\u002FttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==\"\n },\n \"are-we-there-yet\": {\n \"version\": \"1.1.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fare-we-there-yet\u002F-\u002Fare-we-there-yet-1.1.5.tgz\",\n \"integrity\": \"sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q\u002FgYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==\",\n \"optional\": true,\n \"requires\": {\n \"delegates\": \"^1.0.0\",\n \"readable-stream\": \"^2.0.6\"\n },\n \"dependencies\": {\n \"readable-stream\": {\n \"version\": \"2.3.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freadable-stream\u002F-\u002Freadable-stream-2.3.7.tgz\",\n \"integrity\": \"sha512-Ebho8K4jIbHAxnuxi7o42OrZgF\u002FZTNcsZj6nRKyUmkhLFq8CHItp\u002Ffy6hQZuZmP\u002Fn3yZ9VBUbp4zz\u002FmX8hmYPw==\",\n \"optional\": true,\n \"requires\": {\n \"core-util-is\": \"~1.0.0\",\n \"inherits\": \"~2.0.3\",\n \"isarray\": \"~1.0.0\",\n \"process-nextick-args\": \"~2.0.0\",\n \"safe-buffer\": \"~5.1.1\",\n \"string_decoder\": \"~1.1.1\",\n \"util-deprecate\": \"~1.0.1\"\n }\n },\n \"string_decoder\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring_decoder\u002F-\u002Fstring_decoder-1.1.1.tgz\",\n \"integrity\": \"sha512-n\u002FShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP\u002FmzRfwg==\",\n \"optional\": true,\n \"requires\": {\n \"safe-buffer\": \"~5.1.0\"\n }\n }\n }\n },\n \"argparse\": {\n \"version\": \"1.0.10\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fargparse\u002F-\u002Fargparse-1.0.10.tgz\",\n \"integrity\": \"sha512-o5Roy6tNG4SL\u002FFOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==\",\n \"dev\": true,\n \"requires\": {\n \"sprintf-js\": \"~1.0.2\"\n }\n },\n \"aria-query\": {\n \"version\": \"4.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Faria-query\u002F-\u002Faria-query-4.2.2.tgz\",\n \"integrity\": \"sha512-o\u002FHelwhuKpTj\u002FfrsOsbNLNgnNGVIFsVP\u002FSW2BSF14gVl7kAfMOJ6\u002F8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fruntime\": \"^7.10.2\",\n \"@babel\u002Fruntime-corejs3\": \"^7.10.2\"\n }\n },\n \"arity-n\": {\n \"version\": \"1.0.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Farity-n\u002F-\u002Farity-n-1.0.4.tgz\",\n \"integrity\": \"sha1-2edrEXM+CFacCEeuezmyhgswt0U=\"\n },\n \"arr-diff\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Farr-diff\u002F-\u002Farr-diff-4.0.0.tgz\",\n \"integrity\": \"sha1-1kYQdP6\u002F7HHn4VI1dhoyml3HxSA=\"\n },\n \"arr-flatten\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Farr-flatten\u002F-\u002Farr-flatten-1.1.0.tgz\",\n \"integrity\": \"sha512-L3hKV5R\u002Fp5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==\"\n },\n \"arr-union\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Farr-union\u002F-\u002Farr-union-3.1.0.tgz\",\n \"integrity\": \"sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=\"\n },\n \"array-equal\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Farray-equal\u002F-\u002Farray-equal-1.0.0.tgz\",\n \"integrity\": \"sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=\",\n \"dev\": true\n },\n \"array-includes\": {\n \"version\": \"3.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Farray-includes\u002F-\u002Farray-includes-3.1.1.tgz\",\n \"integrity\": \"sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H\u002FXwdg+7fv3n2r\u002FisyS8EBj5b06M9kHyZuIr4El6WQ==\",\n \"dev\": true,\n \"requires\": {\n \"define-properties\": \"^1.1.3\",\n \"es-abstract\": \"^1.17.0\",\n \"is-string\": \"^1.0.5\"\n }\n },\n \"array-unique\": {\n \"version\": \"0.3.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Farray-unique\u002F-\u002Farray-unique-0.3.2.tgz\",\n \"integrity\": \"sha1-qJS3XUvE9s1nnvMkSp\u002FY9Gri1Cg=\"\n },\n \"array.prototype.flatmap\": {\n \"version\": \"1.2.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Farray.prototype.flatmap\u002F-\u002Farray.prototype.flatmap-1.2.3.tgz\",\n \"integrity\": \"sha512-OOEk+lkePcg+ODXIpvuU9PAryCikCJyo7GlDG1upleEpQRx6mzL9puEBkozQ5iAx20KV0l3DbyQwqciJtqe5Pg==\",\n \"dev\": true,\n \"requires\": {\n \"define-properties\": \"^1.1.3\",\n \"es-abstract\": \"^1.17.0-next.1\",\n \"function-bind\": \"^1.1.1\"\n }\n },\n \"asn1\": {\n \"version\": \"0.2.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fasn1\u002F-\u002Fasn1-0.2.4.tgz\",\n \"integrity\": \"sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7\u002FkyEyQEagBC5mBEFlIYvdg==\",\n \"dev\": true,\n \"requires\": {\n \"safer-buffer\": \"~2.1.0\"\n }\n },\n \"asn1.js\": {\n \"version\": \"5.4.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fasn1.js\u002F-\u002Fasn1.js-5.4.1.tgz\",\n \"integrity\": \"sha512-+I\u002F\u002F4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx\u002FUdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==\",\n \"requires\": {\n \"bn.js\": \"^4.0.0\",\n \"inherits\": \"^2.0.1\",\n \"minimalistic-assert\": \"^1.0.0\",\n \"safer-buffer\": \"^2.1.0\"\n },\n \"dependencies\": {\n \"bn.js\": {\n \"version\": \"4.11.9\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbn.js\u002F-\u002Fbn.js-4.11.9.tgz\",\n \"integrity\": \"sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==\"\n }\n }\n },\n \"assert\": {\n \"version\": \"1.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fassert\u002F-\u002Fassert-1.5.0.tgz\",\n \"integrity\": \"sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM\u002F3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==\",\n \"requires\": {\n \"object-assign\": \"^4.1.1\",\n \"util\": \"0.10.3\"\n },\n \"dependencies\": {\n \"inherits\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Finherits\u002F-\u002Finherits-2.0.1.tgz\",\n \"integrity\": \"sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=\"\n },\n \"util\": {\n \"version\": \"0.10.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Futil\u002F-\u002Futil-0.10.3.tgz\",\n \"integrity\": \"sha1-evsa\u002FlCAUkZInj23\u002Fg7TeTNqwPk=\",\n \"requires\": {\n \"inherits\": \"2.0.1\"\n }\n }\n }\n },\n \"assert-plus\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fassert-plus\u002F-\u002Fassert-plus-1.0.0.tgz\",\n \"integrity\": \"sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=\",\n \"dev\": true\n },\n \"assign-symbols\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fassign-symbols\u002F-\u002Fassign-symbols-1.0.0.tgz\",\n \"integrity\": \"sha1-WWZ\u002FQfrdTyDMvCu5a41Pf3jsA2c=\"\n },\n \"ast-types\": {\n \"version\": \"0.13.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fast-types\u002F-\u002Fast-types-0.13.2.tgz\",\n \"integrity\": \"sha512-uWMHxJxtfj\u002F1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA==\"\n },\n \"astral-regex\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fastral-regex\u002F-\u002Fastral-regex-2.0.0.tgz\",\n \"integrity\": \"sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==\",\n \"dev\": true\n },\n \"async-each\": {\n \"version\": \"1.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fasync-each\u002F-\u002Fasync-each-1.0.3.tgz\",\n \"integrity\": \"sha512-z\u002FWhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7\u002FuSckMetoRGb5UBZPC1z0jlw+n\u002FXCgjeH7y1AQ==\",\n \"optional\": true\n },\n \"asynckit\": {\n \"version\": \"0.4.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fasynckit\u002F-\u002Fasynckit-0.4.0.tgz\",\n \"integrity\": \"sha1-x57Zf380y48robyXkLzDZkdLS3k=\",\n \"dev\": true\n },\n \"atob\": {\n \"version\": \"2.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fatob\u002F-\u002Fatob-2.1.2.tgz\",\n \"integrity\": \"sha512-Wm6ukoaOGJi\u002F73p\u002Fcl2GvLjTI5JM1k\u002FO14isD73YML8StrH\u002F7\u002FlRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==\"\n },\n \"aws-sign2\": {\n \"version\": \"0.7.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Faws-sign2\u002F-\u002Faws-sign2-0.7.0.tgz\",\n \"integrity\": \"sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=\",\n \"dev\": true\n },\n \"aws4\": {\n \"version\": \"1.11.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Faws4\u002F-\u002Faws4-1.11.0.tgz\",\n \"integrity\": \"sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==\",\n \"dev\": true\n },\n \"babel-jest\": {\n \"version\": \"25.5.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbabel-jest\u002F-\u002Fbabel-jest-25.5.1.tgz\",\n \"integrity\": \"sha512-9dA9+GmMjIzgPnYtkhBg73gOo\u002FRHqPmLruP3BaGL4KEX3Dwz6pI8auSN8G8+iuEG90+GSswyKvslN+JYSaacaQ==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftransform\": \"^25.5.1\",\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"@types\u002Fbabel__core\": \"^7.1.7\",\n \"babel-plugin-istanbul\": \"^6.0.0\",\n \"babel-preset-jest\": \"^25.5.0\",\n \"chalk\": \"^3.0.0\",\n \"graceful-fs\": \"^4.2.4\",\n \"slash\": \"^3.0.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"babel-plugin-istanbul\": {\n \"version\": \"6.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbabel-plugin-istanbul\u002F-\u002Fbabel-plugin-istanbul-6.0.0.tgz\",\n \"integrity\": \"sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE\u002FQtHmqtP8SWlTENqbK8GCSQ==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fhelper-plugin-utils\": \"^7.0.0\",\n \"@istanbuljs\u002Fload-nyc-config\": \"^1.0.0\",\n \"@istanbuljs\u002Fschema\": \"^0.1.2\",\n \"istanbul-lib-instrument\": \"^4.0.0\",\n \"test-exclude\": \"^6.0.0\"\n }\n },\n \"babel-plugin-jest-hoist\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbabel-plugin-jest-hoist\u002F-\u002Fbabel-plugin-jest-hoist-25.5.0.tgz\",\n \"integrity\": \"sha512-u+\u002FW+WAjMlvoocYGTwthAiQSxDcJAyHpQ6oWlHdFZaaN+Rlk8Q7iiwDPg2lN\u002FFyJtAYnKjFxbn7xus4HCFkg5g==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Ftemplate\": \"^7.3.3\",\n \"@babel\u002Ftypes\": \"^7.3.3\",\n \"@types\u002Fbabel__traverse\": \"^7.0.6\"\n }\n },\n \"babel-plugin-styled-components\": {\n \"version\": \"1.11.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbabel-plugin-styled-components\u002F-\u002Fbabel-plugin-styled-components-1.11.1.tgz\",\n \"integrity\": \"sha512-YwrInHyKUk1PU3avIRdiLyCpM++18Rs1NgyMXEAQC33rIXs\u002Fvro0A+stf4sT0Gf22Got+xRWB8Cm0tw+qkRzBA==\",\n \"requires\": {\n \"@babel\u002Fhelper-annotate-as-pure\": \"^7.0.0\",\n \"@babel\u002Fhelper-module-imports\": \"^7.0.0\",\n \"babel-plugin-syntax-jsx\": \"^6.18.0\",\n \"lodash\": \"^4.17.11\"\n }\n },\n \"babel-plugin-syntax-jsx\": {\n \"version\": \"6.18.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbabel-plugin-syntax-jsx\u002F-\u002Fbabel-plugin-syntax-jsx-6.18.0.tgz\",\n \"integrity\": \"sha1-CvMqmm4Tyno\u002F1QaeYtew9Y0NiUY=\"\n },\n \"babel-plugin-transform-define\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbabel-plugin-transform-define\u002F-\u002Fbabel-plugin-transform-define-2.0.0.tgz\",\n \"integrity\": \"sha512-0dv5RNRUlUKxGYIIErl01lpvi8b7W2R04Qcl1mCj70ahwZcgiklfXnFlh4FGnRh6aayCfSZKdhiMryVzcq5Dmg==\",\n \"requires\": {\n \"lodash\": \"^4.17.11\",\n \"traverse\": \"0.6.6\"\n }\n },\n \"babel-plugin-transform-react-remove-prop-types\": {\n \"version\": \"0.4.24\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbabel-plugin-transform-react-remove-prop-types\u002F-\u002Fbabel-plugin-transform-react-remove-prop-types-0.4.24.tgz\",\n \"integrity\": \"sha512-eqj0hVcJUR57\u002FUg2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd\u002Fv+4nc4y+8JsA==\"\n },\n \"babel-preset-current-node-syntax\": {\n \"version\": \"0.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbabel-preset-current-node-syntax\u002F-\u002Fbabel-preset-current-node-syntax-0.1.4.tgz\",\n \"integrity\": \"sha512-5\u002FINNCYhUGqw7VbVjT\u002Fhb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ\u002Fh+h16ECVB38R\u002F9SF6aACydpKMLZ\u002Fc9w==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fplugin-syntax-async-generators\": \"^7.8.4\",\n \"@babel\u002Fplugin-syntax-bigint\": \"^7.8.3\",\n \"@babel\u002Fplugin-syntax-class-properties\": \"^7.8.3\",\n \"@babel\u002Fplugin-syntax-import-meta\": \"^7.8.3\",\n \"@babel\u002Fplugin-syntax-json-strings\": \"^7.8.3\",\n \"@babel\u002Fplugin-syntax-logical-assignment-operators\": \"^7.8.3\",\n \"@babel\u002Fplugin-syntax-nullish-coalescing-operator\": \"^7.8.3\",\n \"@babel\u002Fplugin-syntax-numeric-separator\": \"^7.8.3\",\n \"@babel\u002Fplugin-syntax-object-rest-spread\": \"^7.8.3\",\n \"@babel\u002Fplugin-syntax-optional-catch-binding\": \"^7.8.3\",\n \"@babel\u002Fplugin-syntax-optional-chaining\": \"^7.8.3\"\n }\n },\n \"babel-preset-jest\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbabel-preset-jest\u002F-\u002Fbabel-preset-jest-25.5.0.tgz\",\n \"integrity\": \"sha512-8ZczygctQkBU+63DtSOKGh7tFL0CeCuz+1ieud9lJ1WPQ9O6A1a\u002Fr+LGn6Y705PA6whHQ3T1XuB\u002FPmpfNYf8Fw==\",\n \"dev\": true,\n \"requires\": {\n \"babel-plugin-jest-hoist\": \"^25.5.0\",\n \"babel-preset-current-node-syntax\": \"^0.1.2\"\n }\n },\n \"balanced-match\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbalanced-match\u002F-\u002Fbalanced-match-1.0.0.tgz\",\n \"integrity\": \"sha1-ibTRmasr7kneFk6gK4nORi1xt2c=\"\n },\n \"base\": {\n \"version\": \"0.11.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbase\u002F-\u002Fbase-0.11.2.tgz\",\n \"integrity\": \"sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==\",\n \"requires\": {\n \"cache-base\": \"^1.0.1\",\n \"class-utils\": \"^0.3.5\",\n \"component-emitter\": \"^1.2.1\",\n \"define-property\": \"^1.0.0\",\n \"isobject\": \"^3.0.1\",\n \"mixin-deep\": \"^1.2.0\",\n \"pascalcase\": \"^0.1.1\"\n },\n \"dependencies\": {\n \"define-property\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdefine-property\u002F-\u002Fdefine-property-1.0.0.tgz\",\n \"integrity\": \"sha1-dp66rz9KY6rTr56NMEybvnm\u002FsOY=\",\n \"requires\": {\n \"is-descriptor\": \"^1.0.0\"\n }\n },\n \"isobject\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fisobject\u002F-\u002Fisobject-3.0.1.tgz\",\n \"integrity\": \"sha1-TkMekrEalzFjaqH5yNHMvP2reN8=\"\n }\n }\n },\n \"base64-js\": {\n \"version\": \"1.3.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbase64-js\u002F-\u002Fbase64-js-1.3.1.tgz\",\n \"integrity\": \"sha512-mLQ4i2QO1ytvGWFWmcngKO\u002F\u002FJXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==\"\n },\n \"bcrypt-pbkdf\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbcrypt-pbkdf\u002F-\u002Fbcrypt-pbkdf-1.0.2.tgz\",\n \"integrity\": \"sha1-pDAdOJtqQ\u002Fm2f\u002FPKEaP2Y342Dp4=\",\n \"dev\": true,\n \"requires\": {\n \"tweetnacl\": \"^0.14.3\"\n }\n },\n \"big.js\": {\n \"version\": \"5.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbig.js\u002F-\u002Fbig.js-5.2.2.tgz\",\n \"integrity\": \"sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==\"\n },\n \"binary-extensions\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbinary-extensions\u002F-\u002Fbinary-extensions-2.1.0.tgz\",\n \"integrity\": \"sha512-1Yj8h9Q+QDF5FzhMs\u002Fc9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==\"\n },\n \"bindings\": {\n \"version\": \"1.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbindings\u002F-\u002Fbindings-1.5.0.tgz\",\n \"integrity\": \"sha512-p2q\u002Ft\u002FmhvuOj\u002FUeLlV6566GD\u002Fguowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==\",\n \"optional\": true,\n \"requires\": {\n \"file-uri-to-path\": \"1.0.0\"\n }\n },\n \"bl\": {\n \"version\": \"4.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbl\u002F-\u002Fbl-4.0.3.tgz\",\n \"integrity\": \"sha512-fs4G6\u002FHu4\u002FEE+F75J8DuN\u002F0IpQqNjAdC7aEQv7Qt8MHGUH7Ckv2MwTEEeN9QehD0pfIDkMI1bkHYkKy7xHyKIg==\",\n \"optional\": true,\n \"requires\": {\n \"buffer\": \"^5.5.0\",\n \"inherits\": \"^2.0.4\",\n \"readable-stream\": \"^3.4.0\"\n }\n },\n \"bluebird\": {\n \"version\": \"3.7.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbluebird\u002F-\u002Fbluebird-3.7.2.tgz\",\n \"integrity\": \"sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==\"\n },\n \"bn.js\": {\n \"version\": \"5.1.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbn.js\u002F-\u002Fbn.js-5.1.3.tgz\",\n \"integrity\": \"sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==\"\n },\n \"brace-expansion\": {\n \"version\": \"1.1.11\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbrace-expansion\u002F-\u002Fbrace-expansion-1.1.11.tgz\",\n \"integrity\": \"sha512-iCuPHDFgrHX7H2vEI\u002F5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==\",\n \"requires\": {\n \"balanced-match\": \"^1.0.0\",\n \"concat-map\": \"0.0.1\"\n }\n },\n \"braces\": {\n \"version\": \"3.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbraces\u002F-\u002Fbraces-3.0.2.tgz\",\n \"integrity\": \"sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==\",\n \"requires\": {\n \"fill-range\": \"^7.0.1\"\n }\n },\n \"brorand\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbrorand\u002F-\u002Fbrorand-1.1.0.tgz\",\n \"integrity\": \"sha1-EsJe\u002FkCkXjwyPrhnWgoM5XsiNx8=\"\n },\n \"browser-process-hrtime\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbrowser-process-hrtime\u002F-\u002Fbrowser-process-hrtime-1.0.0.tgz\",\n \"integrity\": \"sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==\",\n \"dev\": true\n },\n \"browser-resolve\": {\n \"version\": \"1.11.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbrowser-resolve\u002F-\u002Fbrowser-resolve-1.11.3.tgz\",\n \"integrity\": \"sha512-exDi1BYWB\u002F6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK\u002FQfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==\",\n \"dev\": true,\n \"requires\": {\n \"resolve\": \"1.1.7\"\n },\n \"dependencies\": {\n \"resolve\": {\n \"version\": \"1.1.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fresolve\u002F-\u002Fresolve-1.1.7.tgz\",\n \"integrity\": \"sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=\",\n \"dev\": true\n }\n }\n },\n \"browserify-aes\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbrowserify-aes\u002F-\u002Fbrowserify-aes-1.2.0.tgz\",\n \"integrity\": \"sha512-+7CHXqGuspUn\u002FSl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc\u002Fuzk5zSOI3H52CYnjCfb5hA==\",\n \"requires\": {\n \"buffer-xor\": \"^1.0.3\",\n \"cipher-base\": \"^1.0.0\",\n \"create-hash\": \"^1.1.0\",\n \"evp_bytestokey\": \"^1.0.3\",\n \"inherits\": \"^2.0.1\",\n \"safe-buffer\": \"^5.0.1\"\n }\n },\n \"browserify-cipher\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbrowserify-cipher\u002F-\u002Fbrowserify-cipher-1.0.1.tgz\",\n \"integrity\": \"sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO\u002FmexrNunNECisZs+gw2zz1w==\",\n \"requires\": {\n \"browserify-aes\": \"^1.0.4\",\n \"browserify-des\": \"^1.0.0\",\n \"evp_bytestokey\": \"^1.0.0\"\n }\n },\n \"browserify-des\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbrowserify-des\u002F-\u002Fbrowserify-des-1.0.2.tgz\",\n \"integrity\": \"sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4\u002F0\u002Fvd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==\",\n \"requires\": {\n \"cipher-base\": \"^1.0.1\",\n \"des.js\": \"^1.0.0\",\n \"inherits\": \"^2.0.1\",\n \"safe-buffer\": \"^5.1.2\"\n }\n },\n \"browserify-rsa\": {\n \"version\": \"4.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbrowserify-rsa\u002F-\u002Fbrowserify-rsa-4.0.1.tgz\",\n \"integrity\": \"sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=\",\n \"requires\": {\n \"bn.js\": \"^4.1.0\",\n \"randombytes\": \"^2.0.1\"\n },\n \"dependencies\": {\n \"bn.js\": {\n \"version\": \"4.11.9\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbn.js\u002F-\u002Fbn.js-4.11.9.tgz\",\n \"integrity\": \"sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==\"\n }\n }\n },\n \"browserify-sign\": {\n \"version\": \"4.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbrowserify-sign\u002F-\u002Fbrowserify-sign-4.2.1.tgz\",\n \"integrity\": \"sha512-\u002FvrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu\u002F0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==\",\n \"requires\": {\n \"bn.js\": \"^5.1.1\",\n \"browserify-rsa\": \"^4.0.1\",\n \"create-hash\": \"^1.2.0\",\n \"create-hmac\": \"^1.1.7\",\n \"elliptic\": \"^6.5.3\",\n \"inherits\": \"^2.0.4\",\n \"parse-asn1\": \"^5.1.5\",\n \"readable-stream\": \"^3.6.0\",\n \"safe-buffer\": \"^5.2.0\"\n },\n \"dependencies\": {\n \"safe-buffer\": {\n \"version\": \"5.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsafe-buffer\u002F-\u002Fsafe-buffer-5.2.1.tgz\",\n \"integrity\": \"sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==\"\n }\n }\n },\n \"browserify-zlib\": {\n \"version\": \"0.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbrowserify-zlib\u002F-\u002Fbrowserify-zlib-0.2.0.tgz\",\n \"integrity\": \"sha512-Z942RysHXmJrhqk88FmKBVq\u002Fv5tqmSkDz7p54G\u002FMGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==\",\n \"requires\": {\n \"pako\": \"~1.0.5\"\n }\n },\n \"browserslist\": {\n \"version\": \"4.14.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbrowserslist\u002F-\u002Fbrowserslist-4.14.6.tgz\",\n \"integrity\": \"sha512-zeFYcUo85ENhc\u002FzxHbiIp0LGzzTrE2Pv2JhxvS7kpUb9Q9D38kUX6Bie7pGutJ\u002F5iF5rOxE7CepAuWD56xJ33A==\",\n \"requires\": {\n \"caniuse-lite\": \"^1.0.30001154\",\n \"electron-to-chromium\": \"^1.3.585\",\n \"escalade\": \"^3.1.1\",\n \"node-releases\": \"^1.1.65\"\n }\n },\n \"bser\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbser\u002F-\u002Fbser-2.1.1.tgz\",\n \"integrity\": \"sha512-gQxTNE\u002FGAfIIrmHLUE3oJyp5FO6HRBfhjnw4\u002FwMmA63ZGDJnWBmgY\u002FlyQBpnDUkGmAhbSe39tx2d\u002FiTOAfglwQ==\",\n \"dev\": true,\n \"requires\": {\n \"node-int64\": \"^0.4.0\"\n }\n },\n \"buffer\": {\n \"version\": \"5.6.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbuffer\u002F-\u002Fbuffer-5.6.0.tgz\",\n \"integrity\": \"sha512-\u002FgDYp\u002FUtU0eA1ys8bOs9J6a+E\u002FKWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==\",\n \"requires\": {\n \"base64-js\": \"^1.0.2\",\n \"ieee754\": \"^1.1.4\"\n }\n },\n \"buffer-from\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbuffer-from\u002F-\u002Fbuffer-from-1.1.1.tgz\",\n \"integrity\": \"sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO\u002Fk9V3hjVUF\u002FzwW7KBVdSK4gIt\u002FbzwS9MbR5qob+F5jusZsb0YQK2A==\"\n },\n \"buffer-xor\": {\n \"version\": \"1.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbuffer-xor\u002F-\u002Fbuffer-xor-1.0.3.tgz\",\n \"integrity\": \"sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=\"\n },\n \"builtin-status-codes\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbuiltin-status-codes\u002F-\u002Fbuiltin-status-codes-3.0.0.tgz\",\n \"integrity\": \"sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=\"\n },\n \"bytes\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbytes\u002F-\u002Fbytes-3.1.0.tgz\",\n \"integrity\": \"sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==\"\n },\n \"cacache\": {\n \"version\": \"12.0.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcacache\u002F-\u002Fcacache-12.0.4.tgz\",\n \"integrity\": \"sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO\u002Fu\u002FhIXdafzOI5JC3wDwHyf24buOAQ==\",\n \"requires\": {\n \"bluebird\": \"^3.5.5\",\n \"chownr\": \"^1.1.1\",\n \"figgy-pudding\": \"^3.5.1\",\n \"glob\": \"^7.1.4\",\n \"graceful-fs\": \"^4.1.15\",\n \"infer-owner\": \"^1.0.3\",\n \"lru-cache\": \"^5.1.1\",\n \"mississippi\": \"^3.0.0\",\n \"mkdirp\": \"^0.5.1\",\n \"move-concurrently\": \"^1.0.1\",\n \"promise-inflight\": \"^1.0.1\",\n \"rimraf\": \"^2.6.3\",\n \"ssri\": \"^6.0.1\",\n \"unique-filename\": \"^1.1.1\",\n \"y18n\": \"^4.0.0\"\n },\n \"dependencies\": {\n \"lru-cache\": {\n \"version\": \"5.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Flru-cache\u002F-\u002Flru-cache-5.1.1.tgz\",\n \"integrity\": \"sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk\u002FFviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==\",\n \"requires\": {\n \"yallist\": \"^3.0.2\"\n }\n },\n \"yallist\": {\n \"version\": \"3.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fyallist\u002F-\u002Fyallist-3.1.1.tgz\",\n \"integrity\": \"sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==\"\n }\n }\n },\n \"cache-base\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcache-base\u002F-\u002Fcache-base-1.0.1.tgz\",\n \"integrity\": \"sha512-AKcdTnFSWATd5\u002FGCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==\",\n \"requires\": {\n \"collection-visit\": \"^1.0.0\",\n \"component-emitter\": \"^1.2.1\",\n \"get-value\": \"^2.0.6\",\n \"has-value\": \"^1.0.0\",\n \"isobject\": \"^3.0.1\",\n \"set-value\": \"^2.0.0\",\n \"to-object-path\": \"^0.3.0\",\n \"union-value\": \"^1.0.0\",\n \"unset-value\": \"^1.0.0\"\n },\n \"dependencies\": {\n \"isobject\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fisobject\u002F-\u002Fisobject-3.0.1.tgz\",\n \"integrity\": \"sha1-TkMekrEalzFjaqH5yNHMvP2reN8=\"\n }\n }\n },\n \"call-bind\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcall-bind\u002F-\u002Fcall-bind-1.0.0.tgz\",\n \"integrity\": \"sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w==\",\n \"dev\": true,\n \"requires\": {\n \"function-bind\": \"^1.1.1\",\n \"get-intrinsic\": \"^1.0.0\"\n }\n },\n \"callsites\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcallsites\u002F-\u002Fcallsites-3.1.0.tgz\",\n \"integrity\": \"sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==\",\n \"dev\": true\n },\n \"camelcase\": {\n \"version\": \"5.3.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcamelcase\u002F-\u002Fcamelcase-5.3.1.tgz\",\n \"integrity\": \"sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==\"\n },\n \"camelize\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcamelize\u002F-\u002Fcamelize-1.0.0.tgz\",\n \"integrity\": \"sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=\"\n },\n \"caniuse-lite\": {\n \"version\": \"1.0.30001157\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcaniuse-lite\u002F-\u002Fcaniuse-lite-1.0.30001157.tgz\",\n \"integrity\": \"sha512-gOerH9Wz2IRZ2ZPdMfBvyOi3cjaz4O4dgNwPGzx8EhqAs4+2IL\u002FO+fJsbt+znSigujoZG8bVcIAUM\u002FI\u002FE5K3MA==\"\n },\n \"capture-exit\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcapture-exit\u002F-\u002Fcapture-exit-2.0.0.tgz\",\n \"integrity\": \"sha512-PiT\u002FhQmTonHhl\u002FHFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==\",\n \"dev\": true,\n \"requires\": {\n \"rsvp\": \"^4.8.4\"\n }\n },\n \"caseless\": {\n \"version\": \"0.12.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcaseless\u002F-\u002Fcaseless-0.12.0.tgz\",\n \"integrity\": \"sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=\",\n \"dev\": true\n },\n \"chalk\": {\n \"version\": \"2.4.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-2.4.2.tgz\",\n \"integrity\": \"sha512-Mti+f9lpJNcwF4tWV8\u002FOrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==\",\n \"requires\": {\n \"ansi-styles\": \"^3.2.1\",\n \"escape-string-regexp\": \"^1.0.5\",\n \"supports-color\": \"^5.3.0\"\n }\n },\n \"chardet\": {\n \"version\": \"0.7.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchardet\u002F-\u002Fchardet-0.7.0.tgz\",\n \"integrity\": \"sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0\u002F0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==\",\n \"dev\": true\n },\n \"chokidar\": {\n \"version\": \"3.4.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchokidar\u002F-\u002Fchokidar-3.4.2.tgz\",\n \"integrity\": \"sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A==\",\n \"requires\": {\n \"anymatch\": \"~3.1.1\",\n \"braces\": \"~3.0.2\",\n \"fsevents\": \"~2.1.2\",\n \"glob-parent\": \"~5.1.0\",\n \"is-binary-path\": \"~2.1.0\",\n \"is-glob\": \"~4.0.1\",\n \"normalize-path\": \"~3.0.0\",\n \"readdirp\": \"~3.4.0\"\n },\n \"dependencies\": {\n \"fsevents\": {\n \"version\": \"2.1.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffsevents\u002F-\u002Ffsevents-2.1.3.tgz\",\n \"integrity\": \"sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==\",\n \"optional\": true\n }\n }\n },\n \"chownr\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchownr\u002F-\u002Fchownr-1.1.4.tgz\",\n \"integrity\": \"sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr\u002Fb0YL8\u002F2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==\"\n },\n \"chrome-trace-event\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchrome-trace-event\u002F-\u002Fchrome-trace-event-1.0.2.tgz\",\n \"integrity\": \"sha512-9e\u002Fzx1jw7B4CO+c\u002FRXoCsfg\u002Fx1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==\",\n \"requires\": {\n \"tslib\": \"^1.9.0\"\n }\n },\n \"ci-info\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fci-info\u002F-\u002Fci-info-2.0.0.tgz\",\n \"integrity\": \"sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1\u002FZ8wZzYPxqUrXeBboCQ==\",\n \"dev\": true\n },\n \"cipher-base\": {\n \"version\": \"1.0.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcipher-base\u002F-\u002Fcipher-base-1.0.4.tgz\",\n \"integrity\": \"sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj\u002FT71N\u002FXzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==\",\n \"requires\": {\n \"inherits\": \"^2.0.1\",\n \"safe-buffer\": \"^5.0.1\"\n }\n },\n \"class-utils\": {\n \"version\": \"0.3.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fclass-utils\u002F-\u002Fclass-utils-0.3.6.tgz\",\n \"integrity\": \"sha512-qOhPa\u002FFj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==\",\n \"requires\": {\n \"arr-union\": \"^3.1.0\",\n \"define-property\": \"^0.2.5\",\n \"isobject\": \"^3.0.0\",\n \"static-extend\": \"^0.1.1\"\n },\n \"dependencies\": {\n \"define-property\": {\n \"version\": \"0.2.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdefine-property\u002F-\u002Fdefine-property-0.2.5.tgz\",\n \"integrity\": \"sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=\",\n \"requires\": {\n \"is-descriptor\": \"^0.1.0\"\n }\n },\n \"is-accessor-descriptor\": {\n \"version\": \"0.1.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-accessor-descriptor\u002F-\u002Fis-accessor-descriptor-0.1.6.tgz\",\n \"integrity\": \"sha1-qeEss66Nh2cn7u84Q\u002FigiXtcmNY=\",\n \"requires\": {\n \"kind-of\": \"^3.0.2\"\n },\n \"dependencies\": {\n \"kind-of\": {\n \"version\": \"3.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-3.2.2.tgz\",\n \"integrity\": \"sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=\",\n \"requires\": {\n \"is-buffer\": \"^1.1.5\"\n }\n }\n }\n },\n \"is-data-descriptor\": {\n \"version\": \"0.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-data-descriptor\u002F-\u002Fis-data-descriptor-0.1.4.tgz\",\n \"integrity\": \"sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=\",\n \"requires\": {\n \"kind-of\": \"^3.0.2\"\n },\n \"dependencies\": {\n \"kind-of\": {\n \"version\": \"3.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-3.2.2.tgz\",\n \"integrity\": \"sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=\",\n \"requires\": {\n \"is-buffer\": \"^1.1.5\"\n }\n }\n }\n },\n \"is-descriptor\": {\n \"version\": \"0.1.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-descriptor\u002F-\u002Fis-descriptor-0.1.6.tgz\",\n \"integrity\": \"sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq\u002F4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==\",\n \"requires\": {\n \"is-accessor-descriptor\": \"^0.1.6\",\n \"is-data-descriptor\": \"^0.1.4\",\n \"kind-of\": \"^5.0.0\"\n }\n },\n \"isobject\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fisobject\u002F-\u002Fisobject-3.0.1.tgz\",\n \"integrity\": \"sha1-TkMekrEalzFjaqH5yNHMvP2reN8=\"\n },\n \"kind-of\": {\n \"version\": \"5.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-5.1.0.tgz\",\n \"integrity\": \"sha512-NGEErnH6F2vUuXDh+OlbcKW7\u002FwOcfdRHaZ7VWtqCztfHri\u002F++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==\"\n }\n }\n },\n \"classnames\": {\n \"version\": \"2.2.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fclassnames\u002F-\u002Fclassnames-2.2.6.tgz\",\n \"integrity\": \"sha512-JR\u002FiSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==\"\n },\n \"clean-stack\": {\n \"version\": \"2.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fclean-stack\u002F-\u002Fclean-stack-2.2.0.tgz\",\n \"integrity\": \"sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ\u002FSMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==\",\n \"dev\": true\n },\n \"cli-cursor\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcli-cursor\u002F-\u002Fcli-cursor-3.1.0.tgz\",\n \"integrity\": \"sha512-I\u002FzHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==\",\n \"dev\": true,\n \"requires\": {\n \"restore-cursor\": \"^3.1.0\"\n }\n },\n \"cli-truncate\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcli-truncate\u002F-\u002Fcli-truncate-2.1.0.tgz\",\n \"integrity\": \"sha512-n8fOixwDD6b\u002FObinzTrp1ZKFzbgvKZvuz\u002FTvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==\",\n \"dev\": true,\n \"requires\": {\n \"slice-ansi\": \"^3.0.0\",\n \"string-width\": \"^4.2.0\"\n }\n },\n \"cli-width\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcli-width\u002F-\u002Fcli-width-3.0.0.tgz\",\n \"integrity\": \"sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ\u002FDc\u002FEWN1vZRY0+kOhbw==\",\n \"dev\": true\n },\n \"cliui\": {\n \"version\": \"6.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcliui\u002F-\u002Fcliui-6.0.0.tgz\",\n \"integrity\": \"sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL\u002Fcvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==\",\n \"dev\": true,\n \"requires\": {\n \"string-width\": \"^4.2.0\",\n \"strip-ansi\": \"^6.0.0\",\n \"wrap-ansi\": \"^6.2.0\"\n },\n \"dependencies\": {\n \"strip-ansi\": {\n \"version\": \"6.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstrip-ansi\u002F-\u002Fstrip-ansi-6.0.0.tgz\",\n \"integrity\": \"sha512-AuvKTrTfQNYNIctbR1K\u002FYGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-regex\": \"^5.0.0\"\n }\n }\n }\n },\n \"co\": {\n \"version\": \"4.6.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fco\u002F-\u002Fco-4.6.0.tgz\",\n \"integrity\": \"sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=\",\n \"dev\": true\n },\n \"code-point-at\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcode-point-at\u002F-\u002Fcode-point-at-1.1.0.tgz\",\n \"integrity\": \"sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=\",\n \"optional\": true\n },\n \"collect-v8-coverage\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcollect-v8-coverage\u002F-\u002Fcollect-v8-coverage-1.0.1.tgz\",\n \"integrity\": \"sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==\",\n \"dev\": true\n },\n \"collection-visit\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcollection-visit\u002F-\u002Fcollection-visit-1.0.0.tgz\",\n \"integrity\": \"sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=\",\n \"requires\": {\n \"map-visit\": \"^1.0.0\",\n \"object-visit\": \"^1.0.0\"\n }\n },\n \"color\": {\n \"version\": \"3.1.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor\u002F-\u002Fcolor-3.1.3.tgz\",\n \"integrity\": \"sha512-xgXAcTHa2HeFCGLE9Xs\u002FR82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==\",\n \"optional\": true,\n \"requires\": {\n \"color-convert\": \"^1.9.1\",\n \"color-string\": \"^1.5.4\"\n }\n },\n \"color-convert\": {\n \"version\": \"1.9.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-1.9.3.tgz\",\n \"integrity\": \"sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G\u002FSHHJYAT88\u002Faz\u002FIuDGALsNVbGg==\",\n \"requires\": {\n \"color-name\": \"1.1.3\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.3.tgz\",\n \"integrity\": \"sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=\"\n },\n \"color-string\": {\n \"version\": \"1.5.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-string\u002F-\u002Fcolor-string-1.5.4.tgz\",\n \"integrity\": \"sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN\u002F4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==\",\n \"optional\": true,\n \"requires\": {\n \"color-name\": \"^1.0.0\",\n \"simple-swizzle\": \"^0.2.2\"\n }\n },\n \"colorette\": {\n \"version\": \"1.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolorette\u002F-\u002Fcolorette-1.2.1.tgz\",\n \"integrity\": \"sha512-puCDz0CzydiSYOrnXpz\u002FPKd69zRrribezjtE9yd4zvytoRc8+RY\u002FKJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==\"\n },\n \"combined-stream\": {\n \"version\": \"1.0.8\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcombined-stream\u002F-\u002Fcombined-stream-1.0.8.tgz\",\n \"integrity\": \"sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe\u002F+5cdoEdg==\",\n \"dev\": true,\n \"requires\": {\n \"delayed-stream\": \"~1.0.0\"\n }\n },\n \"commander\": {\n \"version\": \"6.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcommander\u002F-\u002Fcommander-6.2.0.tgz\",\n \"integrity\": \"sha512-zP4jEKbe8SHzKJYQmq8Y9gYjtO\u002FPOJLgIdKgV7B9qNmABVFVc+ctqSX6iXh4mCpJfRBOabiZ2YKPg8ciDw6C+Q==\",\n \"dev\": true\n },\n \"commondir\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcommondir\u002F-\u002Fcommondir-1.0.1.tgz\",\n \"integrity\": \"sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=\"\n },\n \"compare-versions\": {\n \"version\": \"3.6.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcompare-versions\u002F-\u002Fcompare-versions-3.6.0.tgz\",\n \"integrity\": \"sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4\u002F+FlaqfBA==\",\n \"dev\": true\n },\n \"component-emitter\": {\n \"version\": \"1.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcomponent-emitter\u002F-\u002Fcomponent-emitter-1.3.0.tgz\",\n \"integrity\": \"sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0\u002FyYnSin6Q\u002FrD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==\"\n },\n \"compose-function\": {\n \"version\": \"3.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcompose-function\u002F-\u002Fcompose-function-3.0.3.tgz\",\n \"integrity\": \"sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8=\",\n \"requires\": {\n \"arity-n\": \"^1.0.4\"\n }\n },\n \"concat-map\": {\n \"version\": \"0.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fconcat-map\u002F-\u002Fconcat-map-0.0.1.tgz\",\n \"integrity\": \"sha1-2Klr13\u002FWjfd5OnMDajug1UBdR3s=\"\n },\n \"concat-stream\": {\n \"version\": \"1.6.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fconcat-stream\u002F-\u002Fconcat-stream-1.6.2.tgz\",\n \"integrity\": \"sha512-27HBghJxjiZtIk3Ycvn\u002F4kbJk\u002F1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==\",\n \"requires\": {\n \"buffer-from\": \"^1.0.0\",\n \"inherits\": \"^2.0.3\",\n \"readable-stream\": \"^2.2.2\",\n \"typedarray\": \"^0.0.6\"\n },\n \"dependencies\": {\n \"readable-stream\": {\n \"version\": \"2.3.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freadable-stream\u002F-\u002Freadable-stream-2.3.7.tgz\",\n \"integrity\": \"sha512-Ebho8K4jIbHAxnuxi7o42OrZgF\u002FZTNcsZj6nRKyUmkhLFq8CHItp\u002Ffy6hQZuZmP\u002Fn3yZ9VBUbp4zz\u002FmX8hmYPw==\",\n \"requires\": {\n \"core-util-is\": \"~1.0.0\",\n \"inherits\": \"~2.0.3\",\n \"isarray\": \"~1.0.0\",\n \"process-nextick-args\": \"~2.0.0\",\n \"safe-buffer\": \"~5.1.1\",\n \"string_decoder\": \"~1.1.1\",\n \"util-deprecate\": \"~1.0.1\"\n }\n },\n \"string_decoder\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring_decoder\u002F-\u002Fstring_decoder-1.1.1.tgz\",\n \"integrity\": \"sha512-n\u002FShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP\u002FmzRfwg==\",\n \"requires\": {\n \"safe-buffer\": \"~5.1.0\"\n }\n }\n }\n },\n \"console-browserify\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fconsole-browserify\u002F-\u002Fconsole-browserify-1.2.0.tgz\",\n \"integrity\": \"sha512-ZMkYO\u002FLkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==\"\n },\n \"console-control-strings\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fconsole-control-strings\u002F-\u002Fconsole-control-strings-1.1.0.tgz\",\n \"integrity\": \"sha1-PXz0Rk22RG6mRL9LOVB\u002FmFEAjo4=\",\n \"optional\": true\n },\n \"constants-browserify\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fconstants-browserify\u002F-\u002Fconstants-browserify-1.0.0.tgz\",\n \"integrity\": \"sha1-wguW2MYXdIqvHBYCF2DNJ\u002Fy4y3U=\"\n },\n \"convert-source-map\": {\n \"version\": \"1.7.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fconvert-source-map\u002F-\u002Fconvert-source-map-1.7.0.tgz\",\n \"integrity\": \"sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==\",\n \"requires\": {\n \"safe-buffer\": \"~5.1.1\"\n }\n },\n \"copy-concurrently\": {\n \"version\": \"1.0.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcopy-concurrently\u002F-\u002Fcopy-concurrently-1.0.5.tgz\",\n \"integrity\": \"sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB\u002FQ8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T\u002FKTFOL4X2A==\",\n \"requires\": {\n \"aproba\": \"^1.1.1\",\n \"fs-write-stream-atomic\": \"^1.0.8\",\n \"iferr\": \"^0.1.5\",\n \"mkdirp\": \"^0.5.1\",\n \"rimraf\": \"^2.5.4\",\n \"run-queue\": \"^1.0.0\"\n }\n },\n \"copy-descriptor\": {\n \"version\": \"0.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcopy-descriptor\u002F-\u002Fcopy-descriptor-0.1.1.tgz\",\n \"integrity\": \"sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=\"\n },\n \"core-js-pure\": {\n \"version\": \"3.6.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcore-js-pure\u002F-\u002Fcore-js-pure-3.6.5.tgz\",\n \"integrity\": \"sha512-lacdXOimsiD0QyNf9BC\u002FmxivNJ\u002FybBGJXQFKzRekp1WTHoVUWsUHEn+2T8GJAzzIhyOuXA+gOxCVN3l+5PLPUA==\",\n \"dev\": true\n },\n \"core-util-is\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcore-util-is\u002F-\u002Fcore-util-is-1.0.2.tgz\",\n \"integrity\": \"sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=\"\n },\n \"cosmiconfig\": {\n \"version\": \"7.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcosmiconfig\u002F-\u002Fcosmiconfig-7.0.0.tgz\",\n \"integrity\": \"sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==\",\n \"dev\": true,\n \"requires\": {\n \"@types\u002Fparse-json\": \"^4.0.0\",\n \"import-fresh\": \"^3.2.1\",\n \"parse-json\": \"^5.0.0\",\n \"path-type\": \"^4.0.0\",\n \"yaml\": \"^1.10.0\"\n }\n },\n \"create-ecdh\": {\n \"version\": \"4.0.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcreate-ecdh\u002F-\u002Fcreate-ecdh-4.0.4.tgz\",\n \"integrity\": \"sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf\u002FWs0A==\",\n \"requires\": {\n \"bn.js\": \"^4.1.0\",\n \"elliptic\": \"^6.5.3\"\n },\n \"dependencies\": {\n \"bn.js\": {\n \"version\": \"4.11.9\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbn.js\u002F-\u002Fbn.js-4.11.9.tgz\",\n \"integrity\": \"sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==\"\n }\n }\n },\n \"create-hash\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcreate-hash\u002F-\u002Fcreate-hash-1.2.0.tgz\",\n \"integrity\": \"sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq\u002F4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj\u002Fhl2u4OGIjapeCg==\",\n \"requires\": {\n \"cipher-base\": \"^1.0.1\",\n \"inherits\": \"^2.0.1\",\n \"md5.js\": \"^1.3.4\",\n \"ripemd160\": \"^2.0.1\",\n \"sha.js\": \"^2.4.0\"\n }\n },\n \"create-hmac\": {\n \"version\": \"1.1.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcreate-hmac\u002F-\u002Fcreate-hmac-1.1.7.tgz\",\n \"integrity\": \"sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR\u002Fg5h82fGaIRWMWddtKBHi7\u002FsVhfjQZ6SehlyhvQYrcYkaUIpLg==\",\n \"requires\": {\n \"cipher-base\": \"^1.0.3\",\n \"create-hash\": \"^1.1.0\",\n \"inherits\": \"^2.0.1\",\n \"ripemd160\": \"^2.0.0\",\n \"safe-buffer\": \"^5.0.1\",\n \"sha.js\": \"^2.4.8\"\n }\n },\n \"cross-fetch\": {\n \"version\": \"3.0.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcross-fetch\u002F-\u002Fcross-fetch-3.0.5.tgz\",\n \"integrity\": \"sha512-FFLcLtraisj5eteosnX1gf01qYDCOc4fDy0+euOt8Kn9YBY2NtXL\u002FpCoYPavw24NIQkQqm5ZOLsGD5Zzj0gyew==\",\n \"requires\": {\n \"node-fetch\": \"2.6.0\"\n },\n \"dependencies\": {\n \"node-fetch\": {\n \"version\": \"2.6.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnode-fetch\u002F-\u002Fnode-fetch-2.6.0.tgz\",\n \"integrity\": \"sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY\u002FZumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq\u002FTbdOcmNA==\"\n }\n }\n },\n \"cross-spawn\": {\n \"version\": \"6.0.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcross-spawn\u002F-\u002Fcross-spawn-6.0.5.tgz\",\n \"integrity\": \"sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==\",\n \"dev\": true,\n \"requires\": {\n \"nice-try\": \"^1.0.4\",\n \"path-key\": \"^2.0.1\",\n \"semver\": \"^5.5.0\",\n \"shebang-command\": \"^1.2.0\",\n \"which\": \"^1.2.9\"\n }\n },\n \"crypto-browserify\": {\n \"version\": \"3.12.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcrypto-browserify\u002F-\u002Fcrypto-browserify-3.12.0.tgz\",\n \"integrity\": \"sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+\u002FcCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==\",\n \"requires\": {\n \"browserify-cipher\": \"^1.0.0\",\n \"browserify-sign\": \"^4.0.0\",\n \"create-ecdh\": \"^4.0.0\",\n \"create-hash\": \"^1.1.0\",\n \"create-hmac\": \"^1.1.0\",\n \"diffie-hellman\": \"^5.0.0\",\n \"inherits\": \"^2.0.1\",\n \"pbkdf2\": \"^3.0.3\",\n \"public-encrypt\": \"^4.0.0\",\n \"randombytes\": \"^2.0.0\",\n \"randomfill\": \"^1.0.3\"\n }\n },\n \"css\": {\n \"version\": \"2.2.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcss\u002F-\u002Fcss-2.2.4.tgz\",\n \"integrity\": \"sha512-oUnjmWpy0niI3x\u002FmPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==\",\n \"requires\": {\n \"inherits\": \"^2.0.3\",\n \"source-map\": \"^0.6.1\",\n \"source-map-resolve\": \"^0.5.2\",\n \"urix\": \"^0.1.0\"\n },\n \"dependencies\": {\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\"\n }\n }\n },\n \"css-color-keywords\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcss-color-keywords\u002F-\u002Fcss-color-keywords-1.0.0.tgz\",\n \"integrity\": \"sha1-\u002FqJhbcZ2spYmhrOvjb2+GAskTgU=\"\n },\n \"css-loader\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcss-loader\u002F-\u002Fcss-loader-4.3.0.tgz\",\n \"integrity\": \"sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz\u002FmFjuGOekf3PY3NUg==\",\n \"requires\": {\n \"camelcase\": \"^6.0.0\",\n \"cssesc\": \"^3.0.0\",\n \"icss-utils\": \"^4.1.1\",\n \"loader-utils\": \"^2.0.0\",\n \"postcss\": \"^7.0.32\",\n \"postcss-modules-extract-imports\": \"^2.0.0\",\n \"postcss-modules-local-by-default\": \"^3.0.3\",\n \"postcss-modules-scope\": \"^2.2.0\",\n \"postcss-modules-values\": \"^3.0.0\",\n \"postcss-value-parser\": \"^4.1.0\",\n \"schema-utils\": \"^2.7.1\",\n \"semver\": \"^7.3.2\"\n },\n \"dependencies\": {\n \"camelcase\": {\n \"version\": \"6.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcamelcase\u002F-\u002Fcamelcase-6.2.0.tgz\",\n \"integrity\": \"sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN\u002FhdLdnZTDQhg6e9Dq5M1vKvfg==\"\n },\n \"postcss\": {\n \"version\": \"7.0.35\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpostcss\u002F-\u002Fpostcss-7.0.35.tgz\",\n \"integrity\": \"sha512-3QT8bBJeX\u002FS5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==\",\n \"requires\": {\n \"chalk\": \"^2.4.2\",\n \"source-map\": \"^0.6.1\",\n \"supports-color\": \"^6.1.0\"\n }\n },\n \"semver\": {\n \"version\": \"7.3.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsemver\u002F-\u002Fsemver-7.3.2.tgz\",\n \"integrity\": \"sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6\u002F5XpPNp2DuRH6+9QLw\u002Forhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==\"\n },\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\"\n },\n \"supports-color\": {\n \"version\": \"6.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-6.1.0.tgz\",\n \"integrity\": \"sha512-qe1jfm1Mg7Nq\u002FNSh6XE24gPXROEVsWHxC1LIx\u002F\u002FXNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==\",\n \"requires\": {\n \"has-flag\": \"^3.0.0\"\n }\n }\n }\n },\n \"css-to-react-native\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcss-to-react-native\u002F-\u002Fcss-to-react-native-3.0.0.tgz\",\n \"integrity\": \"sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1\u002Fv9eYBKR2EHVEniE2MI\u002FNqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==\",\n \"requires\": {\n \"camelize\": \"^1.0.0\",\n \"css-color-keywords\": \"^1.0.0\",\n \"postcss-value-parser\": \"^4.0.2\"\n }\n },\n \"css.escape\": {\n \"version\": \"1.5.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcss.escape\u002F-\u002Fcss.escape-1.5.1.tgz\",\n \"integrity\": \"sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=\"\n },\n \"cssesc\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcssesc\u002F-\u002Fcssesc-3.0.0.tgz\",\n \"integrity\": \"sha512-\u002FTb\u002FJcjK111nNScGob5MNtsntNM1aCNUDipB\u002FTkwZFhyDrrE47SOx\u002F18wF2bbjgc3ZzCSKW1T5nt5EbFoAz\u002FVg==\"\n },\n \"cssnano-preset-simple\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcssnano-preset-simple\u002F-\u002Fcssnano-preset-simple-1.2.0.tgz\",\n \"integrity\": \"sha512-zojGlY+KasFeQT\u002FSnD\u002FWqYXHcKddz2XHRDtIwxrWpGqGHp5IyLWsWFS3UW7pOf3AWvfkpYSRdxOSlYuJPz8j8g==\",\n \"requires\": {\n \"caniuse-lite\": \"^1.0.30001093\",\n \"postcss\": \"^7.0.32\"\n },\n \"dependencies\": {\n \"postcss\": {\n \"version\": \"7.0.35\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpostcss\u002F-\u002Fpostcss-7.0.35.tgz\",\n \"integrity\": \"sha512-3QT8bBJeX\u002FS5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==\",\n \"requires\": {\n \"chalk\": \"^2.4.2\",\n \"source-map\": \"^0.6.1\",\n \"supports-color\": \"^6.1.0\"\n }\n },\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\"\n },\n \"supports-color\": {\n \"version\": \"6.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-6.1.0.tgz\",\n \"integrity\": \"sha512-qe1jfm1Mg7Nq\u002FNSh6XE24gPXROEVsWHxC1LIx\u002F\u002FXNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==\",\n \"requires\": {\n \"has-flag\": \"^3.0.0\"\n }\n }\n }\n },\n \"cssnano-simple\": {\n \"version\": \"1.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcssnano-simple\u002F-\u002Fcssnano-simple-1.2.1.tgz\",\n \"integrity\": \"sha512-9vOyjw8Dj\u002FT12kIOnXPZ5VnEIo6F3YMaIn0wqJXmn277R58cWpI3AvtdlCBtohX7VAUNYcyk2d0dKcXXkb5I6Q==\",\n \"requires\": {\n \"cssnano-preset-simple\": \"1.2.1\",\n \"postcss\": \"^7.0.32\"\n },\n \"dependencies\": {\n \"cssnano-preset-simple\": {\n \"version\": \"1.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcssnano-preset-simple\u002F-\u002Fcssnano-preset-simple-1.2.1.tgz\",\n \"integrity\": \"sha512-B2KahOIFTV6dw5Ioy9jHshTh\u002FvAYNnUB2enyWRgnAEg3oJBjI\u002F035ExpePaMqS2SwpbH7gCgvQqwpMBH6hTJSw==\",\n \"requires\": {\n \"caniuse-lite\": \"^1.0.30001093\",\n \"postcss\": \"^7.0.32\"\n }\n },\n \"postcss\": {\n \"version\": \"7.0.35\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpostcss\u002F-\u002Fpostcss-7.0.35.tgz\",\n \"integrity\": \"sha512-3QT8bBJeX\u002FS5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==\",\n \"requires\": {\n \"chalk\": \"^2.4.2\",\n \"source-map\": \"^0.6.1\",\n \"supports-color\": \"^6.1.0\"\n }\n },\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\"\n },\n \"supports-color\": {\n \"version\": \"6.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-6.1.0.tgz\",\n \"integrity\": \"sha512-qe1jfm1Mg7Nq\u002FNSh6XE24gPXROEVsWHxC1LIx\u002F\u002FXNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==\",\n \"requires\": {\n \"has-flag\": \"^3.0.0\"\n }\n }\n }\n },\n \"cssom\": {\n \"version\": \"0.4.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcssom\u002F-\u002Fcssom-0.4.4.tgz\",\n \"integrity\": \"sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR\u002FNS6otuzveI7+7BBq3SjBS2mw==\",\n \"dev\": true\n },\n \"cssstyle\": {\n \"version\": \"2.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcssstyle\u002F-\u002Fcssstyle-2.3.0.tgz\",\n \"integrity\": \"sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi\u002F05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==\",\n \"dev\": true,\n \"requires\": {\n \"cssom\": \"~0.3.6\"\n },\n \"dependencies\": {\n \"cssom\": {\n \"version\": \"0.3.8\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcssom\u002F-\u002Fcssom-0.3.8.tgz\",\n \"integrity\": \"sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==\",\n \"dev\": true\n }\n }\n },\n \"csstype\": {\n \"version\": \"3.0.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcsstype\u002F-\u002Fcsstype-3.0.4.tgz\",\n \"integrity\": \"sha512-xc8DUsCLmjvCfoD7LTGE0ou2MIWLx0K9RCZwSHMOdynqRsP4MtUcLeqh1HcQ2dInwDTqn+3CE0\u002FFZh1et+p4jA==\",\n \"dev\": true\n },\n \"cyclist\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcyclist\u002F-\u002Fcyclist-1.0.1.tgz\",\n \"integrity\": \"sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=\"\n },\n \"d\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fd\u002F-\u002Fd-1.0.1.tgz\",\n \"integrity\": \"sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc\u002FF3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==\",\n \"requires\": {\n \"es5-ext\": \"^0.10.50\",\n \"type\": \"^1.0.1\"\n }\n },\n \"dashdash\": {\n \"version\": \"1.14.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdashdash\u002F-\u002Fdashdash-1.14.1.tgz\",\n \"integrity\": \"sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=\",\n \"dev\": true,\n \"requires\": {\n \"assert-plus\": \"^1.0.0\"\n }\n },\n \"data-uri-to-buffer\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdata-uri-to-buffer\u002F-\u002Fdata-uri-to-buffer-3.0.0.tgz\",\n \"integrity\": \"sha512-MJ6mFTZ+nPQO+39ua\u002FltwNePXrfdF3Ww0wP1Od7EePySXN1cP9XNqRQOG3FxTfipp8jx898LUCgBCEP11Qw\u002FZQ==\",\n \"requires\": {\n \"buffer-from\": \"^1.1.1\"\n }\n },\n \"data-urls\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdata-urls\u002F-\u002Fdata-urls-1.1.0.tgz\",\n \"integrity\": \"sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6\u002Ft52odI64KP2YvFpkDOi3eQ==\",\n \"dev\": true,\n \"requires\": {\n \"abab\": \"^2.0.0\",\n \"whatwg-mimetype\": \"^2.2.0\",\n \"whatwg-url\": \"^7.0.0\"\n }\n },\n \"debug\": {\n \"version\": \"4.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdebug\u002F-\u002Fdebug-4.2.0.tgz\",\n \"integrity\": \"sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99\u002FtPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ\u002FI8sg==\",\n \"requires\": {\n \"ms\": \"2.1.2\"\n }\n },\n \"decamelize\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdecamelize\u002F-\u002Fdecamelize-1.2.0.tgz\",\n \"integrity\": \"sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=\",\n \"dev\": true\n },\n \"decode-uri-component\": {\n \"version\": \"0.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdecode-uri-component\u002F-\u002Fdecode-uri-component-0.2.0.tgz\",\n \"integrity\": \"sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=\"\n },\n \"decompress-response\": {\n \"version\": \"4.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdecompress-response\u002F-\u002Fdecompress-response-4.2.1.tgz\",\n \"integrity\": \"sha512-jOSne2qbyE+\u002Fr8G1VU+G\u002F82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+\u002FyIXOtTcRQMzPcgyhoFlqPkw==\",\n \"optional\": true,\n \"requires\": {\n \"mimic-response\": \"^2.0.0\"\n }\n },\n \"dedent\": {\n \"version\": \"0.7.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdedent\u002F-\u002Fdedent-0.7.0.tgz\",\n \"integrity\": \"sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=\",\n \"dev\": true\n },\n \"deep-extend\": {\n \"version\": \"0.6.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdeep-extend\u002F-\u002Fdeep-extend-0.6.0.tgz\",\n \"integrity\": \"sha512-LOHxIOaPYdHlJRtCQfDIVZtfw\u002FufM8+rVj649RIHzcm\u002FvGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==\",\n \"optional\": true\n },\n \"deep-is\": {\n \"version\": \"0.1.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdeep-is\u002F-\u002Fdeep-is-0.1.3.tgz\",\n \"integrity\": \"sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=\",\n \"dev\": true\n },\n \"deepmerge\": {\n \"version\": \"4.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdeepmerge\u002F-\u002Fdeepmerge-4.2.2.tgz\",\n \"integrity\": \"sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj\u002F6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==\",\n \"dev\": true\n },\n \"define-properties\": {\n \"version\": \"1.1.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdefine-properties\u002F-\u002Fdefine-properties-1.1.3.tgz\",\n \"integrity\": \"sha512-3MqfYKj2lLzdMSf8ZIZE\u002FV+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==\",\n \"dev\": true,\n \"requires\": {\n \"object-keys\": \"^1.0.12\"\n }\n },\n \"define-property\": {\n \"version\": \"2.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdefine-property\u002F-\u002Fdefine-property-2.0.2.tgz\",\n \"integrity\": \"sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ\u002F46ZYQ==\",\n \"requires\": {\n \"is-descriptor\": \"^1.0.2\",\n \"isobject\": \"^3.0.1\"\n },\n \"dependencies\": {\n \"isobject\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fisobject\u002F-\u002Fisobject-3.0.1.tgz\",\n \"integrity\": \"sha1-TkMekrEalzFjaqH5yNHMvP2reN8=\"\n }\n }\n },\n \"delayed-stream\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdelayed-stream\u002F-\u002Fdelayed-stream-1.0.0.tgz\",\n \"integrity\": \"sha1-3zrhmayt+31ECqrgsp4icrJOxhk=\",\n \"dev\": true\n },\n \"delegates\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdelegates\u002F-\u002Fdelegates-1.0.0.tgz\",\n \"integrity\": \"sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=\",\n \"optional\": true\n },\n \"depd\": {\n \"version\": \"1.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdepd\u002F-\u002Fdepd-1.1.2.tgz\",\n \"integrity\": \"sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=\"\n },\n \"dequal\": {\n \"version\": \"2.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdequal\u002F-\u002Fdequal-2.0.2.tgz\",\n \"integrity\": \"sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL\u002FImpruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==\"\n },\n \"des.js\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdes.js\u002F-\u002Fdes.js-1.0.1.tgz\",\n \"integrity\": \"sha512-Q0I4pfFrv2VPd34\u002FvfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==\",\n \"requires\": {\n \"inherits\": \"^2.0.1\",\n \"minimalistic-assert\": \"^1.0.0\"\n }\n },\n \"detect-libc\": {\n \"version\": \"1.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdetect-libc\u002F-\u002Fdetect-libc-1.0.3.tgz\",\n \"integrity\": \"sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=\",\n \"optional\": true\n },\n \"detect-newline\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdetect-newline\u002F-\u002Fdetect-newline-3.1.0.tgz\",\n \"integrity\": \"sha512-TLz+x\u002FvEXm\u002FY7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==\",\n \"dev\": true\n },\n \"diff-sequences\": {\n \"version\": \"25.2.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdiff-sequences\u002F-\u002Fdiff-sequences-25.2.6.tgz\",\n \"integrity\": \"sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==\",\n \"dev\": true\n },\n \"diffie-hellman\": {\n \"version\": \"5.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdiffie-hellman\u002F-\u002Fdiffie-hellman-5.0.3.tgz\",\n \"integrity\": \"sha512-kqag\u002FNl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==\",\n \"requires\": {\n \"bn.js\": \"^4.1.0\",\n \"miller-rabin\": \"^4.0.0\",\n \"randombytes\": \"^2.0.0\"\n },\n \"dependencies\": {\n \"bn.js\": {\n \"version\": \"4.11.9\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbn.js\u002F-\u002Fbn.js-4.11.9.tgz\",\n \"integrity\": \"sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==\"\n }\n }\n },\n \"doctrine\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdoctrine\u002F-\u002Fdoctrine-3.0.0.tgz\",\n \"integrity\": \"sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==\",\n \"dev\": true,\n \"requires\": {\n \"esutils\": \"^2.0.2\"\n }\n },\n \"dom-accessibility-api\": {\n \"version\": \"0.5.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdom-accessibility-api\u002F-\u002Fdom-accessibility-api-0.5.4.tgz\",\n \"integrity\": \"sha512-TvrjBckDy2c6v6RLxPv5QXOnU+SmF9nBII5621Ve5fu6Z\u002FBDrENurBEvlC1f44lKEUVqOpK4w9E5Idc5\u002FEgkLQ==\",\n \"dev\": true\n },\n \"dom-serializer\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdom-serializer\u002F-\u002Fdom-serializer-1.0.1.tgz\",\n \"integrity\": \"sha512-1Aj1Qy3YLbdslkI75QEOfdp9TkQ3o8LRISAzxOibjBs\u002FxWwr1WxZFOQphFkZuepHFGo+kB8e5FVJSS0faAJ4Rw==\",\n \"requires\": {\n \"domelementtype\": \"^2.0.1\",\n \"domhandler\": \"^3.0.0\",\n \"entities\": \"^2.0.0\"\n }\n },\n \"domain-browser\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdomain-browser\u002F-\u002Fdomain-browser-1.2.0.tgz\",\n \"integrity\": \"sha512-jnjyiM6eRyZl2H+W8Q\u002FzLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==\"\n },\n \"domelementtype\": {\n \"version\": \"2.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdomelementtype\u002F-\u002Fdomelementtype-2.0.2.tgz\",\n \"integrity\": \"sha512-wFwTwCVebUrMgGeAwRL\u002FNhZtHAUyT9n9yg4IMDwf10+6iCMxSkVq9MGCVEH+QZWo1nNidy8kNvwmv4zWHDTqvA==\"\n },\n \"domexception\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdomexception\u002F-\u002Fdomexception-1.0.1.tgz\",\n \"integrity\": \"sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==\",\n \"dev\": true,\n \"requires\": {\n \"webidl-conversions\": \"^4.0.2\"\n }\n },\n \"domhandler\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdomhandler\u002F-\u002Fdomhandler-3.0.0.tgz\",\n \"integrity\": \"sha512-eKLdI5v9m67kbXQbJSNn1zjh0SDzvzWVWtX+qEI3eMjZw8daH9k8rlj1FZY9memPwjiskQFbe7vHVVJIAqoEhw==\",\n \"requires\": {\n \"domelementtype\": \"^2.0.1\"\n }\n },\n \"domutils\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdomutils\u002F-\u002Fdomutils-2.1.0.tgz\",\n \"integrity\": \"sha512-CD9M0Dm1iaHfQ1R\u002FTI+z3\u002FJWp\u002Fpgub0j4jIQKH89ARR4ATAV2nbaOQS5XxU9maJP5jHaPdDDQSEHuE2UmpUTKg==\",\n \"requires\": {\n \"dom-serializer\": \"^0.2.1\",\n \"domelementtype\": \"^2.0.1\",\n \"domhandler\": \"^3.0.0\"\n },\n \"dependencies\": {\n \"dom-serializer\": {\n \"version\": \"0.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdom-serializer\u002F-\u002Fdom-serializer-0.2.2.tgz\",\n \"integrity\": \"sha512-2\u002FxPb3ORsQ42nHYiSunXkDjPLBaEj\u002FxTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==\",\n \"requires\": {\n \"domelementtype\": \"^2.0.1\",\n \"entities\": \"^2.0.0\"\n }\n }\n }\n },\n \"duplexify\": {\n \"version\": \"3.7.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fduplexify\u002F-\u002Fduplexify-3.7.1.tgz\",\n \"integrity\": \"sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==\",\n \"requires\": {\n \"end-of-stream\": \"^1.0.0\",\n \"inherits\": \"^2.0.1\",\n \"readable-stream\": \"^2.0.0\",\n \"stream-shift\": \"^1.0.0\"\n },\n \"dependencies\": {\n \"readable-stream\": {\n \"version\": \"2.3.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freadable-stream\u002F-\u002Freadable-stream-2.3.7.tgz\",\n \"integrity\": \"sha512-Ebho8K4jIbHAxnuxi7o42OrZgF\u002FZTNcsZj6nRKyUmkhLFq8CHItp\u002Ffy6hQZuZmP\u002Fn3yZ9VBUbp4zz\u002FmX8hmYPw==\",\n \"requires\": {\n \"core-util-is\": \"~1.0.0\",\n \"inherits\": \"~2.0.3\",\n \"isarray\": \"~1.0.0\",\n \"process-nextick-args\": \"~2.0.0\",\n \"safe-buffer\": \"~5.1.1\",\n \"string_decoder\": \"~1.1.1\",\n \"util-deprecate\": \"~1.0.1\"\n }\n },\n \"string_decoder\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring_decoder\u002F-\u002Fstring_decoder-1.1.1.tgz\",\n \"integrity\": \"sha512-n\u002FShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP\u002FmzRfwg==\",\n \"requires\": {\n \"safe-buffer\": \"~5.1.0\"\n }\n }\n }\n },\n \"ecc-jsbn\": {\n \"version\": \"0.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fecc-jsbn\u002F-\u002Fecc-jsbn-0.1.2.tgz\",\n \"integrity\": \"sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=\",\n \"dev\": true,\n \"requires\": {\n \"jsbn\": \"~0.1.0\",\n \"safer-buffer\": \"^2.1.0\"\n }\n },\n \"electron-to-chromium\": {\n \"version\": \"1.3.592\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Felectron-to-chromium\u002F-\u002Felectron-to-chromium-1.3.592.tgz\",\n \"integrity\": \"sha512-kGNowksvqQiPb1pUSQKpd8JFoGPLxYOwduNRCqCxGh\u002F2Q1qE2JdmwouCW41lUzDxOb\u002F2RIV4lR0tVIfboWlO9A==\"\n },\n \"elliptic\": {\n \"version\": \"6.5.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Felliptic\u002F-\u002Felliptic-6.5.3.tgz\",\n \"integrity\": \"sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7\u002FVyHUYG91PRmPyeQDObKLPpeS4dw==\",\n \"requires\": {\n \"bn.js\": \"^4.4.0\",\n \"brorand\": \"^1.0.1\",\n \"hash.js\": \"^1.0.0\",\n \"hmac-drbg\": \"^1.0.0\",\n \"inherits\": \"^2.0.1\",\n \"minimalistic-assert\": \"^1.0.0\",\n \"minimalistic-crypto-utils\": \"^1.0.0\"\n },\n \"dependencies\": {\n \"bn.js\": {\n \"version\": \"4.11.9\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbn.js\u002F-\u002Fbn.js-4.11.9.tgz\",\n \"integrity\": \"sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==\"\n }\n }\n },\n \"emoji-regex\": {\n \"version\": \"8.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Femoji-regex\u002F-\u002Femoji-regex-8.0.0.tgz\",\n \"integrity\": \"sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo\u002FRPgnr1\u002FGGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==\",\n \"dev\": true\n },\n \"emojis-list\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Femojis-list\u002F-\u002Femojis-list-3.0.0.tgz\",\n \"integrity\": \"sha512-\u002FkyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==\"\n },\n \"end-of-stream\": {\n \"version\": \"1.4.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fend-of-stream\u002F-\u002Fend-of-stream-1.4.4.tgz\",\n \"integrity\": \"sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x\u002FoIyhLP5PR1H+phQAHu5Q==\",\n \"requires\": {\n \"once\": \"^1.4.0\"\n }\n },\n \"enhanced-resolve\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fenhanced-resolve\u002F-\u002Fenhanced-resolve-4.3.0.tgz\",\n \"integrity\": \"sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI\u002FATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==\",\n \"requires\": {\n \"graceful-fs\": \"^4.1.2\",\n \"memory-fs\": \"^0.5.0\",\n \"tapable\": \"^1.0.0\"\n },\n \"dependencies\": {\n \"memory-fs\": {\n \"version\": \"0.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmemory-fs\u002F-\u002Fmemory-fs-0.5.0.tgz\",\n \"integrity\": \"sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj\u002FMtHwGIbB1QaK\u002FdunyjWteJzmkpd7ooeWg10T7GA==\",\n \"requires\": {\n \"errno\": \"^0.1.3\",\n \"readable-stream\": \"^2.0.1\"\n }\n },\n \"readable-stream\": {\n \"version\": \"2.3.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freadable-stream\u002F-\u002Freadable-stream-2.3.7.tgz\",\n \"integrity\": \"sha512-Ebho8K4jIbHAxnuxi7o42OrZgF\u002FZTNcsZj6nRKyUmkhLFq8CHItp\u002Ffy6hQZuZmP\u002Fn3yZ9VBUbp4zz\u002FmX8hmYPw==\",\n \"requires\": {\n \"core-util-is\": \"~1.0.0\",\n \"inherits\": \"~2.0.3\",\n \"isarray\": \"~1.0.0\",\n \"process-nextick-args\": \"~2.0.0\",\n \"safe-buffer\": \"~5.1.1\",\n \"string_decoder\": \"~1.1.1\",\n \"util-deprecate\": \"~1.0.1\"\n }\n },\n \"string_decoder\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring_decoder\u002F-\u002Fstring_decoder-1.1.1.tgz\",\n \"integrity\": \"sha512-n\u002FShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP\u002FmzRfwg==\",\n \"requires\": {\n \"safe-buffer\": \"~5.1.0\"\n }\n }\n }\n },\n \"enquirer\": {\n \"version\": \"2.3.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fenquirer\u002F-\u002Fenquirer-2.3.6.tgz\",\n \"integrity\": \"sha512-yjNnPr315\u002FFjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ\u002FodMA7cRkjhsPbltwBOrLg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-colors\": \"^4.1.1\"\n }\n },\n \"entities\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fentities\u002F-\u002Fentities-2.1.0.tgz\",\n \"integrity\": \"sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==\"\n },\n \"errno\": {\n \"version\": \"0.1.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ferrno\u002F-\u002Ferrno-0.1.7.tgz\",\n \"integrity\": \"sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze\u002F8V6kgyz7H3FF8Npzv78mZ7XLLflg==\",\n \"requires\": {\n \"prr\": \"~1.0.1\"\n }\n },\n \"error-ex\": {\n \"version\": \"1.3.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ferror-ex\u002F-\u002Ferror-ex-1.3.2.tgz\",\n \"integrity\": \"sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4\u002F\u002FDL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==\",\n \"dev\": true,\n \"requires\": {\n \"is-arrayish\": \"^0.2.1\"\n }\n },\n \"es-abstract\": {\n \"version\": \"1.17.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fes-abstract\u002F-\u002Fes-abstract-1.17.7.tgz\",\n \"integrity\": \"sha512-VBl\u002FgnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt\u002FDw8ezpcOHYZXa\u002FJ96O8vx+g4x65YKhxOwDUh63aS5g==\",\n \"dev\": true,\n \"requires\": {\n \"es-to-primitive\": \"^1.2.1\",\n \"function-bind\": \"^1.1.1\",\n \"has\": \"^1.0.3\",\n \"has-symbols\": \"^1.0.1\",\n \"is-callable\": \"^1.2.2\",\n \"is-regex\": \"^1.1.1\",\n \"object-inspect\": \"^1.8.0\",\n \"object-keys\": \"^1.1.1\",\n \"object.assign\": \"^4.1.1\",\n \"string.prototype.trimend\": \"^1.0.1\",\n \"string.prototype.trimstart\": \"^1.0.1\"\n }\n },\n \"es-to-primitive\": {\n \"version\": \"1.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fes-to-primitive\u002F-\u002Fes-to-primitive-1.2.1.tgz\",\n \"integrity\": \"sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==\",\n \"dev\": true,\n \"requires\": {\n \"is-callable\": \"^1.1.4\",\n \"is-date-object\": \"^1.0.1\",\n \"is-symbol\": \"^1.0.2\"\n }\n },\n \"es5-ext\": {\n \"version\": \"0.10.53\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fes5-ext\u002F-\u002Fes5-ext-0.10.53.tgz\",\n \"integrity\": \"sha512-Xs2Stw6NiNHWypzRTY1MtaG\u002FuJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==\",\n \"requires\": {\n \"es6-iterator\": \"~2.0.3\",\n \"es6-symbol\": \"~3.1.3\",\n \"next-tick\": \"~1.0.0\"\n }\n },\n \"es6-iterator\": {\n \"version\": \"2.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fes6-iterator\u002F-\u002Fes6-iterator-2.0.3.tgz\",\n \"integrity\": \"sha1-p96IkUGgWpSwhUQDstCg+\u002FqY87c=\",\n \"requires\": {\n \"d\": \"1\",\n \"es5-ext\": \"^0.10.35\",\n \"es6-symbol\": \"^3.1.1\"\n }\n },\n \"es6-symbol\": {\n \"version\": \"3.1.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fes6-symbol\u002F-\u002Fes6-symbol-3.1.3.tgz\",\n \"integrity\": \"sha512-NJ6Yn3FuDinBaBRWl\u002Fq5X\u002Fs4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR\u002FEXVfylRk8dpQVJoLEFhK+Mu31NA==\",\n \"requires\": {\n \"d\": \"^1.0.1\",\n \"ext\": \"^1.1.2\"\n }\n },\n \"escalade\": {\n \"version\": \"3.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fescalade\u002F-\u002Fescalade-3.1.1.tgz\",\n \"integrity\": \"sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX\u002FTJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==\"\n },\n \"escape-string-regexp\": {\n \"version\": \"1.0.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fescape-string-regexp\u002F-\u002Fescape-string-regexp-1.0.5.tgz\",\n \"integrity\": \"sha1-G2HAViGQqN\u002F2rjuyzwIAyhMLhtQ=\"\n },\n \"escodegen\": {\n \"version\": \"1.14.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fescodegen\u002F-\u002Fescodegen-1.14.3.tgz\",\n \"integrity\": \"sha512-qFcX0XJkdg+PB3xjZZG\u002FwKSuT1PnQWx57+TVSjIMmILd2yC\u002F6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==\",\n \"dev\": true,\n \"requires\": {\n \"esprima\": \"^4.0.1\",\n \"estraverse\": \"^4.2.0\",\n \"esutils\": \"^2.0.2\",\n \"optionator\": \"^0.8.1\",\n \"source-map\": \"~0.6.1\"\n },\n \"dependencies\": {\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\",\n \"dev\": true,\n \"optional\": true\n }\n }\n },\n \"eslint\": {\n \"version\": \"6.8.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Feslint\u002F-\u002Feslint-6.8.0.tgz\",\n \"integrity\": \"sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fcode-frame\": \"^7.0.0\",\n \"ajv\": \"^6.10.0\",\n \"chalk\": \"^2.1.0\",\n \"cross-spawn\": \"^6.0.5\",\n \"debug\": \"^4.0.1\",\n \"doctrine\": \"^3.0.0\",\n \"eslint-scope\": \"^5.0.0\",\n \"eslint-utils\": \"^1.4.3\",\n \"eslint-visitor-keys\": \"^1.1.0\",\n \"espree\": \"^6.1.2\",\n \"esquery\": \"^1.0.1\",\n \"esutils\": \"^2.0.2\",\n \"file-entry-cache\": \"^5.0.1\",\n \"functional-red-black-tree\": \"^1.0.1\",\n \"glob-parent\": \"^5.0.0\",\n \"globals\": \"^12.1.0\",\n \"ignore\": \"^4.0.6\",\n \"import-fresh\": \"^3.0.0\",\n \"imurmurhash\": \"^0.1.4\",\n \"inquirer\": \"^7.0.0\",\n \"is-glob\": \"^4.0.0\",\n \"js-yaml\": \"^3.13.1\",\n \"json-stable-stringify-without-jsonify\": \"^1.0.1\",\n \"levn\": \"^0.3.0\",\n \"lodash\": \"^4.17.14\",\n \"minimatch\": \"^3.0.4\",\n \"mkdirp\": \"^0.5.1\",\n \"natural-compare\": \"^1.4.0\",\n \"optionator\": \"^0.8.3\",\n \"progress\": \"^2.0.0\",\n \"regexpp\": \"^2.0.1\",\n \"semver\": \"^6.1.2\",\n \"strip-ansi\": \"^5.2.0\",\n \"strip-json-comments\": \"^3.0.1\",\n \"table\": \"^5.2.3\",\n \"text-table\": \"^0.2.0\",\n \"v8-compile-cache\": \"^2.0.3\"\n },\n \"dependencies\": {\n \"eslint-utils\": {\n \"version\": \"1.4.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Feslint-utils\u002F-\u002Feslint-utils-1.4.3.tgz\",\n \"integrity\": \"sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT\u002F464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+\u002FE+XAeZ8Q==\",\n \"dev\": true,\n \"requires\": {\n \"eslint-visitor-keys\": \"^1.1.0\"\n }\n },\n \"globals\": {\n \"version\": \"12.4.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fglobals\u002F-\u002Fglobals-12.4.0.tgz\",\n \"integrity\": \"sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==\",\n \"dev\": true,\n \"requires\": {\n \"type-fest\": \"^0.8.1\"\n }\n },\n \"regexpp\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fregexpp\u002F-\u002Fregexpp-2.0.1.tgz\",\n \"integrity\": \"sha512-lv0M6+TkDVniA3aD1Eg0DVpfU\u002FbooSu7Eev3TDO\u002FmZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==\",\n \"dev\": true\n },\n \"semver\": {\n \"version\": \"6.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsemver\u002F-\u002Fsemver-6.3.0.tgz\",\n \"integrity\": \"sha512-b39TBaTSfV6yBrapU89p5fKekE2m\u002FNwnDocOVruQFS1\u002FveMgdzuPcnOM34M6CwxW8jH\u002FlxEa5rBoDeUwu5HHTw==\",\n \"dev\": true\n },\n \"type-fest\": {\n \"version\": \"0.8.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftype-fest\u002F-\u002Ftype-fest-0.8.1.tgz\",\n \"integrity\": \"sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==\",\n \"dev\": true\n }\n }\n },\n \"eslint-config-prettier\": {\n \"version\": \"6.15.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Feslint-config-prettier\u002F-\u002Feslint-config-prettier-6.15.0.tgz\",\n \"integrity\": \"sha512-a1+kOYLR8wMGustcgAjdydMsQ2A\u002F2ipRPwRKUmfYaSxc9ZPcrku080Ctl6zrZzZNs\u002FU82MjSv+qKREkoq3bJaw==\",\n \"dev\": true,\n \"requires\": {\n \"get-stdin\": \"^6.0.0\"\n }\n },\n \"eslint-plugin-react\": {\n \"version\": \"7.21.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Feslint-plugin-react\u002F-\u002Feslint-plugin-react-7.21.5.tgz\",\n \"integrity\": \"sha512-8MaEggC2et0wSF6bUeywF7qQ46ER81irOdWS4QWxnnlAEsnzeBevk1sWh7fhpCghPpXb+8Ks7hvaft6L\u002FxsR6g==\",\n \"dev\": true,\n \"requires\": {\n \"array-includes\": \"^3.1.1\",\n \"array.prototype.flatmap\": \"^1.2.3\",\n \"doctrine\": \"^2.1.0\",\n \"has\": \"^1.0.3\",\n \"jsx-ast-utils\": \"^2.4.1 || ^3.0.0\",\n \"object.entries\": \"^1.1.2\",\n \"object.fromentries\": \"^2.0.2\",\n \"object.values\": \"^1.1.1\",\n \"prop-types\": \"^15.7.2\",\n \"resolve\": \"^1.18.1\",\n \"string.prototype.matchall\": \"^4.0.2\"\n },\n \"dependencies\": {\n \"doctrine\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdoctrine\u002F-\u002Fdoctrine-2.1.0.tgz\",\n \"integrity\": \"sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==\",\n \"dev\": true,\n \"requires\": {\n \"esutils\": \"^2.0.2\"\n }\n }\n }\n },\n \"eslint-scope\": {\n \"version\": \"5.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Feslint-scope\u002F-\u002Feslint-scope-5.1.1.tgz\",\n \"integrity\": \"sha512-2NxwbF\u002FhZ0KpepYN0cNbo+FN6XoK7GaHlQhgx\u002FhIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==\",\n \"dev\": true,\n \"requires\": {\n \"esrecurse\": \"^4.3.0\",\n \"estraverse\": \"^4.1.1\"\n }\n },\n \"eslint-utils\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Feslint-utils\u002F-\u002Feslint-utils-2.1.0.tgz\",\n \"integrity\": \"sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0\u002FV3Zg==\",\n \"dev\": true,\n \"requires\": {\n \"eslint-visitor-keys\": \"^1.1.0\"\n }\n },\n \"eslint-visitor-keys\": {\n \"version\": \"1.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Feslint-visitor-keys\u002F-\u002Feslint-visitor-keys-1.3.0.tgz\",\n \"integrity\": \"sha512-6J72N8UNa462wa\u002FKFODt\u002FPJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==\",\n \"dev\": true\n },\n \"espree\": {\n \"version\": \"6.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fespree\u002F-\u002Fespree-6.2.1.tgz\",\n \"integrity\": \"sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y\u002FXrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx\u002F+ttFjF8i+ACbArnB4ce68a9m5hw==\",\n \"dev\": true,\n \"requires\": {\n \"acorn\": \"^7.1.1\",\n \"acorn-jsx\": \"^5.2.0\",\n \"eslint-visitor-keys\": \"^1.1.0\"\n }\n },\n \"esprima\": {\n \"version\": \"4.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fesprima\u002F-\u002Fesprima-4.0.1.tgz\",\n \"integrity\": \"sha512-eGuFFw7Upda+g4p+QHvnW0RyTX\u002FSVeJBDM\u002FgCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB\u002FsbNop0Kszm0jsaWU4A==\",\n \"dev\": true\n },\n \"esquery\": {\n \"version\": \"1.3.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fesquery\u002F-\u002Fesquery-1.3.1.tgz\",\n \"integrity\": \"sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip\u002FDHQ==\",\n \"dev\": true,\n \"requires\": {\n \"estraverse\": \"^5.1.0\"\n },\n \"dependencies\": {\n \"estraverse\": {\n \"version\": \"5.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Festraverse\u002F-\u002Festraverse-5.2.0.tgz\",\n \"integrity\": \"sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==\",\n \"dev\": true\n }\n }\n },\n \"esrecurse\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fesrecurse\u002F-\u002Fesrecurse-4.3.0.tgz\",\n \"integrity\": \"sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL\u002FoCFgn2NYXEtqP8\u002FL3pKapUA4G8cFVaoF3SU323CD4XypR\u002FffioHmkti6\u002FTag==\",\n \"requires\": {\n \"estraverse\": \"^5.2.0\"\n },\n \"dependencies\": {\n \"estraverse\": {\n \"version\": \"5.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Festraverse\u002F-\u002Festraverse-5.2.0.tgz\",\n \"integrity\": \"sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==\"\n }\n }\n },\n \"estraverse\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Festraverse\u002F-\u002Festraverse-4.3.0.tgz\",\n \"integrity\": \"sha512-39nnKffWz8xN1BU\u002F2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==\"\n },\n \"esutils\": {\n \"version\": \"2.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fesutils\u002F-\u002Fesutils-2.0.3.tgz\",\n \"integrity\": \"sha512-kVscqXk4OCp68SZ0dkgEKVi6\u002F8ij300KBWTJq32P\u002FdYeWTSwK41WyTxalN1eRmA5Z9UU\u002FLX9D7FWSmV9SAYx6g==\"\n },\n \"etag\": {\n \"version\": \"1.8.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fetag\u002F-\u002Fetag-1.8.1.tgz\",\n \"integrity\": \"sha1-Qa4u62XvpiJorr\u002Fqg6x9eSmbCIc=\"\n },\n \"event-target-shim\": {\n \"version\": \"5.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fevent-target-shim\u002F-\u002Fevent-target-shim-5.0.1.tgz\",\n \"integrity\": \"sha512-i\u002F2XbnSz\u002FuxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==\"\n },\n \"events\": {\n \"version\": \"3.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fevents\u002F-\u002Fevents-3.2.0.tgz\",\n \"integrity\": \"sha512-\u002F46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==\"\n },\n \"evp_bytestokey\": {\n \"version\": \"1.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fevp_bytestokey\u002F-\u002Fevp_bytestokey-1.0.3.tgz\",\n \"integrity\": \"sha512-\u002Ff2Go4TognH\u002FKvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm\u002F40hdlgSLyuOimsrTKLUMEorQexp\u002FaPQeA==\",\n \"requires\": {\n \"md5.js\": \"^1.3.4\",\n \"safe-buffer\": \"^5.1.1\"\n }\n },\n \"exec-sh\": {\n \"version\": \"0.3.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fexec-sh\u002F-\u002Fexec-sh-0.3.4.tgz\",\n \"integrity\": \"sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk\u002FO\u002Fz2qgS15y2gWVFrI6f2Qn\u002Fqw\u002F0\u002FNCfCEsmNA4zOjkwEZT1A==\",\n \"dev\": true\n },\n \"execa\": {\n \"version\": \"3.4.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fexeca\u002F-\u002Fexeca-3.4.0.tgz\",\n \"integrity\": \"sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU\u002F4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==\",\n \"dev\": true,\n \"requires\": {\n \"cross-spawn\": \"^7.0.0\",\n \"get-stream\": \"^5.0.0\",\n \"human-signals\": \"^1.1.1\",\n \"is-stream\": \"^2.0.0\",\n \"merge-stream\": \"^2.0.0\",\n \"npm-run-path\": \"^4.0.0\",\n \"onetime\": \"^5.1.0\",\n \"p-finally\": \"^2.0.0\",\n \"signal-exit\": \"^3.0.2\",\n \"strip-final-newline\": \"^2.0.0\"\n },\n \"dependencies\": {\n \"cross-spawn\": {\n \"version\": \"7.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcross-spawn\u002F-\u002Fcross-spawn-7.0.3.tgz\",\n \"integrity\": \"sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==\",\n \"dev\": true,\n \"requires\": {\n \"path-key\": \"^3.1.0\",\n \"shebang-command\": \"^2.0.0\",\n \"which\": \"^2.0.1\"\n }\n },\n \"path-key\": {\n \"version\": \"3.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpath-key\u002F-\u002Fpath-key-3.1.1.tgz\",\n \"integrity\": \"sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==\",\n \"dev\": true\n },\n \"shebang-command\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fshebang-command\u002F-\u002Fshebang-command-2.0.0.tgz\",\n \"integrity\": \"sha512-kHxr2zZpYtdmrN1qDjrrX\u002FZ1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1\u002FyZp6YuDY77YtvbN0dmDA==\",\n \"dev\": true,\n \"requires\": {\n \"shebang-regex\": \"^3.0.0\"\n }\n },\n \"shebang-regex\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fshebang-regex\u002F-\u002Fshebang-regex-3.0.0.tgz\",\n \"integrity\": \"sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M\u002Fyhz8ekcb1A==\",\n \"dev\": true\n },\n \"which\": {\n \"version\": \"2.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwhich\u002F-\u002Fwhich-2.0.2.tgz\",\n \"integrity\": \"sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==\",\n \"dev\": true,\n \"requires\": {\n \"isexe\": \"^2.0.0\"\n }\n }\n }\n },\n \"exit\": {\n \"version\": \"0.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fexit\u002F-\u002Fexit-0.1.2.tgz\",\n \"integrity\": \"sha1-BjJjj42HfMghB9MKD\u002F8aF8uhzQw=\",\n \"dev\": true\n },\n \"expand-brackets\": {\n \"version\": \"2.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fexpand-brackets\u002F-\u002Fexpand-brackets-2.1.4.tgz\",\n \"integrity\": \"sha1-t3c14xXOMPa27\u002FD4OwQVGiJEliI=\",\n \"requires\": {\n \"debug\": \"^2.3.3\",\n \"define-property\": \"^0.2.5\",\n \"extend-shallow\": \"^2.0.1\",\n \"posix-character-classes\": \"^0.1.0\",\n \"regex-not\": \"^1.0.0\",\n \"snapdragon\": \"^0.8.1\",\n \"to-regex\": \"^3.0.1\"\n },\n \"dependencies\": {\n \"debug\": {\n \"version\": \"2.6.9\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdebug\u002F-\u002Fdebug-2.6.9.tgz\",\n \"integrity\": \"sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm\u002FE7AdgFBVeAPVMNcKGsHMA==\",\n \"requires\": {\n \"ms\": \"2.0.0\"\n }\n },\n \"define-property\": {\n \"version\": \"0.2.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdefine-property\u002F-\u002Fdefine-property-0.2.5.tgz\",\n \"integrity\": \"sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=\",\n \"requires\": {\n \"is-descriptor\": \"^0.1.0\"\n }\n },\n \"extend-shallow\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fextend-shallow\u002F-\u002Fextend-shallow-2.0.1.tgz\",\n \"integrity\": \"sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=\",\n \"requires\": {\n \"is-extendable\": \"^0.1.0\"\n }\n },\n \"is-accessor-descriptor\": {\n \"version\": \"0.1.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-accessor-descriptor\u002F-\u002Fis-accessor-descriptor-0.1.6.tgz\",\n \"integrity\": \"sha1-qeEss66Nh2cn7u84Q\u002FigiXtcmNY=\",\n \"requires\": {\n \"kind-of\": \"^3.0.2\"\n },\n \"dependencies\": {\n \"kind-of\": {\n \"version\": \"3.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-3.2.2.tgz\",\n \"integrity\": \"sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=\",\n \"requires\": {\n \"is-buffer\": \"^1.1.5\"\n }\n }\n }\n },\n \"is-data-descriptor\": {\n \"version\": \"0.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-data-descriptor\u002F-\u002Fis-data-descriptor-0.1.4.tgz\",\n \"integrity\": \"sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=\",\n \"requires\": {\n \"kind-of\": \"^3.0.2\"\n },\n \"dependencies\": {\n \"kind-of\": {\n \"version\": \"3.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-3.2.2.tgz\",\n \"integrity\": \"sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=\",\n \"requires\": {\n \"is-buffer\": \"^1.1.5\"\n }\n }\n }\n },\n \"is-descriptor\": {\n \"version\": \"0.1.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-descriptor\u002F-\u002Fis-descriptor-0.1.6.tgz\",\n \"integrity\": \"sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq\u002F4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==\",\n \"requires\": {\n \"is-accessor-descriptor\": \"^0.1.6\",\n \"is-data-descriptor\": \"^0.1.4\",\n \"kind-of\": \"^5.0.0\"\n }\n },\n \"is-extendable\": {\n \"version\": \"0.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-extendable\u002F-\u002Fis-extendable-0.1.1.tgz\",\n \"integrity\": \"sha1-YrEQ4omkcUGOPsNqYX1HLjAd\u002FIk=\"\n },\n \"kind-of\": {\n \"version\": \"5.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-5.1.0.tgz\",\n \"integrity\": \"sha512-NGEErnH6F2vUuXDh+OlbcKW7\u002FwOcfdRHaZ7VWtqCztfHri\u002F++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==\"\n },\n \"ms\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fms\u002F-\u002Fms-2.0.0.tgz\",\n \"integrity\": \"sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=\"\n }\n }\n },\n \"expand-template\": {\n \"version\": \"2.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fexpand-template\u002F-\u002Fexpand-template-2.0.3.tgz\",\n \"integrity\": \"sha512-XYfuKMvj4O35f\u002FpOXLObndIRvyQ+\u002F+6AhODh+OKWj9S9498pHHn\u002FIMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==\",\n \"optional\": true\n },\n \"expect\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fexpect\u002F-\u002Fexpect-25.5.0.tgz\",\n \"integrity\": \"sha512-w7KAXo0+6qqZZhovCaBVPSIqQp7\u002FUTcx4M9uKt2m6pd2VB1voyC8JizLRqeEqud3AAVP02g+hbErDu5gu64tlA==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"ansi-styles\": \"^4.0.0\",\n \"jest-get-type\": \"^25.2.6\",\n \"jest-matcher-utils\": \"^25.5.0\",\n \"jest-message-util\": \"^25.5.0\",\n \"jest-regex-util\": \"^25.2.6\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n }\n }\n },\n \"ext\": {\n \"version\": \"1.4.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fext\u002F-\u002Fext-1.4.0.tgz\",\n \"integrity\": \"sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey\u002FZvUc6sERLTxKdyCu4gZFmUbk1Q7A==\",\n \"requires\": {\n \"type\": \"^2.0.0\"\n },\n \"dependencies\": {\n \"type\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftype\u002F-\u002Ftype-2.1.0.tgz\",\n \"integrity\": \"sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA==\"\n }\n }\n },\n \"extend\": {\n \"version\": \"3.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fextend\u002F-\u002Fextend-3.0.2.tgz\",\n \"integrity\": \"sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S\u002FWARVqhXffZl2LNgS+gQdPIIim\u002Fg==\",\n \"dev\": true\n },\n \"extend-shallow\": {\n \"version\": \"3.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fextend-shallow\u002F-\u002Fextend-shallow-3.0.2.tgz\",\n \"integrity\": \"sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=\",\n \"requires\": {\n \"assign-symbols\": \"^1.0.0\",\n \"is-extendable\": \"^1.0.1\"\n }\n },\n \"external-editor\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fexternal-editor\u002F-\u002Fexternal-editor-3.1.0.tgz\",\n \"integrity\": \"sha512-hMQ4CX1p1izmuLYyZqLMO\u002FqGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==\",\n \"dev\": true,\n \"requires\": {\n \"chardet\": \"^0.7.0\",\n \"iconv-lite\": \"^0.4.24\",\n \"tmp\": \"^0.0.33\"\n }\n },\n \"extglob\": {\n \"version\": \"2.0.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fextglob\u002F-\u002Fextglob-2.0.4.tgz\",\n \"integrity\": \"sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==\",\n \"requires\": {\n \"array-unique\": \"^0.3.2\",\n \"define-property\": \"^1.0.0\",\n \"expand-brackets\": \"^2.1.4\",\n \"extend-shallow\": \"^2.0.1\",\n \"fragment-cache\": \"^0.2.1\",\n \"regex-not\": \"^1.0.0\",\n \"snapdragon\": \"^0.8.1\",\n \"to-regex\": \"^3.0.1\"\n },\n \"dependencies\": {\n \"define-property\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdefine-property\u002F-\u002Fdefine-property-1.0.0.tgz\",\n \"integrity\": \"sha1-dp66rz9KY6rTr56NMEybvnm\u002FsOY=\",\n \"requires\": {\n \"is-descriptor\": \"^1.0.0\"\n }\n },\n \"extend-shallow\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fextend-shallow\u002F-\u002Fextend-shallow-2.0.1.tgz\",\n \"integrity\": \"sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=\",\n \"requires\": {\n \"is-extendable\": \"^0.1.0\"\n }\n },\n \"is-extendable\": {\n \"version\": \"0.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-extendable\u002F-\u002Fis-extendable-0.1.1.tgz\",\n \"integrity\": \"sha1-YrEQ4omkcUGOPsNqYX1HLjAd\u002FIk=\"\n }\n }\n },\n \"extsprintf\": {\n \"version\": \"1.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fextsprintf\u002F-\u002Fextsprintf-1.3.0.tgz\",\n \"integrity\": \"sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=\",\n \"dev\": true\n },\n \"fast-deep-equal\": {\n \"version\": \"3.1.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffast-deep-equal\u002F-\u002Ffast-deep-equal-3.1.3.tgz\",\n \"integrity\": \"sha512-f3qQ9oQy9j2AhBe\u002FH9VC91wLmKBCCU\u002FgDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==\"\n },\n \"fast-json-stable-stringify\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffast-json-stable-stringify\u002F-\u002Ffast-json-stable-stringify-2.1.0.tgz\",\n \"integrity\": \"sha512-lhd\u002FwF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==\"\n },\n \"fast-levenshtein\": {\n \"version\": \"2.0.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffast-levenshtein\u002F-\u002Ffast-levenshtein-2.0.6.tgz\",\n \"integrity\": \"sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=\",\n \"dev\": true\n },\n \"fb-watchman\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffb-watchman\u002F-\u002Ffb-watchman-2.0.1.tgz\",\n \"integrity\": \"sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==\",\n \"dev\": true,\n \"requires\": {\n \"bser\": \"2.1.1\"\n }\n },\n \"figgy-pudding\": {\n \"version\": \"3.5.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffiggy-pudding\u002F-\u002Ffiggy-pudding-3.5.2.tgz\",\n \"integrity\": \"sha512-0btnI\u002FH8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN\u002FMCcfuWF0Ezbw==\"\n },\n \"figures\": {\n \"version\": \"3.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffigures\u002F-\u002Ffigures-3.2.0.tgz\",\n \"integrity\": \"sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==\",\n \"dev\": true,\n \"requires\": {\n \"escape-string-regexp\": \"^1.0.5\"\n }\n },\n \"file-entry-cache\": {\n \"version\": \"5.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffile-entry-cache\u002F-\u002Ffile-entry-cache-5.0.1.tgz\",\n \"integrity\": \"sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM\u002FYn\u002FFDoqndh\u002F9vNuQfXRDvTuXKLxfD\u002FJtZQGKFT8MGcJBK644g==\",\n \"dev\": true,\n \"requires\": {\n \"flat-cache\": \"^2.0.1\"\n }\n },\n \"file-uri-to-path\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffile-uri-to-path\u002F-\u002Ffile-uri-to-path-1.0.0.tgz\",\n \"integrity\": \"sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB\u002Fj3jR81u\u002FO2LbqK+Bm1CDSNDKVtJ\u002FYjwY7TUd5SkeLQLw==\",\n \"optional\": true\n },\n \"fill-range\": {\n \"version\": \"7.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffill-range\u002F-\u002Ffill-range-7.0.1.tgz\",\n \"integrity\": \"sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl\u002FdjYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==\",\n \"requires\": {\n \"to-regex-range\": \"^5.0.1\"\n }\n },\n \"find-cache-dir\": {\n \"version\": \"3.3.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffind-cache-dir\u002F-\u002Ffind-cache-dir-3.3.1.tgz\",\n \"integrity\": \"sha512-t2GDMt3oGC\u002Fv+BMwzmllWDuJF\u002FxcDtE5j\u002FfCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==\",\n \"requires\": {\n \"commondir\": \"^1.0.1\",\n \"make-dir\": \"^3.0.2\",\n \"pkg-dir\": \"^4.1.0\"\n }\n },\n \"find-up\": {\n \"version\": \"4.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffind-up\u002F-\u002Ffind-up-4.1.0.tgz\",\n \"integrity\": \"sha512-PpOwAdQ\u002FYlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==\",\n \"requires\": {\n \"locate-path\": \"^5.0.0\",\n \"path-exists\": \"^4.0.0\"\n }\n },\n \"find-versions\": {\n \"version\": \"3.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffind-versions\u002F-\u002Ffind-versions-3.2.0.tgz\",\n \"integrity\": \"sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==\",\n \"dev\": true,\n \"requires\": {\n \"semver-regex\": \"^2.0.0\"\n }\n },\n \"flat-cache\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fflat-cache\u002F-\u002Fflat-cache-2.0.1.tgz\",\n \"integrity\": \"sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc\u002F7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B\u002Fzj24a5ReA==\",\n \"dev\": true,\n \"requires\": {\n \"flatted\": \"^2.0.0\",\n \"rimraf\": \"2.6.3\",\n \"write\": \"1.0.3\"\n }\n },\n \"flatted\": {\n \"version\": \"2.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fflatted\u002F-\u002Fflatted-2.0.2.tgz\",\n \"integrity\": \"sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+\u002FRB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==\",\n \"dev\": true\n },\n \"flush-write-stream\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fflush-write-stream\u002F-\u002Fflush-write-stream-1.1.1.tgz\",\n \"integrity\": \"sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz\u002Fr+1MWCaMoSQ28P85+1Yc77w==\",\n \"requires\": {\n \"inherits\": \"^2.0.3\",\n \"readable-stream\": \"^2.3.6\"\n },\n \"dependencies\": {\n \"readable-stream\": {\n \"version\": \"2.3.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freadable-stream\u002F-\u002Freadable-stream-2.3.7.tgz\",\n \"integrity\": \"sha512-Ebho8K4jIbHAxnuxi7o42OrZgF\u002FZTNcsZj6nRKyUmkhLFq8CHItp\u002Ffy6hQZuZmP\u002Fn3yZ9VBUbp4zz\u002FmX8hmYPw==\",\n \"requires\": {\n \"core-util-is\": \"~1.0.0\",\n \"inherits\": \"~2.0.3\",\n \"isarray\": \"~1.0.0\",\n \"process-nextick-args\": \"~2.0.0\",\n \"safe-buffer\": \"~5.1.1\",\n \"string_decoder\": \"~1.1.1\",\n \"util-deprecate\": \"~1.0.1\"\n }\n },\n \"string_decoder\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring_decoder\u002F-\u002Fstring_decoder-1.1.1.tgz\",\n \"integrity\": \"sha512-n\u002FShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP\u002FmzRfwg==\",\n \"requires\": {\n \"safe-buffer\": \"~5.1.0\"\n }\n }\n }\n },\n \"for-in\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffor-in\u002F-\u002Ffor-in-1.0.2.tgz\",\n \"integrity\": \"sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=\"\n },\n \"forever-agent\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fforever-agent\u002F-\u002Fforever-agent-0.6.1.tgz\",\n \"integrity\": \"sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=\",\n \"dev\": true\n },\n \"form-data\": {\n \"version\": \"2.3.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fform-data\u002F-\u002Fform-data-2.3.3.tgz\",\n \"integrity\": \"sha512-1lLKB2Mu3aGP1Q\u002F2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==\",\n \"dev\": true,\n \"requires\": {\n \"asynckit\": \"^0.4.0\",\n \"combined-stream\": \"^1.0.6\",\n \"mime-types\": \"^2.1.12\"\n }\n },\n \"fragment-cache\": {\n \"version\": \"0.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffragment-cache\u002F-\u002Ffragment-cache-0.2.1.tgz\",\n \"integrity\": \"sha1-QpD60n8T6Jvn8zeZxrxaCr\u002F\u002FDRk=\",\n \"requires\": {\n \"map-cache\": \"^0.2.2\"\n }\n },\n \"from2\": {\n \"version\": \"2.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffrom2\u002F-\u002Ffrom2-2.3.0.tgz\",\n \"integrity\": \"sha1-i\u002FtVAr3kpNNs\u002Fe6gB\u002FzKIdfjgq8=\",\n \"requires\": {\n \"inherits\": \"^2.0.1\",\n \"readable-stream\": \"^2.0.0\"\n },\n \"dependencies\": {\n \"readable-stream\": {\n \"version\": \"2.3.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freadable-stream\u002F-\u002Freadable-stream-2.3.7.tgz\",\n \"integrity\": \"sha512-Ebho8K4jIbHAxnuxi7o42OrZgF\u002FZTNcsZj6nRKyUmkhLFq8CHItp\u002Ffy6hQZuZmP\u002Fn3yZ9VBUbp4zz\u002FmX8hmYPw==\",\n \"requires\": {\n \"core-util-is\": \"~1.0.0\",\n \"inherits\": \"~2.0.3\",\n \"isarray\": \"~1.0.0\",\n \"process-nextick-args\": \"~2.0.0\",\n \"safe-buffer\": \"~5.1.1\",\n \"string_decoder\": \"~1.1.1\",\n \"util-deprecate\": \"~1.0.1\"\n }\n },\n \"string_decoder\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring_decoder\u002F-\u002Fstring_decoder-1.1.1.tgz\",\n \"integrity\": \"sha512-n\u002FShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP\u002FmzRfwg==\",\n \"requires\": {\n \"safe-buffer\": \"~5.1.0\"\n }\n }\n }\n },\n \"fs-constants\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffs-constants\u002F-\u002Ffs-constants-1.0.0.tgz\",\n \"integrity\": \"sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI\u002FfPFZkL5PSixOt6ZNKm+w+Hfp\u002FBciwow==\",\n \"optional\": true\n },\n \"fs-write-stream-atomic\": {\n \"version\": \"1.0.10\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffs-write-stream-atomic\u002F-\u002Ffs-write-stream-atomic-1.0.10.tgz\",\n \"integrity\": \"sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=\",\n \"requires\": {\n \"graceful-fs\": \"^4.1.2\",\n \"iferr\": \"^0.1.5\",\n \"imurmurhash\": \"^0.1.4\",\n \"readable-stream\": \"1 || 2\"\n },\n \"dependencies\": {\n \"readable-stream\": {\n \"version\": \"2.3.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freadable-stream\u002F-\u002Freadable-stream-2.3.7.tgz\",\n \"integrity\": \"sha512-Ebho8K4jIbHAxnuxi7o42OrZgF\u002FZTNcsZj6nRKyUmkhLFq8CHItp\u002Ffy6hQZuZmP\u002Fn3yZ9VBUbp4zz\u002FmX8hmYPw==\",\n \"requires\": {\n \"core-util-is\": \"~1.0.0\",\n \"inherits\": \"~2.0.3\",\n \"isarray\": \"~1.0.0\",\n \"process-nextick-args\": \"~2.0.0\",\n \"safe-buffer\": \"~5.1.1\",\n \"string_decoder\": \"~1.1.1\",\n \"util-deprecate\": \"~1.0.1\"\n }\n },\n \"string_decoder\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring_decoder\u002F-\u002Fstring_decoder-1.1.1.tgz\",\n \"integrity\": \"sha512-n\u002FShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP\u002FmzRfwg==\",\n \"requires\": {\n \"safe-buffer\": \"~5.1.0\"\n }\n }\n }\n },\n \"fs.realpath\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffs.realpath\u002F-\u002Ffs.realpath-1.0.0.tgz\",\n \"integrity\": \"sha1-FQStJSMVjKpA20onh8sBQRmU6k8=\"\n },\n \"fsevents\": {\n \"version\": \"2.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffsevents\u002F-\u002Ffsevents-2.2.0.tgz\",\n \"integrity\": \"sha512-pKnaUh2TNvk+\u002FegJdBw1h46LwyLx8BzEq+MGCf\u002FRMCVfEHHsGOCWG00dqk91kUPPArIIwMBg9T\u002FvirxwzP03cA==\",\n \"dev\": true,\n \"optional\": true\n },\n \"function-bind\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffunction-bind\u002F-\u002Ffunction-bind-1.1.1.tgz\",\n \"integrity\": \"sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==\",\n \"dev\": true\n },\n \"functional-red-black-tree\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffunctional-red-black-tree\u002F-\u002Ffunctional-red-black-tree-1.0.1.tgz\",\n \"integrity\": \"sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=\",\n \"dev\": true\n },\n \"gauge\": {\n \"version\": \"2.7.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fgauge\u002F-\u002Fgauge-2.7.4.tgz\",\n \"integrity\": \"sha1-LANAXHU4w51+s3sxcCLjJfsBi\u002Fc=\",\n \"optional\": true,\n \"requires\": {\n \"aproba\": \"^1.0.3\",\n \"console-control-strings\": \"^1.0.0\",\n \"has-unicode\": \"^2.0.0\",\n \"object-assign\": \"^4.1.0\",\n \"signal-exit\": \"^3.0.0\",\n \"string-width\": \"^1.0.1\",\n \"strip-ansi\": \"^3.0.1\",\n \"wide-align\": \"^1.1.0\"\n },\n \"dependencies\": {\n \"ansi-regex\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-regex\u002F-\u002Fansi-regex-2.1.1.tgz\",\n \"integrity\": \"sha1-w7M6te42DYbg5ijwRorn7yfWVN8=\",\n \"optional\": true\n },\n \"is-fullwidth-code-point\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-fullwidth-code-point\u002F-\u002Fis-fullwidth-code-point-1.0.0.tgz\",\n \"integrity\": \"sha1-754xOG8DGn8NZDr4L95QxFfvAMs=\",\n \"optional\": true,\n \"requires\": {\n \"number-is-nan\": \"^1.0.0\"\n }\n },\n \"string-width\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring-width\u002F-\u002Fstring-width-1.0.2.tgz\",\n \"integrity\": \"sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=\",\n \"optional\": true,\n \"requires\": {\n \"code-point-at\": \"^1.0.0\",\n \"is-fullwidth-code-point\": \"^1.0.0\",\n \"strip-ansi\": \"^3.0.0\"\n }\n },\n \"strip-ansi\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstrip-ansi\u002F-\u002Fstrip-ansi-3.0.1.tgz\",\n \"integrity\": \"sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=\",\n \"optional\": true,\n \"requires\": {\n \"ansi-regex\": \"^2.0.0\"\n }\n }\n }\n },\n \"gensync\": {\n \"version\": \"1.0.0-beta.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fgensync\u002F-\u002Fgensync-1.0.0-beta.2.tgz\",\n \"integrity\": \"sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo\u002FTlYz6eQiFcp1HcsCZO+nGgS8zg==\",\n \"dev\": true\n },\n \"get-caller-file\": {\n \"version\": \"2.0.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fget-caller-file\u002F-\u002Fget-caller-file-2.0.5.tgz\",\n \"integrity\": \"sha512-DyFP3BM\u002F3YHTQOCUL\u002Fw0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==\",\n \"dev\": true\n },\n \"get-intrinsic\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fget-intrinsic\u002F-\u002Fget-intrinsic-1.0.1.tgz\",\n \"integrity\": \"sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg==\",\n \"dev\": true,\n \"requires\": {\n \"function-bind\": \"^1.1.1\",\n \"has\": \"^1.0.3\",\n \"has-symbols\": \"^1.0.1\"\n }\n },\n \"get-own-enumerable-property-symbols\": {\n \"version\": \"3.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fget-own-enumerable-property-symbols\u002F-\u002Fget-own-enumerable-property-symbols-3.0.2.tgz\",\n \"integrity\": \"sha512-I0UBV\u002FXOz1XkIJHEUDMZAbzCThU\u002FH8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==\",\n \"dev\": true\n },\n \"get-package-type\": {\n \"version\": \"0.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fget-package-type\u002F-\u002Fget-package-type-0.1.0.tgz\",\n \"integrity\": \"sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==\",\n \"dev\": true\n },\n \"get-stdin\": {\n \"version\": \"6.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fget-stdin\u002F-\u002Fget-stdin-6.0.0.tgz\",\n \"integrity\": \"sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh\u002FllF1ur6oNwi+2ZzjKZ7g==\",\n \"dev\": true\n },\n \"get-stream\": {\n \"version\": \"5.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fget-stream\u002F-\u002Fget-stream-5.2.0.tgz\",\n \"integrity\": \"sha512-nBF+F1rAZVCu\u002Fp7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP\u002FQwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==\",\n \"dev\": true,\n \"requires\": {\n \"pump\": \"^3.0.0\"\n }\n },\n \"get-value\": {\n \"version\": \"2.0.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fget-value\u002F-\u002Fget-value-2.0.6.tgz\",\n \"integrity\": \"sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=\"\n },\n \"getpass\": {\n \"version\": \"0.1.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fgetpass\u002F-\u002Fgetpass-0.1.7.tgz\",\n \"integrity\": \"sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=\",\n \"dev\": true,\n \"requires\": {\n \"assert-plus\": \"^1.0.0\"\n }\n },\n \"github-from-package\": {\n \"version\": \"0.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fgithub-from-package\u002F-\u002Fgithub-from-package-0.0.0.tgz\",\n \"integrity\": \"sha1-l\u002Ftdlr\u002FeiXMxPyDoKI75oWf6ZM4=\",\n \"optional\": true\n },\n \"glob\": {\n \"version\": \"7.1.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fglob\u002F-\u002Fglob-7.1.6.tgz\",\n \"integrity\": \"sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==\",\n \"requires\": {\n \"fs.realpath\": \"^1.0.0\",\n \"inflight\": \"^1.0.4\",\n \"inherits\": \"2\",\n \"minimatch\": \"^3.0.4\",\n \"once\": \"^1.3.0\",\n \"path-is-absolute\": \"^1.0.0\"\n }\n },\n \"glob-parent\": {\n \"version\": \"5.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fglob-parent\u002F-\u002Fglob-parent-5.1.1.tgz\",\n \"integrity\": \"sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna\u002FWrfROrolq8GK5Ek6BiMwqL\u002FvoRYQ==\",\n \"requires\": {\n \"is-glob\": \"^4.0.1\"\n }\n },\n \"glob-to-regexp\": {\n \"version\": \"0.4.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fglob-to-regexp\u002F-\u002Fglob-to-regexp-0.4.1.tgz\",\n \"integrity\": \"sha512-lkX1HJXwyMcprw\u002F5YUZc2s7DrpAiHB21\u002FV+E1rHUrVNokkvB6bqMzT0VfV6\u002F86ZNabt1k14YOIaT7nDvOX3Iiw==\"\n },\n \"globals\": {\n \"version\": \"11.12.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fglobals\u002F-\u002Fglobals-11.12.0.tgz\",\n \"integrity\": \"sha512-WOBp\u002FEEGUiIsJSp7wcv\u002Fy6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==\"\n },\n \"graceful-fs\": {\n \"version\": \"4.2.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fgraceful-fs\u002F-\u002Fgraceful-fs-4.2.4.tgz\",\n \"integrity\": \"sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN\u002F4m1NdkbZ2nOsEF+cI1Edgql5zCRhs\u002FVsQYRvrXctxktVXZUkixw==\"\n },\n \"growly\": {\n \"version\": \"1.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fgrowly\u002F-\u002Fgrowly-1.3.0.tgz\",\n \"integrity\": \"sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=\",\n \"dev\": true,\n \"optional\": true\n },\n \"har-schema\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhar-schema\u002F-\u002Fhar-schema-2.0.0.tgz\",\n \"integrity\": \"sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=\",\n \"dev\": true\n },\n \"har-validator\": {\n \"version\": \"5.1.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhar-validator\u002F-\u002Fhar-validator-5.1.5.tgz\",\n \"integrity\": \"sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==\",\n \"dev\": true,\n \"requires\": {\n \"ajv\": \"^6.12.3\",\n \"har-schema\": \"^2.0.0\"\n }\n },\n \"has\": {\n \"version\": \"1.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas\u002F-\u002Fhas-1.0.3.tgz\",\n \"integrity\": \"sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5\u002FVKPp5tTpWIV4JHHZK1\u002FBxbFRtf\u002FsiA2SWTe09caDmVtYYzWEIbBS4zw==\",\n \"dev\": true,\n \"requires\": {\n \"function-bind\": \"^1.1.1\"\n }\n },\n \"has-flag\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-3.0.0.tgz\",\n \"integrity\": \"sha1-tdRU3CGZriJWmfNGfloH87lVuv0=\"\n },\n \"has-symbols\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-symbols\u002F-\u002Fhas-symbols-1.0.1.tgz\",\n \"integrity\": \"sha512-PLcsoqu++dmEIZB+6totNFKq\u002F7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP\u002FGvrS0Kg==\",\n \"dev\": true\n },\n \"has-unicode\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-unicode\u002F-\u002Fhas-unicode-2.0.1.tgz\",\n \"integrity\": \"sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=\",\n \"optional\": true\n },\n \"has-value\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-value\u002F-\u002Fhas-value-1.0.0.tgz\",\n \"integrity\": \"sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=\",\n \"requires\": {\n \"get-value\": \"^2.0.6\",\n \"has-values\": \"^1.0.0\",\n \"isobject\": \"^3.0.0\"\n },\n \"dependencies\": {\n \"isobject\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fisobject\u002F-\u002Fisobject-3.0.1.tgz\",\n \"integrity\": \"sha1-TkMekrEalzFjaqH5yNHMvP2reN8=\"\n }\n }\n },\n \"has-values\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-values\u002F-\u002Fhas-values-1.0.0.tgz\",\n \"integrity\": \"sha1-lbC2P+whRmGab+V\u002F51Yo1aOe\u002Fk8=\",\n \"requires\": {\n \"is-number\": \"^3.0.0\",\n \"kind-of\": \"^4.0.0\"\n },\n \"dependencies\": {\n \"is-number\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-number\u002F-\u002Fis-number-3.0.0.tgz\",\n \"integrity\": \"sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=\",\n \"requires\": {\n \"kind-of\": \"^3.0.2\"\n },\n \"dependencies\": {\n \"kind-of\": {\n \"version\": \"3.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-3.2.2.tgz\",\n \"integrity\": \"sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=\",\n \"requires\": {\n \"is-buffer\": \"^1.1.5\"\n }\n }\n }\n },\n \"kind-of\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-4.0.0.tgz\",\n \"integrity\": \"sha1-IIE989cSkosgc3hpGkUGb65y3Vc=\",\n \"requires\": {\n \"is-buffer\": \"^1.1.5\"\n }\n }\n }\n },\n \"hash-base\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhash-base\u002F-\u002Fhash-base-3.1.0.tgz\",\n \"integrity\": \"sha512-1nmYp\u002FrhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI\u002FNcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==\",\n \"requires\": {\n \"inherits\": \"^2.0.4\",\n \"readable-stream\": \"^3.6.0\",\n \"safe-buffer\": \"^5.2.0\"\n },\n \"dependencies\": {\n \"safe-buffer\": {\n \"version\": \"5.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsafe-buffer\u002F-\u002Fsafe-buffer-5.2.1.tgz\",\n \"integrity\": \"sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==\"\n }\n }\n },\n \"hash.js\": {\n \"version\": \"1.1.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhash.js\u002F-\u002Fhash.js-1.1.7.tgz\",\n \"integrity\": \"sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s\u002FuzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==\",\n \"requires\": {\n \"inherits\": \"^2.0.3\",\n \"minimalistic-assert\": \"^1.0.1\"\n }\n },\n \"he\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhe\u002F-\u002Fhe-1.2.0.tgz\",\n \"integrity\": \"sha512-F\u002F1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn\u002F7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==\"\n },\n \"hmac-drbg\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhmac-drbg\u002F-\u002Fhmac-drbg-1.0.1.tgz\",\n \"integrity\": \"sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=\",\n \"requires\": {\n \"hash.js\": \"^1.0.3\",\n \"minimalistic-assert\": \"^1.0.0\",\n \"minimalistic-crypto-utils\": \"^1.0.1\"\n }\n },\n \"hoist-non-react-statics\": {\n \"version\": \"3.3.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhoist-non-react-statics\u002F-\u002Fhoist-non-react-statics-3.3.2.tgz\",\n \"integrity\": \"sha512-\u002FgGivxi8JPKWNm\u002FW0jSmzcMPpfpPLc3dY\u002F6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==\",\n \"requires\": {\n \"react-is\": \"^16.7.0\"\n }\n },\n \"hosted-git-info\": {\n \"version\": \"2.8.8\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhosted-git-info\u002F-\u002Fhosted-git-info-2.8.8.tgz\",\n \"integrity\": \"sha512-f\u002FwzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==\",\n \"dev\": true\n },\n \"html-encoding-sniffer\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhtml-encoding-sniffer\u002F-\u002Fhtml-encoding-sniffer-1.0.2.tgz\",\n \"integrity\": \"sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4\u002FFuZJMVWyNaIDr4RGmaSYw==\",\n \"dev\": true,\n \"requires\": {\n \"whatwg-encoding\": \"^1.0.1\"\n }\n },\n \"html-escaper\": {\n \"version\": \"2.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhtml-escaper\u002F-\u002Fhtml-escaper-2.0.2.tgz\",\n \"integrity\": \"sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==\",\n \"dev\": true\n },\n \"htmlparser2\": {\n \"version\": \"4.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhtmlparser2\u002F-\u002Fhtmlparser2-4.1.0.tgz\",\n \"integrity\": \"sha512-4zDq1a1zhE4gQso\u002Fc5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==\",\n \"requires\": {\n \"domelementtype\": \"^2.0.1\",\n \"domhandler\": \"^3.0.0\",\n \"domutils\": \"^2.0.0\",\n \"entities\": \"^2.0.0\"\n }\n },\n \"http-errors\": {\n \"version\": \"1.7.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhttp-errors\u002F-\u002Fhttp-errors-1.7.3.tgz\",\n \"integrity\": \"sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm\u002FQfw==\",\n \"requires\": {\n \"depd\": \"~1.1.2\",\n \"inherits\": \"2.0.4\",\n \"setprototypeof\": \"1.1.1\",\n \"statuses\": \"\u003E= 1.5.0 \u003C 2\",\n \"toidentifier\": \"1.0.0\"\n }\n },\n \"http-signature\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhttp-signature\u002F-\u002Fhttp-signature-1.2.0.tgz\",\n \"integrity\": \"sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=\",\n \"dev\": true,\n \"requires\": {\n \"assert-plus\": \"^1.0.0\",\n \"jsprim\": \"^1.2.2\",\n \"sshpk\": \"^1.7.0\"\n }\n },\n \"https-browserify\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhttps-browserify\u002F-\u002Fhttps-browserify-1.0.0.tgz\",\n \"integrity\": \"sha1-7AbBDgo0wPL68Zn3\u002FX\u002FHj\u002F\u002FQPHM=\"\n },\n \"https-proxy-agent\": {\n \"version\": \"5.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhttps-proxy-agent\u002F-\u002Fhttps-proxy-agent-5.0.0.tgz\",\n \"integrity\": \"sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==\",\n \"requires\": {\n \"agent-base\": \"6\",\n \"debug\": \"4\"\n }\n },\n \"human-signals\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhuman-signals\u002F-\u002Fhuman-signals-1.1.1.tgz\",\n \"integrity\": \"sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj\u002F3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==\",\n \"dev\": true\n },\n \"husky\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhusky\u002F-\u002Fhusky-4.3.0.tgz\",\n \"integrity\": \"sha512-tTMeLCLqSBqnflBZnlVDhpaIMucSGaYyX6855jM4AguGeWCeSzNdb1mfyWduTZ3pe3SJVvVWGL0jO1iKZVPfTA==\",\n \"dev\": true,\n \"requires\": {\n \"chalk\": \"^4.0.0\",\n \"ci-info\": \"^2.0.0\",\n \"compare-versions\": \"^3.6.0\",\n \"cosmiconfig\": \"^7.0.0\",\n \"find-versions\": \"^3.2.0\",\n \"opencollective-postinstall\": \"^2.0.2\",\n \"pkg-dir\": \"^4.2.0\",\n \"please-upgrade-node\": \"^3.2.0\",\n \"slash\": \"^3.0.0\",\n \"which-pm-runs\": \"^1.0.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"4.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-4.1.0.tgz\",\n \"integrity\": \"sha512-qwx12AxXe2Q5xQ43Ac\u002F\u002FI6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"iconv-lite\": {\n \"version\": \"0.4.24\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ficonv-lite\u002F-\u002Ficonv-lite-0.4.24.tgz\",\n \"integrity\": \"sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8\u002FrA==\",\n \"requires\": {\n \"safer-buffer\": \"\u003E= 2.1.2 \u003C 3\"\n }\n },\n \"icss-utils\": {\n \"version\": \"4.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ficss-utils\u002F-\u002Ficss-utils-4.1.1.tgz\",\n \"integrity\": \"sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==\",\n \"requires\": {\n \"postcss\": \"^7.0.14\"\n },\n \"dependencies\": {\n \"postcss\": {\n \"version\": \"7.0.35\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpostcss\u002F-\u002Fpostcss-7.0.35.tgz\",\n \"integrity\": \"sha512-3QT8bBJeX\u002FS5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==\",\n \"requires\": {\n \"chalk\": \"^2.4.2\",\n \"source-map\": \"^0.6.1\",\n \"supports-color\": \"^6.1.0\"\n }\n },\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\"\n },\n \"supports-color\": {\n \"version\": \"6.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-6.1.0.tgz\",\n \"integrity\": \"sha512-qe1jfm1Mg7Nq\u002FNSh6XE24gPXROEVsWHxC1LIx\u002F\u002FXNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==\",\n \"requires\": {\n \"has-flag\": \"^3.0.0\"\n }\n }\n }\n },\n \"ieee754\": {\n \"version\": \"1.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fieee754\u002F-\u002Fieee754-1.2.1.tgz\",\n \"integrity\": \"sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6\u002FDf5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==\"\n },\n \"iferr\": {\n \"version\": \"0.1.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fiferr\u002F-\u002Fiferr-0.1.5.tgz\",\n \"integrity\": \"sha1-xg7taebY\u002FbazEEofy8ocGS3FtQE=\"\n },\n \"ignore\": {\n \"version\": \"4.0.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fignore\u002F-\u002Fignore-4.0.6.tgz\",\n \"integrity\": \"sha512-cyFDKrqc\u002FYdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy\u002FKjuxWLZ\u002FFHEH6Moq1NizMOBWyTcv8O4OZIMg==\",\n \"dev\": true\n },\n \"import-fresh\": {\n \"version\": \"3.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fimport-fresh\u002F-\u002Fimport-fresh-3.2.2.tgz\",\n \"integrity\": \"sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG\u002Flw==\",\n \"dev\": true,\n \"requires\": {\n \"parent-module\": \"^1.0.0\",\n \"resolve-from\": \"^4.0.0\"\n },\n \"dependencies\": {\n \"resolve-from\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fresolve-from\u002F-\u002Fresolve-from-4.0.0.tgz\",\n \"integrity\": \"sha512-pb\u002FMYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp\u002F+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==\",\n \"dev\": true\n }\n }\n },\n \"import-local\": {\n \"version\": \"3.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fimport-local\u002F-\u002Fimport-local-3.0.2.tgz\",\n \"integrity\": \"sha512-vjL3+w0oulAVZ0hBHnxa\u002FNm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==\",\n \"dev\": true,\n \"requires\": {\n \"pkg-dir\": \"^4.2.0\",\n \"resolve-cwd\": \"^3.0.0\"\n }\n },\n \"imurmurhash\": {\n \"version\": \"0.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fimurmurhash\u002F-\u002Fimurmurhash-0.1.4.tgz\",\n \"integrity\": \"sha1-khi5srkoojixPcT7a21XbyMUU+o=\"\n },\n \"indent-string\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Findent-string\u002F-\u002Findent-string-4.0.0.tgz\",\n \"integrity\": \"sha512-EdDDZu4A2OyIK7Lr\u002F2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1\u002Fy5xwg==\",\n \"dev\": true\n },\n \"indexes-of\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Findexes-of\u002F-\u002Findexes-of-1.0.1.tgz\",\n \"integrity\": \"sha1-8w9xbI4r00bHtn0985FVZqfAVgc=\"\n },\n \"infer-owner\": {\n \"version\": \"1.0.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Finfer-owner\u002F-\u002Finfer-owner-1.0.4.tgz\",\n \"integrity\": \"sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+\u002FATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==\"\n },\n \"inflight\": {\n \"version\": \"1.0.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Finflight\u002F-\u002Finflight-1.0.6.tgz\",\n \"integrity\": \"sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=\",\n \"requires\": {\n \"once\": \"^1.3.0\",\n \"wrappy\": \"1\"\n }\n },\n \"inherits\": {\n \"version\": \"2.0.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Finherits\u002F-\u002Finherits-2.0.4.tgz\",\n \"integrity\": \"sha512-k\u002FvGaX4\u002FYla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==\"\n },\n \"ini\": {\n \"version\": \"1.3.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fini\u002F-\u002Fini-1.3.5.tgz\",\n \"integrity\": \"sha512-RZY5huIKCMRWDUqZlEi72f\u002FlmXKMvuszcMBduliQ3nnWbx9X\u002FZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==\",\n \"optional\": true\n },\n \"inquirer\": {\n \"version\": \"7.3.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Finquirer\u002F-\u002Finquirer-7.3.3.tgz\",\n \"integrity\": \"sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC\u002FqvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY\u002FCR0IA==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-escapes\": \"^4.2.1\",\n \"chalk\": \"^4.1.0\",\n \"cli-cursor\": \"^3.1.0\",\n \"cli-width\": \"^3.0.0\",\n \"external-editor\": \"^3.0.3\",\n \"figures\": \"^3.0.0\",\n \"lodash\": \"^4.17.19\",\n \"mute-stream\": \"0.0.8\",\n \"run-async\": \"^2.4.0\",\n \"rxjs\": \"^6.6.0\",\n \"string-width\": \"^4.1.0\",\n \"strip-ansi\": \"^6.0.0\",\n \"through\": \"^2.3.6\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"4.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-4.1.0.tgz\",\n \"integrity\": \"sha512-qwx12AxXe2Q5xQ43Ac\u002F\u002FI6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"strip-ansi\": {\n \"version\": \"6.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstrip-ansi\u002F-\u002Fstrip-ansi-6.0.0.tgz\",\n \"integrity\": \"sha512-AuvKTrTfQNYNIctbR1K\u002FYGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-regex\": \"^5.0.0\"\n }\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"internal-slot\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Finternal-slot\u002F-\u002Finternal-slot-1.0.2.tgz\",\n \"integrity\": \"sha512-2cQNfwhAfJIkU4KZPkDI+Gj5yNNnbqi40W9Gge6dfnk4TocEVm00B3bdiL+JINrbGJil2TeHvM4rETGzk\u002Ff\u002F0g==\",\n \"dev\": true,\n \"requires\": {\n \"es-abstract\": \"^1.17.0-next.1\",\n \"has\": \"^1.0.3\",\n \"side-channel\": \"^1.0.2\"\n }\n },\n \"ip-regex\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fip-regex\u002F-\u002Fip-regex-2.1.0.tgz\",\n \"integrity\": \"sha1-+ni\u002FXS5pE8kRzp+BnuUUa7bYROk=\",\n \"dev\": true\n },\n \"is-accessor-descriptor\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-accessor-descriptor\u002F-\u002Fis-accessor-descriptor-1.0.0.tgz\",\n \"integrity\": \"sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==\",\n \"requires\": {\n \"kind-of\": \"^6.0.0\"\n }\n },\n \"is-arrayish\": {\n \"version\": \"0.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-arrayish\u002F-\u002Fis-arrayish-0.2.1.tgz\",\n \"integrity\": \"sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=\",\n \"dev\": true\n },\n \"is-binary-path\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-binary-path\u002F-\u002Fis-binary-path-2.1.0.tgz\",\n \"integrity\": \"sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR\u002Fg7rd0xUimYNlvZRE\u002FK2MgZTjWy725IfelLeVcEM97mmtRGXw==\",\n \"requires\": {\n \"binary-extensions\": \"^2.0.0\"\n }\n },\n \"is-buffer\": {\n \"version\": \"1.1.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-buffer\u002F-\u002Fis-buffer-1.1.6.tgz\",\n \"integrity\": \"sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5\u002FewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==\"\n },\n \"is-callable\": {\n \"version\": \"1.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-callable\u002F-\u002Fis-callable-1.2.2.tgz\",\n \"integrity\": \"sha512-dnMqspv5nU3LoewK2N\u002Fy7KLtxtakvTuaCsU9FU50\u002FQDmdbHNy\u002F4\u002FJuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==\",\n \"dev\": true\n },\n \"is-ci\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-ci\u002F-\u002Fis-ci-2.0.0.tgz\",\n \"integrity\": \"sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==\",\n \"dev\": true,\n \"requires\": {\n \"ci-info\": \"^2.0.0\"\n }\n },\n \"is-core-module\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-core-module\u002F-\u002Fis-core-module-2.1.0.tgz\",\n \"integrity\": \"sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==\",\n \"dev\": true,\n \"requires\": {\n \"has\": \"^1.0.3\"\n }\n },\n \"is-data-descriptor\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-data-descriptor\u002F-\u002Fis-data-descriptor-1.0.0.tgz\",\n \"integrity\": \"sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE\u002FjLQ==\",\n \"requires\": {\n \"kind-of\": \"^6.0.0\"\n }\n },\n \"is-date-object\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-date-object\u002F-\u002Fis-date-object-1.0.2.tgz\",\n \"integrity\": \"sha512-USlDT524woQ08aoZFzh3\u002FZ6ch9Y\u002FEWXEHQ\u002FAaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP\u002FL5zk0g==\",\n \"dev\": true\n },\n \"is-descriptor\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-descriptor\u002F-\u002Fis-descriptor-1.0.2.tgz\",\n \"integrity\": \"sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==\",\n \"requires\": {\n \"is-accessor-descriptor\": \"^1.0.0\",\n \"is-data-descriptor\": \"^1.0.0\",\n \"kind-of\": \"^6.0.2\"\n }\n },\n \"is-docker\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-docker\u002F-\u002Fis-docker-2.1.1.tgz\",\n \"integrity\": \"sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==\",\n \"dev\": true,\n \"optional\": true\n },\n \"is-extendable\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-extendable\u002F-\u002Fis-extendable-1.0.1.tgz\",\n \"integrity\": \"sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul\u002F6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==\",\n \"requires\": {\n \"is-plain-object\": \"^2.0.4\"\n }\n },\n \"is-extglob\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-extglob\u002F-\u002Fis-extglob-2.1.1.tgz\",\n \"integrity\": \"sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=\"\n },\n \"is-fullwidth-code-point\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-fullwidth-code-point\u002F-\u002Fis-fullwidth-code-point-3.0.0.tgz\",\n \"integrity\": \"sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==\",\n \"dev\": true\n },\n \"is-generator-fn\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-generator-fn\u002F-\u002Fis-generator-fn-2.1.0.tgz\",\n \"integrity\": \"sha512-cTIB4yPYL\u002FGrw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==\",\n \"dev\": true\n },\n \"is-glob\": {\n \"version\": \"4.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-glob\u002F-\u002Fis-glob-4.0.1.tgz\",\n \"integrity\": \"sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT\u002FH6NQv\u002Fghhy30o55ufafxJ\u002FLdH79LLs2Kfrn85TLKyA7BUg==\",\n \"requires\": {\n \"is-extglob\": \"^2.1.1\"\n }\n },\n \"is-negative-zero\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-negative-zero\u002F-\u002Fis-negative-zero-2.0.0.tgz\",\n \"integrity\": \"sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE=\",\n \"dev\": true\n },\n \"is-number\": {\n \"version\": \"7.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-number\u002F-\u002Fis-number-7.0.0.tgz\",\n \"integrity\": \"sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==\"\n },\n \"is-obj\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-obj\u002F-\u002Fis-obj-1.0.1.tgz\",\n \"integrity\": \"sha1-PkcprB9f3gJc19g6iW2rn09n2w8=\",\n \"dev\": true\n },\n \"is-plain-object\": {\n \"version\": \"2.0.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-plain-object\u002F-\u002Fis-plain-object-2.0.4.tgz\",\n \"integrity\": \"sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI\u002FyqXiFR5mdLsgYNaPe8uao6Uv9Og==\",\n \"requires\": {\n \"isobject\": \"^3.0.1\"\n },\n \"dependencies\": {\n \"isobject\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fisobject\u002F-\u002Fisobject-3.0.1.tgz\",\n \"integrity\": \"sha1-TkMekrEalzFjaqH5yNHMvP2reN8=\"\n }\n }\n },\n \"is-regex\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-regex\u002F-\u002Fis-regex-1.1.1.tgz\",\n \"integrity\": \"sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq\u002Fw2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh\u002FLIg==\",\n \"dev\": true,\n \"requires\": {\n \"has-symbols\": \"^1.0.1\"\n }\n },\n \"is-regexp\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-regexp\u002F-\u002Fis-regexp-1.0.0.tgz\",\n \"integrity\": \"sha1-\u002FS2INUXEa6xaYz57mgnof6LLUGk=\",\n \"dev\": true\n },\n \"is-stream\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-stream\u002F-\u002Fis-stream-2.0.0.tgz\",\n \"integrity\": \"sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S\u002Fs7Ftw6Nd\u002FkiEw==\",\n \"dev\": true\n },\n \"is-string\": {\n \"version\": \"1.0.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-string\u002F-\u002Fis-string-1.0.5.tgz\",\n \"integrity\": \"sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0\u002FH+fBhEfWX4A\u002Fw9TBJ+ol+okqJKFE6vQ==\",\n \"dev\": true\n },\n \"is-symbol\": {\n \"version\": \"1.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-symbol\u002F-\u002Fis-symbol-1.0.3.tgz\",\n \"integrity\": \"sha512-OwijhaRSgqvhm\u002F0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl\u002Fop6GqY894AZwv9faQ==\",\n \"dev\": true,\n \"requires\": {\n \"has-symbols\": \"^1.0.1\"\n }\n },\n \"is-typedarray\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-typedarray\u002F-\u002Fis-typedarray-1.0.0.tgz\",\n \"integrity\": \"sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=\",\n \"dev\": true\n },\n \"is-windows\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-windows\u002F-\u002Fis-windows-1.0.2.tgz\",\n \"integrity\": \"sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ\u002FpGu6m8TRnBHP9dkXQVsT\u002FCOVIA==\"\n },\n \"is-wsl\": {\n \"version\": \"2.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-wsl\u002F-\u002Fis-wsl-2.2.0.tgz\",\n \"integrity\": \"sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==\",\n \"dev\": true,\n \"optional\": true,\n \"requires\": {\n \"is-docker\": \"^2.0.0\"\n }\n },\n \"isarray\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fisarray\u002F-\u002Fisarray-1.0.0.tgz\",\n \"integrity\": \"sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=\"\n },\n \"isexe\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fisexe\u002F-\u002Fisexe-2.0.0.tgz\",\n \"integrity\": \"sha1-6PvzdNxVb\u002FiUehDcsFctYz8s+hA=\",\n \"dev\": true\n },\n \"isobject\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fisobject\u002F-\u002Fisobject-2.1.0.tgz\",\n \"integrity\": \"sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=\",\n \"requires\": {\n \"isarray\": \"1.0.0\"\n }\n },\n \"isstream\": {\n \"version\": \"0.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fisstream\u002F-\u002Fisstream-0.1.2.tgz\",\n \"integrity\": \"sha1-R+Y\u002FevVa+m+S4VAOaQ64uFKcCZo=\",\n \"dev\": true\n },\n \"istanbul-lib-coverage\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fistanbul-lib-coverage\u002F-\u002Fistanbul-lib-coverage-3.0.0.tgz\",\n \"integrity\": \"sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC\u002FmggutCMUIhWMm8gAHb8tHlyfD3\u002Fl6rlgNA5cKdDzEAf6hEg==\",\n \"dev\": true\n },\n \"istanbul-lib-instrument\": {\n \"version\": \"4.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fistanbul-lib-instrument\u002F-\u002Fistanbul-lib-instrument-4.0.3.tgz\",\n \"integrity\": \"sha512-BXgQl9kf4WTCPCCpmFGoJkz\u002F+uhvm7h7PFKUYxh7qarQd3ER33vHG\u002F\u002FqaE8eN25l07YqZPpHXU9I09l\u002FRD5aGQ==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fcore\": \"^7.7.5\",\n \"@istanbuljs\u002Fschema\": \"^0.1.2\",\n \"istanbul-lib-coverage\": \"^3.0.0\",\n \"semver\": \"^6.3.0\"\n },\n \"dependencies\": {\n \"semver\": {\n \"version\": \"6.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsemver\u002F-\u002Fsemver-6.3.0.tgz\",\n \"integrity\": \"sha512-b39TBaTSfV6yBrapU89p5fKekE2m\u002FNwnDocOVruQFS1\u002FveMgdzuPcnOM34M6CwxW8jH\u002FlxEa5rBoDeUwu5HHTw==\",\n \"dev\": true\n }\n }\n },\n \"istanbul-lib-report\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fistanbul-lib-report\u002F-\u002Fistanbul-lib-report-3.0.0.tgz\",\n \"integrity\": \"sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==\",\n \"dev\": true,\n \"requires\": {\n \"istanbul-lib-coverage\": \"^3.0.0\",\n \"make-dir\": \"^3.0.0\",\n \"supports-color\": \"^7.1.0\"\n },\n \"dependencies\": {\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"istanbul-lib-source-maps\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fistanbul-lib-source-maps\u002F-\u002Fistanbul-lib-source-maps-4.0.0.tgz\",\n \"integrity\": \"sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU\u002FDisrZg==\",\n \"dev\": true,\n \"requires\": {\n \"debug\": \"^4.1.1\",\n \"istanbul-lib-coverage\": \"^3.0.0\",\n \"source-map\": \"^0.6.1\"\n },\n \"dependencies\": {\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\",\n \"dev\": true\n }\n }\n },\n \"istanbul-reports\": {\n \"version\": \"3.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fistanbul-reports\u002F-\u002Fistanbul-reports-3.0.2.tgz\",\n \"integrity\": \"sha512-9tZvz7AiR3PEDNGiV9vIouQ\u002FEAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI\u002FOqjWNCRUw==\",\n \"dev\": true,\n \"requires\": {\n \"html-escaper\": \"^2.0.0\",\n \"istanbul-lib-report\": \"^3.0.0\"\n }\n },\n \"jest\": {\n \"version\": \"25.5.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest\u002F-\u002Fjest-25.5.4.tgz\",\n \"integrity\": \"sha512-hHFJROBTqZahnO+X+PMtT6G2\u002FztqAZJveGqz\u002F\u002FFnWWHurizkD05PQGzRZOhF3XP6z7SJmL+5tCfW8qV06JypwQ==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Fcore\": \"^25.5.4\",\n \"import-local\": \"^3.0.2\",\n \"jest-cli\": \"^25.5.4\"\n }\n },\n \"jest-changed-files\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-changed-files\u002F-\u002Fjest-changed-files-25.5.0.tgz\",\n \"integrity\": \"sha512-EOw9QEqapsDT7mKF162m8HFzRPbmP8qJQny6ldVOdOVBz3ACgPm\u002F1nAn5fPQ\u002FNDaYhX\u002FAHkrGwwkCncpAVSXcw==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"execa\": \"^3.2.0\",\n \"throat\": \"^5.0.0\"\n }\n },\n \"jest-cli\": {\n \"version\": \"25.5.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-cli\u002F-\u002Fjest-cli-25.5.4.tgz\",\n \"integrity\": \"sha512-rG8uJkIiOUpnREh1768\u002FN3n27Cm+xPFkSNFO91tgg+8o2rXeVLStz+vkXkGr4UtzH6t1SNbjwoiswd7p4AhHTw==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Fcore\": \"^25.5.4\",\n \"@jest\u002Ftest-result\": \"^25.5.0\",\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"chalk\": \"^3.0.0\",\n \"exit\": \"^0.1.2\",\n \"graceful-fs\": \"^4.2.4\",\n \"import-local\": \"^3.0.2\",\n \"is-ci\": \"^2.0.0\",\n \"jest-config\": \"^25.5.4\",\n \"jest-util\": \"^25.5.0\",\n \"jest-validate\": \"^25.5.0\",\n \"prompts\": \"^2.0.1\",\n \"realpath-native\": \"^2.0.0\",\n \"yargs\": \"^15.3.1\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"jest-config\": {\n \"version\": \"25.5.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-config\u002F-\u002Fjest-config-25.5.4.tgz\",\n \"integrity\": \"sha512-SZwR91SwcdK6bz7Gco8qL7YY2sx8tFJYzvg216DLihTWf+LKY\u002FDoJXpM9nTzYakSyfblbqeU48p\u002Fp7Jzy05Atg==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fcore\": \"^7.1.0\",\n \"@jest\u002Ftest-sequencer\": \"^25.5.4\",\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"babel-jest\": \"^25.5.1\",\n \"chalk\": \"^3.0.0\",\n \"deepmerge\": \"^4.2.2\",\n \"glob\": \"^7.1.1\",\n \"graceful-fs\": \"^4.2.4\",\n \"jest-environment-jsdom\": \"^25.5.0\",\n \"jest-environment-node\": \"^25.5.0\",\n \"jest-get-type\": \"^25.2.6\",\n \"jest-jasmine2\": \"^25.5.4\",\n \"jest-regex-util\": \"^25.2.6\",\n \"jest-resolve\": \"^25.5.1\",\n \"jest-util\": \"^25.5.0\",\n \"jest-validate\": \"^25.5.0\",\n \"micromatch\": \"^4.0.2\",\n \"pretty-format\": \"^25.5.0\",\n \"realpath-native\": \"^2.0.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"pretty-format\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpretty-format\u002F-\u002Fpretty-format-25.5.0.tgz\",\n \"integrity\": \"sha512-kbo\u002Fkq2LQ\u002FA\u002Fis0PQwsEHM7Ca6\u002F\u002FbGPPvU6UnsdDRSKTWxT\u002Fru\u002Fxb88v4BJf6a69H+uTytOEsTusT9ksd\u002F1iWQ==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"ansi-regex\": \"^5.0.0\",\n \"ansi-styles\": \"^4.0.0\",\n \"react-is\": \"^16.12.0\"\n }\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"jest-diff\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-diff\u002F-\u002Fjest-diff-25.5.0.tgz\",\n \"integrity\": \"sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==\",\n \"dev\": true,\n \"requires\": {\n \"chalk\": \"^3.0.0\",\n \"diff-sequences\": \"^25.2.6\",\n \"jest-get-type\": \"^25.2.6\",\n \"pretty-format\": \"^25.5.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"pretty-format\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpretty-format\u002F-\u002Fpretty-format-25.5.0.tgz\",\n \"integrity\": \"sha512-kbo\u002Fkq2LQ\u002FA\u002Fis0PQwsEHM7Ca6\u002F\u002FbGPPvU6UnsdDRSKTWxT\u002Fru\u002Fxb88v4BJf6a69H+uTytOEsTusT9ksd\u002F1iWQ==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"ansi-regex\": \"^5.0.0\",\n \"ansi-styles\": \"^4.0.0\",\n \"react-is\": \"^16.12.0\"\n }\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"jest-docblock\": {\n \"version\": \"25.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-docblock\u002F-\u002Fjest-docblock-25.3.0.tgz\",\n \"integrity\": \"sha512-aktF0kCar8+zxRHxQZwxMy70stc9R1mOmrLsT5VO3pIT0uzGRSDAXxSlz4NqQWpuLjPpuMhPRl7H+5FRsvIQAg==\",\n \"dev\": true,\n \"requires\": {\n \"detect-newline\": \"^3.0.0\"\n }\n },\n \"jest-each\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-each\u002F-\u002Fjest-each-25.5.0.tgz\",\n \"integrity\": \"sha512-QBogUxna3D8vtiItvn54xXde7+vuzqRrEeaw8r1s+1TG9eZLVJE5ZkKoSUlqFwRjnlaA4hyKGiu9OlkFIuKnjA==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"chalk\": \"^3.0.0\",\n \"jest-get-type\": \"^25.2.6\",\n \"jest-util\": \"^25.5.0\",\n \"pretty-format\": \"^25.5.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"pretty-format\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpretty-format\u002F-\u002Fpretty-format-25.5.0.tgz\",\n \"integrity\": \"sha512-kbo\u002Fkq2LQ\u002FA\u002Fis0PQwsEHM7Ca6\u002F\u002FbGPPvU6UnsdDRSKTWxT\u002Fru\u002Fxb88v4BJf6a69H+uTytOEsTusT9ksd\u002F1iWQ==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"ansi-regex\": \"^5.0.0\",\n \"ansi-styles\": \"^4.0.0\",\n \"react-is\": \"^16.12.0\"\n }\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"jest-environment-jsdom\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-environment-jsdom\u002F-\u002Fjest-environment-jsdom-25.5.0.tgz\",\n \"integrity\": \"sha512-7Jr02ydaq4jaWMZLY+Skn8wL5nVIYpWvmeatOHL3tOcV3Zw8sjnPpx+ZdeBfc457p8jCR9J6YCc+Lga0oIy62A==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Fenvironment\": \"^25.5.0\",\n \"@jest\u002Ffake-timers\": \"^25.5.0\",\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"jest-mock\": \"^25.5.0\",\n \"jest-util\": \"^25.5.0\",\n \"jsdom\": \"^15.2.1\"\n }\n },\n \"jest-environment-node\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-environment-node\u002F-\u002Fjest-environment-node-25.5.0.tgz\",\n \"integrity\": \"sha512-iuxK6rQR2En9EID+2k+IBs5fCFd919gVVK5BeND82fYeLWPqvRcFNPKu9+gxTwfB5XwBGBvZ0HFQa+cHtIoslA==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Fenvironment\": \"^25.5.0\",\n \"@jest\u002Ffake-timers\": \"^25.5.0\",\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"jest-mock\": \"^25.5.0\",\n \"jest-util\": \"^25.5.0\",\n \"semver\": \"^6.3.0\"\n },\n \"dependencies\": {\n \"semver\": {\n \"version\": \"6.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsemver\u002F-\u002Fsemver-6.3.0.tgz\",\n \"integrity\": \"sha512-b39TBaTSfV6yBrapU89p5fKekE2m\u002FNwnDocOVruQFS1\u002FveMgdzuPcnOM34M6CwxW8jH\u002FlxEa5rBoDeUwu5HHTw==\",\n \"dev\": true\n }\n }\n },\n \"jest-get-type\": {\n \"version\": \"25.2.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-get-type\u002F-\u002Fjest-get-type-25.2.6.tgz\",\n \"integrity\": \"sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF\u002FIg==\",\n \"dev\": true\n },\n \"jest-haste-map\": {\n \"version\": \"25.5.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-haste-map\u002F-\u002Fjest-haste-map-25.5.1.tgz\",\n \"integrity\": \"sha512-dddgh9UZjV7SCDQUrQ+5t9yy8iEgKc1AKqZR9YDww8xsVOtzPQSMVLDChc21+g29oTRexb9\u002FB0bIlZL+sWmvAQ==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"@types\u002Fgraceful-fs\": \"^4.1.2\",\n \"anymatch\": \"^3.0.3\",\n \"fb-watchman\": \"^2.0.0\",\n \"fsevents\": \"^2.1.2\",\n \"graceful-fs\": \"^4.2.4\",\n \"jest-serializer\": \"^25.5.0\",\n \"jest-util\": \"^25.5.0\",\n \"jest-worker\": \"^25.5.0\",\n \"micromatch\": \"^4.0.2\",\n \"sane\": \"^4.0.3\",\n \"walker\": \"^1.0.7\",\n \"which\": \"^2.0.2\"\n },\n \"dependencies\": {\n \"which\": {\n \"version\": \"2.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwhich\u002F-\u002Fwhich-2.0.2.tgz\",\n \"integrity\": \"sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==\",\n \"dev\": true,\n \"requires\": {\n \"isexe\": \"^2.0.0\"\n }\n }\n }\n },\n \"jest-jasmine2\": {\n \"version\": \"25.5.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-jasmine2\u002F-\u002Fjest-jasmine2-25.5.4.tgz\",\n \"integrity\": \"sha512-9acbWEfbmS8UpdcfqnDO+uBUgKa\u002F9hcRh983IHdM+pKmJPL77G0sWAAK0V0kr5LK3a8cSBfkFSoncXwQlRZfkQ==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Ftraverse\": \"^7.1.0\",\n \"@jest\u002Fenvironment\": \"^25.5.0\",\n \"@jest\u002Fsource-map\": \"^25.5.0\",\n \"@jest\u002Ftest-result\": \"^25.5.0\",\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"chalk\": \"^3.0.0\",\n \"co\": \"^4.6.0\",\n \"expect\": \"^25.5.0\",\n \"is-generator-fn\": \"^2.0.0\",\n \"jest-each\": \"^25.5.0\",\n \"jest-matcher-utils\": \"^25.5.0\",\n \"jest-message-util\": \"^25.5.0\",\n \"jest-runtime\": \"^25.5.4\",\n \"jest-snapshot\": \"^25.5.1\",\n \"jest-util\": \"^25.5.0\",\n \"pretty-format\": \"^25.5.0\",\n \"throat\": \"^5.0.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"pretty-format\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpretty-format\u002F-\u002Fpretty-format-25.5.0.tgz\",\n \"integrity\": \"sha512-kbo\u002Fkq2LQ\u002FA\u002Fis0PQwsEHM7Ca6\u002F\u002FbGPPvU6UnsdDRSKTWxT\u002Fru\u002Fxb88v4BJf6a69H+uTytOEsTusT9ksd\u002F1iWQ==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"ansi-regex\": \"^5.0.0\",\n \"ansi-styles\": \"^4.0.0\",\n \"react-is\": \"^16.12.0\"\n }\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"jest-leak-detector\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-leak-detector\u002F-\u002Fjest-leak-detector-25.5.0.tgz\",\n \"integrity\": \"sha512-rV7JdLsanS8OkdDpZtgBf61L5xZ4NnYLBq72r6ldxahJWWczZjXawRsoHyXzibM5ed7C2QRjpp6ypgwGdKyoVA==\",\n \"dev\": true,\n \"requires\": {\n \"jest-get-type\": \"^25.2.6\",\n \"pretty-format\": \"^25.5.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"pretty-format\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpretty-format\u002F-\u002Fpretty-format-25.5.0.tgz\",\n \"integrity\": \"sha512-kbo\u002Fkq2LQ\u002FA\u002Fis0PQwsEHM7Ca6\u002F\u002FbGPPvU6UnsdDRSKTWxT\u002Fru\u002Fxb88v4BJf6a69H+uTytOEsTusT9ksd\u002F1iWQ==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"ansi-regex\": \"^5.0.0\",\n \"ansi-styles\": \"^4.0.0\",\n \"react-is\": \"^16.12.0\"\n }\n }\n }\n },\n \"jest-matcher-utils\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-matcher-utils\u002F-\u002Fjest-matcher-utils-25.5.0.tgz\",\n \"integrity\": \"sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt\u002Fb7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw==\",\n \"dev\": true,\n \"requires\": {\n \"chalk\": \"^3.0.0\",\n \"jest-diff\": \"^25.5.0\",\n \"jest-get-type\": \"^25.2.6\",\n \"pretty-format\": \"^25.5.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"pretty-format\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpretty-format\u002F-\u002Fpretty-format-25.5.0.tgz\",\n \"integrity\": \"sha512-kbo\u002Fkq2LQ\u002FA\u002Fis0PQwsEHM7Ca6\u002F\u002FbGPPvU6UnsdDRSKTWxT\u002Fru\u002Fxb88v4BJf6a69H+uTytOEsTusT9ksd\u002F1iWQ==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"ansi-regex\": \"^5.0.0\",\n \"ansi-styles\": \"^4.0.0\",\n \"react-is\": \"^16.12.0\"\n }\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"jest-message-util\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-message-util\u002F-\u002Fjest-message-util-25.5.0.tgz\",\n \"integrity\": \"sha512-ezddz3YCT\u002FLT0SKAmylVyWWIGYoKHOFOFXx3\u002FnA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fcode-frame\": \"^7.0.0\",\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"@types\u002Fstack-utils\": \"^1.0.1\",\n \"chalk\": \"^3.0.0\",\n \"graceful-fs\": \"^4.2.4\",\n \"micromatch\": \"^4.0.2\",\n \"slash\": \"^3.0.0\",\n \"stack-utils\": \"^1.0.1\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"jest-mock\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-mock\u002F-\u002Fjest-mock-25.5.0.tgz\",\n \"integrity\": \"sha512-eXWuTV8mKzp\u002FovHc5+3USJMYsTBhyQ+5A1Mak35dey\u002FRG8GlM4YWVylZuGgVXinaW6tpvk\u002FRSecmF37FKUlpXA==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\"\n }\n },\n \"jest-pnp-resolver\": {\n \"version\": \"1.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-pnp-resolver\u002F-\u002Fjest-pnp-resolver-1.2.2.tgz\",\n \"integrity\": \"sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6\u002Fw==\",\n \"dev\": true\n },\n \"jest-regex-util\": {\n \"version\": \"25.2.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-regex-util\u002F-\u002Fjest-regex-util-25.2.6.tgz\",\n \"integrity\": \"sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx\u002FfIenLEobNanUxb7abQ1sjADHBseG\u002F2FGpsv\u002Fwr+Qw==\",\n \"dev\": true\n },\n \"jest-resolve\": {\n \"version\": \"25.5.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-resolve\u002F-\u002Fjest-resolve-25.5.1.tgz\",\n \"integrity\": \"sha512-Hc09hYch5aWdtejsUZhA+vSzcotf7fajSlPA6EZPE1RmPBAD39XtJhvHWFStid58iit4IPDLI\u002FDa4cwdDmAHiQ==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"browser-resolve\": \"^1.11.3\",\n \"chalk\": \"^3.0.0\",\n \"graceful-fs\": \"^4.2.4\",\n \"jest-pnp-resolver\": \"^1.2.1\",\n \"read-pkg-up\": \"^7.0.1\",\n \"realpath-native\": \"^2.0.0\",\n \"resolve\": \"^1.17.0\",\n \"slash\": \"^3.0.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"jest-resolve-dependencies\": {\n \"version\": \"25.5.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-resolve-dependencies\u002F-\u002Fjest-resolve-dependencies-25.5.4.tgz\",\n \"integrity\": \"sha512-yFmbPd+DAQjJQg88HveObcGBA32nqNZ02fjYmtL16t1xw9bAttSn5UGRRhzMHIQbsep7znWvAvnD4kDqOFM0Uw==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"jest-regex-util\": \"^25.2.6\",\n \"jest-snapshot\": \"^25.5.1\"\n }\n },\n \"jest-runner\": {\n \"version\": \"25.5.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-runner\u002F-\u002Fjest-runner-25.5.4.tgz\",\n \"integrity\": \"sha512-V\u002F2R7fKZo6blP8E9BL9vJ8aTU4TH2beuqGNxHbxi6t14XzTb+x90B3FRgdvuHm41GY8ch4xxvf0ATH4hdpjTqg==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Fconsole\": \"^25.5.0\",\n \"@jest\u002Fenvironment\": \"^25.5.0\",\n \"@jest\u002Ftest-result\": \"^25.5.0\",\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"chalk\": \"^3.0.0\",\n \"exit\": \"^0.1.2\",\n \"graceful-fs\": \"^4.2.4\",\n \"jest-config\": \"^25.5.4\",\n \"jest-docblock\": \"^25.3.0\",\n \"jest-haste-map\": \"^25.5.1\",\n \"jest-jasmine2\": \"^25.5.4\",\n \"jest-leak-detector\": \"^25.5.0\",\n \"jest-message-util\": \"^25.5.0\",\n \"jest-resolve\": \"^25.5.1\",\n \"jest-runtime\": \"^25.5.4\",\n \"jest-util\": \"^25.5.0\",\n \"jest-worker\": \"^25.5.0\",\n \"source-map-support\": \"^0.5.6\",\n \"throat\": \"^5.0.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"jest-runtime\": {\n \"version\": \"25.5.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-runtime\u002F-\u002Fjest-runtime-25.5.4.tgz\",\n \"integrity\": \"sha512-RWTt8LeWh3GvjYtASH2eezkc8AehVoWKK20udV6n3\u002FgC87wlTbE1kIA+opCvNWyyPeBs6ptYsc6nyHUb1GlUVQ==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Fconsole\": \"^25.5.0\",\n \"@jest\u002Fenvironment\": \"^25.5.0\",\n \"@jest\u002Fglobals\": \"^25.5.2\",\n \"@jest\u002Fsource-map\": \"^25.5.0\",\n \"@jest\u002Ftest-result\": \"^25.5.0\",\n \"@jest\u002Ftransform\": \"^25.5.1\",\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"@types\u002Fyargs\": \"^15.0.0\",\n \"chalk\": \"^3.0.0\",\n \"collect-v8-coverage\": \"^1.0.0\",\n \"exit\": \"^0.1.2\",\n \"glob\": \"^7.1.3\",\n \"graceful-fs\": \"^4.2.4\",\n \"jest-config\": \"^25.5.4\",\n \"jest-haste-map\": \"^25.5.1\",\n \"jest-message-util\": \"^25.5.0\",\n \"jest-mock\": \"^25.5.0\",\n \"jest-regex-util\": \"^25.2.6\",\n \"jest-resolve\": \"^25.5.1\",\n \"jest-snapshot\": \"^25.5.1\",\n \"jest-util\": \"^25.5.0\",\n \"jest-validate\": \"^25.5.0\",\n \"realpath-native\": \"^2.0.0\",\n \"slash\": \"^3.0.0\",\n \"strip-bom\": \"^4.0.0\",\n \"yargs\": \"^15.3.1\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"jest-serializer\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-serializer\u002F-\u002Fjest-serializer-25.5.0.tgz\",\n \"integrity\": \"sha512-LxD8fY1lByomEPflwur9o4e2a5twSQ7TaVNLlFUuToIdoJuBt8tzHfCsZ42Ok6LkKXWzFWf3AGmheuLAA7LcCA==\",\n \"dev\": true,\n \"requires\": {\n \"graceful-fs\": \"^4.2.4\"\n }\n },\n \"jest-snapshot\": {\n \"version\": \"25.5.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-snapshot\u002F-\u002Fjest-snapshot-25.5.1.tgz\",\n \"integrity\": \"sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Ftypes\": \"^7.0.0\",\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"@types\u002Fprettier\": \"^1.19.0\",\n \"chalk\": \"^3.0.0\",\n \"expect\": \"^25.5.0\",\n \"graceful-fs\": \"^4.2.4\",\n \"jest-diff\": \"^25.5.0\",\n \"jest-get-type\": \"^25.2.6\",\n \"jest-matcher-utils\": \"^25.5.0\",\n \"jest-message-util\": \"^25.5.0\",\n \"jest-resolve\": \"^25.5.1\",\n \"make-dir\": \"^3.0.0\",\n \"natural-compare\": \"^1.4.0\",\n \"pretty-format\": \"^25.5.0\",\n \"semver\": \"^6.3.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"pretty-format\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpretty-format\u002F-\u002Fpretty-format-25.5.0.tgz\",\n \"integrity\": \"sha512-kbo\u002Fkq2LQ\u002FA\u002Fis0PQwsEHM7Ca6\u002F\u002FbGPPvU6UnsdDRSKTWxT\u002Fru\u002Fxb88v4BJf6a69H+uTytOEsTusT9ksd\u002F1iWQ==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"ansi-regex\": \"^5.0.0\",\n \"ansi-styles\": \"^4.0.0\",\n \"react-is\": \"^16.12.0\"\n }\n },\n \"semver\": {\n \"version\": \"6.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsemver\u002F-\u002Fsemver-6.3.0.tgz\",\n \"integrity\": \"sha512-b39TBaTSfV6yBrapU89p5fKekE2m\u002FNwnDocOVruQFS1\u002FveMgdzuPcnOM34M6CwxW8jH\u002FlxEa5rBoDeUwu5HHTw==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"jest-util\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-util\u002F-\u002Fjest-util-25.5.0.tgz\",\n \"integrity\": \"sha512-KVlX+WWg1zUTB9ktvhsg2PXZVdkI1NBevOJSkTKYAyXyH4QSvh+Lay\u002Fe\u002Fv+bmaFfrkfx43xD8QTfgobzlEXdIA==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"chalk\": \"^3.0.0\",\n \"graceful-fs\": \"^4.2.4\",\n \"is-ci\": \"^2.0.0\",\n \"make-dir\": \"^3.0.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"jest-validate\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-validate\u002F-\u002Fjest-validate-25.5.0.tgz\",\n \"integrity\": \"sha512-okUFKqhZIpo3jDdtUXUZ2LxGUZJIlfdYBvZb1aczzxrlyMlqdnnws9MOxezoLGhSaFc2XYaHNReNQfj5zPIWyQ==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"camelcase\": \"^5.3.1\",\n \"chalk\": \"^3.0.0\",\n \"jest-get-type\": \"^25.2.6\",\n \"leven\": \"^3.1.0\",\n \"pretty-format\": \"^25.5.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"pretty-format\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpretty-format\u002F-\u002Fpretty-format-25.5.0.tgz\",\n \"integrity\": \"sha512-kbo\u002Fkq2LQ\u002FA\u002Fis0PQwsEHM7Ca6\u002F\u002FbGPPvU6UnsdDRSKTWxT\u002Fru\u002Fxb88v4BJf6a69H+uTytOEsTusT9ksd\u002F1iWQ==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"ansi-regex\": \"^5.0.0\",\n \"ansi-styles\": \"^4.0.0\",\n \"react-is\": \"^16.12.0\"\n }\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"jest-watch-typeahead\": {\n \"version\": \"0.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-watch-typeahead\u002F-\u002Fjest-watch-typeahead-0.5.0.tgz\",\n \"integrity\": \"sha512-4r36w9vU8+rdg48hj0Z7TvcSqVP6Ao8dk04grlHQNgduyCB0SqrI0xWIl85ZhXrzYvxQ0N5H+rRLAejkQzEHeQ==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-escapes\": \"^4.2.1\",\n \"chalk\": \"^3.0.0\",\n \"jest-regex-util\": \"^25.2.1\",\n \"jest-watcher\": \"^25.2.4\",\n \"slash\": \"^3.0.0\",\n \"string-length\": \"^3.1.0\",\n \"strip-ansi\": \"^6.0.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"strip-ansi\": {\n \"version\": \"6.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstrip-ansi\u002F-\u002Fstrip-ansi-6.0.0.tgz\",\n \"integrity\": \"sha512-AuvKTrTfQNYNIctbR1K\u002FYGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-regex\": \"^5.0.0\"\n }\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"jest-watcher\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-watcher\u002F-\u002Fjest-watcher-25.5.0.tgz\",\n \"integrity\": \"sha512-XrSfJnVASEl+5+bb51V0Q7WQx65dTSk7NL4yDdVjPnRNpM0hG+ncFmDYJo9O8jaSRcAitVbuVawyXCRoxGrT5Q==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftest-result\": \"^25.5.0\",\n \"@jest\u002Ftypes\": \"^25.5.0\",\n \"ansi-escapes\": \"^4.2.1\",\n \"chalk\": \"^3.0.0\",\n \"jest-util\": \"^25.5.0\",\n \"string-length\": \"^3.1.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz\",\n \"integrity\": \"sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"jest-worker\": {\n \"version\": \"25.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-worker\u002F-\u002Fjest-worker-25.5.0.tgz\",\n \"integrity\": \"sha512-\u002FdsSmUkIy5EBGfv\u002FIjjqmFxrNAUpBERfGs1oHROyD7yxjG\u002Fw+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==\",\n \"dev\": true,\n \"requires\": {\n \"merge-stream\": \"^2.0.0\",\n \"supports-color\": \"^7.0.0\"\n },\n \"dependencies\": {\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"js-tokens\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjs-tokens\u002F-\u002Fjs-tokens-4.0.0.tgz\",\n \"integrity\": \"sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW\u002FPKQ==\"\n },\n \"js-yaml\": {\n \"version\": \"3.14.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjs-yaml\u002F-\u002Fjs-yaml-3.14.0.tgz\",\n \"integrity\": \"sha512-\u002F4IbIeHcD9VMHFqDR\u002FgQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab\u002FlRl5AlUqmpBx8EhPaWR+OtY17A==\",\n \"dev\": true,\n \"requires\": {\n \"argparse\": \"^1.0.7\",\n \"esprima\": \"^4.0.0\"\n }\n },\n \"jsbn\": {\n \"version\": \"0.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjsbn\u002F-\u002Fjsbn-0.1.1.tgz\",\n \"integrity\": \"sha1-peZUwuWi3rXyAdls77yoDA7y9RM=\",\n \"dev\": true\n },\n \"jsdom\": {\n \"version\": \"15.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjsdom\u002F-\u002Fjsdom-15.2.1.tgz\",\n \"integrity\": \"sha512-fAl1W0\u002F7T2G5vURSyxBzrJ1LSdQn6Tr5UX\u002FxD4PXDx\u002FPDgwygedfW6El\u002FKIj3xJ7FU61TTYnc\u002Fl\u002FB7P49Eqt6g==\",\n \"dev\": true,\n \"requires\": {\n \"abab\": \"^2.0.0\",\n \"acorn\": \"^7.1.0\",\n \"acorn-globals\": \"^4.3.2\",\n \"array-equal\": \"^1.0.0\",\n \"cssom\": \"^0.4.1\",\n \"cssstyle\": \"^2.0.0\",\n \"data-urls\": \"^1.1.0\",\n \"domexception\": \"^1.0.1\",\n \"escodegen\": \"^1.11.1\",\n \"html-encoding-sniffer\": \"^1.0.2\",\n \"nwsapi\": \"^2.2.0\",\n \"parse5\": \"5.1.0\",\n \"pn\": \"^1.1.0\",\n \"request\": \"^2.88.0\",\n \"request-promise-native\": \"^1.0.7\",\n \"saxes\": \"^3.1.9\",\n \"symbol-tree\": \"^3.2.2\",\n \"tough-cookie\": \"^3.0.1\",\n \"w3c-hr-time\": \"^1.0.1\",\n \"w3c-xmlserializer\": \"^1.1.2\",\n \"webidl-conversions\": \"^4.0.2\",\n \"whatwg-encoding\": \"^1.0.5\",\n \"whatwg-mimetype\": \"^2.3.0\",\n \"whatwg-url\": \"^7.0.0\",\n \"ws\": \"^7.0.0\",\n \"xml-name-validator\": \"^3.0.0\"\n }\n },\n \"jsesc\": {\n \"version\": \"2.5.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjsesc\u002F-\u002Fjsesc-2.5.2.tgz\",\n \"integrity\": \"sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6\u002FCy2lbNdPlZBpuQHXE63gA==\"\n },\n \"json-parse-better-errors\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjson-parse-better-errors\u002F-\u002Fjson-parse-better-errors-1.0.2.tgz\",\n \"integrity\": \"sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==\"\n },\n \"json-parse-even-better-errors\": {\n \"version\": \"2.3.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjson-parse-even-better-errors\u002F-\u002Fjson-parse-even-better-errors-2.3.1.tgz\",\n \"integrity\": \"sha512-xyFwyhro\u002FJEof6Ghe2iz2NcXoj2sloNsWr\u002FXsERDK\u002FoiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==\",\n \"dev\": true\n },\n \"json-schema\": {\n \"version\": \"0.2.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjson-schema\u002F-\u002Fjson-schema-0.2.3.tgz\",\n \"integrity\": \"sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=\",\n \"dev\": true\n },\n \"json-schema-traverse\": {\n \"version\": \"0.4.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjson-schema-traverse\u002F-\u002Fjson-schema-traverse-0.4.1.tgz\",\n \"integrity\": \"sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU\u002FJxzk629Brsab\u002FmMiHQti9wMP+845RPe3Vg==\"\n },\n \"json-stable-stringify-without-jsonify\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjson-stable-stringify-without-jsonify\u002F-\u002Fjson-stable-stringify-without-jsonify-1.0.1.tgz\",\n \"integrity\": \"sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=\",\n \"dev\": true\n },\n \"json-stringify-safe\": {\n \"version\": \"5.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjson-stringify-safe\u002F-\u002Fjson-stringify-safe-5.0.1.tgz\",\n \"integrity\": \"sha1-Epai1Y\u002FUXxmg9s4B1lcB4sc1tus=\",\n \"dev\": true\n },\n \"json5\": {\n \"version\": \"2.1.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjson5\u002F-\u002Fjson5-2.1.3.tgz\",\n \"integrity\": \"sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g\u002FgiieX0NLCaMnb4hEiVFqnop2ImTXCc5e0\u002FoHz3LTqmHGtExn5hfMkOA==\",\n \"requires\": {\n \"minimist\": \"^1.2.5\"\n }\n },\n \"jsprim\": {\n \"version\": \"1.4.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjsprim\u002F-\u002Fjsprim-1.4.1.tgz\",\n \"integrity\": \"sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=\",\n \"dev\": true,\n \"requires\": {\n \"assert-plus\": \"1.0.0\",\n \"extsprintf\": \"1.3.0\",\n \"json-schema\": \"0.2.3\",\n \"verror\": \"1.10.0\"\n }\n },\n \"jsx-ast-utils\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjsx-ast-utils\u002F-\u002Fjsx-ast-utils-3.1.0.tgz\",\n \"integrity\": \"sha512-d4\u002FUOjg+mxAWxCiF0c5UTSwyqbchkbqCvK87aBovhnh8GtysTjWmgC63tY0cJx\u002FHzGgm9qnA147jVBdpOiQ2RA==\",\n \"dev\": true,\n \"requires\": {\n \"array-includes\": \"^3.1.1\",\n \"object.assign\": \"^4.1.1\"\n }\n },\n \"kind-of\": {\n \"version\": \"6.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-6.0.3.tgz\",\n \"integrity\": \"sha512-dcS1ul+9tmeD95T+x28\u002FehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==\"\n },\n \"kleur\": {\n \"version\": \"3.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkleur\u002F-\u002Fkleur-3.0.3.tgz\",\n \"integrity\": \"sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==\",\n \"dev\": true\n },\n \"klona\": {\n \"version\": \"2.0.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fklona\u002F-\u002Fklona-2.0.4.tgz\",\n \"integrity\": \"sha512-ZRbnvdg\u002FNxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY\u002FuwIA==\"\n },\n \"leven\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fleven\u002F-\u002Fleven-3.1.0.tgz\",\n \"integrity\": \"sha512-qsda+H8jTaUaN\u002Fx5vzW2rzc+8Rw4TAQ\u002F4KjB46IwK5VH+IlVeeeje\u002FEoZRpiXvIqjFgK84QffqPztGI3VBLG1A==\",\n \"dev\": true\n },\n \"levn\": {\n \"version\": \"0.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Flevn\u002F-\u002Flevn-0.3.0.tgz\",\n \"integrity\": \"sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=\",\n \"dev\": true,\n \"requires\": {\n \"prelude-ls\": \"~1.1.2\",\n \"type-check\": \"~0.3.2\"\n }\n },\n \"line-column\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fline-column\u002F-\u002Fline-column-1.0.2.tgz\",\n \"integrity\": \"sha1-0lryk2tvSEkXKzEuR5LR2Ye8NKI=\",\n \"requires\": {\n \"isarray\": \"^1.0.0\",\n \"isobject\": \"^2.0.0\"\n }\n },\n \"lines-and-columns\": {\n \"version\": \"1.1.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Flines-and-columns\u002F-\u002Flines-and-columns-1.1.6.tgz\",\n \"integrity\": \"sha1-HADHQ7QzzQpOgHWPe2SldEDZ\u002FwA=\",\n \"dev\": true\n },\n \"lint-staged\": {\n \"version\": \"10.5.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Flint-staged\u002F-\u002Flint-staged-10.5.1.tgz\",\n \"integrity\": \"sha512-fTkTGFtwFIJJzn\u002FPbUO3RXyEBHIhbfYBE7+rJyLcOXabViaO\u002Fh6OslgeK6zpeUtzkDrzkgyAYDTLAwx6JzDTHw==\",\n \"dev\": true,\n \"requires\": {\n \"chalk\": \"^4.1.0\",\n \"cli-truncate\": \"^2.1.0\",\n \"commander\": \"^6.2.0\",\n \"cosmiconfig\": \"^7.0.0\",\n \"debug\": \"^4.2.0\",\n \"dedent\": \"^0.7.0\",\n \"enquirer\": \"^2.3.6\",\n \"execa\": \"^4.1.0\",\n \"listr2\": \"^3.2.2\",\n \"log-symbols\": \"^4.0.0\",\n \"micromatch\": \"^4.0.2\",\n \"normalize-path\": \"^3.0.0\",\n \"please-upgrade-node\": \"^3.2.0\",\n \"string-argv\": \"0.3.1\",\n \"stringify-object\": \"^3.3.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"4.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-4.1.0.tgz\",\n \"integrity\": \"sha512-qwx12AxXe2Q5xQ43Ac\u002F\u002FI6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"cross-spawn\": {\n \"version\": \"7.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcross-spawn\u002F-\u002Fcross-spawn-7.0.3.tgz\",\n \"integrity\": \"sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==\",\n \"dev\": true,\n \"requires\": {\n \"path-key\": \"^3.1.0\",\n \"shebang-command\": \"^2.0.0\",\n \"which\": \"^2.0.1\"\n }\n },\n \"execa\": {\n \"version\": \"4.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fexeca\u002F-\u002Fexeca-4.1.0.tgz\",\n \"integrity\": \"sha512-j5W0\u002F\u002FW7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==\",\n \"dev\": true,\n \"requires\": {\n \"cross-spawn\": \"^7.0.0\",\n \"get-stream\": \"^5.0.0\",\n \"human-signals\": \"^1.1.1\",\n \"is-stream\": \"^2.0.0\",\n \"merge-stream\": \"^2.0.0\",\n \"npm-run-path\": \"^4.0.0\",\n \"onetime\": \"^5.1.0\",\n \"signal-exit\": \"^3.0.2\",\n \"strip-final-newline\": \"^2.0.0\"\n }\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"path-key\": {\n \"version\": \"3.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpath-key\u002F-\u002Fpath-key-3.1.1.tgz\",\n \"integrity\": \"sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==\",\n \"dev\": true\n },\n \"shebang-command\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fshebang-command\u002F-\u002Fshebang-command-2.0.0.tgz\",\n \"integrity\": \"sha512-kHxr2zZpYtdmrN1qDjrrX\u002FZ1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1\u002FyZp6YuDY77YtvbN0dmDA==\",\n \"dev\": true,\n \"requires\": {\n \"shebang-regex\": \"^3.0.0\"\n }\n },\n \"shebang-regex\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fshebang-regex\u002F-\u002Fshebang-regex-3.0.0.tgz\",\n \"integrity\": \"sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M\u002Fyhz8ekcb1A==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n },\n \"which\": {\n \"version\": \"2.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwhich\u002F-\u002Fwhich-2.0.2.tgz\",\n \"integrity\": \"sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==\",\n \"dev\": true,\n \"requires\": {\n \"isexe\": \"^2.0.0\"\n }\n }\n }\n },\n \"listr2\": {\n \"version\": \"3.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Flistr2\u002F-\u002Flistr2-3.2.2.tgz\",\n \"integrity\": \"sha512-AajqcZEUikF2ioph6PfH3dIuxJclhr3i3kHgTOP0xeXdWQohrvJAAmqVcV43\u002FGI987HFY\u002FvzT73jYXoa4esDHg==\",\n \"dev\": true,\n \"requires\": {\n \"chalk\": \"^4.1.0\",\n \"cli-truncate\": \"^2.1.0\",\n \"figures\": \"^3.2.0\",\n \"indent-string\": \"^4.0.0\",\n \"log-update\": \"^4.0.0\",\n \"p-map\": \"^4.0.0\",\n \"rxjs\": \"^6.6.3\",\n \"through\": \"^2.3.8\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"4.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-4.1.0.tgz\",\n \"integrity\": \"sha512-qwx12AxXe2Q5xQ43Ac\u002F\u002FI6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"loader-runner\": {\n \"version\": \"2.4.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Floader-runner\u002F-\u002Floader-runner-2.4.0.tgz\",\n \"integrity\": \"sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9\u002F4Fc3wW4LVcB5DmGflaRw==\"\n },\n \"loader-utils\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Floader-utils\u002F-\u002Floader-utils-2.0.0.tgz\",\n \"integrity\": \"sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B\u002FJg1mkQe5NYUEHtHQ==\",\n \"requires\": {\n \"big.js\": \"^5.2.2\",\n \"emojis-list\": \"^3.0.0\",\n \"json5\": \"^2.1.2\"\n }\n },\n \"locate-path\": {\n \"version\": \"5.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Flocate-path\u002F-\u002Flocate-path-5.0.0.tgz\",\n \"integrity\": \"sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==\",\n \"requires\": {\n \"p-locate\": \"^4.1.0\"\n }\n },\n \"lodash\": {\n \"version\": \"4.17.20\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Flodash\u002F-\u002Flodash-4.17.20.tgz\",\n \"integrity\": \"sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==\"\n },\n \"lodash.sortby\": {\n \"version\": \"4.7.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Flodash.sortby\u002F-\u002Flodash.sortby-4.7.0.tgz\",\n \"integrity\": \"sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=\"\n },\n \"log-symbols\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Flog-symbols\u002F-\u002Flog-symbols-4.0.0.tgz\",\n \"integrity\": \"sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==\",\n \"dev\": true,\n \"requires\": {\n \"chalk\": \"^4.0.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"4.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-4.1.0.tgz\",\n \"integrity\": \"sha512-qwx12AxXe2Q5xQ43Ac\u002F\u002FI6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"log-update\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Flog-update\u002F-\u002Flog-update-4.0.0.tgz\",\n \"integrity\": \"sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-escapes\": \"^4.3.0\",\n \"cli-cursor\": \"^3.1.0\",\n \"slice-ansi\": \"^4.0.0\",\n \"wrap-ansi\": \"^6.2.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"slice-ansi\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fslice-ansi\u002F-\u002Fslice-ansi-4.0.0.tgz\",\n \"integrity\": \"sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg\u002FWBnOLxghZtKKurENQ==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.0.0\",\n \"astral-regex\": \"^2.0.0\",\n \"is-fullwidth-code-point\": \"^3.0.0\"\n }\n }\n }\n },\n \"lolex\": {\n \"version\": \"5.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Flolex\u002F-\u002Flolex-5.1.2.tgz\",\n \"integrity\": \"sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H\u002F3bjwfMJtN+t3CX8672UIkglz28A==\",\n \"dev\": true,\n \"requires\": {\n \"@sinonjs\u002Fcommons\": \"^1.7.0\"\n }\n },\n \"loose-envify\": {\n \"version\": \"1.4.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Floose-envify\u002F-\u002Floose-envify-1.4.0.tgz\",\n \"integrity\": \"sha512-lyuxPGr\u002FWfhrlem2CL\u002FUcnUc1zcqKAImBDzukY7Y5F\u002FyQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==\",\n \"requires\": {\n \"js-tokens\": \"^3.0.0 || ^4.0.0\"\n }\n },\n \"lru-cache\": {\n \"version\": \"6.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Flru-cache\u002F-\u002Flru-cache-6.0.0.tgz\",\n \"integrity\": \"sha512-Jo6dJ04CmSjuznwJSS3pUeWmd\u002FH0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==\",\n \"requires\": {\n \"yallist\": \"^4.0.0\"\n }\n },\n \"lz-string\": {\n \"version\": \"1.4.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Flz-string\u002F-\u002Flz-string-1.4.4.tgz\",\n \"integrity\": \"sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=\",\n \"dev\": true\n },\n \"make-dir\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmake-dir\u002F-\u002Fmake-dir-3.1.0.tgz\",\n \"integrity\": \"sha512-g3FeP20LNwhALb\u002F6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J\u002FfiSf1sa1ADhXqi5+oVwOM\u002FeGw==\",\n \"requires\": {\n \"semver\": \"^6.0.0\"\n },\n \"dependencies\": {\n \"semver\": {\n \"version\": \"6.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsemver\u002F-\u002Fsemver-6.3.0.tgz\",\n \"integrity\": \"sha512-b39TBaTSfV6yBrapU89p5fKekE2m\u002FNwnDocOVruQFS1\u002FveMgdzuPcnOM34M6CwxW8jH\u002FlxEa5rBoDeUwu5HHTw==\"\n }\n }\n },\n \"makeerror\": {\n \"version\": \"1.0.11\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmakeerror\u002F-\u002Fmakeerror-1.0.11.tgz\",\n \"integrity\": \"sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=\",\n \"dev\": true,\n \"requires\": {\n \"tmpl\": \"1.0.x\"\n }\n },\n \"map-cache\": {\n \"version\": \"0.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmap-cache\u002F-\u002Fmap-cache-0.2.2.tgz\",\n \"integrity\": \"sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=\"\n },\n \"map-visit\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmap-visit\u002F-\u002Fmap-visit-1.0.0.tgz\",\n \"integrity\": \"sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=\",\n \"requires\": {\n \"object-visit\": \"^1.0.0\"\n }\n },\n \"md5.js\": {\n \"version\": \"1.3.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmd5.js\u002F-\u002Fmd5.js-1.3.5.tgz\",\n \"integrity\": \"sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==\",\n \"requires\": {\n \"hash-base\": \"^3.0.0\",\n \"inherits\": \"^2.0.1\",\n \"safe-buffer\": \"^5.1.2\"\n }\n },\n \"memoize-one\": {\n \"version\": \"5.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmemoize-one\u002F-\u002Fmemoize-one-5.1.1.tgz\",\n \"integrity\": \"sha512-HKeeBpWvqiVJD57ZUAsJNm71eHTykffzcLZVYWiVfQeI1rJtuEaS7hQiEpWfVVk18donPwJEcFKIkCmPJNOhHA==\"\n },\n \"memory-fs\": {\n \"version\": \"0.4.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmemory-fs\u002F-\u002Fmemory-fs-0.4.1.tgz\",\n \"integrity\": \"sha1-OpoguEYlI+RHz7x+i7gO1me\u002FxVI=\",\n \"requires\": {\n \"errno\": \"^0.1.3\",\n \"readable-stream\": \"^2.0.1\"\n },\n \"dependencies\": {\n \"readable-stream\": {\n \"version\": \"2.3.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freadable-stream\u002F-\u002Freadable-stream-2.3.7.tgz\",\n \"integrity\": \"sha512-Ebho8K4jIbHAxnuxi7o42OrZgF\u002FZTNcsZj6nRKyUmkhLFq8CHItp\u002Ffy6hQZuZmP\u002Fn3yZ9VBUbp4zz\u002FmX8hmYPw==\",\n \"requires\": {\n \"core-util-is\": \"~1.0.0\",\n \"inherits\": \"~2.0.3\",\n \"isarray\": \"~1.0.0\",\n \"process-nextick-args\": \"~2.0.0\",\n \"safe-buffer\": \"~5.1.1\",\n \"string_decoder\": \"~1.1.1\",\n \"util-deprecate\": \"~1.0.1\"\n }\n },\n \"string_decoder\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring_decoder\u002F-\u002Fstring_decoder-1.1.1.tgz\",\n \"integrity\": \"sha512-n\u002FShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP\u002FmzRfwg==\",\n \"requires\": {\n \"safe-buffer\": \"~5.1.0\"\n }\n }\n }\n },\n \"merge-stream\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmerge-stream\u002F-\u002Fmerge-stream-2.0.0.tgz\",\n \"integrity\": \"sha512-abv\u002FqOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol\u002FdoWcdA4ZqsWQ8ENrFKkd67Mfpo\u002FLovbIUsbt3w==\"\n },\n \"micromatch\": {\n \"version\": \"4.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmicromatch\u002F-\u002Fmicromatch-4.0.2.tgz\",\n \"integrity\": \"sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX\u002F09u5iFJ+aYf5Q==\",\n \"dev\": true,\n \"requires\": {\n \"braces\": \"^3.0.1\",\n \"picomatch\": \"^2.0.5\"\n }\n },\n \"miller-rabin\": {\n \"version\": \"4.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmiller-rabin\u002F-\u002Fmiller-rabin-4.0.1.tgz\",\n \"integrity\": \"sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O\u002FOxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==\",\n \"requires\": {\n \"bn.js\": \"^4.0.0\",\n \"brorand\": \"^1.0.1\"\n },\n \"dependencies\": {\n \"bn.js\": {\n \"version\": \"4.11.9\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbn.js\u002F-\u002Fbn.js-4.11.9.tgz\",\n \"integrity\": \"sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==\"\n }\n }\n },\n \"mime-db\": {\n \"version\": \"1.44.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmime-db\u002F-\u002Fmime-db-1.44.0.tgz\",\n \"integrity\": \"sha512-\u002FNOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ\u002F6lkKCitSc\u002FNmpg==\",\n \"dev\": true\n },\n \"mime-types\": {\n \"version\": \"2.1.27\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmime-types\u002F-\u002Fmime-types-2.1.27.tgz\",\n \"integrity\": \"sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ\u002FnJQLp7w==\",\n \"dev\": true,\n \"requires\": {\n \"mime-db\": \"1.44.0\"\n }\n },\n \"mimic-fn\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmimic-fn\u002F-\u002Fmimic-fn-2.1.0.tgz\",\n \"integrity\": \"sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH\u002FsqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==\",\n \"dev\": true\n },\n \"mimic-response\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmimic-response\u002F-\u002Fmimic-response-2.1.0.tgz\",\n \"integrity\": \"sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790\u002FkVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==\",\n \"optional\": true\n },\n \"minimalistic-assert\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fminimalistic-assert\u002F-\u002Fminimalistic-assert-1.0.1.tgz\",\n \"integrity\": \"sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH\u002F8\u002FIm3yEHQP4b67cXlD\u002FQr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00\u002FA==\"\n },\n \"minimalistic-crypto-utils\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fminimalistic-crypto-utils\u002F-\u002Fminimalistic-crypto-utils-1.0.1.tgz\",\n \"integrity\": \"sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=\"\n },\n \"minimatch\": {\n \"version\": \"3.0.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fminimatch\u002F-\u002Fminimatch-3.0.4.tgz\",\n \"integrity\": \"sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==\",\n \"requires\": {\n \"brace-expansion\": \"^1.1.7\"\n }\n },\n \"minimist\": {\n \"version\": \"1.2.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fminimist\u002F-\u002Fminimist-1.2.5.tgz\",\n \"integrity\": \"sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP\u002FUODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==\"\n },\n \"mississippi\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmississippi\u002F-\u002Fmississippi-3.0.0.tgz\",\n \"integrity\": \"sha512-x471SsVjUtBRtcvd4BzKE9kFC+\u002F2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss\u002F\u002FrHnWryupDrgLvmSkA==\",\n \"requires\": {\n \"concat-stream\": \"^1.5.0\",\n \"duplexify\": \"^3.4.2\",\n \"end-of-stream\": \"^1.1.0\",\n \"flush-write-stream\": \"^1.0.0\",\n \"from2\": \"^2.1.0\",\n \"parallel-transform\": \"^1.1.0\",\n \"pump\": \"^3.0.0\",\n \"pumpify\": \"^1.3.3\",\n \"stream-each\": \"^1.1.0\",\n \"through2\": \"^2.0.0\"\n }\n },\n \"mixin-deep\": {\n \"version\": \"1.3.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmixin-deep\u002F-\u002Fmixin-deep-1.3.2.tgz\",\n \"integrity\": \"sha512-WRoDn\u002F\u002FmXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==\",\n \"requires\": {\n \"for-in\": \"^1.0.2\",\n \"is-extendable\": \"^1.0.1\"\n }\n },\n \"mkdirp\": {\n \"version\": \"0.5.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmkdirp\u002F-\u002Fmkdirp-0.5.5.tgz\",\n \"integrity\": \"sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg\u002F0BC0wiv9ih5NYPB1Wn1UEI1\u002FL+xQ==\",\n \"requires\": {\n \"minimist\": \"^1.2.5\"\n }\n },\n \"mkdirp-classic\": {\n \"version\": \"0.5.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmkdirp-classic\u002F-\u002Fmkdirp-classic-0.5.3.tgz\",\n \"integrity\": \"sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr\u002FtxX35NjcaY6Ns\u002FA==\",\n \"optional\": true\n },\n \"move-concurrently\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmove-concurrently\u002F-\u002Fmove-concurrently-1.0.1.tgz\",\n \"integrity\": \"sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=\",\n \"requires\": {\n \"aproba\": \"^1.1.1\",\n \"copy-concurrently\": \"^1.0.0\",\n \"fs-write-stream-atomic\": \"^1.0.8\",\n \"mkdirp\": \"^0.5.1\",\n \"rimraf\": \"^2.5.4\",\n \"run-queue\": \"^1.0.3\"\n }\n },\n \"ms\": {\n \"version\": \"2.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fms\u002F-\u002Fms-2.1.2.tgz\",\n \"integrity\": \"sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk\u002FRyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==\"\n },\n \"mute-stream\": {\n \"version\": \"0.0.8\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmute-stream\u002F-\u002Fmute-stream-0.0.8.tgz\",\n \"integrity\": \"sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==\",\n \"dev\": true\n },\n \"nan\": {\n \"version\": \"2.14.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnan\u002F-\u002Fnan-2.14.2.tgz\",\n \"integrity\": \"sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B\u002Ft8dPvcjhKMmlfnP47EzQ==\",\n \"optional\": true\n },\n \"nanoid\": {\n \"version\": \"3.1.16\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnanoid\u002F-\u002Fnanoid-3.1.16.tgz\",\n \"integrity\": \"sha512-+AK8MN0WHji40lj8AEuwLOvLSbWYApQpre\u002FaFJZD71r43wVRLrOYS4FmJOPQYon1TqB462RzrrxlfA74XRES8w==\"\n },\n \"nanomatch\": {\n \"version\": \"1.2.13\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnanomatch\u002F-\u002Fnanomatch-1.2.13.tgz\",\n \"integrity\": \"sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb\u002Fh+X94VXzI64rKFHYImXSvdwGGCmwOqCA==\",\n \"requires\": {\n \"arr-diff\": \"^4.0.0\",\n \"array-unique\": \"^0.3.2\",\n \"define-property\": \"^2.0.2\",\n \"extend-shallow\": \"^3.0.2\",\n \"fragment-cache\": \"^0.2.1\",\n \"is-windows\": \"^1.0.2\",\n \"kind-of\": \"^6.0.2\",\n \"object.pick\": \"^1.3.0\",\n \"regex-not\": \"^1.0.0\",\n \"snapdragon\": \"^0.8.1\",\n \"to-regex\": \"^3.0.1\"\n }\n },\n \"napi-build-utils\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnapi-build-utils\u002F-\u002Fnapi-build-utils-1.0.2.tgz\",\n \"integrity\": \"sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+\u002FMakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==\",\n \"optional\": true\n },\n \"native-url\": {\n \"version\": \"0.3.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnative-url\u002F-\u002Fnative-url-0.3.4.tgz\",\n \"integrity\": \"sha512-6iM8R99ze45ivyH8vybJ7X0yekIcPf5GgLV5K0ENCbmRcaRIDoj37BC8iLEmaaBfqqb8enuZ5p0uhY+lVAbAcA==\",\n \"requires\": {\n \"querystring\": \"^0.2.0\"\n }\n },\n \"natural-compare\": {\n \"version\": \"1.4.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnatural-compare\u002F-\u002Fnatural-compare-1.4.0.tgz\",\n \"integrity\": \"sha1-Sr6\u002F7tdUHywnrPspvbvRXI1bpPc=\",\n \"dev\": true\n },\n \"neo-async\": {\n \"version\": \"2.6.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fneo-async\u002F-\u002Fneo-async-2.6.2.tgz\",\n \"integrity\": \"sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4\u002FsF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==\"\n },\n \"next\": {\n \"version\": \"10.0.2-canary.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnext\u002F-\u002Fnext-10.0.2-canary.7.tgz\",\n \"integrity\": \"sha512-kKM17Irxli5cbQyJ1mk\u002F5f90DWNXujJ5kIjev8o+rkAgLfbIsAXHNFFZNPQyaVEniBfC3SYajJbfylvKUR\u002Fvgw==\",\n \"requires\": {\n \"@ampproject\u002Ftoolbox-optimizer\": \"2.7.0-alpha.1\",\n \"@babel\u002Fruntime\": \"7.12.5\",\n \"@hapi\u002Faccept\": \"5.0.1\",\n \"@next\u002Fenv\": \"10.0.2-canary.7\",\n \"@next\u002Fpolyfill-module\": \"10.0.2-canary.7\",\n \"@next\u002Freact-dev-overlay\": \"10.0.2-canary.7\",\n \"@next\u002Freact-refresh-utils\": \"10.0.2-canary.7\",\n \"ast-types\": \"0.13.2\",\n \"babel-plugin-transform-define\": \"2.0.0\",\n \"babel-plugin-transform-react-remove-prop-types\": \"0.4.24\",\n \"browserslist\": \"4.14.6\",\n \"buffer\": \"5.6.0\",\n \"caniuse-lite\": \"^1.0.30001113\",\n \"chalk\": \"2.4.2\",\n \"chokidar\": \"3.4.2\",\n \"crypto-browserify\": \"3.12.0\",\n \"css-loader\": \"4.3.0\",\n \"cssnano-simple\": \"1.2.1\",\n \"etag\": \"1.8.1\",\n \"find-cache-dir\": \"3.3.1\",\n \"jest-worker\": \"24.9.0\",\n \"loader-utils\": \"2.0.0\",\n \"native-url\": \"0.3.4\",\n \"node-fetch\": \"2.6.1\",\n \"node-html-parser\": \"^1.2.19\",\n \"path-browserify\": \"1.0.1\",\n \"pnp-webpack-plugin\": \"1.6.4\",\n \"postcss\": \"8.1.1\",\n \"process\": \"0.11.10\",\n \"prop-types\": \"15.7.2\",\n \"raw-body\": \"2.4.1\",\n \"react-is\": \"16.13.1\",\n \"react-refresh\": \"0.8.3\",\n \"resolve-url-loader\": \"3.1.2\",\n \"sass-loader\": \"10.0.5\",\n \"schema-utils\": \"2.7.1\",\n \"sharp\": \"0.26.2\",\n \"stream-browserify\": \"3.0.0\",\n \"style-loader\": \"1.2.1\",\n \"styled-jsx\": \"3.3.1\",\n \"use-subscription\": \"1.5.0\",\n \"vm-browserify\": \"1.1.2\",\n \"watchpack\": \"2.0.0-beta.13\",\n \"webpack\": \"4.44.1\",\n \"webpack-sources\": \"1.4.3\"\n },\n \"dependencies\": {\n \"jest-worker\": {\n \"version\": \"24.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjest-worker\u002F-\u002Fjest-worker-24.9.0.tgz\",\n \"integrity\": \"sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX\u002FHrAoKEKz3uUPzSvKs9A3qR4iVw==\",\n \"requires\": {\n \"merge-stream\": \"^2.0.0\",\n \"supports-color\": \"^6.1.0\"\n }\n },\n \"supports-color\": {\n \"version\": \"6.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-6.1.0.tgz\",\n \"integrity\": \"sha512-qe1jfm1Mg7Nq\u002FNSh6XE24gPXROEVsWHxC1LIx\u002F\u002FXNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==\",\n \"requires\": {\n \"has-flag\": \"^3.0.0\"\n }\n }\n }\n },\n \"next-tick\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnext-tick\u002F-\u002Fnext-tick-1.0.0.tgz\",\n \"integrity\": \"sha1-yobR\u002FogoFpsBICCOPchCS524NCw=\"\n },\n \"nice-try\": {\n \"version\": \"1.0.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnice-try\u002F-\u002Fnice-try-1.0.5.tgz\",\n \"integrity\": \"sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==\",\n \"dev\": true\n },\n \"node-abi\": {\n \"version\": \"2.19.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnode-abi\u002F-\u002Fnode-abi-2.19.1.tgz\",\n \"integrity\": \"sha512-HbtmIuByq44yhAzK7b9j\u002FFelKlHYISKQn0mtvcBrU5QBkhoCMp5bu8Hv5AI34DcKfOAcJBcOEMwLlwO62FFu9A==\",\n \"optional\": true,\n \"requires\": {\n \"semver\": \"^5.4.1\"\n }\n },\n \"node-addon-api\": {\n \"version\": \"3.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnode-addon-api\u002F-\u002Fnode-addon-api-3.0.2.tgz\",\n \"integrity\": \"sha512-+D4s2HCnxPd5PjjI0STKwncjXTUKKqm74MDMz9OPXavjsGmjkvwgLtA5yoxJUdmpj52+2u+RrXgPipahKczMKg==\",\n \"optional\": true\n },\n \"node-fetch\": {\n \"version\": \"2.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnode-fetch\u002F-\u002Fnode-fetch-2.6.1.tgz\",\n \"integrity\": \"sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==\"\n },\n \"node-html-parser\": {\n \"version\": \"1.4.9\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnode-html-parser\u002F-\u002Fnode-html-parser-1.4.9.tgz\",\n \"integrity\": \"sha512-UVcirFD1Bn0O+TSmloHeHqZZCxHjvtIeGdVdGMhyZ8\u002FPWlEiZaZ5iJzR189yKZr8p0FXN58BUeC7RHRkf\u002FKYGw==\",\n \"requires\": {\n \"he\": \"1.2.0\"\n }\n },\n \"node-int64\": {\n \"version\": \"0.4.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnode-int64\u002F-\u002Fnode-int64-0.4.0.tgz\",\n \"integrity\": \"sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=\",\n \"dev\": true\n },\n \"node-libs-browser\": {\n \"version\": \"2.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnode-libs-browser\u002F-\u002Fnode-libs-browser-2.2.1.tgz\",\n \"integrity\": \"sha512-h\u002FzcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==\",\n \"requires\": {\n \"assert\": \"^1.1.1\",\n \"browserify-zlib\": \"^0.2.0\",\n \"buffer\": \"^4.3.0\",\n \"console-browserify\": \"^1.1.0\",\n \"constants-browserify\": \"^1.0.0\",\n \"crypto-browserify\": \"^3.11.0\",\n \"domain-browser\": \"^1.1.1\",\n \"events\": \"^3.0.0\",\n \"https-browserify\": \"^1.0.0\",\n \"os-browserify\": \"^0.3.0\",\n \"path-browserify\": \"0.0.1\",\n \"process\": \"^0.11.10\",\n \"punycode\": \"^1.2.4\",\n \"querystring-es3\": \"^0.2.0\",\n \"readable-stream\": \"^2.3.3\",\n \"stream-browserify\": \"^2.0.1\",\n \"stream-http\": \"^2.7.2\",\n \"string_decoder\": \"^1.0.0\",\n \"timers-browserify\": \"^2.0.4\",\n \"tty-browserify\": \"0.0.0\",\n \"url\": \"^0.11.0\",\n \"util\": \"^0.11.0\",\n \"vm-browserify\": \"^1.0.1\"\n },\n \"dependencies\": {\n \"buffer\": {\n \"version\": \"4.9.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbuffer\u002F-\u002Fbuffer-4.9.2.tgz\",\n \"integrity\": \"sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T\u002FNB1XMtTVEwNTrfFF3gAxiyW0Bu\u002FxWEGhjVKgUcMhCrUy2+uCWg==\",\n \"requires\": {\n \"base64-js\": \"^1.0.2\",\n \"ieee754\": \"^1.1.4\",\n \"isarray\": \"^1.0.0\"\n }\n },\n \"path-browserify\": {\n \"version\": \"0.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpath-browserify\u002F-\u002Fpath-browserify-0.0.1.tgz\",\n \"integrity\": \"sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN\u002FWs5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO\u002FlQ==\"\n },\n \"punycode\": {\n \"version\": \"1.4.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpunycode\u002F-\u002Fpunycode-1.4.1.tgz\",\n \"integrity\": \"sha1-wNWmOycYgArY4esPpSachN1BhF4=\"\n },\n \"readable-stream\": {\n \"version\": \"2.3.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freadable-stream\u002F-\u002Freadable-stream-2.3.7.tgz\",\n \"integrity\": \"sha512-Ebho8K4jIbHAxnuxi7o42OrZgF\u002FZTNcsZj6nRKyUmkhLFq8CHItp\u002Ffy6hQZuZmP\u002Fn3yZ9VBUbp4zz\u002FmX8hmYPw==\",\n \"requires\": {\n \"core-util-is\": \"~1.0.0\",\n \"inherits\": \"~2.0.3\",\n \"isarray\": \"~1.0.0\",\n \"process-nextick-args\": \"~2.0.0\",\n \"safe-buffer\": \"~5.1.1\",\n \"string_decoder\": \"~1.1.1\",\n \"util-deprecate\": \"~1.0.1\"\n },\n \"dependencies\": {\n \"string_decoder\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring_decoder\u002F-\u002Fstring_decoder-1.1.1.tgz\",\n \"integrity\": \"sha512-n\u002FShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP\u002FmzRfwg==\",\n \"requires\": {\n \"safe-buffer\": \"~5.1.0\"\n }\n }\n }\n },\n \"stream-browserify\": {\n \"version\": \"2.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstream-browserify\u002F-\u002Fstream-browserify-2.0.2.tgz\",\n \"integrity\": \"sha512-nX6hmklHs\u002Fgr2FuxYDltq8fJA1GDlxKQCz8O\u002FIM4atRqBH8OORmBNgfvW5gG10GT\u002FqQ9u0CzIvr2X5Pkt6ntqg==\",\n \"requires\": {\n \"inherits\": \"~2.0.1\",\n \"readable-stream\": \"^2.0.2\"\n }\n }\n }\n },\n \"node-modules-regexp\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnode-modules-regexp\u002F-\u002Fnode-modules-regexp-1.0.0.tgz\",\n \"integrity\": \"sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=\",\n \"dev\": true\n },\n \"node-notifier\": {\n \"version\": \"6.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnode-notifier\u002F-\u002Fnode-notifier-6.0.0.tgz\",\n \"integrity\": \"sha512-SVfQ\u002FwMw+DesunOm5cKqr6yDcvUTDl\u002Fyc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw==\",\n \"dev\": true,\n \"optional\": true,\n \"requires\": {\n \"growly\": \"^1.3.0\",\n \"is-wsl\": \"^2.1.1\",\n \"semver\": \"^6.3.0\",\n \"shellwords\": \"^0.1.1\",\n \"which\": \"^1.3.1\"\n },\n \"dependencies\": {\n \"semver\": {\n \"version\": \"6.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsemver\u002F-\u002Fsemver-6.3.0.tgz\",\n \"integrity\": \"sha512-b39TBaTSfV6yBrapU89p5fKekE2m\u002FNwnDocOVruQFS1\u002FveMgdzuPcnOM34M6CwxW8jH\u002FlxEa5rBoDeUwu5HHTw==\",\n \"dev\": true,\n \"optional\": true\n }\n }\n },\n \"node-releases\": {\n \"version\": \"1.1.66\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnode-releases\u002F-\u002Fnode-releases-1.1.66.tgz\",\n \"integrity\": \"sha512-JHEQ1iWPGK+38VLB2H9ef2otU4l8s3yAMt9Xf934r6+ojCYDMHPMqvCc9TnzfeFSP1QEOeU6YZEd3+De0LTCgg==\"\n },\n \"noop-logger\": {\n \"version\": \"0.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnoop-logger\u002F-\u002Fnoop-logger-0.1.1.tgz\",\n \"integrity\": \"sha1-lKKxYzxPExdVMAfYlm\u002FQ6EG2pMI=\",\n \"optional\": true\n },\n \"normalize-html-whitespace\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnormalize-html-whitespace\u002F-\u002Fnormalize-html-whitespace-1.0.0.tgz\",\n \"integrity\": \"sha512-9ui7CGtOOlehQu0t\u002FOhhlmDyc71mKVlv+4vF+me4iZLPrNtRL2xoquEdfZxasC\u002FbdQi\u002FHr3iTrpyRKIG+ocabA==\"\n },\n \"normalize-package-data\": {\n \"version\": \"2.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnormalize-package-data\u002F-\u002Fnormalize-package-data-2.5.0.tgz\",\n \"integrity\": \"sha512-\u002F5CMN3T0R4XTj4DcGaexo+roZSdSFW\u002F0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==\",\n \"dev\": true,\n \"requires\": {\n \"hosted-git-info\": \"^2.1.4\",\n \"resolve\": \"^1.10.0\",\n \"semver\": \"2 || 3 || 4 || 5\",\n \"validate-npm-package-license\": \"^3.0.1\"\n }\n },\n \"normalize-path\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnormalize-path\u002F-\u002Fnormalize-path-3.0.0.tgz\",\n \"integrity\": \"sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb\u002FmD4WYojCRwcwLA==\"\n },\n \"npm-run-path\": {\n \"version\": \"4.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnpm-run-path\u002F-\u002Fnpm-run-path-4.0.1.tgz\",\n \"integrity\": \"sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC\u002FuQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==\",\n \"dev\": true,\n \"requires\": {\n \"path-key\": \"^3.0.0\"\n },\n \"dependencies\": {\n \"path-key\": {\n \"version\": \"3.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpath-key\u002F-\u002Fpath-key-3.1.1.tgz\",\n \"integrity\": \"sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==\",\n \"dev\": true\n }\n }\n },\n \"npmlog\": {\n \"version\": \"4.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnpmlog\u002F-\u002Fnpmlog-4.1.2.tgz\",\n \"integrity\": \"sha512-2uUqazuKlTaSI\u002FdC8AzicUck7+IrEaOnN\u002Fe0jd3Xtt1KcGpwx30v50mL7oPyr\u002Fh9bL3E4aZccVwpwP+5W9Vjkg==\",\n \"optional\": true,\n \"requires\": {\n \"are-we-there-yet\": \"~1.1.2\",\n \"console-control-strings\": \"~1.1.0\",\n \"gauge\": \"~2.7.3\",\n \"set-blocking\": \"~2.0.0\"\n }\n },\n \"number-is-nan\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnumber-is-nan\u002F-\u002Fnumber-is-nan-1.0.1.tgz\",\n \"integrity\": \"sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=\",\n \"optional\": true\n },\n \"nwsapi\": {\n \"version\": \"2.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnwsapi\u002F-\u002Fnwsapi-2.2.0.tgz\",\n \"integrity\": \"sha512-h2AatdwYH+JHiZpv7pt\u002FgSX1XoRGb7L\u002FqSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1\u002F\u002FvHK7hQ==\",\n \"dev\": true\n },\n \"oauth-sign\": {\n \"version\": \"0.9.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Foauth-sign\u002F-\u002Foauth-sign-0.9.0.tgz\",\n \"integrity\": \"sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc\u002FmRDzZQ==\",\n \"dev\": true\n },\n \"object-assign\": {\n \"version\": \"4.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fobject-assign\u002F-\u002Fobject-assign-4.1.1.tgz\",\n \"integrity\": \"sha1-IQmtx5ZYh8\u002FAXLvUQsrIv7s2CGM=\"\n },\n \"object-copy\": {\n \"version\": \"0.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fobject-copy\u002F-\u002Fobject-copy-0.1.0.tgz\",\n \"integrity\": \"sha1-fn2Fi3gb18mRpBupde04EnVOmYw=\",\n \"requires\": {\n \"copy-descriptor\": \"^0.1.0\",\n \"define-property\": \"^0.2.5\",\n \"kind-of\": \"^3.0.3\"\n },\n \"dependencies\": {\n \"define-property\": {\n \"version\": \"0.2.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdefine-property\u002F-\u002Fdefine-property-0.2.5.tgz\",\n \"integrity\": \"sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=\",\n \"requires\": {\n \"is-descriptor\": \"^0.1.0\"\n }\n },\n \"is-accessor-descriptor\": {\n \"version\": \"0.1.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-accessor-descriptor\u002F-\u002Fis-accessor-descriptor-0.1.6.tgz\",\n \"integrity\": \"sha1-qeEss66Nh2cn7u84Q\u002FigiXtcmNY=\",\n \"requires\": {\n \"kind-of\": \"^3.0.2\"\n }\n },\n \"is-data-descriptor\": {\n \"version\": \"0.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-data-descriptor\u002F-\u002Fis-data-descriptor-0.1.4.tgz\",\n \"integrity\": \"sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=\",\n \"requires\": {\n \"kind-of\": \"^3.0.2\"\n }\n },\n \"is-descriptor\": {\n \"version\": \"0.1.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-descriptor\u002F-\u002Fis-descriptor-0.1.6.tgz\",\n \"integrity\": \"sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq\u002F4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==\",\n \"requires\": {\n \"is-accessor-descriptor\": \"^0.1.6\",\n \"is-data-descriptor\": \"^0.1.4\",\n \"kind-of\": \"^5.0.0\"\n },\n \"dependencies\": {\n \"kind-of\": {\n \"version\": \"5.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-5.1.0.tgz\",\n \"integrity\": \"sha512-NGEErnH6F2vUuXDh+OlbcKW7\u002FwOcfdRHaZ7VWtqCztfHri\u002F++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==\"\n }\n }\n },\n \"kind-of\": {\n \"version\": \"3.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-3.2.2.tgz\",\n \"integrity\": \"sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=\",\n \"requires\": {\n \"is-buffer\": \"^1.1.5\"\n }\n }\n }\n },\n \"object-inspect\": {\n \"version\": \"1.8.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fobject-inspect\u002F-\u002Fobject-inspect-1.8.0.tgz\",\n \"integrity\": \"sha512-jLdtEOB112fORuypAyl\u002F50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==\",\n \"dev\": true\n },\n \"object-keys\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fobject-keys\u002F-\u002Fobject-keys-1.1.1.tgz\",\n \"integrity\": \"sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==\",\n \"dev\": true\n },\n \"object-visit\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fobject-visit\u002F-\u002Fobject-visit-1.0.1.tgz\",\n \"integrity\": \"sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=\",\n \"requires\": {\n \"isobject\": \"^3.0.0\"\n },\n \"dependencies\": {\n \"isobject\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fisobject\u002F-\u002Fisobject-3.0.1.tgz\",\n \"integrity\": \"sha1-TkMekrEalzFjaqH5yNHMvP2reN8=\"\n }\n }\n },\n \"object.assign\": {\n \"version\": \"4.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fobject.assign\u002F-\u002Fobject.assign-4.1.2.tgz\",\n \"integrity\": \"sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c\u002FLU8Be47utCx2GL89hxGB6XSmKuQ==\",\n \"dev\": true,\n \"requires\": {\n \"call-bind\": \"^1.0.0\",\n \"define-properties\": \"^1.1.3\",\n \"has-symbols\": \"^1.0.1\",\n \"object-keys\": \"^1.1.1\"\n }\n },\n \"object.entries\": {\n \"version\": \"1.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fobject.entries\u002F-\u002Fobject.entries-1.1.2.tgz\",\n \"integrity\": \"sha512-BQdB9qKmb\u002FHyNdMNWVr7O3+z5MUIx3aiegEIJqjMBbBf0YT9RRxTJSim4mzFqtyr7PDAHigq0N9dO0m0tRakQA==\",\n \"dev\": true,\n \"requires\": {\n \"define-properties\": \"^1.1.3\",\n \"es-abstract\": \"^1.17.5\",\n \"has\": \"^1.0.3\"\n }\n },\n \"object.fromentries\": {\n \"version\": \"2.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fobject.fromentries\u002F-\u002Fobject.fromentries-2.0.2.tgz\",\n \"integrity\": \"sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ==\",\n \"dev\": true,\n \"requires\": {\n \"define-properties\": \"^1.1.3\",\n \"es-abstract\": \"^1.17.0-next.1\",\n \"function-bind\": \"^1.1.1\",\n \"has\": \"^1.0.3\"\n }\n },\n \"object.pick\": {\n \"version\": \"1.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fobject.pick\u002F-\u002Fobject.pick-1.3.0.tgz\",\n \"integrity\": \"sha1-h6EKxMFpS9Lhy\u002FU1kaZhQftd10c=\",\n \"requires\": {\n \"isobject\": \"^3.0.1\"\n },\n \"dependencies\": {\n \"isobject\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fisobject\u002F-\u002Fisobject-3.0.1.tgz\",\n \"integrity\": \"sha1-TkMekrEalzFjaqH5yNHMvP2reN8=\"\n }\n }\n },\n \"object.values\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fobject.values\u002F-\u002Fobject.values-1.1.1.tgz\",\n \"integrity\": \"sha512-WTa54g2K8iu0kmS\u002Fus18jEmdv1a4Wi\u002F\u002FBZ\u002FDTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==\",\n \"dev\": true,\n \"requires\": {\n \"define-properties\": \"^1.1.3\",\n \"es-abstract\": \"^1.17.0-next.1\",\n \"function-bind\": \"^1.1.1\",\n \"has\": \"^1.0.3\"\n }\n },\n \"once\": {\n \"version\": \"1.4.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fonce\u002F-\u002Fonce-1.4.0.tgz\",\n \"integrity\": \"sha1-WDsap3WWHUsROsF9nFC6753Xa9E=\",\n \"requires\": {\n \"wrappy\": \"1\"\n }\n },\n \"onetime\": {\n \"version\": \"5.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fonetime\u002F-\u002Fonetime-5.1.2.tgz\",\n \"integrity\": \"sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig\u002F1NKuWRKf7j5aaYSg==\",\n \"dev\": true,\n \"requires\": {\n \"mimic-fn\": \"^2.1.0\"\n }\n },\n \"opencollective-postinstall\": {\n \"version\": \"2.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fopencollective-postinstall\u002F-\u002Fopencollective-postinstall-2.0.3.tgz\",\n \"integrity\": \"sha512-8AV\u002FsCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==\",\n \"dev\": true\n },\n \"optionator\": {\n \"version\": \"0.8.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Foptionator\u002F-\u002Foptionator-0.8.3.tgz\",\n \"integrity\": \"sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==\",\n \"dev\": true,\n \"requires\": {\n \"deep-is\": \"~0.1.3\",\n \"fast-levenshtein\": \"~2.0.6\",\n \"levn\": \"~0.3.0\",\n \"prelude-ls\": \"~1.1.2\",\n \"type-check\": \"~0.3.2\",\n \"word-wrap\": \"~1.2.3\"\n }\n },\n \"os-browserify\": {\n \"version\": \"0.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fos-browserify\u002F-\u002Fos-browserify-0.3.0.tgz\",\n \"integrity\": \"sha1-hUNzx\u002FXCMVkU\u002FJv8a9gjj92h7Cc=\"\n },\n \"os-tmpdir\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fos-tmpdir\u002F-\u002Fos-tmpdir-1.0.2.tgz\",\n \"integrity\": \"sha1-u+Z0BseaqFxc\u002Fsdm\u002Flc0VV36EnQ=\",\n \"dev\": true\n },\n \"p-each-series\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fp-each-series\u002F-\u002Fp-each-series-2.1.0.tgz\",\n \"integrity\": \"sha512-ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ==\",\n \"dev\": true\n },\n \"p-finally\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fp-finally\u002F-\u002Fp-finally-2.0.1.tgz\",\n \"integrity\": \"sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==\",\n \"dev\": true\n },\n \"p-limit\": {\n \"version\": \"2.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fp-limit\u002F-\u002Fp-limit-2.3.0.tgz\",\n \"integrity\": \"sha512-\u002F\u002F88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==\",\n \"requires\": {\n \"p-try\": \"^2.0.0\"\n }\n },\n \"p-locate\": {\n \"version\": \"4.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fp-locate\u002F-\u002Fp-locate-4.1.0.tgz\",\n \"integrity\": \"sha512-R79ZZ\u002F0wAxKGu3oYMlz8jy\u002FkbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==\",\n \"requires\": {\n \"p-limit\": \"^2.2.0\"\n }\n },\n \"p-map\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fp-map\u002F-\u002Fp-map-4.0.0.tgz\",\n \"integrity\": \"sha512-\u002FbjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw\u002FMQ==\",\n \"dev\": true,\n \"requires\": {\n \"aggregate-error\": \"^3.0.0\"\n }\n },\n \"p-try\": {\n \"version\": \"2.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fp-try\u002F-\u002Fp-try-2.2.0.tgz\",\n \"integrity\": \"sha512-R4nPAVTAU0B9D35\u002FGk3uJf\u002F7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==\"\n },\n \"pako\": {\n \"version\": \"1.0.11\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpako\u002F-\u002Fpako-1.0.11.tgz\",\n \"integrity\": \"sha512-4hLB8Py4zZce5s4yd9XzopqwVv\u002FyGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==\"\n },\n \"parallel-transform\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fparallel-transform\u002F-\u002Fparallel-transform-1.2.0.tgz\",\n \"integrity\": \"sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy\u002FABO5ZUbGowxNCopBq\u002FOoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==\",\n \"requires\": {\n \"cyclist\": \"^1.0.1\",\n \"inherits\": \"^2.0.3\",\n \"readable-stream\": \"^2.1.5\"\n },\n \"dependencies\": {\n \"readable-stream\": {\n \"version\": \"2.3.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freadable-stream\u002F-\u002Freadable-stream-2.3.7.tgz\",\n \"integrity\": \"sha512-Ebho8K4jIbHAxnuxi7o42OrZgF\u002FZTNcsZj6nRKyUmkhLFq8CHItp\u002Ffy6hQZuZmP\u002Fn3yZ9VBUbp4zz\u002FmX8hmYPw==\",\n \"requires\": {\n \"core-util-is\": \"~1.0.0\",\n \"inherits\": \"~2.0.3\",\n \"isarray\": \"~1.0.0\",\n \"process-nextick-args\": \"~2.0.0\",\n \"safe-buffer\": \"~5.1.1\",\n \"string_decoder\": \"~1.1.1\",\n \"util-deprecate\": \"~1.0.1\"\n }\n },\n \"string_decoder\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring_decoder\u002F-\u002Fstring_decoder-1.1.1.tgz\",\n \"integrity\": \"sha512-n\u002FShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP\u002FmzRfwg==\",\n \"requires\": {\n \"safe-buffer\": \"~5.1.0\"\n }\n }\n }\n },\n \"parent-module\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fparent-module\u002F-\u002Fparent-module-1.0.1.tgz\",\n \"integrity\": \"sha512-GQ2EWRpQV8\u002Fo+Aw8YqtfZZPfNRWZYkbidE9k5rpl\u002FhC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==\",\n \"dev\": true,\n \"requires\": {\n \"callsites\": \"^3.0.0\"\n }\n },\n \"parse-asn1\": {\n \"version\": \"5.1.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fparse-asn1\u002F-\u002Fparse-asn1-5.1.6.tgz\",\n \"integrity\": \"sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0\u002F04VD\u002F19rfzlBSwLstMw==\",\n \"requires\": {\n \"asn1.js\": \"^5.2.0\",\n \"browserify-aes\": \"^1.0.0\",\n \"evp_bytestokey\": \"^1.0.0\",\n \"pbkdf2\": \"^3.0.3\",\n \"safe-buffer\": \"^5.1.1\"\n }\n },\n \"parse-json\": {\n \"version\": \"5.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fparse-json\u002F-\u002Fparse-json-5.1.0.tgz\",\n \"integrity\": \"sha512-+mi\u002FlmVVNKFNVyLXV31ERiy2CY5E1\u002FF6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0\u002F+2qHID68KwfIQ==\",\n \"dev\": true,\n \"requires\": {\n \"@babel\u002Fcode-frame\": \"^7.0.0\",\n \"error-ex\": \"^1.3.1\",\n \"json-parse-even-better-errors\": \"^2.3.0\",\n \"lines-and-columns\": \"^1.1.6\"\n }\n },\n \"parse5\": {\n \"version\": \"5.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fparse5\u002F-\u002Fparse5-5.1.0.tgz\",\n \"integrity\": \"sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9\u002FgRQ==\",\n \"dev\": true\n },\n \"pascalcase\": {\n \"version\": \"0.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpascalcase\u002F-\u002Fpascalcase-0.1.1.tgz\",\n \"integrity\": \"sha1-s2PlXoAGym\u002FiF4TS2yK9FdeRfxQ=\"\n },\n \"path-browserify\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpath-browserify\u002F-\u002Fpath-browserify-1.0.1.tgz\",\n \"integrity\": \"sha512-b7uo2UCUOYZcnF\u002F3ID0lulOJi\u002Fbafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==\"\n },\n \"path-dirname\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpath-dirname\u002F-\u002Fpath-dirname-1.0.2.tgz\",\n \"integrity\": \"sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=\",\n \"optional\": true\n },\n \"path-exists\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpath-exists\u002F-\u002Fpath-exists-4.0.0.tgz\",\n \"integrity\": \"sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc\u002FZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7\u002Fw==\"\n },\n \"path-is-absolute\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpath-is-absolute\u002F-\u002Fpath-is-absolute-1.0.1.tgz\",\n \"integrity\": \"sha1-F0uSaHNVNP+8es5r9TpanhtcX18=\"\n },\n \"path-key\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpath-key\u002F-\u002Fpath-key-2.0.1.tgz\",\n \"integrity\": \"sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=\",\n \"dev\": true\n },\n \"path-parse\": {\n \"version\": \"1.0.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpath-parse\u002F-\u002Fpath-parse-1.0.6.tgz\",\n \"integrity\": \"sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3\u002FTLNEJFD\u002FxZJjzyxg3KBWOzw==\",\n \"dev\": true\n },\n \"path-type\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpath-type\u002F-\u002Fpath-type-4.0.0.tgz\",\n \"integrity\": \"sha512-gDKb8aZMDeD\u002FtZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==\",\n \"dev\": true\n },\n \"pbkdf2\": {\n \"version\": \"3.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpbkdf2\u002F-\u002Fpbkdf2-3.1.1.tgz\",\n \"integrity\": \"sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG\u002FJtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==\",\n \"requires\": {\n \"create-hash\": \"^1.1.2\",\n \"create-hmac\": \"^1.1.4\",\n \"ripemd160\": \"^2.0.1\",\n \"safe-buffer\": \"^5.0.1\",\n \"sha.js\": \"^2.4.8\"\n }\n },\n \"performance-now\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fperformance-now\u002F-\u002Fperformance-now-2.1.0.tgz\",\n \"integrity\": \"sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=\",\n \"dev\": true\n },\n \"picomatch\": {\n \"version\": \"2.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpicomatch\u002F-\u002Fpicomatch-2.2.2.tgz\",\n \"integrity\": \"sha512-q0M\u002F9eZHzmr0AulXyPwNfZjtwZ\u002FRBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==\"\n },\n \"pify\": {\n \"version\": \"4.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpify\u002F-\u002Fpify-4.0.1.tgz\",\n \"integrity\": \"sha512-uB80kBFb\u002Ftfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==\"\n },\n \"pirates\": {\n \"version\": \"4.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpirates\u002F-\u002Fpirates-4.0.1.tgz\",\n \"integrity\": \"sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==\",\n \"dev\": true,\n \"requires\": {\n \"node-modules-regexp\": \"^1.0.0\"\n }\n },\n \"pkg-dir\": {\n \"version\": \"4.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpkg-dir\u002F-\u002Fpkg-dir-4.2.0.tgz\",\n \"integrity\": \"sha512-HRDzbaKjC+AOWVXxAU\u002Fx54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu\u002FFr23EiekbtZwmh1IcIG\u002Fl\u002Fa10GQ==\",\n \"requires\": {\n \"find-up\": \"^4.0.0\"\n }\n },\n \"platform\": {\n \"version\": \"1.3.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fplatform\u002F-\u002Fplatform-1.3.3.tgz\",\n \"integrity\": \"sha1-ZGx3ARiZhwtqCQPnXpl+jlHadGE=\"\n },\n \"please-upgrade-node\": {\n \"version\": \"3.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fplease-upgrade-node\u002F-\u002Fplease-upgrade-node-3.2.0.tgz\",\n \"integrity\": \"sha512-gQR3WpIgNIKwBMVLkpMUeR3e1\u002FE1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==\",\n \"dev\": true,\n \"requires\": {\n \"semver-compare\": \"^1.0.0\"\n }\n },\n \"pn\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpn\u002F-\u002Fpn-1.1.0.tgz\",\n \"integrity\": \"sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb\u002FnA==\",\n \"dev\": true\n },\n \"pnp-webpack-plugin\": {\n \"version\": \"1.6.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpnp-webpack-plugin\u002F-\u002Fpnp-webpack-plugin-1.6.4.tgz\",\n \"integrity\": \"sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw\u002FIpZCt\u002FH0srrntSg==\",\n \"requires\": {\n \"ts-pnp\": \"^1.1.6\"\n }\n },\n \"posix-character-classes\": {\n \"version\": \"0.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fposix-character-classes\u002F-\u002Fposix-character-classes-0.1.1.tgz\",\n \"integrity\": \"sha1-AerA\u002Fjta9xoqbAL+q7jB\u002FvfgDqs=\"\n },\n \"postcss\": {\n \"version\": \"8.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpostcss\u002F-\u002Fpostcss-8.1.1.tgz\",\n \"integrity\": \"sha512-9DGLSsjooH3kSNjTZUOt2eIj2ZTW0VI2PZ\u002F3My+8TC7KIbH2OKwUlISfDsf63EP4aiRUt3XkEWMWvyJHvJelEg==\",\n \"requires\": {\n \"colorette\": \"^1.2.1\",\n \"line-column\": \"^1.0.2\",\n \"nanoid\": \"^3.1.12\",\n \"source-map\": \"^0.6.1\"\n },\n \"dependencies\": {\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\"\n }\n }\n },\n \"postcss-modules-extract-imports\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpostcss-modules-extract-imports\u002F-\u002Fpostcss-modules-extract-imports-2.0.0.tgz\",\n \"integrity\": \"sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr\u002FLv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==\",\n \"requires\": {\n \"postcss\": \"^7.0.5\"\n },\n \"dependencies\": {\n \"postcss\": {\n \"version\": \"7.0.35\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpostcss\u002F-\u002Fpostcss-7.0.35.tgz\",\n \"integrity\": \"sha512-3QT8bBJeX\u002FS5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==\",\n \"requires\": {\n \"chalk\": \"^2.4.2\",\n \"source-map\": \"^0.6.1\",\n \"supports-color\": \"^6.1.0\"\n }\n },\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\"\n },\n \"supports-color\": {\n \"version\": \"6.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-6.1.0.tgz\",\n \"integrity\": \"sha512-qe1jfm1Mg7Nq\u002FNSh6XE24gPXROEVsWHxC1LIx\u002F\u002FXNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==\",\n \"requires\": {\n \"has-flag\": \"^3.0.0\"\n }\n }\n }\n },\n \"postcss-modules-local-by-default\": {\n \"version\": \"3.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpostcss-modules-local-by-default\u002F-\u002Fpostcss-modules-local-by-default-3.0.3.tgz\",\n \"integrity\": \"sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui\u002FkyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==\",\n \"requires\": {\n \"icss-utils\": \"^4.1.1\",\n \"postcss\": \"^7.0.32\",\n \"postcss-selector-parser\": \"^6.0.2\",\n \"postcss-value-parser\": \"^4.1.0\"\n },\n \"dependencies\": {\n \"postcss\": {\n \"version\": \"7.0.35\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpostcss\u002F-\u002Fpostcss-7.0.35.tgz\",\n \"integrity\": \"sha512-3QT8bBJeX\u002FS5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==\",\n \"requires\": {\n \"chalk\": \"^2.4.2\",\n \"source-map\": \"^0.6.1\",\n \"supports-color\": \"^6.1.0\"\n }\n },\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\"\n },\n \"supports-color\": {\n \"version\": \"6.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-6.1.0.tgz\",\n \"integrity\": \"sha512-qe1jfm1Mg7Nq\u002FNSh6XE24gPXROEVsWHxC1LIx\u002F\u002FXNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==\",\n \"requires\": {\n \"has-flag\": \"^3.0.0\"\n }\n }\n }\n },\n \"postcss-modules-scope\": {\n \"version\": \"2.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpostcss-modules-scope\u002F-\u002Fpostcss-modules-scope-2.2.0.tgz\",\n \"integrity\": \"sha512-YyEgsTMRpNd+HmyC7H\u002Fmh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW\u002FO04Hxyu9oXQ==\",\n \"requires\": {\n \"postcss\": \"^7.0.6\",\n \"postcss-selector-parser\": \"^6.0.0\"\n },\n \"dependencies\": {\n \"postcss\": {\n \"version\": \"7.0.35\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpostcss\u002F-\u002Fpostcss-7.0.35.tgz\",\n \"integrity\": \"sha512-3QT8bBJeX\u002FS5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==\",\n \"requires\": {\n \"chalk\": \"^2.4.2\",\n \"source-map\": \"^0.6.1\",\n \"supports-color\": \"^6.1.0\"\n }\n },\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\"\n },\n \"supports-color\": {\n \"version\": \"6.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-6.1.0.tgz\",\n \"integrity\": \"sha512-qe1jfm1Mg7Nq\u002FNSh6XE24gPXROEVsWHxC1LIx\u002F\u002FXNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==\",\n \"requires\": {\n \"has-flag\": \"^3.0.0\"\n }\n }\n }\n },\n \"postcss-modules-values\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpostcss-modules-values\u002F-\u002Fpostcss-modules-values-3.0.0.tgz\",\n \"integrity\": \"sha512-1\u002F\u002FE5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==\",\n \"requires\": {\n \"icss-utils\": \"^4.0.0\",\n \"postcss\": \"^7.0.6\"\n },\n \"dependencies\": {\n \"postcss\": {\n \"version\": \"7.0.35\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpostcss\u002F-\u002Fpostcss-7.0.35.tgz\",\n \"integrity\": \"sha512-3QT8bBJeX\u002FS5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==\",\n \"requires\": {\n \"chalk\": \"^2.4.2\",\n \"source-map\": \"^0.6.1\",\n \"supports-color\": \"^6.1.0\"\n }\n },\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\"\n },\n \"supports-color\": {\n \"version\": \"6.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-6.1.0.tgz\",\n \"integrity\": \"sha512-qe1jfm1Mg7Nq\u002FNSh6XE24gPXROEVsWHxC1LIx\u002F\u002FXNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==\",\n \"requires\": {\n \"has-flag\": \"^3.0.0\"\n }\n }\n }\n },\n \"postcss-safe-parser\": {\n \"version\": \"4.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpostcss-safe-parser\u002F-\u002Fpostcss-safe-parser-4.0.2.tgz\",\n \"integrity\": \"sha512-Uw6ekxSWNLCPesSv\u002Fcmqf2bY\u002F77z11O7jZGPax3ycZMFU\u002Foi2DMH9i89AdHc1tRwFg\u002FarFoEwX0IS3LCUxJh1g==\",\n \"requires\": {\n \"postcss\": \"^7.0.26\"\n },\n \"dependencies\": {\n \"postcss\": {\n \"version\": \"7.0.35\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpostcss\u002F-\u002Fpostcss-7.0.35.tgz\",\n \"integrity\": \"sha512-3QT8bBJeX\u002FS5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==\",\n \"requires\": {\n \"chalk\": \"^2.4.2\",\n \"source-map\": \"^0.6.1\",\n \"supports-color\": \"^6.1.0\"\n }\n },\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\"\n },\n \"supports-color\": {\n \"version\": \"6.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-6.1.0.tgz\",\n \"integrity\": \"sha512-qe1jfm1Mg7Nq\u002FNSh6XE24gPXROEVsWHxC1LIx\u002F\u002FXNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==\",\n \"requires\": {\n \"has-flag\": \"^3.0.0\"\n }\n }\n }\n },\n \"postcss-selector-parser\": {\n \"version\": \"6.0.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpostcss-selector-parser\u002F-\u002Fpostcss-selector-parser-6.0.4.tgz\",\n \"integrity\": \"sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==\",\n \"requires\": {\n \"cssesc\": \"^3.0.0\",\n \"indexes-of\": \"^1.0.1\",\n \"uniq\": \"^1.0.1\",\n \"util-deprecate\": \"^1.0.2\"\n }\n },\n \"postcss-value-parser\": {\n \"version\": \"4.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpostcss-value-parser\u002F-\u002Fpostcss-value-parser-4.1.0.tgz\",\n \"integrity\": \"sha512-97DXOFbQJhk71ne5\u002FMt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==\"\n },\n \"prebuild-install\": {\n \"version\": \"5.3.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fprebuild-install\u002F-\u002Fprebuild-install-5.3.6.tgz\",\n \"integrity\": \"sha512-s8Aai8++QQGi4sSbs\u002FM1Qku62PFK49Jm1CbgXklGz4nmHveDq0wzJkg7Na5QbnO1uNH8K7iqx2EQ\u002FmV0MZEmOg==\",\n \"optional\": true,\n \"requires\": {\n \"detect-libc\": \"^1.0.3\",\n \"expand-template\": \"^2.0.3\",\n \"github-from-package\": \"0.0.0\",\n \"minimist\": \"^1.2.3\",\n \"mkdirp-classic\": \"^0.5.3\",\n \"napi-build-utils\": \"^1.0.1\",\n \"node-abi\": \"^2.7.0\",\n \"noop-logger\": \"^0.1.1\",\n \"npmlog\": \"^4.0.1\",\n \"pump\": \"^3.0.0\",\n \"rc\": \"^1.2.7\",\n \"simple-get\": \"^3.0.3\",\n \"tar-fs\": \"^2.0.0\",\n \"tunnel-agent\": \"^0.6.0\",\n \"which-pm-runs\": \"^1.0.0\"\n },\n \"dependencies\": {\n \"simple-get\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsimple-get\u002F-\u002Fsimple-get-3.1.0.tgz\",\n \"integrity\": \"sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp\u002Fhj9EDLJo3Nw4y1QksqaovlW\u002FbnptB6\u002Fc1e+qmNIDHRK+oXFDdEqBT8WzUA==\",\n \"optional\": true,\n \"requires\": {\n \"decompress-response\": \"^4.2.0\",\n \"once\": \"^1.3.1\",\n \"simple-concat\": \"^1.0.0\"\n }\n }\n }\n },\n \"prelude-ls\": {\n \"version\": \"1.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fprelude-ls\u002F-\u002Fprelude-ls-1.1.2.tgz\",\n \"integrity\": \"sha1-IZMqVJ9eUv\u002FZqCf1cOBL5iqX2lQ=\",\n \"dev\": true\n },\n \"prettier\": {\n \"version\": \"2.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fprettier\u002F-\u002Fprettier-2.1.2.tgz\",\n \"integrity\": \"sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==\",\n \"dev\": true\n },\n \"pretty-format\": {\n \"version\": \"26.6.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpretty-format\u002F-\u002Fpretty-format-26.6.2.tgz\",\n \"integrity\": \"sha512-7AeGuCYNGmycyQbCqd\u002F3PWH4eOoX\u002FOiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP\u002FWX69mkg==\",\n \"dev\": true,\n \"requires\": {\n \"@jest\u002Ftypes\": \"^26.6.2\",\n \"ansi-regex\": \"^5.0.0\",\n \"ansi-styles\": \"^4.0.0\",\n \"react-is\": \"^17.0.1\"\n },\n \"dependencies\": {\n \"@jest\u002Ftypes\": {\n \"version\": \"26.6.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@jest\u002Ftypes\u002F-\u002Ftypes-26.6.2.tgz\",\n \"integrity\": \"sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD\u002F7SggrUlivxo5ax4KWQ==\",\n \"dev\": true,\n \"requires\": {\n \"@types\u002Fistanbul-lib-coverage\": \"^2.0.0\",\n \"@types\u002Fistanbul-reports\": \"^3.0.0\",\n \"@types\u002Fnode\": \"*\",\n \"@types\u002Fyargs\": \"^15.0.0\",\n \"chalk\": \"^4.0.0\"\n }\n },\n \"@types\u002Fistanbul-reports\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@types\u002Fistanbul-reports\u002F-\u002Fistanbul-reports-3.0.0.tgz\",\n \"integrity\": \"sha512-nwKNbvnwJ2\u002FmndE9ItP\u002Fzc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0\u002Fezy1iKsFU2ZQiDqg4M9dN4+wZgA==\",\n \"dev\": true,\n \"requires\": {\n \"@types\u002Fistanbul-lib-report\": \"*\"\n }\n },\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"chalk\": {\n \"version\": \"4.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchalk\u002F-\u002Fchalk-4.1.0.tgz\",\n \"integrity\": \"sha512-qwx12AxXe2Q5xQ43Ac\u002F\u002FI6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.1.0\",\n \"supports-color\": \"^7.1.0\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"react-is\": {\n \"version\": \"17.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freact-is\u002F-\u002Freact-is-17.0.1.tgz\",\n \"integrity\": \"sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up\u002FxWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"process\": {\n \"version\": \"0.11.10\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fprocess\u002F-\u002Fprocess-0.11.10.tgz\",\n \"integrity\": \"sha1-czIwDoQBYb2j5podHZGn1LwW8YI=\"\n },\n \"process-nextick-args\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fprocess-nextick-args\u002F-\u002Fprocess-nextick-args-2.0.1.tgz\",\n \"integrity\": \"sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7\u002FAhoR3+A+\u002F1e9skrzelGi\u002FdXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==\"\n },\n \"progress\": {\n \"version\": \"2.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fprogress\u002F-\u002Fprogress-2.0.3.tgz\",\n \"integrity\": \"sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa\u002FXMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==\",\n \"dev\": true\n },\n \"promise-inflight\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpromise-inflight\u002F-\u002Fpromise-inflight-1.0.1.tgz\",\n \"integrity\": \"sha1-mEcocL8igTL8vdhoEputEsPAKeM=\"\n },\n \"prompts\": {\n \"version\": \"2.4.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fprompts\u002F-\u002Fprompts-2.4.0.tgz\",\n \"integrity\": \"sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm\u002FHBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==\",\n \"dev\": true,\n \"requires\": {\n \"kleur\": \"^3.0.3\",\n \"sisteransi\": \"^1.0.5\"\n }\n },\n \"prop-types\": {\n \"version\": \"15.7.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fprop-types\u002F-\u002Fprop-types-15.7.2.tgz\",\n \"integrity\": \"sha512-8QQikdH7\u002F\u002FR2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ\u002FnXFdJepOVrY1GCHQ==\",\n \"requires\": {\n \"loose-envify\": \"^1.4.0\",\n \"object-assign\": \"^4.1.1\",\n \"react-is\": \"^16.8.1\"\n }\n },\n \"prr\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fprr\u002F-\u002Fprr-1.0.1.tgz\",\n \"integrity\": \"sha1-0\u002FwRS6BplaRexok\u002FSEzrHXj19HY=\"\n },\n \"psl\": {\n \"version\": \"1.8.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpsl\u002F-\u002Fpsl-1.8.0.tgz\",\n \"integrity\": \"sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ\u002F6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==\",\n \"dev\": true\n },\n \"public-encrypt\": {\n \"version\": \"4.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpublic-encrypt\u002F-\u002Fpublic-encrypt-4.0.3.tgz\",\n \"integrity\": \"sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==\",\n \"requires\": {\n \"bn.js\": \"^4.1.0\",\n \"browserify-rsa\": \"^4.0.0\",\n \"create-hash\": \"^1.1.0\",\n \"parse-asn1\": \"^5.0.0\",\n \"randombytes\": \"^2.0.1\",\n \"safe-buffer\": \"^5.1.2\"\n },\n \"dependencies\": {\n \"bn.js\": {\n \"version\": \"4.11.9\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbn.js\u002F-\u002Fbn.js-4.11.9.tgz\",\n \"integrity\": \"sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==\"\n }\n }\n },\n \"pump\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpump\u002F-\u002Fpump-3.0.0.tgz\",\n \"integrity\": \"sha512-LwZy+p3SFs1Pytd\u002FjYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==\",\n \"requires\": {\n \"end-of-stream\": \"^1.1.0\",\n \"once\": \"^1.3.1\"\n }\n },\n \"pumpify\": {\n \"version\": \"1.5.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpumpify\u002F-\u002Fpumpify-1.5.1.tgz\",\n \"integrity\": \"sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==\",\n \"requires\": {\n \"duplexify\": \"^3.6.0\",\n \"inherits\": \"^2.0.3\",\n \"pump\": \"^2.0.0\"\n },\n \"dependencies\": {\n \"pump\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpump\u002F-\u002Fpump-2.0.1.tgz\",\n \"integrity\": \"sha512-ruPMNRkN3MHP1cWJc9OWr+T\u002FxDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==\",\n \"requires\": {\n \"end-of-stream\": \"^1.1.0\",\n \"once\": \"^1.3.1\"\n }\n }\n }\n },\n \"punycode\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpunycode\u002F-\u002Fpunycode-2.1.1.tgz\",\n \"integrity\": \"sha512-XRsRjdf+j5ml+y\u002F6GKHPZbrF\u002F8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==\"\n },\n \"qs\": {\n \"version\": \"6.5.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fqs\u002F-\u002Fqs-6.5.2.tgz\",\n \"integrity\": \"sha512-N5ZAX4\u002FLxJmF+7wN74pUD6qAh9\u002FwnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91\u002FodN2dW\u002FWOl7qQHNDGA==\",\n \"dev\": true\n },\n \"querystring\": {\n \"version\": \"0.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fquerystring\u002F-\u002Fquerystring-0.2.0.tgz\",\n \"integrity\": \"sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=\"\n },\n \"querystring-es3\": {\n \"version\": \"0.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fquerystring-es3\u002F-\u002Fquerystring-es3-0.2.1.tgz\",\n \"integrity\": \"sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=\"\n },\n \"randombytes\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frandombytes\u002F-\u002Frandombytes-2.1.0.tgz\",\n \"integrity\": \"sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==\",\n \"requires\": {\n \"safe-buffer\": \"^5.1.0\"\n }\n },\n \"randomfill\": {\n \"version\": \"1.0.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frandomfill\u002F-\u002Frandomfill-1.0.4.tgz\",\n \"integrity\": \"sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU\u002Ffjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==\",\n \"requires\": {\n \"randombytes\": \"^2.0.5\",\n \"safe-buffer\": \"^5.1.0\"\n }\n },\n \"raw-body\": {\n \"version\": \"2.4.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fraw-body\u002F-\u002Fraw-body-2.4.1.tgz\",\n \"integrity\": \"sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn\u002FByzo5P7JhXTyg9PzaJbH73bA==\",\n \"requires\": {\n \"bytes\": \"3.1.0\",\n \"http-errors\": \"1.7.3\",\n \"iconv-lite\": \"0.4.24\",\n \"unpipe\": \"1.0.0\"\n }\n },\n \"rc\": {\n \"version\": \"1.2.8\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frc\u002F-\u002Frc-1.2.8.tgz\",\n \"integrity\": \"sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==\",\n \"optional\": true,\n \"requires\": {\n \"deep-extend\": \"^0.6.0\",\n \"ini\": \"~1.3.0\",\n \"minimist\": \"^1.2.0\",\n \"strip-json-comments\": \"~2.0.1\"\n },\n \"dependencies\": {\n \"strip-json-comments\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstrip-json-comments\u002F-\u002Fstrip-json-comments-2.0.1.tgz\",\n \"integrity\": \"sha1-PFMZQukIwml8DsNEhYwobHygpgo=\",\n \"optional\": true\n }\n }\n },\n \"react\": {\n \"version\": \"17.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freact\u002F-\u002Freact-17.0.1.tgz\",\n \"integrity\": \"sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==\",\n \"requires\": {\n \"loose-envify\": \"^1.1.0\",\n \"object-assign\": \"^4.1.1\"\n }\n },\n \"react-dom\": {\n \"version\": \"17.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freact-dom\u002F-\u002Freact-dom-17.0.1.tgz\",\n \"integrity\": \"sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk\u002Flx\u002FUg==\",\n \"requires\": {\n \"loose-envify\": \"^1.1.0\",\n \"object-assign\": \"^4.1.1\",\n \"scheduler\": \"^0.20.1\"\n }\n },\n \"react-is\": {\n \"version\": \"16.13.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freact-is\u002F-\u002Freact-is-16.13.1.tgz\",\n \"integrity\": \"sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki\u002FDHzaUoC5KuON\u002FBiccDaCCTZBuOcfZs70kR8bQ==\"\n },\n \"react-refresh\": {\n \"version\": \"0.8.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freact-refresh\u002F-\u002Freact-refresh-0.8.3.tgz\",\n \"integrity\": \"sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu\u002Fhg==\"\n },\n \"react-virtualized-auto-sizer\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freact-virtualized-auto-sizer\u002F-\u002Freact-virtualized-auto-sizer-1.0.2.tgz\",\n \"integrity\": \"sha512-MYXhTY1BZpdJFjUovvYHVBmkq79szK\u002Fk7V3MO+36gJkWGkrXKtyr4vCPtpphaTLRAdDNoYEYFZWE8LjN+PIHNg==\"\n },\n \"react-window\": {\n \"version\": \"1.8.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freact-window\u002F-\u002Freact-window-1.8.6.tgz\",\n \"integrity\": \"sha512-8VwEEYyjz6DCnGBsd+MgkD0KJ2\u002FOXFULyDtorIiTz+QzwoP94tBoA7CnbtyXMm+cCeAUER5KJcPtWl9cpKbOBg==\",\n \"requires\": {\n \"@babel\u002Fruntime\": \"^7.0.0\",\n \"memoize-one\": \"\u003E=3.1.1 \u003C6\"\n }\n },\n \"react-window-infinite-loader\": {\n \"version\": \"1.0.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freact-window-infinite-loader\u002F-\u002Freact-window-infinite-loader-1.0.5.tgz\",\n \"integrity\": \"sha512-IcPIq8lADK3zsAcqoLqQGyduicqR6jWkiK2VUX5sKSI9X\u002Frou6OWlOEexnGyujdNTG7hSG8OVBFEhLSDs4qrxg==\"\n },\n \"read-pkg\": {\n \"version\": \"5.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fread-pkg\u002F-\u002Fread-pkg-5.2.0.tgz\",\n \"integrity\": \"sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==\",\n \"dev\": true,\n \"requires\": {\n \"@types\u002Fnormalize-package-data\": \"^2.4.0\",\n \"normalize-package-data\": \"^2.5.0\",\n \"parse-json\": \"^5.0.0\",\n \"type-fest\": \"^0.6.0\"\n },\n \"dependencies\": {\n \"type-fest\": {\n \"version\": \"0.6.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftype-fest\u002F-\u002Ftype-fest-0.6.0.tgz\",\n \"integrity\": \"sha512-q+MB8nYR1KDLrgr4G5yemftpMC7\u002FQLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==\",\n \"dev\": true\n }\n }\n },\n \"read-pkg-up\": {\n \"version\": \"7.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fread-pkg-up\u002F-\u002Fread-pkg-up-7.0.1.tgz\",\n \"integrity\": \"sha512-zK0TB7Xd6JpCLmlLmufqykGE+\u002FTlOePD6qKClNW7hHDKFh\u002FJ7\u002F7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==\",\n \"dev\": true,\n \"requires\": {\n \"find-up\": \"^4.1.0\",\n \"read-pkg\": \"^5.2.0\",\n \"type-fest\": \"^0.8.1\"\n },\n \"dependencies\": {\n \"type-fest\": {\n \"version\": \"0.8.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftype-fest\u002F-\u002Ftype-fest-0.8.1.tgz\",\n \"integrity\": \"sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==\",\n \"dev\": true\n }\n }\n },\n \"readable-stream\": {\n \"version\": \"3.6.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freadable-stream\u002F-\u002Freadable-stream-3.6.0.tgz\",\n \"integrity\": \"sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6\u002Fd3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==\",\n \"requires\": {\n \"inherits\": \"^2.0.3\",\n \"string_decoder\": \"^1.1.1\",\n \"util-deprecate\": \"^1.0.1\"\n }\n },\n \"readdirp\": {\n \"version\": \"3.4.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freaddirp\u002F-\u002Freaddirp-3.4.0.tgz\",\n \"integrity\": \"sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB\u002FS7ov3m3EEbZI2zeNvX+hGQ==\",\n \"requires\": {\n \"picomatch\": \"^2.2.1\"\n }\n },\n \"realpath-native\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frealpath-native\u002F-\u002Frealpath-native-2.0.0.tgz\",\n \"integrity\": \"sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+\u002F6Ur1Q==\",\n \"dev\": true\n },\n \"regenerator-runtime\": {\n \"version\": \"0.13.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fregenerator-runtime\u002F-\u002Fregenerator-runtime-0.13.7.tgz\",\n \"integrity\": \"sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf\u002F6gH456HZ\u002FPhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==\"\n },\n \"regex-not\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fregex-not\u002F-\u002Fregex-not-1.0.2.tgz\",\n \"integrity\": \"sha512-J6SDjUgDxQj5NusnOtdFxDwN\u002F+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==\",\n \"requires\": {\n \"extend-shallow\": \"^3.0.2\",\n \"safe-regex\": \"^1.1.0\"\n }\n },\n \"regex-parser\": {\n \"version\": \"2.2.11\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fregex-parser\u002F-\u002Fregex-parser-2.2.11.tgz\",\n \"integrity\": \"sha512-jbD\u002FFT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD\u002FYFTjn1JdCk3rbMJajz8Q==\"\n },\n \"regexp.prototype.flags\": {\n \"version\": \"1.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fregexp.prototype.flags\u002F-\u002Fregexp.prototype.flags-1.3.0.tgz\",\n \"integrity\": \"sha512-2+Q0C5g951OlYlJz6yu5\u002FM33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP\u002FfVBkSpbbbZlS5gynbEWLipiiXiQ==\",\n \"dev\": true,\n \"requires\": {\n \"define-properties\": \"^1.1.3\",\n \"es-abstract\": \"^1.17.0-next.1\"\n }\n },\n \"regexpp\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fregexpp\u002F-\u002Fregexpp-3.1.0.tgz\",\n \"integrity\": \"sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai\u002FvHUDu74pKwV8OxseMS65u2NImosQcSD0Q==\",\n \"dev\": true\n },\n \"remove-trailing-separator\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fremove-trailing-separator\u002F-\u002Fremove-trailing-separator-1.1.0.tgz\",\n \"integrity\": \"sha1-wkvOKig62tW8P1jg1IJJuSN52O8=\"\n },\n \"repeat-element\": {\n \"version\": \"1.1.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frepeat-element\u002F-\u002Frepeat-element-1.1.3.tgz\",\n \"integrity\": \"sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==\"\n },\n \"repeat-string\": {\n \"version\": \"1.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frepeat-string\u002F-\u002Frepeat-string-1.6.1.tgz\",\n \"integrity\": \"sha1-jcrkcOHIirwtYA\u002F\u002FSndihtp15jc=\"\n },\n \"request\": {\n \"version\": \"2.88.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frequest\u002F-\u002Frequest-2.88.2.tgz\",\n \"integrity\": \"sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==\",\n \"dev\": true,\n \"requires\": {\n \"aws-sign2\": \"~0.7.0\",\n \"aws4\": \"^1.8.0\",\n \"caseless\": \"~0.12.0\",\n \"combined-stream\": \"~1.0.6\",\n \"extend\": \"~3.0.2\",\n \"forever-agent\": \"~0.6.1\",\n \"form-data\": \"~2.3.2\",\n \"har-validator\": \"~5.1.3\",\n \"http-signature\": \"~1.2.0\",\n \"is-typedarray\": \"~1.0.0\",\n \"isstream\": \"~0.1.2\",\n \"json-stringify-safe\": \"~5.0.1\",\n \"mime-types\": \"~2.1.19\",\n \"oauth-sign\": \"~0.9.0\",\n \"performance-now\": \"^2.1.0\",\n \"qs\": \"~6.5.2\",\n \"safe-buffer\": \"^5.1.2\",\n \"tough-cookie\": \"~2.5.0\",\n \"tunnel-agent\": \"^0.6.0\",\n \"uuid\": \"^3.3.2\"\n },\n \"dependencies\": {\n \"tough-cookie\": {\n \"version\": \"2.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftough-cookie\u002F-\u002Ftough-cookie-2.5.0.tgz\",\n \"integrity\": \"sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX\u002Fqboeycw6iO8JwVv2+g==\",\n \"dev\": true,\n \"requires\": {\n \"psl\": \"^1.1.28\",\n \"punycode\": \"^2.1.1\"\n }\n }\n }\n },\n \"request-promise-core\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frequest-promise-core\u002F-\u002Frequest-promise-core-1.1.4.tgz\",\n \"integrity\": \"sha512-TTbAfBBRdWD7aNNOoVOBH4pN\u002FKigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==\",\n \"dev\": true,\n \"requires\": {\n \"lodash\": \"^4.17.19\"\n }\n },\n \"request-promise-native\": {\n \"version\": \"1.0.9\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frequest-promise-native\u002F-\u002Frequest-promise-native-1.0.9.tgz\",\n \"integrity\": \"sha512-wcW+sIUiWnKgNY0dqCpOZkUbF\u002FI+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==\",\n \"dev\": true,\n \"requires\": {\n \"request-promise-core\": \"1.1.4\",\n \"stealthy-require\": \"^1.1.1\",\n \"tough-cookie\": \"^2.3.3\"\n },\n \"dependencies\": {\n \"tough-cookie\": {\n \"version\": \"2.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftough-cookie\u002F-\u002Ftough-cookie-2.5.0.tgz\",\n \"integrity\": \"sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX\u002Fqboeycw6iO8JwVv2+g==\",\n \"dev\": true,\n \"requires\": {\n \"psl\": \"^1.1.28\",\n \"punycode\": \"^2.1.1\"\n }\n }\n }\n },\n \"require-directory\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frequire-directory\u002F-\u002Frequire-directory-2.1.1.tgz\",\n \"integrity\": \"sha1-jGStX9MNqxyXbiNE\u002F+f3kqam30I=\",\n \"dev\": true\n },\n \"require-main-filename\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frequire-main-filename\u002F-\u002Frequire-main-filename-2.0.0.tgz\",\n \"integrity\": \"sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe\u002FZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==\",\n \"dev\": true\n },\n \"resolve\": {\n \"version\": \"1.18.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fresolve\u002F-\u002Fresolve-1.18.1.tgz\",\n \"integrity\": \"sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw\u002FqbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==\",\n \"dev\": true,\n \"requires\": {\n \"is-core-module\": \"^2.0.0\",\n \"path-parse\": \"^1.0.6\"\n }\n },\n \"resolve-cwd\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fresolve-cwd\u002F-\u002Fresolve-cwd-3.0.0.tgz\",\n \"integrity\": \"sha512-OrZaX2Mb+rJCpH\u002F6CpSqt9xFVpN++x01XnN2ie9g6P5\u002F3xelLAkXWVADpdz1IHD\u002FKFfEXyE6V0U01OQ3UO2rEg==\",\n \"dev\": true,\n \"requires\": {\n \"resolve-from\": \"^5.0.0\"\n }\n },\n \"resolve-from\": {\n \"version\": \"5.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fresolve-from\u002F-\u002Fresolve-from-5.0.0.tgz\",\n \"integrity\": \"sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==\",\n \"dev\": true\n },\n \"resolve-url\": {\n \"version\": \"0.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fresolve-url\u002F-\u002Fresolve-url-0.2.1.tgz\",\n \"integrity\": \"sha1-LGN\u002F53yJOv0qZj\u002FiGqkIAGjiBSo=\"\n },\n \"resolve-url-loader\": {\n \"version\": \"3.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fresolve-url-loader\u002F-\u002Fresolve-url-loader-3.1.2.tgz\",\n \"integrity\": \"sha512-QEb4A76c8Mi7I3xNKXlRKQSlLBwjUV\u002FULFMP+G7n3\u002F7tJZ8MG5wsZ3ucxP1Jz8Vevn6fnJsxDx9cIls+utGzPQ==\",\n \"requires\": {\n \"adjust-sourcemap-loader\": \"3.0.0\",\n \"camelcase\": \"5.3.1\",\n \"compose-function\": \"3.0.3\",\n \"convert-source-map\": \"1.7.0\",\n \"es6-iterator\": \"2.0.3\",\n \"loader-utils\": \"1.2.3\",\n \"postcss\": \"7.0.21\",\n \"rework\": \"1.0.1\",\n \"rework-visit\": \"1.0.0\",\n \"source-map\": \"0.6.1\"\n },\n \"dependencies\": {\n \"emojis-list\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Femojis-list\u002F-\u002Femojis-list-2.1.0.tgz\",\n \"integrity\": \"sha1-TapNnbAPmBmIDHn6RXrlsJof04k=\"\n },\n \"json5\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjson5\u002F-\u002Fjson5-1.0.1.tgz\",\n \"integrity\": \"sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd\u002F1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==\",\n \"requires\": {\n \"minimist\": \"^1.2.0\"\n }\n },\n \"loader-utils\": {\n \"version\": \"1.2.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Floader-utils\u002F-\u002Floader-utils-1.2.3.tgz\",\n \"integrity\": \"sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==\",\n \"requires\": {\n \"big.js\": \"^5.2.2\",\n \"emojis-list\": \"^2.0.0\",\n \"json5\": \"^1.0.1\"\n }\n },\n \"postcss\": {\n \"version\": \"7.0.21\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpostcss\u002F-\u002Fpostcss-7.0.21.tgz\",\n \"integrity\": \"sha512-uIFtJElxJo29QC753JzhidoAhvp\u002Fe\u002FExezkdhfmt8AymWT6\u002F5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ==\",\n \"requires\": {\n \"chalk\": \"^2.4.2\",\n \"source-map\": \"^0.6.1\",\n \"supports-color\": \"^6.1.0\"\n }\n },\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\"\n },\n \"supports-color\": {\n \"version\": \"6.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-6.1.0.tgz\",\n \"integrity\": \"sha512-qe1jfm1Mg7Nq\u002FNSh6XE24gPXROEVsWHxC1LIx\u002F\u002FXNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==\",\n \"requires\": {\n \"has-flag\": \"^3.0.0\"\n }\n }\n }\n },\n \"restore-cursor\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frestore-cursor\u002F-\u002Frestore-cursor-3.1.0.tgz\",\n \"integrity\": \"sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==\",\n \"dev\": true,\n \"requires\": {\n \"onetime\": \"^5.1.0\",\n \"signal-exit\": \"^3.0.2\"\n }\n },\n \"ret\": {\n \"version\": \"0.1.15\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fret\u002F-\u002Fret-0.1.15.tgz\",\n \"integrity\": \"sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B\u002FRzEfUlLct7b5G\u002Fytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==\"\n },\n \"rework\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frework\u002F-\u002Frework-1.0.1.tgz\",\n \"integrity\": \"sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=\",\n \"requires\": {\n \"convert-source-map\": \"^0.3.3\",\n \"css\": \"^2.0.0\"\n },\n \"dependencies\": {\n \"convert-source-map\": {\n \"version\": \"0.3.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fconvert-source-map\u002F-\u002Fconvert-source-map-0.3.5.tgz\",\n \"integrity\": \"sha1-8dgClQr33SYxof6+BZZVDIarMZA=\"\n }\n }\n },\n \"rework-visit\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frework-visit\u002F-\u002Frework-visit-1.0.0.tgz\",\n \"integrity\": \"sha1-mUWygD8hni96ygCtuLyfZA+ELJo=\"\n },\n \"rimraf\": {\n \"version\": \"2.6.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frimraf\u002F-\u002Frimraf-2.6.3.tgz\",\n \"integrity\": \"sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi\u002FQO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==\",\n \"requires\": {\n \"glob\": \"^7.1.3\"\n }\n },\n \"ripemd160\": {\n \"version\": \"2.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fripemd160\u002F-\u002Fripemd160-2.0.2.tgz\",\n \"integrity\": \"sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==\",\n \"requires\": {\n \"hash-base\": \"^3.0.0\",\n \"inherits\": \"^2.0.1\"\n }\n },\n \"rsvp\": {\n \"version\": \"4.8.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frsvp\u002F-\u002Frsvp-4.8.5.tgz\",\n \"integrity\": \"sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==\",\n \"dev\": true\n },\n \"run-async\": {\n \"version\": \"2.4.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frun-async\u002F-\u002Frun-async-2.4.1.tgz\",\n \"integrity\": \"sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv\u002FYrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2\u002Fqg9O4bceNvUuDgQ==\",\n \"dev\": true\n },\n \"run-queue\": {\n \"version\": \"1.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frun-queue\u002F-\u002Frun-queue-1.0.3.tgz\",\n \"integrity\": \"sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=\",\n \"requires\": {\n \"aproba\": \"^1.1.1\"\n }\n },\n \"rxjs\": {\n \"version\": \"6.6.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Frxjs\u002F-\u002Frxjs-6.6.3.tgz\",\n \"integrity\": \"sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==\",\n \"dev\": true,\n \"requires\": {\n \"tslib\": \"^1.9.0\"\n }\n },\n \"safe-buffer\": {\n \"version\": \"5.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsafe-buffer\u002F-\u002Fsafe-buffer-5.1.2.tgz\",\n \"integrity\": \"sha512-Gd2UZBJDkXlY7GbJxfsE8\u002FnvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud\u002FwPtojys4G6+g==\"\n },\n \"safe-regex\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsafe-regex\u002F-\u002Fsafe-regex-1.1.0.tgz\",\n \"integrity\": \"sha1-QKNmnzsHfR6UPURinhV91IAjvy4=\",\n \"requires\": {\n \"ret\": \"~0.1.10\"\n }\n },\n \"safer-buffer\": {\n \"version\": \"2.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsafer-buffer\u002F-\u002Fsafer-buffer-2.1.2.tgz\",\n \"integrity\": \"sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==\"\n },\n \"sane\": {\n \"version\": \"4.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsane\u002F-\u002Fsane-4.1.0.tgz\",\n \"integrity\": \"sha512-hhbzAgTIX8O7SHfp2c8\u002FkREfEn4qO\u002F9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==\",\n \"dev\": true,\n \"requires\": {\n \"@cnakazawa\u002Fwatch\": \"^1.0.3\",\n \"anymatch\": \"^2.0.0\",\n \"capture-exit\": \"^2.0.0\",\n \"exec-sh\": \"^0.3.2\",\n \"execa\": \"^1.0.0\",\n \"fb-watchman\": \"^2.0.0\",\n \"micromatch\": \"^3.1.4\",\n \"minimist\": \"^1.1.1\",\n \"walker\": \"~1.0.5\"\n },\n \"dependencies\": {\n \"anymatch\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fanymatch\u002F-\u002Fanymatch-2.0.0.tgz\",\n \"integrity\": \"sha512-5teOsQWABXHHBFP9y3skS5P3d\u002FWfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==\",\n \"dev\": true,\n \"requires\": {\n \"micromatch\": \"^3.1.4\",\n \"normalize-path\": \"^2.1.1\"\n }\n },\n \"braces\": {\n \"version\": \"2.3.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbraces\u002F-\u002Fbraces-2.3.2.tgz\",\n \"integrity\": \"sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc\u002FEoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==\",\n \"dev\": true,\n \"requires\": {\n \"arr-flatten\": \"^1.1.0\",\n \"array-unique\": \"^0.3.2\",\n \"extend-shallow\": \"^2.0.1\",\n \"fill-range\": \"^4.0.0\",\n \"isobject\": \"^3.0.1\",\n \"repeat-element\": \"^1.1.2\",\n \"snapdragon\": \"^0.8.1\",\n \"snapdragon-node\": \"^2.0.1\",\n \"split-string\": \"^3.0.2\",\n \"to-regex\": \"^3.0.1\"\n },\n \"dependencies\": {\n \"extend-shallow\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fextend-shallow\u002F-\u002Fextend-shallow-2.0.1.tgz\",\n \"integrity\": \"sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=\",\n \"dev\": true,\n \"requires\": {\n \"is-extendable\": \"^0.1.0\"\n }\n }\n }\n },\n \"execa\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fexeca\u002F-\u002Fexeca-1.0.0.tgz\",\n \"integrity\": \"sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7\u002FnxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP\u002FRw\u002FAuEbX61LA==\",\n \"dev\": true,\n \"requires\": {\n \"cross-spawn\": \"^6.0.0\",\n \"get-stream\": \"^4.0.0\",\n \"is-stream\": \"^1.1.0\",\n \"npm-run-path\": \"^2.0.0\",\n \"p-finally\": \"^1.0.0\",\n \"signal-exit\": \"^3.0.0\",\n \"strip-eof\": \"^1.0.0\"\n }\n },\n \"fill-range\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffill-range\u002F-\u002Ffill-range-4.0.0.tgz\",\n \"integrity\": \"sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=\",\n \"dev\": true,\n \"requires\": {\n \"extend-shallow\": \"^2.0.1\",\n \"is-number\": \"^3.0.0\",\n \"repeat-string\": \"^1.6.1\",\n \"to-regex-range\": \"^2.1.0\"\n },\n \"dependencies\": {\n \"extend-shallow\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fextend-shallow\u002F-\u002Fextend-shallow-2.0.1.tgz\",\n \"integrity\": \"sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=\",\n \"dev\": true,\n \"requires\": {\n \"is-extendable\": \"^0.1.0\"\n }\n }\n }\n },\n \"get-stream\": {\n \"version\": \"4.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fget-stream\u002F-\u002Fget-stream-4.1.0.tgz\",\n \"integrity\": \"sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS\u002FL66Kox+rJRNklLK7w==\",\n \"dev\": true,\n \"requires\": {\n \"pump\": \"^3.0.0\"\n }\n },\n \"is-extendable\": {\n \"version\": \"0.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-extendable\u002F-\u002Fis-extendable-0.1.1.tgz\",\n \"integrity\": \"sha1-YrEQ4omkcUGOPsNqYX1HLjAd\u002FIk=\",\n \"dev\": true\n },\n \"is-number\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-number\u002F-\u002Fis-number-3.0.0.tgz\",\n \"integrity\": \"sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=\",\n \"dev\": true,\n \"requires\": {\n \"kind-of\": \"^3.0.2\"\n },\n \"dependencies\": {\n \"kind-of\": {\n \"version\": \"3.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-3.2.2.tgz\",\n \"integrity\": \"sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=\",\n \"dev\": true,\n \"requires\": {\n \"is-buffer\": \"^1.1.5\"\n }\n }\n }\n },\n \"is-stream\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-stream\u002F-\u002Fis-stream-1.1.0.tgz\",\n \"integrity\": \"sha1-EtSj3U5o4Lec6428hBc66A2RykQ=\",\n \"dev\": true\n },\n \"isobject\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fisobject\u002F-\u002Fisobject-3.0.1.tgz\",\n \"integrity\": \"sha1-TkMekrEalzFjaqH5yNHMvP2reN8=\",\n \"dev\": true\n },\n \"micromatch\": {\n \"version\": \"3.1.10\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmicromatch\u002F-\u002Fmicromatch-3.1.10.tgz\",\n \"integrity\": \"sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==\",\n \"dev\": true,\n \"requires\": {\n \"arr-diff\": \"^4.0.0\",\n \"array-unique\": \"^0.3.2\",\n \"braces\": \"^2.3.1\",\n \"define-property\": \"^2.0.2\",\n \"extend-shallow\": \"^3.0.2\",\n \"extglob\": \"^2.0.4\",\n \"fragment-cache\": \"^0.2.1\",\n \"kind-of\": \"^6.0.2\",\n \"nanomatch\": \"^1.2.9\",\n \"object.pick\": \"^1.3.0\",\n \"regex-not\": \"^1.0.0\",\n \"snapdragon\": \"^0.8.1\",\n \"to-regex\": \"^3.0.2\"\n }\n },\n \"normalize-path\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnormalize-path\u002F-\u002Fnormalize-path-2.1.1.tgz\",\n \"integrity\": \"sha1-GrKLVW4Zg2Oowab35vogE3\u002Fmrtk=\",\n \"dev\": true,\n \"requires\": {\n \"remove-trailing-separator\": \"^1.0.1\"\n }\n },\n \"npm-run-path\": {\n \"version\": \"2.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnpm-run-path\u002F-\u002Fnpm-run-path-2.0.2.tgz\",\n \"integrity\": \"sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=\",\n \"dev\": true,\n \"requires\": {\n \"path-key\": \"^2.0.0\"\n }\n },\n \"p-finally\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fp-finally\u002F-\u002Fp-finally-1.0.0.tgz\",\n \"integrity\": \"sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=\",\n \"dev\": true\n },\n \"to-regex-range\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fto-regex-range\u002F-\u002Fto-regex-range-2.1.1.tgz\",\n \"integrity\": \"sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=\",\n \"dev\": true,\n \"requires\": {\n \"is-number\": \"^3.0.0\",\n \"repeat-string\": \"^1.6.1\"\n }\n }\n }\n },\n \"sass-loader\": {\n \"version\": \"10.0.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsass-loader\u002F-\u002Fsass-loader-10.0.5.tgz\",\n \"integrity\": \"sha512-2LqoNPtKkZq\u002FXbXNQ4C64GFEleSEHKv6NPSI+bMC\u002Fl+jpEXGJhiRYkAQToO24MR7NU4JRY2RpLpJ\u002Fgjo2Uf13w==\",\n \"requires\": {\n \"klona\": \"^2.0.4\",\n \"loader-utils\": \"^2.0.0\",\n \"neo-async\": \"^2.6.2\",\n \"schema-utils\": \"^3.0.0\",\n \"semver\": \"^7.3.2\"\n },\n \"dependencies\": {\n \"schema-utils\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fschema-utils\u002F-\u002Fschema-utils-3.0.0.tgz\",\n \"integrity\": \"sha512-6D82\u002FxSzO094ajanoOSbe4YvXWMfn2A\u002F\u002F8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==\",\n \"requires\": {\n \"@types\u002Fjson-schema\": \"^7.0.6\",\n \"ajv\": \"^6.12.5\",\n \"ajv-keywords\": \"^3.5.2\"\n }\n },\n \"semver\": {\n \"version\": \"7.3.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsemver\u002F-\u002Fsemver-7.3.2.tgz\",\n \"integrity\": \"sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6\u002F5XpPNp2DuRH6+9QLw\u002Forhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==\"\n }\n }\n },\n \"saxes\": {\n \"version\": \"3.1.11\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsaxes\u002F-\u002Fsaxes-3.1.11.tgz\",\n \"integrity\": \"sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==\",\n \"dev\": true,\n \"requires\": {\n \"xmlchars\": \"^2.1.1\"\n }\n },\n \"scheduler\": {\n \"version\": \"0.20.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fscheduler\u002F-\u002Fscheduler-0.20.1.tgz\",\n \"integrity\": \"sha512-LKTe+2xNJBNxu\u002FQhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw==\",\n \"requires\": {\n \"loose-envify\": \"^1.1.0\",\n \"object-assign\": \"^4.1.1\"\n }\n },\n \"schema-utils\": {\n \"version\": \"2.7.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fschema-utils\u002F-\u002Fschema-utils-2.7.1.tgz\",\n \"integrity\": \"sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R\u002Fpy0fA6xtbgLL\u002FRvtJZnU9b8s0F1q0Xg==\",\n \"requires\": {\n \"@types\u002Fjson-schema\": \"^7.0.5\",\n \"ajv\": \"^6.12.4\",\n \"ajv-keywords\": \"^3.5.2\"\n }\n },\n \"semver\": {\n \"version\": \"5.7.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsemver\u002F-\u002Fsemver-5.7.1.tgz\",\n \"integrity\": \"sha512-sauaDf\u002FPZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==\"\n },\n \"semver-compare\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsemver-compare\u002F-\u002Fsemver-compare-1.0.0.tgz\",\n \"integrity\": \"sha1-De4hahyUGrN+nvsXiPavxf9VN\u002Fw=\",\n \"dev\": true\n },\n \"semver-regex\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsemver-regex\u002F-\u002Fsemver-regex-2.0.0.tgz\",\n \"integrity\": \"sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv\u002FkGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+\u002F5Qw==\",\n \"dev\": true\n },\n \"serialize-javascript\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fserialize-javascript\u002F-\u002Fserialize-javascript-4.0.0.tgz\",\n \"integrity\": \"sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD\u002F9fCPzEqkw==\",\n \"requires\": {\n \"randombytes\": \"^2.1.0\"\n }\n },\n \"set-blocking\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fset-blocking\u002F-\u002Fset-blocking-2.0.0.tgz\",\n \"integrity\": \"sha1-BF+XgtARrppoA93TgrJDkrPYkPc=\"\n },\n \"set-value\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fset-value\u002F-\u002Fset-value-2.0.1.tgz\",\n \"integrity\": \"sha512-JxHc1weCN68wRY0fhCoXpyK55m\u002FXPHafOmK4UWD7m2CI14GMcFypt4w\u002F0+NV5f\u002FZMby2F6S2wwA7fgynh9gWSw==\",\n \"requires\": {\n \"extend-shallow\": \"^2.0.1\",\n \"is-extendable\": \"^0.1.1\",\n \"is-plain-object\": \"^2.0.3\",\n \"split-string\": \"^3.0.1\"\n },\n \"dependencies\": {\n \"extend-shallow\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fextend-shallow\u002F-\u002Fextend-shallow-2.0.1.tgz\",\n \"integrity\": \"sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=\",\n \"requires\": {\n \"is-extendable\": \"^0.1.0\"\n }\n },\n \"is-extendable\": {\n \"version\": \"0.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-extendable\u002F-\u002Fis-extendable-0.1.1.tgz\",\n \"integrity\": \"sha1-YrEQ4omkcUGOPsNqYX1HLjAd\u002FIk=\"\n }\n }\n },\n \"setimmediate\": {\n \"version\": \"1.0.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsetimmediate\u002F-\u002Fsetimmediate-1.0.5.tgz\",\n \"integrity\": \"sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=\"\n },\n \"setprototypeof\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsetprototypeof\u002F-\u002Fsetprototypeof-1.1.1.tgz\",\n \"integrity\": \"sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==\"\n },\n \"sha.js\": {\n \"version\": \"2.4.11\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsha.js\u002F-\u002Fsha.js-2.4.11.tgz\",\n \"integrity\": \"sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==\",\n \"requires\": {\n \"inherits\": \"^2.0.1\",\n \"safe-buffer\": \"^5.0.1\"\n }\n },\n \"shallowequal\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fshallowequal\u002F-\u002Fshallowequal-1.1.0.tgz\",\n \"integrity\": \"sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL\u002FdSP7AFkRnniLCrK\u002F8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==\"\n },\n \"sharp\": {\n \"version\": \"0.26.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsharp\u002F-\u002Fsharp-0.26.2.tgz\",\n \"integrity\": \"sha512-bGBPCxRAvdK9bX5HokqEYma4j\u002FQ5+w8Nrmb2\u002FsfgQCLEUx\u002FHblcpmOfp59obL3+knIKnOhyKmDb4tEOhvFlp6Q==\",\n \"optional\": true,\n \"requires\": {\n \"color\": \"^3.1.2\",\n \"detect-libc\": \"^1.0.3\",\n \"node-addon-api\": \"^3.0.2\",\n \"npmlog\": \"^4.1.2\",\n \"prebuild-install\": \"^5.3.5\",\n \"semver\": \"^7.3.2\",\n \"simple-get\": \"^4.0.0\",\n \"tar-fs\": \"^2.1.0\",\n \"tunnel-agent\": \"^0.6.0\"\n },\n \"dependencies\": {\n \"semver\": {\n \"version\": \"7.3.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsemver\u002F-\u002Fsemver-7.3.2.tgz\",\n \"integrity\": \"sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6\u002F5XpPNp2DuRH6+9QLw\u002Forhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==\",\n \"optional\": true\n }\n }\n },\n \"shebang-command\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fshebang-command\u002F-\u002Fshebang-command-1.2.0.tgz\",\n \"integrity\": \"sha1-RKrGW2lbAzmJaMOfNj\u002FuXer98eo=\",\n \"dev\": true,\n \"requires\": {\n \"shebang-regex\": \"^1.0.0\"\n }\n },\n \"shebang-regex\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fshebang-regex\u002F-\u002Fshebang-regex-1.0.0.tgz\",\n \"integrity\": \"sha1-2kL0l0DAtC2yypcoVxyxkMmO\u002FqM=\",\n \"dev\": true\n },\n \"shell-quote\": {\n \"version\": \"1.7.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fshell-quote\u002F-\u002Fshell-quote-1.7.2.tgz\",\n \"integrity\": \"sha512-mRz\u002Fm\u002FJVscCrkMyPqHc\u002Fbczi3OQHkLTqXHEFu0zDhK\u002Fqfv3UcOA4SVmRCLmos4bhjr9ekVQubj\u002FR7waKapmiQg==\"\n },\n \"shellwords\": {\n \"version\": \"0.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fshellwords\u002F-\u002Fshellwords-0.1.1.tgz\",\n \"integrity\": \"sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==\",\n \"dev\": true,\n \"optional\": true\n },\n \"side-channel\": {\n \"version\": \"1.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fside-channel\u002F-\u002Fside-channel-1.0.3.tgz\",\n \"integrity\": \"sha512-A6+ByhlLkksFoUepsGxfj5x1gTSrs+OydsRptUxeNCabQpCFUvcwIczgOigI8vhY\u002FOJCnPnyE9rGiwgvr9cS1g==\",\n \"dev\": true,\n \"requires\": {\n \"es-abstract\": \"^1.18.0-next.0\",\n \"object-inspect\": \"^1.8.0\"\n },\n \"dependencies\": {\n \"es-abstract\": {\n \"version\": \"1.18.0-next.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fes-abstract\u002F-\u002Fes-abstract-1.18.0-next.1.tgz\",\n \"integrity\": \"sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT\u002F1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==\",\n \"dev\": true,\n \"requires\": {\n \"es-to-primitive\": \"^1.2.1\",\n \"function-bind\": \"^1.1.1\",\n \"has\": \"^1.0.3\",\n \"has-symbols\": \"^1.0.1\",\n \"is-callable\": \"^1.2.2\",\n \"is-negative-zero\": \"^2.0.0\",\n \"is-regex\": \"^1.1.1\",\n \"object-inspect\": \"^1.8.0\",\n \"object-keys\": \"^1.1.1\",\n \"object.assign\": \"^4.1.1\",\n \"string.prototype.trimend\": \"^1.0.1\",\n \"string.prototype.trimstart\": \"^1.0.1\"\n }\n }\n }\n },\n \"signal-exit\": {\n \"version\": \"3.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsignal-exit\u002F-\u002Fsignal-exit-3.0.3.tgz\",\n \"integrity\": \"sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf\u002F6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==\"\n },\n \"simple-concat\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsimple-concat\u002F-\u002Fsimple-concat-1.0.1.tgz\",\n \"integrity\": \"sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi\u002FrtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u\u002FsfYJLa947b7nAN2Q==\",\n \"optional\": true\n },\n \"simple-get\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsimple-get\u002F-\u002Fsimple-get-4.0.0.tgz\",\n \"integrity\": \"sha512-ZalZGexYr3TA0SwySsr5HlgOOinS4Jsa8YB2GJ6lUNAazyAu4KG\u002FVmzMTwAt2YVXzzVj8QmefmAonZIK2BSGcQ==\",\n \"optional\": true,\n \"requires\": {\n \"decompress-response\": \"^6.0.0\",\n \"once\": \"^1.3.1\",\n \"simple-concat\": \"^1.0.0\"\n },\n \"dependencies\": {\n \"decompress-response\": {\n \"version\": \"6.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdecompress-response\u002F-\u002Fdecompress-response-6.0.0.tgz\",\n \"integrity\": \"sha512-aW35yZM6Bb\u002F4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==\",\n \"optional\": true,\n \"requires\": {\n \"mimic-response\": \"^3.1.0\"\n }\n },\n \"mimic-response\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmimic-response\u002F-\u002Fmimic-response-3.1.0.tgz\",\n \"integrity\": \"sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N\u002Fwv0DzQTjNzHNGQ==\",\n \"optional\": true\n }\n }\n },\n \"simple-swizzle\": {\n \"version\": \"0.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsimple-swizzle\u002F-\u002Fsimple-swizzle-0.2.2.tgz\",\n \"integrity\": \"sha1-pNprY1\u002F8zMoz9w0Xy5JZLeleVXo=\",\n \"optional\": true,\n \"requires\": {\n \"is-arrayish\": \"^0.3.1\"\n },\n \"dependencies\": {\n \"is-arrayish\": {\n \"version\": \"0.3.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-arrayish\u002F-\u002Fis-arrayish-0.3.2.tgz\",\n \"integrity\": \"sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR\u002FLRY\u002F92w0zxQ5\u002F1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==\",\n \"optional\": true\n }\n }\n },\n \"sisteransi\": {\n \"version\": \"1.0.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsisteransi\u002F-\u002Fsisteransi-1.0.5.tgz\",\n \"integrity\": \"sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==\",\n \"dev\": true\n },\n \"slash\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fslash\u002F-\u002Fslash-3.0.0.tgz\",\n \"integrity\": \"sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==\",\n \"dev\": true\n },\n \"slice-ansi\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fslice-ansi\u002F-\u002Fslice-ansi-3.0.0.tgz\",\n \"integrity\": \"sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.0.0\",\n \"astral-regex\": \"^2.0.0\",\n \"is-fullwidth-code-point\": \"^3.0.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n }\n }\n },\n \"snapdragon\": {\n \"version\": \"0.8.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsnapdragon\u002F-\u002Fsnapdragon-0.8.2.tgz\",\n \"integrity\": \"sha512-FtyOnWN\u002FwCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy\u002F4dMtbBjA4ioNlg==\",\n \"requires\": {\n \"base\": \"^0.11.1\",\n \"debug\": \"^2.2.0\",\n \"define-property\": \"^0.2.5\",\n \"extend-shallow\": \"^2.0.1\",\n \"map-cache\": \"^0.2.2\",\n \"source-map\": \"^0.5.6\",\n \"source-map-resolve\": \"^0.5.0\",\n \"use\": \"^3.1.0\"\n },\n \"dependencies\": {\n \"debug\": {\n \"version\": \"2.6.9\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdebug\u002F-\u002Fdebug-2.6.9.tgz\",\n \"integrity\": \"sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm\u002FE7AdgFBVeAPVMNcKGsHMA==\",\n \"requires\": {\n \"ms\": \"2.0.0\"\n }\n },\n \"define-property\": {\n \"version\": \"0.2.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdefine-property\u002F-\u002Fdefine-property-0.2.5.tgz\",\n \"integrity\": \"sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=\",\n \"requires\": {\n \"is-descriptor\": \"^0.1.0\"\n }\n },\n \"extend-shallow\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fextend-shallow\u002F-\u002Fextend-shallow-2.0.1.tgz\",\n \"integrity\": \"sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=\",\n \"requires\": {\n \"is-extendable\": \"^0.1.0\"\n }\n },\n \"is-accessor-descriptor\": {\n \"version\": \"0.1.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-accessor-descriptor\u002F-\u002Fis-accessor-descriptor-0.1.6.tgz\",\n \"integrity\": \"sha1-qeEss66Nh2cn7u84Q\u002FigiXtcmNY=\",\n \"requires\": {\n \"kind-of\": \"^3.0.2\"\n },\n \"dependencies\": {\n \"kind-of\": {\n \"version\": \"3.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-3.2.2.tgz\",\n \"integrity\": \"sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=\",\n \"requires\": {\n \"is-buffer\": \"^1.1.5\"\n }\n }\n }\n },\n \"is-data-descriptor\": {\n \"version\": \"0.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-data-descriptor\u002F-\u002Fis-data-descriptor-0.1.4.tgz\",\n \"integrity\": \"sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=\",\n \"requires\": {\n \"kind-of\": \"^3.0.2\"\n },\n \"dependencies\": {\n \"kind-of\": {\n \"version\": \"3.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-3.2.2.tgz\",\n \"integrity\": \"sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=\",\n \"requires\": {\n \"is-buffer\": \"^1.1.5\"\n }\n }\n }\n },\n \"is-descriptor\": {\n \"version\": \"0.1.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-descriptor\u002F-\u002Fis-descriptor-0.1.6.tgz\",\n \"integrity\": \"sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq\u002F4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==\",\n \"requires\": {\n \"is-accessor-descriptor\": \"^0.1.6\",\n \"is-data-descriptor\": \"^0.1.4\",\n \"kind-of\": \"^5.0.0\"\n }\n },\n \"is-extendable\": {\n \"version\": \"0.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-extendable\u002F-\u002Fis-extendable-0.1.1.tgz\",\n \"integrity\": \"sha1-YrEQ4omkcUGOPsNqYX1HLjAd\u002FIk=\"\n },\n \"kind-of\": {\n \"version\": \"5.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-5.1.0.tgz\",\n \"integrity\": \"sha512-NGEErnH6F2vUuXDh+OlbcKW7\u002FwOcfdRHaZ7VWtqCztfHri\u002F++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==\"\n },\n \"ms\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fms\u002F-\u002Fms-2.0.0.tgz\",\n \"integrity\": \"sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=\"\n }\n }\n },\n \"snapdragon-node\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsnapdragon-node\u002F-\u002Fsnapdragon-node-2.1.1.tgz\",\n \"integrity\": \"sha512-O27l4xaMYt\u002FRSQ5TR3vpWCAB5Kb\u002FczIcqUFOM\u002FC4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==\",\n \"requires\": {\n \"define-property\": \"^1.0.0\",\n \"isobject\": \"^3.0.0\",\n \"snapdragon-util\": \"^3.0.1\"\n },\n \"dependencies\": {\n \"define-property\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdefine-property\u002F-\u002Fdefine-property-1.0.0.tgz\",\n \"integrity\": \"sha1-dp66rz9KY6rTr56NMEybvnm\u002FsOY=\",\n \"requires\": {\n \"is-descriptor\": \"^1.0.0\"\n }\n },\n \"isobject\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fisobject\u002F-\u002Fisobject-3.0.1.tgz\",\n \"integrity\": \"sha1-TkMekrEalzFjaqH5yNHMvP2reN8=\"\n }\n }\n },\n \"snapdragon-util\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsnapdragon-util\u002F-\u002Fsnapdragon-util-3.0.1.tgz\",\n \"integrity\": \"sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==\",\n \"requires\": {\n \"kind-of\": \"^3.2.0\"\n },\n \"dependencies\": {\n \"kind-of\": {\n \"version\": \"3.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-3.2.2.tgz\",\n \"integrity\": \"sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=\",\n \"requires\": {\n \"is-buffer\": \"^1.1.5\"\n }\n }\n }\n },\n \"source-list-map\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-list-map\u002F-\u002Fsource-list-map-2.0.1.tgz\",\n \"integrity\": \"sha512-qnQ7gVMxGNxsiL4lEuJwe\u002FTo8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==\"\n },\n \"source-map\": {\n \"version\": \"0.5.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.5.7.tgz\",\n \"integrity\": \"sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=\"\n },\n \"source-map-resolve\": {\n \"version\": \"0.5.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map-resolve\u002F-\u002Fsource-map-resolve-0.5.3.tgz\",\n \"integrity\": \"sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF\u002Ff5O\u002Ft8x+KaNdrdIAsruNzoh\u002FKpialbqAnw==\",\n \"requires\": {\n \"atob\": \"^2.1.2\",\n \"decode-uri-component\": \"^0.2.0\",\n \"resolve-url\": \"^0.2.1\",\n \"source-map-url\": \"^0.4.0\",\n \"urix\": \"^0.1.0\"\n }\n },\n \"source-map-support\": {\n \"version\": \"0.5.19\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map-support\u002F-\u002Fsource-map-support-0.5.19.tgz\",\n \"integrity\": \"sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi\u002FMdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==\",\n \"requires\": {\n \"buffer-from\": \"^1.0.0\",\n \"source-map\": \"^0.6.0\"\n },\n \"dependencies\": {\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\"\n }\n }\n },\n \"source-map-url\": {\n \"version\": \"0.4.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map-url\u002F-\u002Fsource-map-url-0.4.0.tgz\",\n \"integrity\": \"sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=\"\n },\n \"spdx-correct\": {\n \"version\": \"3.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fspdx-correct\u002F-\u002Fspdx-correct-3.1.1.tgz\",\n \"integrity\": \"sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==\",\n \"dev\": true,\n \"requires\": {\n \"spdx-expression-parse\": \"^3.0.0\",\n \"spdx-license-ids\": \"^3.0.0\"\n }\n },\n \"spdx-exceptions\": {\n \"version\": \"2.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fspdx-exceptions\u002F-\u002Fspdx-exceptions-2.3.0.tgz\",\n \"integrity\": \"sha512-\u002FtTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu\u002Ftfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==\",\n \"dev\": true\n },\n \"spdx-expression-parse\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fspdx-expression-parse\u002F-\u002Fspdx-expression-parse-3.0.1.tgz\",\n \"integrity\": \"sha512-cbqHunsQWnJNE6KhVSMsMeH5H\u002FL9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx\u002FZK4Q==\",\n \"dev\": true,\n \"requires\": {\n \"spdx-exceptions\": \"^2.1.0\",\n \"spdx-license-ids\": \"^3.0.0\"\n }\n },\n \"spdx-license-ids\": {\n \"version\": \"3.0.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fspdx-license-ids\u002F-\u002Fspdx-license-ids-3.0.6.tgz\",\n \"integrity\": \"sha512-+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ\u002FE\u002FXiIWoXBTw==\",\n \"dev\": true\n },\n \"split-string\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsplit-string\u002F-\u002Fsplit-string-3.1.0.tgz\",\n \"integrity\": \"sha512-NzNVhJDYpwceVVii8\u002FHu6DKfD2G+NrQHlS\u002FV\u002Fqgv763EYudVwEcMQNxd2lh+0VrUByXN\u002FoJkl5grOhYWvQUYiw==\",\n \"requires\": {\n \"extend-shallow\": \"^3.0.0\"\n }\n },\n \"sprintf-js\": {\n \"version\": \"1.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsprintf-js\u002F-\u002Fsprintf-js-1.0.3.tgz\",\n \"integrity\": \"sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=\",\n \"dev\": true\n },\n \"sshpk\": {\n \"version\": \"1.16.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsshpk\u002F-\u002Fsshpk-1.16.1.tgz\",\n \"integrity\": \"sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==\",\n \"dev\": true,\n \"requires\": {\n \"asn1\": \"~0.2.3\",\n \"assert-plus\": \"^1.0.0\",\n \"bcrypt-pbkdf\": \"^1.0.0\",\n \"dashdash\": \"^1.12.0\",\n \"ecc-jsbn\": \"~0.1.1\",\n \"getpass\": \"^0.1.1\",\n \"jsbn\": \"~0.1.0\",\n \"safer-buffer\": \"^2.0.2\",\n \"tweetnacl\": \"~0.14.0\"\n }\n },\n \"ssri\": {\n \"version\": \"6.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fssri\u002F-\u002Fssri-6.0.1.tgz\",\n \"integrity\": \"sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs\u002F7WvSACcrMYrNp+b8kDL1\u002F0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx\u002FQA==\",\n \"requires\": {\n \"figgy-pudding\": \"^3.5.1\"\n }\n },\n \"stack-utils\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstack-utils\u002F-\u002Fstack-utils-1.0.2.tgz\",\n \"integrity\": \"sha512-MTX+MeG5U994cazkjd\u002F9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==\",\n \"dev\": true\n },\n \"stacktrace-parser\": {\n \"version\": \"0.1.10\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstacktrace-parser\u002F-\u002Fstacktrace-parser-0.1.10.tgz\",\n \"integrity\": \"sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4\u002FWG68jMlQZ2p8wlg==\",\n \"requires\": {\n \"type-fest\": \"^0.7.1\"\n },\n \"dependencies\": {\n \"type-fest\": {\n \"version\": \"0.7.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftype-fest\u002F-\u002Ftype-fest-0.7.1.tgz\",\n \"integrity\": \"sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh\u002FJdL1+PSicowtNb0WFpn59GK8\u002FlfD61bVtzguz7b3PBt74nxpv\u002FPw5po5Rg==\"\n }\n }\n },\n \"static-extend\": {\n \"version\": \"0.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstatic-extend\u002F-\u002Fstatic-extend-0.1.2.tgz\",\n \"integrity\": \"sha1-YICcOcv\u002FVTNyJv1eC1IPNB8ftcY=\",\n \"requires\": {\n \"define-property\": \"^0.2.5\",\n \"object-copy\": \"^0.1.0\"\n },\n \"dependencies\": {\n \"define-property\": {\n \"version\": \"0.2.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fdefine-property\u002F-\u002Fdefine-property-0.2.5.tgz\",\n \"integrity\": \"sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=\",\n \"requires\": {\n \"is-descriptor\": \"^0.1.0\"\n }\n },\n \"is-accessor-descriptor\": {\n \"version\": \"0.1.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-accessor-descriptor\u002F-\u002Fis-accessor-descriptor-0.1.6.tgz\",\n \"integrity\": \"sha1-qeEss66Nh2cn7u84Q\u002FigiXtcmNY=\",\n \"requires\": {\n \"kind-of\": \"^3.0.2\"\n },\n \"dependencies\": {\n \"kind-of\": {\n \"version\": \"3.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-3.2.2.tgz\",\n \"integrity\": \"sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=\",\n \"requires\": {\n \"is-buffer\": \"^1.1.5\"\n }\n }\n }\n },\n \"is-data-descriptor\": {\n \"version\": \"0.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-data-descriptor\u002F-\u002Fis-data-descriptor-0.1.4.tgz\",\n \"integrity\": \"sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=\",\n \"requires\": {\n \"kind-of\": \"^3.0.2\"\n },\n \"dependencies\": {\n \"kind-of\": {\n \"version\": \"3.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-3.2.2.tgz\",\n \"integrity\": \"sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=\",\n \"requires\": {\n \"is-buffer\": \"^1.1.5\"\n }\n }\n }\n },\n \"is-descriptor\": {\n \"version\": \"0.1.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-descriptor\u002F-\u002Fis-descriptor-0.1.6.tgz\",\n \"integrity\": \"sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq\u002F4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==\",\n \"requires\": {\n \"is-accessor-descriptor\": \"^0.1.6\",\n \"is-data-descriptor\": \"^0.1.4\",\n \"kind-of\": \"^5.0.0\"\n }\n },\n \"kind-of\": {\n \"version\": \"5.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-5.1.0.tgz\",\n \"integrity\": \"sha512-NGEErnH6F2vUuXDh+OlbcKW7\u002FwOcfdRHaZ7VWtqCztfHri\u002F++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==\"\n }\n }\n },\n \"statuses\": {\n \"version\": \"1.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstatuses\u002F-\u002Fstatuses-1.5.0.tgz\",\n \"integrity\": \"sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=\"\n },\n \"stealthy-require\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstealthy-require\u002F-\u002Fstealthy-require-1.1.1.tgz\",\n \"integrity\": \"sha1-NbCYdbT\u002FSfJqd35QmzCQoyJr8ks=\",\n \"dev\": true\n },\n \"stream-browserify\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstream-browserify\u002F-\u002Fstream-browserify-3.0.0.tgz\",\n \"integrity\": \"sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==\",\n \"requires\": {\n \"inherits\": \"~2.0.4\",\n \"readable-stream\": \"^3.5.0\"\n }\n },\n \"stream-each\": {\n \"version\": \"1.2.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstream-each\u002F-\u002Fstream-each-1.2.3.tgz\",\n \"integrity\": \"sha512-vlMC2f8I2u\u002FbZGqkdfLQW\u002F13Zihpej\u002F7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==\",\n \"requires\": {\n \"end-of-stream\": \"^1.1.0\",\n \"stream-shift\": \"^1.0.0\"\n }\n },\n \"stream-http\": {\n \"version\": \"2.8.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstream-http\u002F-\u002Fstream-http-2.8.3.tgz\",\n \"integrity\": \"sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE\u002Fa47L+38PenXhUw==\",\n \"requires\": {\n \"builtin-status-codes\": \"^3.0.0\",\n \"inherits\": \"^2.0.1\",\n \"readable-stream\": \"^2.3.6\",\n \"to-arraybuffer\": \"^1.0.0\",\n \"xtend\": \"^4.0.0\"\n },\n \"dependencies\": {\n \"readable-stream\": {\n \"version\": \"2.3.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freadable-stream\u002F-\u002Freadable-stream-2.3.7.tgz\",\n \"integrity\": \"sha512-Ebho8K4jIbHAxnuxi7o42OrZgF\u002FZTNcsZj6nRKyUmkhLFq8CHItp\u002Ffy6hQZuZmP\u002Fn3yZ9VBUbp4zz\u002FmX8hmYPw==\",\n \"requires\": {\n \"core-util-is\": \"~1.0.0\",\n \"inherits\": \"~2.0.3\",\n \"isarray\": \"~1.0.0\",\n \"process-nextick-args\": \"~2.0.0\",\n \"safe-buffer\": \"~5.1.1\",\n \"string_decoder\": \"~1.1.1\",\n \"util-deprecate\": \"~1.0.1\"\n }\n },\n \"string_decoder\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring_decoder\u002F-\u002Fstring_decoder-1.1.1.tgz\",\n \"integrity\": \"sha512-n\u002FShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP\u002FmzRfwg==\",\n \"requires\": {\n \"safe-buffer\": \"~5.1.0\"\n }\n }\n }\n },\n \"stream-shift\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstream-shift\u002F-\u002Fstream-shift-1.0.1.tgz\",\n \"integrity\": \"sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA\u002FRauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==\"\n },\n \"string-argv\": {\n \"version\": \"0.3.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring-argv\u002F-\u002Fstring-argv-0.3.1.tgz\",\n \"integrity\": \"sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==\",\n \"dev\": true\n },\n \"string-hash\": {\n \"version\": \"1.1.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring-hash\u002F-\u002Fstring-hash-1.1.3.tgz\",\n \"integrity\": \"sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=\"\n },\n \"string-length\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring-length\u002F-\u002Fstring-length-3.1.0.tgz\",\n \"integrity\": \"sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k\u002FCXFgrTIteU3jAw3payCnwSTA==\",\n \"dev\": true,\n \"requires\": {\n \"astral-regex\": \"^1.0.0\",\n \"strip-ansi\": \"^5.2.0\"\n },\n \"dependencies\": {\n \"astral-regex\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fastral-regex\u002F-\u002Fastral-regex-1.0.0.tgz\",\n \"integrity\": \"sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF\u002F1\u002FsQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==\",\n \"dev\": true\n }\n }\n },\n \"string-width\": {\n \"version\": \"4.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring-width\u002F-\u002Fstring-width-4.2.0.tgz\",\n \"integrity\": \"sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01\u002FK5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==\",\n \"dev\": true,\n \"requires\": {\n \"emoji-regex\": \"^8.0.0\",\n \"is-fullwidth-code-point\": \"^3.0.0\",\n \"strip-ansi\": \"^6.0.0\"\n },\n \"dependencies\": {\n \"strip-ansi\": {\n \"version\": \"6.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstrip-ansi\u002F-\u002Fstrip-ansi-6.0.0.tgz\",\n \"integrity\": \"sha512-AuvKTrTfQNYNIctbR1K\u002FYGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-regex\": \"^5.0.0\"\n }\n }\n }\n },\n \"string.prototype.matchall\": {\n \"version\": \"4.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring.prototype.matchall\u002F-\u002Fstring.prototype.matchall-4.0.2.tgz\",\n \"integrity\": \"sha512-N\u002Fjp6O5fMf9os0JU3E72Qhf590RSRZU\u002FungsL\u002FqJUYVTNv7hTG0P\u002FdbPjxINVN9jpscu3nzYwKESU3P3RY5tOg==\",\n \"dev\": true,\n \"requires\": {\n \"define-properties\": \"^1.1.3\",\n \"es-abstract\": \"^1.17.0\",\n \"has-symbols\": \"^1.0.1\",\n \"internal-slot\": \"^1.0.2\",\n \"regexp.prototype.flags\": \"^1.3.0\",\n \"side-channel\": \"^1.0.2\"\n }\n },\n \"string.prototype.trimend\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring.prototype.trimend\u002F-\u002Fstring.prototype.trimend-1.0.2.tgz\",\n \"integrity\": \"sha512-8oAG\u002Fhi14Z4nOVP0z6mdiVZ\u002FwqjDtWSLygMigTzAb+7aPEDTleeFf+WrF+alzecxIRkckkJVn+dTlwzJXORATw==\",\n \"dev\": true,\n \"requires\": {\n \"define-properties\": \"^1.1.3\",\n \"es-abstract\": \"^1.18.0-next.1\"\n },\n \"dependencies\": {\n \"es-abstract\": {\n \"version\": \"1.18.0-next.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fes-abstract\u002F-\u002Fes-abstract-1.18.0-next.1.tgz\",\n \"integrity\": \"sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT\u002F1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==\",\n \"dev\": true,\n \"requires\": {\n \"es-to-primitive\": \"^1.2.1\",\n \"function-bind\": \"^1.1.1\",\n \"has\": \"^1.0.3\",\n \"has-symbols\": \"^1.0.1\",\n \"is-callable\": \"^1.2.2\",\n \"is-negative-zero\": \"^2.0.0\",\n \"is-regex\": \"^1.1.1\",\n \"object-inspect\": \"^1.8.0\",\n \"object-keys\": \"^1.1.1\",\n \"object.assign\": \"^4.1.1\",\n \"string.prototype.trimend\": \"^1.0.1\",\n \"string.prototype.trimstart\": \"^1.0.1\"\n }\n }\n }\n },\n \"string.prototype.trimstart\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring.prototype.trimstart\u002F-\u002Fstring.prototype.trimstart-1.0.2.tgz\",\n \"integrity\": \"sha512-7F6CdBTl5zyu30BJFdzSTlSlLPwODC23Od+iLoVH8X6+3fvDPPuBVVj9iaB1GOsSTSIgVfsfm27R2FGrAPznWg==\",\n \"dev\": true,\n \"requires\": {\n \"define-properties\": \"^1.1.3\",\n \"es-abstract\": \"^1.18.0-next.1\"\n },\n \"dependencies\": {\n \"es-abstract\": {\n \"version\": \"1.18.0-next.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fes-abstract\u002F-\u002Fes-abstract-1.18.0-next.1.tgz\",\n \"integrity\": \"sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT\u002F1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==\",\n \"dev\": true,\n \"requires\": {\n \"es-to-primitive\": \"^1.2.1\",\n \"function-bind\": \"^1.1.1\",\n \"has\": \"^1.0.3\",\n \"has-symbols\": \"^1.0.1\",\n \"is-callable\": \"^1.2.2\",\n \"is-negative-zero\": \"^2.0.0\",\n \"is-regex\": \"^1.1.1\",\n \"object-inspect\": \"^1.8.0\",\n \"object-keys\": \"^1.1.1\",\n \"object.assign\": \"^4.1.1\",\n \"string.prototype.trimend\": \"^1.0.1\",\n \"string.prototype.trimstart\": \"^1.0.1\"\n }\n }\n }\n },\n \"string_decoder\": {\n \"version\": \"1.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring_decoder\u002F-\u002Fstring_decoder-1.3.0.tgz\",\n \"integrity\": \"sha512-hkRX8U1WjJFd8LsDJ2yQ\u002FwWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup\u002FwKeA==\",\n \"requires\": {\n \"safe-buffer\": \"~5.2.0\"\n },\n \"dependencies\": {\n \"safe-buffer\": {\n \"version\": \"5.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsafe-buffer\u002F-\u002Fsafe-buffer-5.2.1.tgz\",\n \"integrity\": \"sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==\"\n }\n }\n },\n \"stringify-object\": {\n \"version\": \"3.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstringify-object\u002F-\u002Fstringify-object-3.3.0.tgz\",\n \"integrity\": \"sha512-rHqiFh1elqCQ9WPLIC8I0Q\u002Fg\u002Fwj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==\",\n \"dev\": true,\n \"requires\": {\n \"get-own-enumerable-property-symbols\": \"^3.0.0\",\n \"is-obj\": \"^1.0.1\",\n \"is-regexp\": \"^1.0.0\"\n }\n },\n \"strip-ansi\": {\n \"version\": \"5.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstrip-ansi\u002F-\u002Fstrip-ansi-5.2.0.tgz\",\n \"integrity\": \"sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-regex\": \"^4.1.0\"\n },\n \"dependencies\": {\n \"ansi-regex\": {\n \"version\": \"4.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-regex\u002F-\u002Fansi-regex-4.1.0.tgz\",\n \"integrity\": \"sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p\u002FrmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==\",\n \"dev\": true\n }\n }\n },\n \"strip-bom\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstrip-bom\u002F-\u002Fstrip-bom-4.0.0.tgz\",\n \"integrity\": \"sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV\u002FioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==\",\n \"dev\": true\n },\n \"strip-eof\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstrip-eof\u002F-\u002Fstrip-eof-1.0.0.tgz\",\n \"integrity\": \"sha1-u0P\u002FVZim6wXYm1n80SnJgzE2Br8=\",\n \"dev\": true\n },\n \"strip-final-newline\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstrip-final-newline\u002F-\u002Fstrip-final-newline-2.0.0.tgz\",\n \"integrity\": \"sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==\",\n \"dev\": true\n },\n \"strip-json-comments\": {\n \"version\": \"3.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstrip-json-comments\u002F-\u002Fstrip-json-comments-3.1.1.tgz\",\n \"integrity\": \"sha512-6fPc+R4ihwqP6N\u002FaIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS\u002FmEHLp7Vehlt3ql6lEig==\",\n \"dev\": true\n },\n \"style-loader\": {\n \"version\": \"1.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstyle-loader\u002F-\u002Fstyle-loader-1.2.1.tgz\",\n \"integrity\": \"sha512-ByHSTQvHLkWE9Ir5+lGbVOXhxX10fbprhLvdg96wedFZb4NDekDPxVKv5Fwmio+QcMlkkNfuK+5W1peQ5CUhZg==\",\n \"requires\": {\n \"loader-utils\": \"^2.0.0\",\n \"schema-utils\": \"^2.6.6\"\n }\n },\n \"styled-components\": {\n \"version\": \"5.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstyled-components\u002F-\u002Fstyled-components-5.2.1.tgz\",\n \"integrity\": \"sha512-sBdgLWrCFTKtmZm\u002F9x7jkIabjFNVzCUeKfoQsM6R3saImkUnjx0QYdLwJHBjY9ifEcmjDamJDVfknWm1yxZPxQ==\",\n \"requires\": {\n \"@babel\u002Fhelper-module-imports\": \"^7.0.0\",\n \"@babel\u002Ftraverse\": \"^7.4.5\",\n \"@emotion\u002Fis-prop-valid\": \"^0.8.8\",\n \"@emotion\u002Fstylis\": \"^0.8.4\",\n \"@emotion\u002Funitless\": \"^0.7.4\",\n \"babel-plugin-styled-components\": \"\u003E= 1\",\n \"css-to-react-native\": \"^3.0.0\",\n \"hoist-non-react-statics\": \"^3.0.0\",\n \"shallowequal\": \"^1.1.0\",\n \"supports-color\": \"^5.5.0\"\n }\n },\n \"styled-jsx\": {\n \"version\": \"3.3.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstyled-jsx\u002F-\u002Fstyled-jsx-3.3.1.tgz\",\n \"integrity\": \"sha512-RhW71t3k95E3g7Zq3lEBk+kmf+p4ZME7c5tfsYf9M5mq6CgIvFXkbvhawL2gWriXLRlMyKAYACE89Qa2JnTqUw==\",\n \"requires\": {\n \"@babel\u002Ftypes\": \"7.8.3\",\n \"babel-plugin-syntax-jsx\": \"6.18.0\",\n \"convert-source-map\": \"1.7.0\",\n \"loader-utils\": \"1.2.3\",\n \"source-map\": \"0.7.3\",\n \"string-hash\": \"1.1.3\",\n \"stylis\": \"3.5.4\",\n \"stylis-rule-sheet\": \"0.0.10\"\n },\n \"dependencies\": {\n \"@babel\u002Ftypes\": {\n \"version\": \"7.8.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002F@babel\u002Ftypes\u002F-\u002Ftypes-7.8.3.tgz\",\n \"integrity\": \"sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU\u002FsyrhN17o1u3gx0\u002FWzJB1kwiVZAXRtWbsIPOwW8pF\u002FYJV5+nmetPzepXg==\",\n \"requires\": {\n \"esutils\": \"^2.0.2\",\n \"lodash\": \"^4.17.13\",\n \"to-fast-properties\": \"^2.0.0\"\n }\n },\n \"emojis-list\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Femojis-list\u002F-\u002Femojis-list-2.1.0.tgz\",\n \"integrity\": \"sha1-TapNnbAPmBmIDHn6RXrlsJof04k=\"\n },\n \"json5\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjson5\u002F-\u002Fjson5-1.0.1.tgz\",\n \"integrity\": \"sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd\u002F1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==\",\n \"requires\": {\n \"minimist\": \"^1.2.0\"\n }\n },\n \"loader-utils\": {\n \"version\": \"1.2.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Floader-utils\u002F-\u002Floader-utils-1.2.3.tgz\",\n \"integrity\": \"sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==\",\n \"requires\": {\n \"big.js\": \"^5.2.2\",\n \"emojis-list\": \"^2.0.0\",\n \"json5\": \"^1.0.1\"\n }\n },\n \"source-map\": {\n \"version\": \"0.7.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.7.3.tgz\",\n \"integrity\": \"sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==\"\n }\n }\n },\n \"stylis\": {\n \"version\": \"3.5.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstylis\u002F-\u002Fstylis-3.5.4.tgz\",\n \"integrity\": \"sha512-8\u002F3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k\u002F8BIexd5ydZdboXtU90XH9Ec4Bv\u002FQ==\"\n },\n \"stylis-rule-sheet\": {\n \"version\": \"0.0.10\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstylis-rule-sheet\u002F-\u002Fstylis-rule-sheet-0.0.10.tgz\",\n \"integrity\": \"sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==\"\n },\n \"supports-color\": {\n \"version\": \"5.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-5.5.0.tgz\",\n \"integrity\": \"sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==\",\n \"requires\": {\n \"has-flag\": \"^3.0.0\"\n }\n },\n \"supports-hyperlinks\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-hyperlinks\u002F-\u002Fsupports-hyperlinks-2.1.0.tgz\",\n \"integrity\": \"sha512-zoE5\u002Fe+dnEijk6ASB6\u002FqrK+oYdm2do1hjoLWrqUC\u002F8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL\u002FF5CA==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\",\n \"supports-color\": \"^7.0.0\"\n },\n \"dependencies\": {\n \"has-flag\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz\",\n \"integrity\": \"sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\",\n \"dev\": true\n },\n \"supports-color\": {\n \"version\": \"7.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz\",\n \"integrity\": \"sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\",\n \"dev\": true,\n \"requires\": {\n \"has-flag\": \"^4.0.0\"\n }\n }\n }\n },\n \"swr\": {\n \"version\": \"0.3.8\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fswr\u002F-\u002Fswr-0.3.8.tgz\",\n \"integrity\": \"sha512-EHRlaqoBtHsB2wOB+dQJ74DrZvaRGu4BaIQrhkD+\u002Frj8\u002FUGo2iQXN+rCcYnV7\u002FVAreBJBmm9+lDkwZmUqWEkKA==\",\n \"requires\": {\n \"dequal\": \"2.0.2\"\n }\n },\n \"symbol-tree\": {\n \"version\": \"3.2.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsymbol-tree\u002F-\u002Fsymbol-tree-3.2.4.tgz\",\n \"integrity\": \"sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==\",\n \"dev\": true\n },\n \"table\": {\n \"version\": \"5.4.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftable\u002F-\u002Ftable-5.4.6.tgz\",\n \"integrity\": \"sha512-wmEc8m4fjnob4gt5riFRtTu\u002F6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6\u002FYR3qRZv7e56kAEAtd6nKZaxe0Ug==\",\n \"dev\": true,\n \"requires\": {\n \"ajv\": \"^6.10.2\",\n \"lodash\": \"^4.17.14\",\n \"slice-ansi\": \"^2.1.0\",\n \"string-width\": \"^3.0.0\"\n },\n \"dependencies\": {\n \"astral-regex\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fastral-regex\u002F-\u002Fastral-regex-1.0.0.tgz\",\n \"integrity\": \"sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF\u002F1\u002FsQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==\",\n \"dev\": true\n },\n \"emoji-regex\": {\n \"version\": \"7.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Femoji-regex\u002F-\u002Femoji-regex-7.0.3.tgz\",\n \"integrity\": \"sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==\",\n \"dev\": true\n },\n \"is-fullwidth-code-point\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-fullwidth-code-point\u002F-\u002Fis-fullwidth-code-point-2.0.0.tgz\",\n \"integrity\": \"sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=\",\n \"dev\": true\n },\n \"slice-ansi\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fslice-ansi\u002F-\u002Fslice-ansi-2.1.0.tgz\",\n \"integrity\": \"sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^3.2.0\",\n \"astral-regex\": \"^1.0.0\",\n \"is-fullwidth-code-point\": \"^2.0.0\"\n }\n },\n \"string-width\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring-width\u002F-\u002Fstring-width-3.1.0.tgz\",\n \"integrity\": \"sha512-vafcv6KjVZKSgz06oM\u002FH6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==\",\n \"dev\": true,\n \"requires\": {\n \"emoji-regex\": \"^7.0.1\",\n \"is-fullwidth-code-point\": \"^2.0.0\",\n \"strip-ansi\": \"^5.1.0\"\n }\n }\n }\n },\n \"tapable\": {\n \"version\": \"1.1.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftapable\u002F-\u002Ftapable-1.1.3.tgz\",\n \"integrity\": \"sha512-4WK\u002FbYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==\"\n },\n \"tar-fs\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftar-fs\u002F-\u002Ftar-fs-2.1.1.tgz\",\n \"integrity\": \"sha512-V0r2Y9scmbDRLCNex\u002F+hYzvp\u002FzyYjvFbHPNgVTKfQvVrb6guiE\u002FfxP+XblDNR011utopbkex2nM4dHNV6GDsng==\",\n \"optional\": true,\n \"requires\": {\n \"chownr\": \"^1.1.1\",\n \"mkdirp-classic\": \"^0.5.2\",\n \"pump\": \"^3.0.0\",\n \"tar-stream\": \"^2.1.4\"\n }\n },\n \"tar-stream\": {\n \"version\": \"2.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftar-stream\u002F-\u002Ftar-stream-2.1.4.tgz\",\n \"integrity\": \"sha512-o3pS2zlG4gxr67GmFYBLlq+dM8gyRGUOvsrHclSkvtVtQbjV0s\u002F+ZE8OpICbaj8clrX3tjeHngYGP7rweaBnuw==\",\n \"optional\": true,\n \"requires\": {\n \"bl\": \"^4.0.3\",\n \"end-of-stream\": \"^1.4.1\",\n \"fs-constants\": \"^1.0.0\",\n \"inherits\": \"^2.0.3\",\n \"readable-stream\": \"^3.1.1\"\n }\n },\n \"terminal-link\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fterminal-link\u002F-\u002Fterminal-link-2.1.1.tgz\",\n \"integrity\": \"sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp\u002Fbt+ymiy9\u002FnpwXya9KH99nJ\u002FGXFIiUkYGFQ==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-escapes\": \"^4.2.1\",\n \"supports-hyperlinks\": \"^2.0.0\"\n }\n },\n \"terser\": {\n \"version\": \"5.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fterser\u002F-\u002Fterser-5.1.0.tgz\",\n \"integrity\": \"sha512-pwC1Jbzahz1ZPU87NQ8B3g5pKbhyJSiHih4gLH6WZiPU8mmS1IlGbB0A2Nuvkj\u002FLCNsgIKctg6GkYwWCeTvXZQ==\",\n \"requires\": {\n \"commander\": \"^2.20.0\",\n \"source-map\": \"~0.6.1\",\n \"source-map-support\": \"~0.5.12\"\n },\n \"dependencies\": {\n \"commander\": {\n \"version\": \"2.20.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcommander\u002F-\u002Fcommander-2.20.3.tgz\",\n \"integrity\": \"sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey\u002FlJEnhZw75x\u002FOMcQ==\"\n },\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\"\n }\n }\n },\n \"terser-webpack-plugin\": {\n \"version\": \"1.4.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fterser-webpack-plugin\u002F-\u002Fterser-webpack-plugin-1.4.5.tgz\",\n \"integrity\": \"sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd\u002FagHtH0kOtw==\",\n \"requires\": {\n \"cacache\": \"^12.0.2\",\n \"find-cache-dir\": \"^2.1.0\",\n \"is-wsl\": \"^1.1.0\",\n \"schema-utils\": \"^1.0.0\",\n \"serialize-javascript\": \"^4.0.0\",\n \"source-map\": \"^0.6.1\",\n \"terser\": \"^4.1.2\",\n \"webpack-sources\": \"^1.4.0\",\n \"worker-farm\": \"^1.7.0\"\n },\n \"dependencies\": {\n \"commander\": {\n \"version\": \"2.20.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcommander\u002F-\u002Fcommander-2.20.3.tgz\",\n \"integrity\": \"sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey\u002FlJEnhZw75x\u002FOMcQ==\"\n },\n \"find-cache-dir\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffind-cache-dir\u002F-\u002Ffind-cache-dir-2.1.0.tgz\",\n \"integrity\": \"sha512-Tq6PixE0w\u002FVMFfCgbONnkiQIVol\u002FJJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==\",\n \"requires\": {\n \"commondir\": \"^1.0.1\",\n \"make-dir\": \"^2.0.0\",\n \"pkg-dir\": \"^3.0.0\"\n }\n },\n \"find-up\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffind-up\u002F-\u002Ffind-up-3.0.0.tgz\",\n \"integrity\": \"sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX\u002FFTs9cBAMEk1gWSEx1kSbylg==\",\n \"requires\": {\n \"locate-path\": \"^3.0.0\"\n }\n },\n \"is-wsl\": {\n \"version\": \"1.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-wsl\u002F-\u002Fis-wsl-1.1.0.tgz\",\n \"integrity\": \"sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=\"\n },\n \"locate-path\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Flocate-path\u002F-\u002Flocate-path-3.0.0.tgz\",\n \"integrity\": \"sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220\u002FmaaRsrec1G65A==\",\n \"requires\": {\n \"p-locate\": \"^3.0.0\",\n \"path-exists\": \"^3.0.0\"\n }\n },\n \"make-dir\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmake-dir\u002F-\u002Fmake-dir-2.1.0.tgz\",\n \"integrity\": \"sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy\u002FlSO57ilRixqk0vDmtRA==\",\n \"requires\": {\n \"pify\": \"^4.0.1\",\n \"semver\": \"^5.6.0\"\n }\n },\n \"p-locate\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fp-locate\u002F-\u002Fp-locate-3.0.0.tgz\",\n \"integrity\": \"sha512-x+12w\u002FTo+4GFfgJhBEpiDcLozRJGegY+Ei7\u002Fz0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==\",\n \"requires\": {\n \"p-limit\": \"^2.0.0\"\n }\n },\n \"path-exists\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpath-exists\u002F-\u002Fpath-exists-3.0.0.tgz\",\n \"integrity\": \"sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=\"\n },\n \"pkg-dir\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpkg-dir\u002F-\u002Fpkg-dir-3.0.0.tgz\",\n \"integrity\": \"sha512-\u002FE57AYkoeQ25qkxMj5PBOVgF8Kiu\u002Fh7cYS30Z5+R7WaiCCBfLq58ZI\u002FdSeaEKb9WVJV5n\u002F03QwrN3IeWIFllvw==\",\n \"requires\": {\n \"find-up\": \"^3.0.0\"\n }\n },\n \"schema-utils\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fschema-utils\u002F-\u002Fschema-utils-1.0.0.tgz\",\n \"integrity\": \"sha512-i27Mic4KovM\u002FlnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic\u002FHLU4j11mjsz2G\u002F75g==\",\n \"requires\": {\n \"ajv\": \"^6.1.0\",\n \"ajv-errors\": \"^1.0.0\",\n \"ajv-keywords\": \"^3.1.0\"\n }\n },\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\"\n },\n \"terser\": {\n \"version\": \"4.8.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fterser\u002F-\u002Fterser-4.8.0.tgz\",\n \"integrity\": \"sha512-EAPipTNeWsb\u002F3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==\",\n \"requires\": {\n \"commander\": \"^2.20.0\",\n \"source-map\": \"~0.6.1\",\n \"source-map-support\": \"~0.5.12\"\n }\n }\n }\n },\n \"test-exclude\": {\n \"version\": \"6.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftest-exclude\u002F-\u002Ftest-exclude-6.0.0.tgz\",\n \"integrity\": \"sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk\u002FMh\u002FxC\u002FpzVPlQtY6ngoIH\u002F5\u002FtciuhGfvESU8GrHrcxD56w==\",\n \"dev\": true,\n \"requires\": {\n \"@istanbuljs\u002Fschema\": \"^0.1.2\",\n \"glob\": \"^7.1.4\",\n \"minimatch\": \"^3.0.4\"\n }\n },\n \"text-table\": {\n \"version\": \"0.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftext-table\u002F-\u002Ftext-table-0.2.0.tgz\",\n \"integrity\": \"sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=\",\n \"dev\": true\n },\n \"throat\": {\n \"version\": \"5.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fthroat\u002F-\u002Fthroat-5.0.0.tgz\",\n \"integrity\": \"sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7\u002FGYAuXaNOiYCA==\",\n \"dev\": true\n },\n \"through\": {\n \"version\": \"2.3.8\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fthrough\u002F-\u002Fthrough-2.3.8.tgz\",\n \"integrity\": \"sha1-DdTJ\u002F6q8NXlgsbckEV1+Doai4fU=\",\n \"dev\": true\n },\n \"through2\": {\n \"version\": \"2.0.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fthrough2\u002F-\u002Fthrough2-2.0.5.tgz\",\n \"integrity\": \"sha512-\u002FmrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW\u002FSu8LQGc4YKni5rYSQ==\",\n \"requires\": {\n \"readable-stream\": \"~2.3.6\",\n \"xtend\": \"~4.0.1\"\n },\n \"dependencies\": {\n \"readable-stream\": {\n \"version\": \"2.3.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freadable-stream\u002F-\u002Freadable-stream-2.3.7.tgz\",\n \"integrity\": \"sha512-Ebho8K4jIbHAxnuxi7o42OrZgF\u002FZTNcsZj6nRKyUmkhLFq8CHItp\u002Ffy6hQZuZmP\u002Fn3yZ9VBUbp4zz\u002FmX8hmYPw==\",\n \"requires\": {\n \"core-util-is\": \"~1.0.0\",\n \"inherits\": \"~2.0.3\",\n \"isarray\": \"~1.0.0\",\n \"process-nextick-args\": \"~2.0.0\",\n \"safe-buffer\": \"~5.1.1\",\n \"string_decoder\": \"~1.1.1\",\n \"util-deprecate\": \"~1.0.1\"\n }\n },\n \"string_decoder\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring_decoder\u002F-\u002Fstring_decoder-1.1.1.tgz\",\n \"integrity\": \"sha512-n\u002FShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP\u002FmzRfwg==\",\n \"requires\": {\n \"safe-buffer\": \"~5.1.0\"\n }\n }\n }\n },\n \"timers-browserify\": {\n \"version\": \"2.0.12\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftimers-browserify\u002F-\u002Ftimers-browserify-2.0.12.tgz\",\n \"integrity\": \"sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf\u002FhAvg8EEyJxDo3du\u002F0KlhPiKQ==\",\n \"requires\": {\n \"setimmediate\": \"^1.0.4\"\n }\n },\n \"tmp\": {\n \"version\": \"0.0.33\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftmp\u002F-\u002Ftmp-0.0.33.tgz\",\n \"integrity\": \"sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==\",\n \"dev\": true,\n \"requires\": {\n \"os-tmpdir\": \"~1.0.2\"\n }\n },\n \"tmpl\": {\n \"version\": \"1.0.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftmpl\u002F-\u002Ftmpl-1.0.4.tgz\",\n \"integrity\": \"sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=\",\n \"dev\": true\n },\n \"to-arraybuffer\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fto-arraybuffer\u002F-\u002Fto-arraybuffer-1.0.1.tgz\",\n \"integrity\": \"sha1-fSKbH8xjfkZsoIEYCDanqr\u002F4P0M=\"\n },\n \"to-fast-properties\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fto-fast-properties\u002F-\u002Fto-fast-properties-2.0.0.tgz\",\n \"integrity\": \"sha1-3F5pjL0HkmW8c+A3doGk5Og\u002FYW4=\"\n },\n \"to-object-path\": {\n \"version\": \"0.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fto-object-path\u002F-\u002Fto-object-path-0.3.0.tgz\",\n \"integrity\": \"sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=\",\n \"requires\": {\n \"kind-of\": \"^3.0.2\"\n },\n \"dependencies\": {\n \"kind-of\": {\n \"version\": \"3.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-3.2.2.tgz\",\n \"integrity\": \"sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=\",\n \"requires\": {\n \"is-buffer\": \"^1.1.5\"\n }\n }\n }\n },\n \"to-regex\": {\n \"version\": \"3.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fto-regex\u002F-\u002Fto-regex-3.0.2.tgz\",\n \"integrity\": \"sha512-FWtleNAtZ\u002FKi2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==\",\n \"requires\": {\n \"define-property\": \"^2.0.2\",\n \"extend-shallow\": \"^3.0.2\",\n \"regex-not\": \"^1.0.2\",\n \"safe-regex\": \"^1.1.0\"\n }\n },\n \"to-regex-range\": {\n \"version\": \"5.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fto-regex-range\u002F-\u002Fto-regex-range-5.0.1.tgz\",\n \"integrity\": \"sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li\u002FHx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==\",\n \"requires\": {\n \"is-number\": \"^7.0.0\"\n }\n },\n \"toidentifier\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftoidentifier\u002F-\u002Ftoidentifier-1.0.0.tgz\",\n \"integrity\": \"sha512-yaOH\u002FPk\u002FVEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==\"\n },\n \"tough-cookie\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftough-cookie\u002F-\u002Ftough-cookie-3.0.1.tgz\",\n \"integrity\": \"sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==\",\n \"dev\": true,\n \"requires\": {\n \"ip-regex\": \"^2.1.0\",\n \"psl\": \"^1.1.28\",\n \"punycode\": \"^2.1.1\"\n }\n },\n \"tr46\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftr46\u002F-\u002Ftr46-1.0.1.tgz\",\n \"integrity\": \"sha1-qLE\u002F1r\u002FSSJUZZ0zN5VujaTtwbQk=\",\n \"requires\": {\n \"punycode\": \"^2.1.0\"\n }\n },\n \"traverse\": {\n \"version\": \"0.6.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftraverse\u002F-\u002Ftraverse-0.6.6.tgz\",\n \"integrity\": \"sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=\"\n },\n \"ts-pnp\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fts-pnp\u002F-\u002Fts-pnp-1.2.0.tgz\",\n \"integrity\": \"sha512-csd+vJOb\u002FgkzvcCHgTGSChYpy5f1\u002FXKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q\u002FccdhQw==\"\n },\n \"tslib\": {\n \"version\": \"1.14.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftslib\u002F-\u002Ftslib-1.14.1.tgz\",\n \"integrity\": \"sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV\u002F0E4EyYn43P7\u002F7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==\"\n },\n \"tsutils\": {\n \"version\": \"3.17.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftsutils\u002F-\u002Ftsutils-3.17.1.tgz\",\n \"integrity\": \"sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==\",\n \"dev\": true,\n \"requires\": {\n \"tslib\": \"^1.8.1\"\n }\n },\n \"tty-browserify\": {\n \"version\": \"0.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftty-browserify\u002F-\u002Ftty-browserify-0.0.0.tgz\",\n \"integrity\": \"sha1-oVe6QC2iTpv5V\u002FmqadUk7tQpAaY=\"\n },\n \"tunnel-agent\": {\n \"version\": \"0.6.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftunnel-agent\u002F-\u002Ftunnel-agent-0.6.0.tgz\",\n \"integrity\": \"sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=\",\n \"requires\": {\n \"safe-buffer\": \"^5.0.1\"\n }\n },\n \"tweetnacl\": {\n \"version\": \"0.14.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftweetnacl\u002F-\u002Ftweetnacl-0.14.5.tgz\",\n \"integrity\": \"sha1-WuaBd\u002FGS1EViadEIr6k\u002F+HQ\u002FT2Q=\",\n \"dev\": true\n },\n \"type\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftype\u002F-\u002Ftype-1.2.0.tgz\",\n \"integrity\": \"sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN\u002FF+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==\"\n },\n \"type-check\": {\n \"version\": \"0.3.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftype-check\u002F-\u002Ftype-check-0.3.2.tgz\",\n \"integrity\": \"sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=\",\n \"dev\": true,\n \"requires\": {\n \"prelude-ls\": \"~1.1.2\"\n }\n },\n \"type-detect\": {\n \"version\": \"4.0.8\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftype-detect\u002F-\u002Ftype-detect-4.0.8.tgz\",\n \"integrity\": \"sha512-0fr\u002FmIH1dlO+x7TlcMy+bIDqKPsw\u002F70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5\u002Fg==\",\n \"dev\": true\n },\n \"type-fest\": {\n \"version\": \"0.11.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftype-fest\u002F-\u002Ftype-fest-0.11.0.tgz\",\n \"integrity\": \"sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==\",\n \"dev\": true\n },\n \"typedarray\": {\n \"version\": \"0.0.6\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftypedarray\u002F-\u002Ftypedarray-0.0.6.tgz\",\n \"integrity\": \"sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=\"\n },\n \"typedarray-to-buffer\": {\n \"version\": \"3.1.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftypedarray-to-buffer\u002F-\u002Ftypedarray-to-buffer-3.1.5.tgz\",\n \"integrity\": \"sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr\u002F\u002FH6V+0DvJ3OQ19S979M0laLfX8rm82Q==\",\n \"dev\": true,\n \"requires\": {\n \"is-typedarray\": \"^1.0.0\"\n }\n },\n \"typescript\": {\n \"version\": \"4.0.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ftypescript\u002F-\u002Ftypescript-4.0.5.tgz\",\n \"integrity\": \"sha512-ywmr\u002FVrTVCmNTJ6iV2LwIrfG1P+lv6luD8sUJs+2eI9NLGigaN+nUQc13iHqisq7bra9lnmUSYqbJvegraBOPQ==\",\n \"dev\": true\n },\n \"union-value\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Funion-value\u002F-\u002Funion-value-1.0.1.tgz\",\n \"integrity\": \"sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG\u002FxwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==\",\n \"requires\": {\n \"arr-union\": \"^3.1.0\",\n \"get-value\": \"^2.0.6\",\n \"is-extendable\": \"^0.1.1\",\n \"set-value\": \"^2.0.1\"\n },\n \"dependencies\": {\n \"is-extendable\": {\n \"version\": \"0.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-extendable\u002F-\u002Fis-extendable-0.1.1.tgz\",\n \"integrity\": \"sha1-YrEQ4omkcUGOPsNqYX1HLjAd\u002FIk=\"\n }\n }\n },\n \"uniq\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Funiq\u002F-\u002Funiq-1.0.1.tgz\",\n \"integrity\": \"sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=\"\n },\n \"unique-filename\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Funique-filename\u002F-\u002Funique-filename-1.1.1.tgz\",\n \"integrity\": \"sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==\",\n \"requires\": {\n \"unique-slug\": \"^2.0.0\"\n }\n },\n \"unique-slug\": {\n \"version\": \"2.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Funique-slug\u002F-\u002Funique-slug-2.0.2.tgz\",\n \"integrity\": \"sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==\",\n \"requires\": {\n \"imurmurhash\": \"^0.1.4\"\n }\n },\n \"unpipe\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Funpipe\u002F-\u002Funpipe-1.0.0.tgz\",\n \"integrity\": \"sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=\"\n },\n \"unset-value\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Funset-value\u002F-\u002Funset-value-1.0.0.tgz\",\n \"integrity\": \"sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=\",\n \"requires\": {\n \"has-value\": \"^0.3.1\",\n \"isobject\": \"^3.0.0\"\n },\n \"dependencies\": {\n \"has-value\": {\n \"version\": \"0.3.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-value\u002F-\u002Fhas-value-0.3.1.tgz\",\n \"integrity\": \"sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=\",\n \"requires\": {\n \"get-value\": \"^2.0.3\",\n \"has-values\": \"^0.1.4\",\n \"isobject\": \"^2.0.0\"\n },\n \"dependencies\": {\n \"isobject\": {\n \"version\": \"2.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fisobject\u002F-\u002Fisobject-2.1.0.tgz\",\n \"integrity\": \"sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=\",\n \"requires\": {\n \"isarray\": \"1.0.0\"\n }\n }\n }\n },\n \"has-values\": {\n \"version\": \"0.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fhas-values\u002F-\u002Fhas-values-0.1.4.tgz\",\n \"integrity\": \"sha1-bWHeldkd\u002FKm5oCCJrThL\u002F49it3E=\"\n },\n \"isobject\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fisobject\u002F-\u002Fisobject-3.0.1.tgz\",\n \"integrity\": \"sha1-TkMekrEalzFjaqH5yNHMvP2reN8=\"\n }\n }\n },\n \"upath\": {\n \"version\": \"1.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fupath\u002F-\u002Fupath-1.2.0.tgz\",\n \"integrity\": \"sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN\u002FG\u002FjS4jfqUkZxoryvJgVPEcrl5NL\u002FggHsSmLMHuH64Lhg==\",\n \"optional\": true\n },\n \"uri-js\": {\n \"version\": \"4.4.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Furi-js\u002F-\u002Furi-js-4.4.0.tgz\",\n \"integrity\": \"sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g\u002FOejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==\",\n \"requires\": {\n \"punycode\": \"^2.1.0\"\n }\n },\n \"urix\": {\n \"version\": \"0.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Furix\u002F-\u002Furix-0.1.0.tgz\",\n \"integrity\": \"sha1-2pN\u002FemLiH+wf0Y1Js1wpNQZ6bHI=\"\n },\n \"url\": {\n \"version\": \"0.11.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Furl\u002F-\u002Furl-0.11.0.tgz\",\n \"integrity\": \"sha1-ODjpfPxgUh63PFJajlW\u002F3Z4uKPE=\",\n \"requires\": {\n \"punycode\": \"1.3.2\",\n \"querystring\": \"0.2.0\"\n },\n \"dependencies\": {\n \"punycode\": {\n \"version\": \"1.3.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fpunycode\u002F-\u002Fpunycode-1.3.2.tgz\",\n \"integrity\": \"sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=\"\n }\n }\n },\n \"use\": {\n \"version\": \"3.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fuse\u002F-\u002Fuse-3.1.1.tgz\",\n \"integrity\": \"sha512-cwESVXlO3url9YWlFW\u002FTA9cshCEhtu7IKJ\u002Fp5soJ\u002FgGpj7vbvFrAY\u002FeIioQ6Dw23KjZhYgiIo8HOs1nQ2vr\u002FoQ==\"\n },\n \"use-subscription\": {\n \"version\": \"1.5.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fuse-subscription\u002F-\u002Fuse-subscription-1.5.0.tgz\",\n \"integrity\": \"sha512-\u002FFVRiB2I7NDjzWoNBYPt6YkkvleMm\u002FlFtxj1hH6nX2TVrJ\u002F5UTbovw9OE1efv2Zl0HoAYuTjM7zHd9OsABn5sg==\",\n \"requires\": {\n \"object-assign\": \"^4.1.1\"\n }\n },\n \"util\": {\n \"version\": \"0.11.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Futil\u002F-\u002Futil-0.11.1.tgz\",\n \"integrity\": \"sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM\u002FS5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW\u002FNdn2NB\u002FHQ==\",\n \"requires\": {\n \"inherits\": \"2.0.3\"\n },\n \"dependencies\": {\n \"inherits\": {\n \"version\": \"2.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Finherits\u002F-\u002Finherits-2.0.3.tgz\",\n \"integrity\": \"sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=\"\n }\n }\n },\n \"util-deprecate\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Futil-deprecate\u002F-\u002Futil-deprecate-1.0.2.tgz\",\n \"integrity\": \"sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=\"\n },\n \"uuid\": {\n \"version\": \"3.4.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fuuid\u002F-\u002Fuuid-3.4.0.tgz\",\n \"integrity\": \"sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S\u002FbReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb\u002FA==\",\n \"dev\": true\n },\n \"v8-compile-cache\": {\n \"version\": \"2.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fv8-compile-cache\u002F-\u002Fv8-compile-cache-2.2.0.tgz\",\n \"integrity\": \"sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K\u002F9rfpZR3VLX+YWBbKoxCgS43Q==\",\n \"dev\": true\n },\n \"v8-to-istanbul\": {\n \"version\": \"4.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fv8-to-istanbul\u002F-\u002Fv8-to-istanbul-4.1.4.tgz\",\n \"integrity\": \"sha512-Rw6vJHj1mbdK8edjR7+zuJrpDtKIgNdAvTSAcpYfgMIw+u2dPDntD3dgN4XQFLU2\u002FfvFQdzj+EeSGfd\u002FjnY5fQ==\",\n \"dev\": true,\n \"requires\": {\n \"@types\u002Fistanbul-lib-coverage\": \"^2.0.1\",\n \"convert-source-map\": \"^1.6.0\",\n \"source-map\": \"^0.7.3\"\n },\n \"dependencies\": {\n \"source-map\": {\n \"version\": \"0.7.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.7.3.tgz\",\n \"integrity\": \"sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==\",\n \"dev\": true\n }\n }\n },\n \"validate-npm-package-license\": {\n \"version\": \"3.0.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fvalidate-npm-package-license\u002F-\u002Fvalidate-npm-package-license-3.0.4.tgz\",\n \"integrity\": \"sha512-DpKm2Ui\u002FxN7\u002FHQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3\u002FJmbhsDo7fcAJq4s9h27Ew==\",\n \"dev\": true,\n \"requires\": {\n \"spdx-correct\": \"^3.0.0\",\n \"spdx-expression-parse\": \"^3.0.0\"\n }\n },\n \"verror\": {\n \"version\": \"1.10.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fverror\u002F-\u002Fverror-1.10.0.tgz\",\n \"integrity\": \"sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=\",\n \"dev\": true,\n \"requires\": {\n \"assert-plus\": \"^1.0.0\",\n \"core-util-is\": \"1.0.2\",\n \"extsprintf\": \"^1.2.0\"\n }\n },\n \"vm-browserify\": {\n \"version\": \"1.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fvm-browserify\u002F-\u002Fvm-browserify-1.1.2.tgz\",\n \"integrity\": \"sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd\u002FRRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==\"\n },\n \"w3c-hr-time\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fw3c-hr-time\u002F-\u002Fw3c-hr-time-1.0.2.tgz\",\n \"integrity\": \"sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo\u002FYe3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==\",\n \"dev\": true,\n \"requires\": {\n \"browser-process-hrtime\": \"^1.0.0\"\n }\n },\n \"w3c-xmlserializer\": {\n \"version\": \"1.1.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fw3c-xmlserializer\u002F-\u002Fw3c-xmlserializer-1.1.2.tgz\",\n \"integrity\": \"sha512-p10l\u002FayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==\",\n \"dev\": true,\n \"requires\": {\n \"domexception\": \"^1.0.1\",\n \"webidl-conversions\": \"^4.0.2\",\n \"xml-name-validator\": \"^3.0.0\"\n }\n },\n \"walker\": {\n \"version\": \"1.0.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwalker\u002F-\u002Fwalker-1.0.7.tgz\",\n \"integrity\": \"sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=\",\n \"dev\": true,\n \"requires\": {\n \"makeerror\": \"1.0.x\"\n }\n },\n \"watchpack\": {\n \"version\": \"2.0.0-beta.13\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwatchpack\u002F-\u002Fwatchpack-2.0.0-beta.13.tgz\",\n \"integrity\": \"sha512-ZEFq2mx\u002Fk5qgQwgi6NOm+2ImICb8ngAkA\u002FrZ6oyXZ7SgPn3pncf+nfhYTCrs3lmHwOxnPtGLTOuFLfpSMh1VMA==\",\n \"requires\": {\n \"glob-to-regexp\": \"^0.4.1\",\n \"graceful-fs\": \"^4.1.2\"\n }\n },\n \"watchpack-chokidar2\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwatchpack-chokidar2\u002F-\u002Fwatchpack-chokidar2-2.0.1.tgz\",\n \"integrity\": \"sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5\u002FPpw2P2B\u002F3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==\",\n \"optional\": true,\n \"requires\": {\n \"chokidar\": \"^2.1.8\"\n },\n \"dependencies\": {\n \"anymatch\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fanymatch\u002F-\u002Fanymatch-2.0.0.tgz\",\n \"integrity\": \"sha512-5teOsQWABXHHBFP9y3skS5P3d\u002FWfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==\",\n \"optional\": true,\n \"requires\": {\n \"micromatch\": \"^3.1.4\",\n \"normalize-path\": \"^2.1.1\"\n },\n \"dependencies\": {\n \"normalize-path\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fnormalize-path\u002F-\u002Fnormalize-path-2.1.1.tgz\",\n \"integrity\": \"sha1-GrKLVW4Zg2Oowab35vogE3\u002Fmrtk=\",\n \"optional\": true,\n \"requires\": {\n \"remove-trailing-separator\": \"^1.0.1\"\n }\n }\n }\n },\n \"binary-extensions\": {\n \"version\": \"1.13.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbinary-extensions\u002F-\u002Fbinary-extensions-1.13.1.tgz\",\n \"integrity\": \"sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==\",\n \"optional\": true\n },\n \"braces\": {\n \"version\": \"2.3.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbraces\u002F-\u002Fbraces-2.3.2.tgz\",\n \"integrity\": \"sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc\u002FEoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==\",\n \"optional\": true,\n \"requires\": {\n \"arr-flatten\": \"^1.1.0\",\n \"array-unique\": \"^0.3.2\",\n \"extend-shallow\": \"^2.0.1\",\n \"fill-range\": \"^4.0.0\",\n \"isobject\": \"^3.0.1\",\n \"repeat-element\": \"^1.1.2\",\n \"snapdragon\": \"^0.8.1\",\n \"snapdragon-node\": \"^2.0.1\",\n \"split-string\": \"^3.0.2\",\n \"to-regex\": \"^3.0.1\"\n },\n \"dependencies\": {\n \"extend-shallow\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fextend-shallow\u002F-\u002Fextend-shallow-2.0.1.tgz\",\n \"integrity\": \"sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=\",\n \"optional\": true,\n \"requires\": {\n \"is-extendable\": \"^0.1.0\"\n }\n }\n }\n },\n \"chokidar\": {\n \"version\": \"2.1.8\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fchokidar\u002F-\u002Fchokidar-2.1.8.tgz\",\n \"integrity\": \"sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==\",\n \"optional\": true,\n \"requires\": {\n \"anymatch\": \"^2.0.0\",\n \"async-each\": \"^1.0.1\",\n \"braces\": \"^2.3.2\",\n \"fsevents\": \"^1.2.7\",\n \"glob-parent\": \"^3.1.0\",\n \"inherits\": \"^2.0.3\",\n \"is-binary-path\": \"^1.0.0\",\n \"is-glob\": \"^4.0.0\",\n \"normalize-path\": \"^3.0.0\",\n \"path-is-absolute\": \"^1.0.0\",\n \"readdirp\": \"^2.2.1\",\n \"upath\": \"^1.1.1\"\n }\n },\n \"fill-range\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffill-range\u002F-\u002Ffill-range-4.0.0.tgz\",\n \"integrity\": \"sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=\",\n \"optional\": true,\n \"requires\": {\n \"extend-shallow\": \"^2.0.1\",\n \"is-number\": \"^3.0.0\",\n \"repeat-string\": \"^1.6.1\",\n \"to-regex-range\": \"^2.1.0\"\n },\n \"dependencies\": {\n \"extend-shallow\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fextend-shallow\u002F-\u002Fextend-shallow-2.0.1.tgz\",\n \"integrity\": \"sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=\",\n \"optional\": true,\n \"requires\": {\n \"is-extendable\": \"^0.1.0\"\n }\n }\n }\n },\n \"fsevents\": {\n \"version\": \"1.2.13\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffsevents\u002F-\u002Ffsevents-1.2.13.tgz\",\n \"integrity\": \"sha512-oWb1Z6mkHIskLzEJ\u002FXWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk\u002FRZwbgG4brR5BeWECw==\",\n \"optional\": true,\n \"requires\": {\n \"bindings\": \"^1.5.0\",\n \"nan\": \"^2.12.1\"\n }\n },\n \"glob-parent\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fglob-parent\u002F-\u002Fglob-parent-3.1.0.tgz\",\n \"integrity\": \"sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=\",\n \"optional\": true,\n \"requires\": {\n \"is-glob\": \"^3.1.0\",\n \"path-dirname\": \"^1.0.0\"\n },\n \"dependencies\": {\n \"is-glob\": {\n \"version\": \"3.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-glob\u002F-\u002Fis-glob-3.1.0.tgz\",\n \"integrity\": \"sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=\",\n \"optional\": true,\n \"requires\": {\n \"is-extglob\": \"^2.1.0\"\n }\n }\n }\n },\n \"is-binary-path\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-binary-path\u002F-\u002Fis-binary-path-1.0.1.tgz\",\n \"integrity\": \"sha1-dfFmQrSA8YenEcgUFh\u002FTpKdlWJg=\",\n \"optional\": true,\n \"requires\": {\n \"binary-extensions\": \"^1.0.0\"\n }\n },\n \"is-extendable\": {\n \"version\": \"0.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-extendable\u002F-\u002Fis-extendable-0.1.1.tgz\",\n \"integrity\": \"sha1-YrEQ4omkcUGOPsNqYX1HLjAd\u002FIk=\",\n \"optional\": true\n },\n \"is-number\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-number\u002F-\u002Fis-number-3.0.0.tgz\",\n \"integrity\": \"sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=\",\n \"optional\": true,\n \"requires\": {\n \"kind-of\": \"^3.0.2\"\n },\n \"dependencies\": {\n \"kind-of\": {\n \"version\": \"3.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-3.2.2.tgz\",\n \"integrity\": \"sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=\",\n \"optional\": true,\n \"requires\": {\n \"is-buffer\": \"^1.1.5\"\n }\n }\n }\n },\n \"isobject\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fisobject\u002F-\u002Fisobject-3.0.1.tgz\",\n \"integrity\": \"sha1-TkMekrEalzFjaqH5yNHMvP2reN8=\",\n \"optional\": true\n },\n \"micromatch\": {\n \"version\": \"3.1.10\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmicromatch\u002F-\u002Fmicromatch-3.1.10.tgz\",\n \"integrity\": \"sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==\",\n \"optional\": true,\n \"requires\": {\n \"arr-diff\": \"^4.0.0\",\n \"array-unique\": \"^0.3.2\",\n \"braces\": \"^2.3.1\",\n \"define-property\": \"^2.0.2\",\n \"extend-shallow\": \"^3.0.2\",\n \"extglob\": \"^2.0.4\",\n \"fragment-cache\": \"^0.2.1\",\n \"kind-of\": \"^6.0.2\",\n \"nanomatch\": \"^1.2.9\",\n \"object.pick\": \"^1.3.0\",\n \"regex-not\": \"^1.0.0\",\n \"snapdragon\": \"^0.8.1\",\n \"to-regex\": \"^3.0.2\"\n }\n },\n \"readable-stream\": {\n \"version\": \"2.3.7\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freadable-stream\u002F-\u002Freadable-stream-2.3.7.tgz\",\n \"integrity\": \"sha512-Ebho8K4jIbHAxnuxi7o42OrZgF\u002FZTNcsZj6nRKyUmkhLFq8CHItp\u002Ffy6hQZuZmP\u002Fn3yZ9VBUbp4zz\u002FmX8hmYPw==\",\n \"optional\": true,\n \"requires\": {\n \"core-util-is\": \"~1.0.0\",\n \"inherits\": \"~2.0.3\",\n \"isarray\": \"~1.0.0\",\n \"process-nextick-args\": \"~2.0.0\",\n \"safe-buffer\": \"~5.1.1\",\n \"string_decoder\": \"~1.1.1\",\n \"util-deprecate\": \"~1.0.1\"\n }\n },\n \"readdirp\": {\n \"version\": \"2.2.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Freaddirp\u002F-\u002Freaddirp-2.2.1.tgz\",\n \"integrity\": \"sha512-1JU\u002F8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==\",\n \"optional\": true,\n \"requires\": {\n \"graceful-fs\": \"^4.1.11\",\n \"micromatch\": \"^3.1.10\",\n \"readable-stream\": \"^2.0.2\"\n }\n },\n \"string_decoder\": {\n \"version\": \"1.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring_decoder\u002F-\u002Fstring_decoder-1.1.1.tgz\",\n \"integrity\": \"sha512-n\u002FShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP\u002FmzRfwg==\",\n \"optional\": true,\n \"requires\": {\n \"safe-buffer\": \"~5.1.0\"\n }\n },\n \"to-regex-range\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fto-regex-range\u002F-\u002Fto-regex-range-2.1.1.tgz\",\n \"integrity\": \"sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=\",\n \"optional\": true,\n \"requires\": {\n \"is-number\": \"^3.0.0\",\n \"repeat-string\": \"^1.6.1\"\n }\n }\n }\n },\n \"webidl-conversions\": {\n \"version\": \"4.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwebidl-conversions\u002F-\u002Fwebidl-conversions-4.0.2.tgz\",\n \"integrity\": \"sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==\"\n },\n \"webpack\": {\n \"version\": \"4.44.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwebpack\u002F-\u002Fwebpack-4.44.1.tgz\",\n \"integrity\": \"sha512-4UOGAohv\u002FVGUNQJstzEywwNxqX417FnjZgZJpJQegddzPmTvph37eBIRbRTfdySXzVtJXLJfbMN3mMYhM6GdmQ==\",\n \"requires\": {\n \"@webassemblyjs\u002Fast\": \"1.9.0\",\n \"@webassemblyjs\u002Fhelper-module-context\": \"1.9.0\",\n \"@webassemblyjs\u002Fwasm-edit\": \"1.9.0\",\n \"@webassemblyjs\u002Fwasm-parser\": \"1.9.0\",\n \"acorn\": \"^6.4.1\",\n \"ajv\": \"^6.10.2\",\n \"ajv-keywords\": \"^3.4.1\",\n \"chrome-trace-event\": \"^1.0.2\",\n \"enhanced-resolve\": \"^4.3.0\",\n \"eslint-scope\": \"^4.0.3\",\n \"json-parse-better-errors\": \"^1.0.2\",\n \"loader-runner\": \"^2.4.0\",\n \"loader-utils\": \"^1.2.3\",\n \"memory-fs\": \"^0.4.1\",\n \"micromatch\": \"^3.1.10\",\n \"mkdirp\": \"^0.5.3\",\n \"neo-async\": \"^2.6.1\",\n \"node-libs-browser\": \"^2.2.1\",\n \"schema-utils\": \"^1.0.0\",\n \"tapable\": \"^1.1.3\",\n \"terser-webpack-plugin\": \"^1.4.3\",\n \"watchpack\": \"^1.7.4\",\n \"webpack-sources\": \"^1.4.1\"\n },\n \"dependencies\": {\n \"acorn\": {\n \"version\": \"6.4.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Facorn\u002F-\u002Facorn-6.4.2.tgz\",\n \"integrity\": \"sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh\u002F7+gfDBmHCQ==\"\n },\n \"braces\": {\n \"version\": \"2.3.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fbraces\u002F-\u002Fbraces-2.3.2.tgz\",\n \"integrity\": \"sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc\u002FEoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==\",\n \"requires\": {\n \"arr-flatten\": \"^1.1.0\",\n \"array-unique\": \"^0.3.2\",\n \"extend-shallow\": \"^2.0.1\",\n \"fill-range\": \"^4.0.0\",\n \"isobject\": \"^3.0.1\",\n \"repeat-element\": \"^1.1.2\",\n \"snapdragon\": \"^0.8.1\",\n \"snapdragon-node\": \"^2.0.1\",\n \"split-string\": \"^3.0.2\",\n \"to-regex\": \"^3.0.1\"\n },\n \"dependencies\": {\n \"extend-shallow\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fextend-shallow\u002F-\u002Fextend-shallow-2.0.1.tgz\",\n \"integrity\": \"sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=\",\n \"requires\": {\n \"is-extendable\": \"^0.1.0\"\n }\n }\n }\n },\n \"eslint-scope\": {\n \"version\": \"4.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Feslint-scope\u002F-\u002Feslint-scope-4.0.3.tgz\",\n \"integrity\": \"sha512-p7VutNr1O\u002FQrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW\u002Fy6lW3O76VaYNPKfpKrg==\",\n \"requires\": {\n \"esrecurse\": \"^4.1.0\",\n \"estraverse\": \"^4.1.1\"\n }\n },\n \"fill-range\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Ffill-range\u002F-\u002Ffill-range-4.0.0.tgz\",\n \"integrity\": \"sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=\",\n \"requires\": {\n \"extend-shallow\": \"^2.0.1\",\n \"is-number\": \"^3.0.0\",\n \"repeat-string\": \"^1.6.1\",\n \"to-regex-range\": \"^2.1.0\"\n },\n \"dependencies\": {\n \"extend-shallow\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fextend-shallow\u002F-\u002Fextend-shallow-2.0.1.tgz\",\n \"integrity\": \"sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=\",\n \"requires\": {\n \"is-extendable\": \"^0.1.0\"\n }\n }\n }\n },\n \"is-extendable\": {\n \"version\": \"0.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-extendable\u002F-\u002Fis-extendable-0.1.1.tgz\",\n \"integrity\": \"sha1-YrEQ4omkcUGOPsNqYX1HLjAd\u002FIk=\"\n },\n \"is-number\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-number\u002F-\u002Fis-number-3.0.0.tgz\",\n \"integrity\": \"sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=\",\n \"requires\": {\n \"kind-of\": \"^3.0.2\"\n },\n \"dependencies\": {\n \"kind-of\": {\n \"version\": \"3.2.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fkind-of\u002F-\u002Fkind-of-3.2.2.tgz\",\n \"integrity\": \"sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=\",\n \"requires\": {\n \"is-buffer\": \"^1.1.5\"\n }\n }\n }\n },\n \"isobject\": {\n \"version\": \"3.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fisobject\u002F-\u002Fisobject-3.0.1.tgz\",\n \"integrity\": \"sha1-TkMekrEalzFjaqH5yNHMvP2reN8=\"\n },\n \"json5\": {\n \"version\": \"1.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fjson5\u002F-\u002Fjson5-1.0.1.tgz\",\n \"integrity\": \"sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd\u002F1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==\",\n \"requires\": {\n \"minimist\": \"^1.2.0\"\n }\n },\n \"loader-utils\": {\n \"version\": \"1.4.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Floader-utils\u002F-\u002Floader-utils-1.4.0.tgz\",\n \"integrity\": \"sha512-qH0WSMBtn\u002FoHuwjy\u002FNucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==\",\n \"requires\": {\n \"big.js\": \"^5.2.2\",\n \"emojis-list\": \"^3.0.0\",\n \"json5\": \"^1.0.1\"\n }\n },\n \"micromatch\": {\n \"version\": \"3.1.10\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fmicromatch\u002F-\u002Fmicromatch-3.1.10.tgz\",\n \"integrity\": \"sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==\",\n \"requires\": {\n \"arr-diff\": \"^4.0.0\",\n \"array-unique\": \"^0.3.2\",\n \"braces\": \"^2.3.1\",\n \"define-property\": \"^2.0.2\",\n \"extend-shallow\": \"^3.0.2\",\n \"extglob\": \"^2.0.4\",\n \"fragment-cache\": \"^0.2.1\",\n \"kind-of\": \"^6.0.2\",\n \"nanomatch\": \"^1.2.9\",\n \"object.pick\": \"^1.3.0\",\n \"regex-not\": \"^1.0.0\",\n \"snapdragon\": \"^0.8.1\",\n \"to-regex\": \"^3.0.2\"\n }\n },\n \"schema-utils\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fschema-utils\u002F-\u002Fschema-utils-1.0.0.tgz\",\n \"integrity\": \"sha512-i27Mic4KovM\u002FlnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic\u002FHLU4j11mjsz2G\u002F75g==\",\n \"requires\": {\n \"ajv\": \"^6.1.0\",\n \"ajv-errors\": \"^1.0.0\",\n \"ajv-keywords\": \"^3.1.0\"\n }\n },\n \"to-regex-range\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fto-regex-range\u002F-\u002Fto-regex-range-2.1.1.tgz\",\n \"integrity\": \"sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=\",\n \"requires\": {\n \"is-number\": \"^3.0.0\",\n \"repeat-string\": \"^1.6.1\"\n }\n },\n \"watchpack\": {\n \"version\": \"1.7.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwatchpack\u002F-\u002Fwatchpack-1.7.5.tgz\",\n \"integrity\": \"sha512-9P3MWk6SrKjHsGkLT2KHXdQ\u002F9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe\u002FMQ==\",\n \"requires\": {\n \"chokidar\": \"^3.4.1\",\n \"graceful-fs\": \"^4.1.2\",\n \"neo-async\": \"^2.5.0\",\n \"watchpack-chokidar2\": \"^2.0.1\"\n }\n }\n }\n },\n \"webpack-sources\": {\n \"version\": \"1.4.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwebpack-sources\u002F-\u002Fwebpack-sources-1.4.3.tgz\",\n \"integrity\": \"sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==\",\n \"requires\": {\n \"source-list-map\": \"^2.0.0\",\n \"source-map\": \"~0.6.1\"\n },\n \"dependencies\": {\n \"source-map\": {\n \"version\": \"0.6.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz\",\n \"integrity\": \"sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\"\n }\n }\n },\n \"whatwg-encoding\": {\n \"version\": \"1.0.5\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwhatwg-encoding\u002F-\u002Fwhatwg-encoding-1.0.5.tgz\",\n \"integrity\": \"sha512-b5lim54JOPN9HtzvK9HFXvBma\u002FrnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY\u002FKNh8rxSo9DKQrnUEw==\",\n \"dev\": true,\n \"requires\": {\n \"iconv-lite\": \"0.4.24\"\n }\n },\n \"whatwg-mimetype\": {\n \"version\": \"2.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwhatwg-mimetype\u002F-\u002Fwhatwg-mimetype-2.3.0.tgz\",\n \"integrity\": \"sha512-M4yMwr6mAnQz76TbJm914+gPpB\u002FnCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV\u002Fvi0IC5lEAGFgrjGv\u002Fg==\",\n \"dev\": true\n },\n \"whatwg-url\": {\n \"version\": \"7.1.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwhatwg-url\u002F-\u002Fwhatwg-url-7.1.0.tgz\",\n \"integrity\": \"sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI\u002F9gzIie9CtwVLm8wtw6YJdKyxSjeg==\",\n \"requires\": {\n \"lodash.sortby\": \"^4.7.0\",\n \"tr46\": \"^1.0.1\",\n \"webidl-conversions\": \"^4.0.2\"\n }\n },\n \"which\": {\n \"version\": \"1.3.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwhich\u002F-\u002Fwhich-1.3.1.tgz\",\n \"integrity\": \"sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112\u002FTZmHxxUfuJqPXSOm7tDyas0OSIQ==\",\n \"dev\": true,\n \"requires\": {\n \"isexe\": \"^2.0.0\"\n }\n },\n \"which-module\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwhich-module\u002F-\u002Fwhich-module-2.0.0.tgz\",\n \"integrity\": \"sha1-2e8H3Od7mQK4o6j6SzHD4\u002Ffm6Ho=\",\n \"dev\": true\n },\n \"which-pm-runs\": {\n \"version\": \"1.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwhich-pm-runs\u002F-\u002Fwhich-pm-runs-1.0.0.tgz\",\n \"integrity\": \"sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=\"\n },\n \"wide-align\": {\n \"version\": \"1.1.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwide-align\u002F-\u002Fwide-align-1.1.3.tgz\",\n \"integrity\": \"sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm\u002FwG5u\u002FRSKzwdAC4i51YigihA==\",\n \"optional\": true,\n \"requires\": {\n \"string-width\": \"^1.0.2 || 2\"\n },\n \"dependencies\": {\n \"ansi-regex\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-regex\u002F-\u002Fansi-regex-3.0.0.tgz\",\n \"integrity\": \"sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=\",\n \"optional\": true\n },\n \"is-fullwidth-code-point\": {\n \"version\": \"2.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fis-fullwidth-code-point\u002F-\u002Fis-fullwidth-code-point-2.0.0.tgz\",\n \"integrity\": \"sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=\",\n \"optional\": true\n },\n \"string-width\": {\n \"version\": \"2.1.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstring-width\u002F-\u002Fstring-width-2.1.1.tgz\",\n \"integrity\": \"sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==\",\n \"optional\": true,\n \"requires\": {\n \"is-fullwidth-code-point\": \"^2.0.0\",\n \"strip-ansi\": \"^4.0.0\"\n }\n },\n \"strip-ansi\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstrip-ansi\u002F-\u002Fstrip-ansi-4.0.0.tgz\",\n \"integrity\": \"sha1-qEeQIusaw2iocTibY1JixQXuNo8=\",\n \"optional\": true,\n \"requires\": {\n \"ansi-regex\": \"^3.0.0\"\n }\n }\n }\n },\n \"word-wrap\": {\n \"version\": \"1.2.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fword-wrap\u002F-\u002Fword-wrap-1.2.3.tgz\",\n \"integrity\": \"sha512-Hz\u002FmrNwitNRh\u002FHUAtM\u002FVT\u002F5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==\",\n \"dev\": true\n },\n \"worker-farm\": {\n \"version\": \"1.7.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fworker-farm\u002F-\u002Fworker-farm-1.7.0.tgz\",\n \"integrity\": \"sha512-rvw3QTZc8lAxyVrqcSGVm5yP\u002FIJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB\u002FT5M+FLcRPjz4TDacRf3OCfNUzw==\",\n \"requires\": {\n \"errno\": \"~0.1.7\"\n }\n },\n \"wrap-ansi\": {\n \"version\": \"6.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwrap-ansi\u002F-\u002Fwrap-ansi-6.2.0.tgz\",\n \"integrity\": \"sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ\u002FSOIZwINatK9KY\u002Ftf+ZrlywOKU0UDj3ATXUBfxJXA==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-styles\": \"^4.0.0\",\n \"string-width\": \"^4.1.0\",\n \"strip-ansi\": \"^6.0.0\"\n },\n \"dependencies\": {\n \"ansi-styles\": {\n \"version\": \"4.3.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz\",\n \"integrity\": \"sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\",\n \"dev\": true,\n \"requires\": {\n \"color-convert\": \"^2.0.1\"\n }\n },\n \"color-convert\": {\n \"version\": \"2.0.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz\",\n \"integrity\": \"sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\",\n \"dev\": true,\n \"requires\": {\n \"color-name\": \"~1.1.4\"\n }\n },\n \"color-name\": {\n \"version\": \"1.1.4\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz\",\n \"integrity\": \"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\",\n \"dev\": true\n },\n \"strip-ansi\": {\n \"version\": \"6.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fstrip-ansi\u002F-\u002Fstrip-ansi-6.0.0.tgz\",\n \"integrity\": \"sha512-AuvKTrTfQNYNIctbR1K\u002FYGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==\",\n \"dev\": true,\n \"requires\": {\n \"ansi-regex\": \"^5.0.0\"\n }\n }\n }\n },\n \"wrappy\": {\n \"version\": \"1.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwrappy\u002F-\u002Fwrappy-1.0.2.tgz\",\n \"integrity\": \"sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=\"\n },\n \"write\": {\n \"version\": \"1.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwrite\u002F-\u002Fwrite-1.0.3.tgz\",\n \"integrity\": \"sha512-\u002Flg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==\",\n \"dev\": true,\n \"requires\": {\n \"mkdirp\": \"^0.5.1\"\n }\n },\n \"write-file-atomic\": {\n \"version\": \"3.0.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fwrite-file-atomic\u002F-\u002Fwrite-file-atomic-3.0.3.tgz\",\n \"integrity\": \"sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8\u002F9My\u002FDD9onKeu\u002F94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1\u002FPV\u002FQ==\",\n \"dev\": true,\n \"requires\": {\n \"imurmurhash\": \"^0.1.4\",\n \"is-typedarray\": \"^1.0.0\",\n \"signal-exit\": \"^3.0.2\",\n \"typedarray-to-buffer\": \"^3.1.5\"\n }\n },\n \"ws\": {\n \"version\": \"7.3.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fws\u002F-\u002Fws-7.3.1.tgz\",\n \"integrity\": \"sha512-D3RuNkynyHmEJIpD2qrgVkc9DQ23OrN\u002FmoAwZX4L8DfvszsJxpjQuUq3LMx6HoYji9fbIOBY18XWBsAux1ZZUA==\",\n \"dev\": true\n },\n \"xml-name-validator\": {\n \"version\": \"3.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fxml-name-validator\u002F-\u002Fxml-name-validator-3.0.0.tgz\",\n \"integrity\": \"sha512-A5CUptxDsvxKJEU3yO6DuWBSJz\u002FqizqzJKOMIfUJHETbBw\u002FsFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg\u002F4Pw==\",\n \"dev\": true\n },\n \"xmlchars\": {\n \"version\": \"2.2.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fxmlchars\u002F-\u002Fxmlchars-2.2.0.tgz\",\n \"integrity\": \"sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==\",\n \"dev\": true\n },\n \"xtend\": {\n \"version\": \"4.0.2\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fxtend\u002F-\u002Fxtend-4.0.2.tgz\",\n \"integrity\": \"sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0\u002FCjtrUwFAxD82\u002FmCWbtLsGjFIad0wIsod4zrTAEQ==\"\n },\n \"y18n\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fy18n\u002F-\u002Fy18n-4.0.0.tgz\",\n \"integrity\": \"sha512-r9S\u002FZyXu\u002FXu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj\u002Fw==\"\n },\n \"yallist\": {\n \"version\": \"4.0.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fyallist\u002F-\u002Fyallist-4.0.0.tgz\",\n \"integrity\": \"sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv\u002F41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==\"\n },\n \"yaml\": {\n \"version\": \"1.10.0\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fyaml\u002F-\u002Fyaml-1.10.0.tgz\",\n \"integrity\": \"sha512-yr2icI4glYaNG+KWONODapy2\u002FjDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==\",\n \"dev\": true\n },\n \"yargs\": {\n \"version\": \"15.4.1\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fyargs\u002F-\u002Fyargs-15.4.1.tgz\",\n \"integrity\": \"sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8\u002FOVvhMrADFFEDh8DHDFRv\u002FO9i3lPhsENjO7QX0+A==\",\n \"dev\": true,\n \"requires\": {\n \"cliui\": \"^6.0.0\",\n \"decamelize\": \"^1.2.0\",\n \"find-up\": \"^4.1.0\",\n \"get-caller-file\": \"^2.0.1\",\n \"require-directory\": \"^2.1.1\",\n \"require-main-filename\": \"^2.0.0\",\n \"set-blocking\": \"^2.0.0\",\n \"string-width\": \"^4.2.0\",\n \"which-module\": \"^2.0.0\",\n \"y18n\": \"^4.0.0\",\n \"yargs-parser\": \"^18.1.2\"\n }\n },\n \"yargs-parser\": {\n \"version\": \"18.1.3\",\n \"resolved\": \"https:\u002F\u002Fregistry.npmjs.org\u002Fyargs-parser\u002F-\u002Fyargs-parser-18.1.3.tgz\",\n \"integrity\": \"sha512-o50j0JeToy\u002F4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==\",\n \"dev\": true,\n \"requires\": {\n \"camelcase\": \"^5.0.0\",\n \"decamelize\": \"^1.2.0\"\n }\n }\n }\n}\n","id":"63942381-72e2-4234-aaa3-4678244ebbda","is_binary":false,"title":"package-lock.json","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"HkgWpEv-sJO","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":null},{"code":"# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.\n# yarn lockfile v1\n\n\n\"@ampproject\u002Ftoolbox-core@^2.6.0\":\n version \"2.6.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@ampproject\u002Ftoolbox-core\u002F-\u002Ftoolbox-core-2.6.1.tgz#af97ec253bf39e5fe5121b8ec28f1f35d1878446\"\n integrity sha512-hTsd9J2yy3JPMClG8BuUhUfMDtd3oDhCuRe\u002FSyZJYQfNMN8hQHt7LNXtdOzZr0Kw7nTepHmn7GODS68fZN4OQQ==\n dependencies:\n cross-fetch \"3.0.6\"\n lru-cache \"6.0.0\"\n\n\"@ampproject\u002Ftoolbox-optimizer@2.7.0-alpha.1\":\n version \"2.7.0-alpha.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@ampproject\u002Ftoolbox-optimizer\u002F-\u002Ftoolbox-optimizer-2.7.0-alpha.1.tgz#ab4c386645f991e5da5a9d2967ed2bb734a9f6c4\"\n integrity sha512-2wTvOyM6GP6FrYQzxSQCg43STo1jMRGeDKa6YUkYXYH9fm9Wbt2wTRx+ajjb48JQ6WwUnGwga1MhQhVFzRQ+wQ==\n dependencies:\n \"@ampproject\u002Ftoolbox-core\" \"^2.6.0\"\n \"@ampproject\u002Ftoolbox-runtime-version\" \"^2.7.0-alpha.1\"\n \"@ampproject\u002Ftoolbox-script-csp\" \"^2.5.4\"\n \"@ampproject\u002Ftoolbox-validator-rules\" \"^2.5.4\"\n abort-controller \"3.0.0\"\n cross-fetch \"3.0.5\"\n cssnano-simple \"1.2.0\"\n dom-serializer \"1.0.1\"\n domhandler \"3.0.0\"\n domutils \"2.1.0\"\n htmlparser2 \"4.1.0\"\n https-proxy-agent \"5.0.0\"\n lru-cache \"6.0.0\"\n node-fetch \"2.6.0\"\n normalize-html-whitespace \"1.0.0\"\n postcss \"7.0.32\"\n postcss-safe-parser \"4.0.2\"\n terser \"5.1.0\"\n\n\"@ampproject\u002Ftoolbox-runtime-version@^2.7.0-alpha.1\":\n version \"2.7.0-alpha.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@ampproject\u002Ftoolbox-runtime-version\u002F-\u002Ftoolbox-runtime-version-2.7.0-alpha.1.tgz#2ecd603e1fc986f21048947639e99b5706e01ec3\"\n integrity sha512-JruvO4RfaC\u002FpiKOY\u002F2w6vuasNjdrHnb+xvmQTl4zBBdMsDooohZKsN9jv9YiKIdpny4MzLt1ce497840vJJq+g==\n dependencies:\n \"@ampproject\u002Ftoolbox-core\" \"^2.6.0\"\n\n\"@ampproject\u002Ftoolbox-script-csp@^2.5.4\":\n version \"2.5.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@ampproject\u002Ftoolbox-script-csp\u002F-\u002Ftoolbox-script-csp-2.5.4.tgz#d8b7b91a678ae8f263cb36d9b74e441b7d633aad\"\n integrity sha512-+knTYetI5nWllRZ9wFcj7mYxelkiiFVRAAW\u002Fhl0ad8EnKHMH82tRlk40CapEnUHhp6Er5sCYkumQ8dngs3Q4zQ==\n\n\"@ampproject\u002Ftoolbox-validator-rules@^2.5.4\":\n version \"2.5.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@ampproject\u002Ftoolbox-validator-rules\u002F-\u002Ftoolbox-validator-rules-2.5.4.tgz#7dee3a3edceefea459d060571db8cc6e7bbf0dd6\"\n integrity sha512-bS7uF+h0s5aiklc\u002FiRaujiSsiladOsZBLrJ6QImJDXvubCAQtvE7om7ShlGSXixkMAO0OVMDWyuwLlEy8V1Ing==\n dependencies:\n cross-fetch \"3.0.5\"\n\n\"@babel\u002Fcode-frame@7.10.4\", \"@babel\u002Fcode-frame@^7.0.0\", \"@babel\u002Fcode-frame@^7.10.4\":\n version \"7.10.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fcode-frame\u002F-\u002Fcode-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a\"\n integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd\u002FsGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==\n dependencies:\n \"@babel\u002Fhighlight\" \"^7.10.4\"\n\n\"@babel\u002Fcore@^7.1.0\", \"@babel\u002Fcore@^7.7.5\":\n version \"7.12.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fcore\u002F-\u002Fcore-7.12.3.tgz#1b436884e1e3bff6fb1328dc02b208759de92ad8\"\n integrity sha512-0qXcZYKZp3\u002F6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0\u002FaynWjMbiGd87EQL4WyA8reiJVh92AVla9g==\n dependencies:\n \"@babel\u002Fcode-frame\" \"^7.10.4\"\n \"@babel\u002Fgenerator\" \"^7.12.1\"\n \"@babel\u002Fhelper-module-transforms\" \"^7.12.1\"\n \"@babel\u002Fhelpers\" \"^7.12.1\"\n \"@babel\u002Fparser\" \"^7.12.3\"\n \"@babel\u002Ftemplate\" \"^7.10.4\"\n \"@babel\u002Ftraverse\" \"^7.12.1\"\n \"@babel\u002Ftypes\" \"^7.12.1\"\n convert-source-map \"^1.7.0\"\n debug \"^4.1.0\"\n gensync \"^1.0.0-beta.1\"\n json5 \"^2.1.2\"\n lodash \"^4.17.19\"\n resolve \"^1.3.2\"\n semver \"^5.4.1\"\n source-map \"^0.5.0\"\n\n\"@babel\u002Fgenerator@^7.12.1\", \"@babel\u002Fgenerator@^7.12.5\":\n version \"7.12.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fgenerator\u002F-\u002Fgenerator-7.12.5.tgz#a2c50de5c8b6d708ab95be5e6053936c1884a4de\"\n integrity sha512-m16TQQJ8hPt7E+OS\u002FXVQg\u002F7U184MLXtvuGbCdA7na61vha+ImkyyNM\u002F9DDA0unYCVZn3ZOhng+qz48\u002FKBOT96A==\n dependencies:\n \"@babel\u002Ftypes\" \"^7.12.5\"\n jsesc \"^2.5.1\"\n source-map \"^0.5.0\"\n\n\"@babel\u002Fhelper-annotate-as-pure@^7.0.0\":\n version \"7.10.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fhelper-annotate-as-pure\u002F-\u002Fhelper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3\"\n integrity sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK\u002FrBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z\u002FOnId1jpJdNAZ3BFQjWG68rcA==\n dependencies:\n \"@babel\u002Ftypes\" \"^7.10.4\"\n\n\"@babel\u002Fhelper-function-name@^7.10.4\":\n version \"7.10.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fhelper-function-name\u002F-\u002Fhelper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a\"\n integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8\u002F\u002FqKkmqOckrGgTYa+6sceqQ==\n dependencies:\n \"@babel\u002Fhelper-get-function-arity\" \"^7.10.4\"\n \"@babel\u002Ftemplate\" \"^7.10.4\"\n \"@babel\u002Ftypes\" \"^7.10.4\"\n\n\"@babel\u002Fhelper-get-function-arity@^7.10.4\":\n version \"7.10.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fhelper-get-function-arity\u002F-\u002Fhelper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2\"\n integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==\n dependencies:\n \"@babel\u002Ftypes\" \"^7.10.4\"\n\n\"@babel\u002Fhelper-member-expression-to-functions@^7.12.1\":\n version \"7.12.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fhelper-member-expression-to-functions\u002F-\u002Fhelper-member-expression-to-functions-7.12.1.tgz#fba0f2fcff3fba00e6ecb664bb5e6e26e2d6165c\"\n integrity sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==\n dependencies:\n \"@babel\u002Ftypes\" \"^7.12.1\"\n\n\"@babel\u002Fhelper-module-imports@^7.0.0\", \"@babel\u002Fhelper-module-imports@^7.12.1\":\n version \"7.12.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fhelper-module-imports\u002F-\u002Fhelper-module-imports-7.12.5.tgz#1bfc0229f794988f76ed0a4d4e90860850b54dfb\"\n integrity sha512-SR713Ogqg6++uexFRORf\u002F+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==\n dependencies:\n \"@babel\u002Ftypes\" \"^7.12.5\"\n\n\"@babel\u002Fhelper-module-transforms@^7.12.1\":\n version \"7.12.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fhelper-module-transforms\u002F-\u002Fhelper-module-transforms-7.12.1.tgz#7954fec71f5b32c48e4b303b437c34453fd7247c\"\n integrity sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV\u002Fw==\n dependencies:\n \"@babel\u002Fhelper-module-imports\" \"^7.12.1\"\n \"@babel\u002Fhelper-replace-supers\" \"^7.12.1\"\n \"@babel\u002Fhelper-simple-access\" \"^7.12.1\"\n \"@babel\u002Fhelper-split-export-declaration\" \"^7.11.0\"\n \"@babel\u002Fhelper-validator-identifier\" \"^7.10.4\"\n \"@babel\u002Ftemplate\" \"^7.10.4\"\n \"@babel\u002Ftraverse\" \"^7.12.1\"\n \"@babel\u002Ftypes\" \"^7.12.1\"\n lodash \"^4.17.19\"\n\n\"@babel\u002Fhelper-optimise-call-expression@^7.10.4\":\n version \"7.10.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fhelper-optimise-call-expression\u002F-\u002Fhelper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673\"\n integrity sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==\n dependencies:\n \"@babel\u002Ftypes\" \"^7.10.4\"\n\n\"@babel\u002Fhelper-plugin-utils@^7.0.0\", \"@babel\u002Fhelper-plugin-utils@^7.10.4\", \"@babel\u002Fhelper-plugin-utils@^7.8.0\":\n version \"7.10.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fhelper-plugin-utils\u002F-\u002Fhelper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375\"\n integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj\u002FrfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==\n\n\"@babel\u002Fhelper-replace-supers@^7.12.1\":\n version \"7.12.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fhelper-replace-supers\u002F-\u002Fhelper-replace-supers-7.12.5.tgz#f009a17543bbbbce16b06206ae73b63d3fca68d9\"\n integrity sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==\n dependencies:\n \"@babel\u002Fhelper-member-expression-to-functions\" \"^7.12.1\"\n \"@babel\u002Fhelper-optimise-call-expression\" \"^7.10.4\"\n \"@babel\u002Ftraverse\" \"^7.12.5\"\n \"@babel\u002Ftypes\" \"^7.12.5\"\n\n\"@babel\u002Fhelper-simple-access@^7.12.1\":\n version \"7.12.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fhelper-simple-access\u002F-\u002Fhelper-simple-access-7.12.1.tgz#32427e5aa61547d38eb1e6eaf5fd1426fdad9136\"\n integrity sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3\u002F6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==\n dependencies:\n \"@babel\u002Ftypes\" \"^7.12.1\"\n\n\"@babel\u002Fhelper-split-export-declaration@^7.11.0\":\n version \"7.11.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fhelper-split-export-declaration\u002F-\u002Fhelper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f\"\n integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==\n dependencies:\n \"@babel\u002Ftypes\" \"^7.11.0\"\n\n\"@babel\u002Fhelper-validator-identifier@^7.10.4\":\n version \"7.10.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fhelper-validator-identifier\u002F-\u002Fhelper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2\"\n integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg\u002FNhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA\u002FADXw==\n\n\"@babel\u002Fhelpers@^7.12.1\":\n version \"7.12.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fhelpers\u002F-\u002Fhelpers-7.12.5.tgz#1a1ba4a768d9b58310eda516c449913fe647116e\"\n integrity sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a\u002FUpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==\n dependencies:\n \"@babel\u002Ftemplate\" \"^7.10.4\"\n \"@babel\u002Ftraverse\" \"^7.12.5\"\n \"@babel\u002Ftypes\" \"^7.12.5\"\n\n\"@babel\u002Fhighlight@^7.10.4\":\n version \"7.10.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fhighlight\u002F-\u002Fhighlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143\"\n integrity sha512-i6rgnR\u002FYgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7\u002FRIkmA==\n dependencies:\n \"@babel\u002Fhelper-validator-identifier\" \"^7.10.4\"\n chalk \"^2.0.0\"\n js-tokens \"^4.0.0\"\n\n\"@babel\u002Fparser@^7.1.0\", \"@babel\u002Fparser@^7.10.4\", \"@babel\u002Fparser@^7.12.3\", \"@babel\u002Fparser@^7.12.5\":\n version \"7.12.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fparser\u002F-\u002Fparser-7.12.5.tgz#b4af32ddd473c0bfa643bd7ff0728b8e71b81ea0\"\n integrity sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ==\n\n\"@babel\u002Fplugin-syntax-async-generators@^7.8.4\":\n version \"7.8.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fplugin-syntax-async-generators\u002F-\u002Fplugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d\"\n integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk\u002FeDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==\n dependencies:\n \"@babel\u002Fhelper-plugin-utils\" \"^7.8.0\"\n\n\"@babel\u002Fplugin-syntax-bigint@^7.8.3\":\n version \"7.8.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fplugin-syntax-bigint\u002F-\u002Fplugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea\"\n integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE\u002FmDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe\u002FN6dCXpU+zL3Npg==\n dependencies:\n \"@babel\u002Fhelper-plugin-utils\" \"^7.8.0\"\n\n\"@babel\u002Fplugin-syntax-class-properties@^7.8.3\":\n version \"7.12.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fplugin-syntax-class-properties\u002F-\u002Fplugin-syntax-class-properties-7.12.1.tgz#bcb297c5366e79bebadef509549cd93b04f19978\"\n integrity sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==\n dependencies:\n \"@babel\u002Fhelper-plugin-utils\" \"^7.10.4\"\n\n\"@babel\u002Fplugin-syntax-import-meta@^7.8.3\":\n version \"7.10.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fplugin-syntax-import-meta\u002F-\u002Fplugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51\"\n integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==\n dependencies:\n \"@babel\u002Fhelper-plugin-utils\" \"^7.10.4\"\n\n\"@babel\u002Fplugin-syntax-json-strings@^7.8.3\":\n version \"7.8.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fplugin-syntax-json-strings\u002F-\u002Fplugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a\"\n integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT\u002FZgrFbXlDNiiaxQnAtgVCZ6jv30EA==\n dependencies:\n \"@babel\u002Fhelper-plugin-utils\" \"^7.8.0\"\n\n\"@babel\u002Fplugin-syntax-logical-assignment-operators@^7.8.3\":\n version \"7.10.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fplugin-syntax-logical-assignment-operators\u002F-\u002Fplugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699\"\n integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV\u002F4+RRszNY7D17ba0te0ig==\n dependencies:\n \"@babel\u002Fhelper-plugin-utils\" \"^7.10.4\"\n\n\"@babel\u002Fplugin-syntax-nullish-coalescing-operator@^7.8.3\":\n version \"7.8.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fplugin-syntax-nullish-coalescing-operator\u002F-\u002Fplugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9\"\n integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA\u002FR+UlWDzfnHFCxxleFT0PMIrR36XLNQ==\n dependencies:\n \"@babel\u002Fhelper-plugin-utils\" \"^7.8.0\"\n\n\"@babel\u002Fplugin-syntax-numeric-separator@^7.8.3\":\n version \"7.10.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fplugin-syntax-numeric-separator\u002F-\u002Fplugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97\"\n integrity sha512-9H6YdfkcK\u002FuOnY\u002FK7\u002FaA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==\n dependencies:\n \"@babel\u002Fhelper-plugin-utils\" \"^7.10.4\"\n\n\"@babel\u002Fplugin-syntax-object-rest-spread@^7.8.3\":\n version \"7.8.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fplugin-syntax-object-rest-spread\u002F-\u002Fplugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871\"\n integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==\n dependencies:\n \"@babel\u002Fhelper-plugin-utils\" \"^7.8.0\"\n\n\"@babel\u002Fplugin-syntax-optional-catch-binding@^7.8.3\":\n version \"7.8.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fplugin-syntax-optional-catch-binding\u002F-\u002Fplugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1\"\n integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E\u002F91FV3RjLWoVTglWcSV3Q==\n dependencies:\n \"@babel\u002Fhelper-plugin-utils\" \"^7.8.0\"\n\n\"@babel\u002Fplugin-syntax-optional-chaining@^7.8.3\":\n version \"7.8.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fplugin-syntax-optional-chaining\u002F-\u002Fplugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a\"\n integrity sha512-KoK9ErH1MBlCPxV0VANkXW2\u002Fdw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v\u002FwPTKbQgBjkg==\n dependencies:\n \"@babel\u002Fhelper-plugin-utils\" \"^7.8.0\"\n\n\"@babel\u002Fruntime-corejs3@^7.10.2\":\n version \"7.12.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fruntime-corejs3\u002F-\u002Fruntime-corejs3-7.12.5.tgz#ffee91da0eb4c6dae080774e94ba606368e414f4\"\n integrity sha512-roGr54CsTmNPPzZoCP1AmDXuBoNao7tnSA83TXTwt+UK5QVyh1DIJnrgYRPWKCF2flqZQXwa7Yr8v7VmLzF0YQ==\n dependencies:\n core-js-pure \"^3.0.0\"\n regenerator-runtime \"^0.13.4\"\n\n\"@babel\u002Fruntime@7.12.5\", \"@babel\u002Fruntime@^7.0.0\", \"@babel\u002Fruntime@^7.10.2\", \"@babel\u002Fruntime@^7.10.3\", \"@babel\u002Fruntime@^7.12.5\", \"@babel\u002Fruntime@^7.9.2\":\n version \"7.12.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Fruntime\u002F-\u002Fruntime-7.12.5.tgz#410e7e487441e1b360c29be715d870d9b985882e\"\n integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET\u002F0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==\n dependencies:\n regenerator-runtime \"^0.13.4\"\n\n\"@babel\u002Ftemplate@^7.10.4\", \"@babel\u002Ftemplate@^7.3.3\":\n version \"7.10.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Ftemplate\u002F-\u002Ftemplate-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278\"\n integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs\u002F1tA==\n dependencies:\n \"@babel\u002Fcode-frame\" \"^7.10.4\"\n \"@babel\u002Fparser\" \"^7.10.4\"\n \"@babel\u002Ftypes\" \"^7.10.4\"\n\n\"@babel\u002Ftraverse@^7.1.0\", \"@babel\u002Ftraverse@^7.12.1\", \"@babel\u002Ftraverse@^7.12.5\", \"@babel\u002Ftraverse@^7.4.5\":\n version \"7.12.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Ftraverse\u002F-\u002Ftraverse-7.12.5.tgz#78a0c68c8e8a35e4cacfd31db8bb303d5606f095\"\n integrity sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P\u002Fi83FAAcMpW8+A\u002FQayntzuqA==\n dependencies:\n \"@babel\u002Fcode-frame\" \"^7.10.4\"\n \"@babel\u002Fgenerator\" \"^7.12.5\"\n \"@babel\u002Fhelper-function-name\" \"^7.10.4\"\n \"@babel\u002Fhelper-split-export-declaration\" \"^7.11.0\"\n \"@babel\u002Fparser\" \"^7.12.5\"\n \"@babel\u002Ftypes\" \"^7.12.5\"\n debug \"^4.1.0\"\n globals \"^11.1.0\"\n lodash \"^4.17.19\"\n\n\"@babel\u002Ftypes@7.8.3\":\n version \"7.8.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Ftypes\u002F-\u002Ftypes-7.8.3.tgz#5a383dffa5416db1b73dedffd311ffd0788fb31c\"\n integrity sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU\u002FsyrhN17o1u3gx0\u002FWzJB1kwiVZAXRtWbsIPOwW8pF\u002FYJV5+nmetPzepXg==\n dependencies:\n esutils \"^2.0.2\"\n lodash \"^4.17.13\"\n to-fast-properties \"^2.0.0\"\n\n\"@babel\u002Ftypes@^7.0.0\", \"@babel\u002Ftypes@^7.10.4\", \"@babel\u002Ftypes@^7.11.0\", \"@babel\u002Ftypes@^7.12.1\", \"@babel\u002Ftypes@^7.12.5\", \"@babel\u002Ftypes@^7.3.0\", \"@babel\u002Ftypes@^7.3.3\":\n version \"7.12.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@babel\u002Ftypes\u002F-\u002Ftypes-7.12.6.tgz#ae0e55ef1cce1fbc881cd26f8234eb3e657edc96\"\n integrity sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB\u002F1b7cGXvEoKogA==\n dependencies:\n \"@babel\u002Fhelper-validator-identifier\" \"^7.10.4\"\n lodash \"^4.17.19\"\n to-fast-properties \"^2.0.0\"\n\n\"@bcoe\u002Fv8-coverage@^0.2.3\":\n version \"0.2.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@bcoe\u002Fv8-coverage\u002F-\u002Fv8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39\"\n integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==\n\n\"@cnakazawa\u002Fwatch@^1.0.3\":\n version \"1.0.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@cnakazawa\u002Fwatch\u002F-\u002Fwatch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a\"\n integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw\u002FN3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==\n dependencies:\n exec-sh \"^0.3.2\"\n minimist \"^1.2.0\"\n\n\"@emotion\u002Fis-prop-valid@^0.8.8\":\n version \"0.8.8\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@emotion\u002Fis-prop-valid\u002F-\u002Fis-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a\"\n integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==\n dependencies:\n \"@emotion\u002Fmemoize\" \"0.7.4\"\n\n\"@emotion\u002Fmemoize@0.7.4\":\n version \"0.7.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@emotion\u002Fmemoize\u002F-\u002Fmemoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb\"\n integrity sha512-Ja\u002FVfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==\n\n\"@emotion\u002Fstylis@^0.8.4\":\n version \"0.8.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@emotion\u002Fstylis\u002F-\u002Fstylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04\"\n integrity sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S\u002FYI1AYhuZ1kjaE\u002F5EaOOI2NqSylQ==\n\n\"@emotion\u002Funitless@^0.7.4\":\n version \"0.7.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@emotion\u002Funitless\u002F-\u002Funitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed\"\n integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh\u002FA96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==\n\n\"@hapi\u002Faccept@5.0.1\":\n version \"5.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@hapi\u002Faccept\u002F-\u002Faccept-5.0.1.tgz#068553e867f0f63225a506ed74e899441af53e10\"\n integrity sha512-fMr4d7zLzsAXo28PRRQPXR1o2Wmu+6z+VY1UzDp0iFo13Twj8WePakwXBiqn3E1aAlTpSNzCXdnnQXFhst8h8Q==\n dependencies:\n \"@hapi\u002Fboom\" \"9.x.x\"\n \"@hapi\u002Fhoek\" \"9.x.x\"\n\n\"@hapi\u002Fboom@9.x.x\":\n version \"9.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@hapi\u002Fboom\u002F-\u002Fboom-9.1.0.tgz#0d9517657a56ff1e0b42d0aca9da1b37706fec56\"\n integrity sha512-4nZmpp4tXbm162LaZT45P7F7sgiem8dwAh2vHWT6XX24dozNjGMg6BvKCRvtCUcmcXqeMIUqWN8Rc5X8yKuROQ==\n dependencies:\n \"@hapi\u002Fhoek\" \"9.x.x\"\n\n\"@hapi\u002Fhoek@9.x.x\":\n version \"9.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@hapi\u002Fhoek\u002F-\u002Fhoek-9.1.0.tgz#6c9eafc78c1529248f8f4d92b0799a712b6052c6\"\n integrity sha512-i9YbZPN3QgfighY\u002F1X1Pu118VUz2Fmmhd6b2n0\u002FO8YVgGGfw0FbUYoA97k7FkpGJ+pLCFEDLUmAPPV4D1kpeFw==\n\n\"@istanbuljs\u002Fload-nyc-config@^1.0.0\":\n version \"1.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@istanbuljs\u002Fload-nyc-config\u002F-\u002Fload-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced\"\n integrity sha512-VjeHSlIzpv\u002FNyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==\n dependencies:\n camelcase \"^5.3.1\"\n find-up \"^4.1.0\"\n get-package-type \"^0.1.0\"\n js-yaml \"^3.13.1\"\n resolve-from \"^5.0.0\"\n\n\"@istanbuljs\u002Fschema@^0.1.2\":\n version \"0.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@istanbuljs\u002Fschema\u002F-\u002Fschema-0.1.2.tgz#26520bf09abe4a5644cd5414e37125a8954241dd\"\n integrity sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==\n\n\"@jest\u002Fconsole@^25.5.0\":\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@jest\u002Fconsole\u002F-\u002Fconsole-25.5.0.tgz#770800799d510f37329c508a9edd0b7b447d9abb\"\n integrity sha512-T48kZa6MK1Y6k4b89sexwmSF4YLeZS\u002FUdqg3Jj3jG\u002FcHH+N\u002FsLFCEoXEDMOKugJQ9FxPN1osxIknvKkxt6MKyw==\n dependencies:\n \"@jest\u002Ftypes\" \"^25.5.0\"\n chalk \"^3.0.0\"\n jest-message-util \"^25.5.0\"\n jest-util \"^25.5.0\"\n slash \"^3.0.0\"\n\n\"@jest\u002Fcore@^25.5.4\":\n version \"25.5.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@jest\u002Fcore\u002F-\u002Fcore-25.5.4.tgz#3ef7412f7339210f003cdf36646bbca786efe7b4\"\n integrity sha512-3uSo7laYxF00Dg\u002FDMgbn4xMJKmDdWvZnf89n8Xj\u002F5\u002FAeQ2dOQmn6b6Hkj\u002FMleyzZWXpwv+WSdYWl4cLsy2JsoA==\n dependencies:\n \"@jest\u002Fconsole\" \"^25.5.0\"\n \"@jest\u002Freporters\" \"^25.5.1\"\n \"@jest\u002Ftest-result\" \"^25.5.0\"\n \"@jest\u002Ftransform\" \"^25.5.1\"\n \"@jest\u002Ftypes\" \"^25.5.0\"\n ansi-escapes \"^4.2.1\"\n chalk \"^3.0.0\"\n exit \"^0.1.2\"\n graceful-fs \"^4.2.4\"\n jest-changed-files \"^25.5.0\"\n jest-config \"^25.5.4\"\n jest-haste-map \"^25.5.1\"\n jest-message-util \"^25.5.0\"\n jest-regex-util \"^25.2.6\"\n jest-resolve \"^25.5.1\"\n jest-resolve-dependencies \"^25.5.4\"\n jest-runner \"^25.5.4\"\n jest-runtime \"^25.5.4\"\n jest-snapshot \"^25.5.1\"\n jest-util \"^25.5.0\"\n jest-validate \"^25.5.0\"\n jest-watcher \"^25.5.0\"\n micromatch \"^4.0.2\"\n p-each-series \"^2.1.0\"\n realpath-native \"^2.0.0\"\n rimraf \"^3.0.0\"\n slash \"^3.0.0\"\n strip-ansi \"^6.0.0\"\n\n\"@jest\u002Fenvironment@^25.5.0\":\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@jest\u002Fenvironment\u002F-\u002Fenvironment-25.5.0.tgz#aa33b0c21a716c65686638e7ef816c0e3a0c7b37\"\n integrity sha512-U2VXPEqL07E\u002FV7pSZMSQCvV5Ea4lqOlT+0ZFijl\u002Fi316cRMHvZ4qC+jBdryd+lmRetjQo0YIQr6cVPNxxK87mA==\n dependencies:\n \"@jest\u002Ffake-timers\" \"^25.5.0\"\n \"@jest\u002Ftypes\" \"^25.5.0\"\n jest-mock \"^25.5.0\"\n\n\"@jest\u002Ffake-timers@^25.5.0\":\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@jest\u002Ffake-timers\u002F-\u002Ffake-timers-25.5.0.tgz#46352e00533c024c90c2bc2ad9f2959f7f114185\"\n integrity sha512-9y2+uGnESw\u002FoyOI3eww9yaxdZyHq7XvprfP\u002FeeoCsjqKYts2yRlsHS\u002FSgjPDV8FyMfn2nbMy8YzUk6nyvdLOpQ==\n dependencies:\n \"@jest\u002Ftypes\" \"^25.5.0\"\n jest-message-util \"^25.5.0\"\n jest-mock \"^25.5.0\"\n jest-util \"^25.5.0\"\n lolex \"^5.0.0\"\n\n\"@jest\u002Fglobals@^25.5.2\":\n version \"25.5.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@jest\u002Fglobals\u002F-\u002Fglobals-25.5.2.tgz#5e45e9de8d228716af3257eeb3991cc2e162ca88\"\n integrity sha512-AgAS\u002FNy7Q2RCIj5kZ+0MuKM1wbF0WMLxbCVl\u002FGOMoCNbODRdJ541IxJ98xnZdVSZXivKpJlNPIWa3QmY0l4CXA==\n dependencies:\n \"@jest\u002Fenvironment\" \"^25.5.0\"\n \"@jest\u002Ftypes\" \"^25.5.0\"\n expect \"^25.5.0\"\n\n\"@jest\u002Freporters@^25.5.1\":\n version \"25.5.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@jest\u002Freporters\u002F-\u002Freporters-25.5.1.tgz#cb686bcc680f664c2dbaf7ed873e93aa6811538b\"\n integrity sha512-3jbd8pPDTuhYJ7vqiHXbSwTJQNavczPs+f1kRprRDxETeE3u6srJ+f0NPuwvOmk+lmunZzPkYWIFZDLHQPkviw==\n dependencies:\n \"@bcoe\u002Fv8-coverage\" \"^0.2.3\"\n \"@jest\u002Fconsole\" \"^25.5.0\"\n \"@jest\u002Ftest-result\" \"^25.5.0\"\n \"@jest\u002Ftransform\" \"^25.5.1\"\n \"@jest\u002Ftypes\" \"^25.5.0\"\n chalk \"^3.0.0\"\n collect-v8-coverage \"^1.0.0\"\n exit \"^0.1.2\"\n glob \"^7.1.2\"\n graceful-fs \"^4.2.4\"\n istanbul-lib-coverage \"^3.0.0\"\n istanbul-lib-instrument \"^4.0.0\"\n istanbul-lib-report \"^3.0.0\"\n istanbul-lib-source-maps \"^4.0.0\"\n istanbul-reports \"^3.0.2\"\n jest-haste-map \"^25.5.1\"\n jest-resolve \"^25.5.1\"\n jest-util \"^25.5.0\"\n jest-worker \"^25.5.0\"\n slash \"^3.0.0\"\n source-map \"^0.6.0\"\n string-length \"^3.1.0\"\n terminal-link \"^2.0.0\"\n v8-to-istanbul \"^4.1.3\"\n optionalDependencies:\n node-notifier \"^6.0.0\"\n\n\"@jest\u002Fsource-map@^25.5.0\":\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@jest\u002Fsource-map\u002F-\u002Fsource-map-25.5.0.tgz#df5c20d6050aa292c2c6d3f0d2c7606af315bd1b\"\n integrity sha512-eIGx0xN12yVpMcPaVpjXPnn3N30QGJCJQSkEDUt9x1fI1Gdvb07Ml6K5iN2hG7NmMP6FDmtPEssE3z6doOYUwQ==\n dependencies:\n callsites \"^3.0.0\"\n graceful-fs \"^4.2.4\"\n source-map \"^0.6.0\"\n\n\"@jest\u002Ftest-result@^25.5.0\":\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@jest\u002Ftest-result\u002F-\u002Ftest-result-25.5.0.tgz#139a043230cdeffe9ba2d8341b27f2efc77ce87c\"\n integrity sha512-oV+hPJgXN7IQf\u002FfHWkcS99y0smKLU2czLBJ9WA0jHITLst58HpQMtzSYxzaBvYc6U5U6jfoMthqsUlUlbRXs0A==\n dependencies:\n \"@jest\u002Fconsole\" \"^25.5.0\"\n \"@jest\u002Ftypes\" \"^25.5.0\"\n \"@types\u002Fistanbul-lib-coverage\" \"^2.0.0\"\n collect-v8-coverage \"^1.0.0\"\n\n\"@jest\u002Ftest-sequencer@^25.5.4\":\n version \"25.5.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@jest\u002Ftest-sequencer\u002F-\u002Ftest-sequencer-25.5.4.tgz#9b4e685b36954c38d0f052e596d28161bdc8b737\"\n integrity sha512-pTJGEkSeg1EkCO2YWq6hbFvKNXk8ejqlxiOg1jBNLnWrgXOkdY6UmqZpwGFXNnRt9B8nO1uWMzLLZ4eCmhkPNA==\n dependencies:\n \"@jest\u002Ftest-result\" \"^25.5.0\"\n graceful-fs \"^4.2.4\"\n jest-haste-map \"^25.5.1\"\n jest-runner \"^25.5.4\"\n jest-runtime \"^25.5.4\"\n\n\"@jest\u002Ftransform@^25.5.1\":\n version \"25.5.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@jest\u002Ftransform\u002F-\u002Ftransform-25.5.1.tgz#0469ddc17699dd2bf985db55fa0fb9309f5c2db3\"\n integrity sha512-Y8CEoVwXb4QwA6Y\u002F9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg==\n dependencies:\n \"@babel\u002Fcore\" \"^7.1.0\"\n \"@jest\u002Ftypes\" \"^25.5.0\"\n babel-plugin-istanbul \"^6.0.0\"\n chalk \"^3.0.0\"\n convert-source-map \"^1.4.0\"\n fast-json-stable-stringify \"^2.0.0\"\n graceful-fs \"^4.2.4\"\n jest-haste-map \"^25.5.1\"\n jest-regex-util \"^25.2.6\"\n jest-util \"^25.5.0\"\n micromatch \"^4.0.2\"\n pirates \"^4.0.1\"\n realpath-native \"^2.0.0\"\n slash \"^3.0.0\"\n source-map \"^0.6.1\"\n write-file-atomic \"^3.0.0\"\n\n\"@jest\u002Ftypes@^25.5.0\":\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@jest\u002Ftypes\u002F-\u002Ftypes-25.5.0.tgz#4d6a4793f7b9599fc3680877b856a97dbccf2a9d\"\n integrity sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==\n dependencies:\n \"@types\u002Fistanbul-lib-coverage\" \"^2.0.0\"\n \"@types\u002Fistanbul-reports\" \"^1.1.1\"\n \"@types\u002Fyargs\" \"^15.0.0\"\n chalk \"^3.0.0\"\n\n\"@jest\u002Ftypes@^26.6.2\":\n version \"26.6.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@jest\u002Ftypes\u002F-\u002Ftypes-26.6.2.tgz#bef5a532030e1d88a2f5a6d933f84e97226ed48e\"\n integrity sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD\u002F7SggrUlivxo5ax4KWQ==\n dependencies:\n \"@types\u002Fistanbul-lib-coverage\" \"^2.0.0\"\n \"@types\u002Fistanbul-reports\" \"^3.0.0\"\n \"@types\u002Fnode\" \"*\"\n \"@types\u002Fyargs\" \"^15.0.0\"\n chalk \"^4.0.0\"\n\n\"@next\u002Fenv@10.0.2-canary.7\":\n version \"10.0.2-canary.7\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@next\u002Fenv\u002F-\u002Fenv-10.0.2-canary.7.tgz#33265086de0c4ed1baae257297276a5ebffc09e1\"\n integrity sha512-0B2UgrWV5I5BUML9P++atkrZQvruRV4PJszNDfRbQmQor1pJe3OSMhd1dLzVVhSJqwKvolVFaNR8fnt+tyiijg==\n\n\"@next\u002Fpolyfill-module@10.0.2-canary.7\":\n version \"10.0.2-canary.7\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@next\u002Fpolyfill-module\u002F-\u002Fpolyfill-module-10.0.2-canary.7.tgz#ba1c35ada82daaa4c4c7942d8512010c7f50ee77\"\n integrity sha512-h\u002FQOk50yVa6uZ3trJt7Exf91gtUfHYLZ4ntAbqxX0DE+\u002FenkFrRtFLkkKeQKxE1DSaF8vPNfOTt8RziHr\u002F1bxQ==\n\n\"@next\u002Freact-dev-overlay@10.0.2-canary.7\":\n version \"10.0.2-canary.7\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@next\u002Freact-dev-overlay\u002F-\u002Freact-dev-overlay-10.0.2-canary.7.tgz#367ef09e250640bcb4d8c2facf8ee3df2fe870ce\"\n integrity sha512-MPRwoE+3j6HtXrVUxgDbzy1p5Hw1N+9wNIGw4PizfLFkZXZBV8q2ic2v6BPVtCmPvecgE3MsG8719aJpDPmEbQ==\n dependencies:\n \"@babel\u002Fcode-frame\" \"7.10.4\"\n ally.js \"1.4.1\"\n anser \"1.4.9\"\n chalk \"4.0.0\"\n classnames \"2.2.6\"\n data-uri-to-buffer \"3.0.0\"\n shell-quote \"1.7.2\"\n source-map \"0.8.0-beta.0\"\n stacktrace-parser \"0.1.10\"\n strip-ansi \"6.0.0\"\n\n\"@next\u002Freact-refresh-utils@10.0.2-canary.7\":\n version \"10.0.2-canary.7\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@next\u002Freact-refresh-utils\u002F-\u002Freact-refresh-utils-10.0.2-canary.7.tgz#a845ba8c3725f8f376d5c99c96708b7c79aa4140\"\n integrity sha512-g5+oq1rkCUrqWrH\u002Fz8sQ3UaV7jDYGRdkf3HYblNlpfABWk+\u002FZYJDh9c5xvsOk\u002FK\u002Fd3\u002FUfP3koZFpmRD532FeYQ==\n\n\"@sinonjs\u002Fcommons@^1.7.0\":\n version \"1.8.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@sinonjs\u002Fcommons\u002F-\u002Fcommons-1.8.1.tgz#e7df00f98a203324f6dc7cc606cad9d4a8ab2217\"\n integrity sha512-892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy\u002FDNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw==\n dependencies:\n type-detect \"4.0.8\"\n\n\"@testing-library\u002Fdom@^7.22.3\":\n version \"7.26.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@testing-library\u002Fdom\u002F-\u002Fdom-7.26.6.tgz#d558db63070a3acea5bea7e2497e631cd12541cc\"\n integrity sha512-\u002FpoL7WMpolcGFOHMcxfcFkf1u38DcBUjk3YwNYpBs\u002FMdJ546lg0YdvP2Lq3ujuQzAZxgs8vVvadj3MBnZsBjjA==\n dependencies:\n \"@babel\u002Fcode-frame\" \"^7.10.4\"\n \"@babel\u002Fruntime\" \"^7.12.5\"\n \"@types\u002Faria-query\" \"^4.2.0\"\n aria-query \"^4.2.2\"\n chalk \"^4.1.0\"\n dom-accessibility-api \"^0.5.4\"\n lz-string \"^1.4.4\"\n pretty-format \"^26.6.2\"\n\n\"@testing-library\u002Fjest-dom@^5.11.5\":\n version \"5.11.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@testing-library\u002Fjest-dom\u002F-\u002Fjest-dom-5.11.5.tgz#44010f37f4b1e15f9d433963b515db0b05182fc8\"\n integrity sha512-XI+ClHR864i6p2kRCEyhvpVejuer+ObVUF4cjCvRSF88eOMIfqw7RoS9+qoRhyigGswMfT64L6Nt0Ufotxbwtg==\n dependencies:\n \"@babel\u002Fruntime\" \"^7.9.2\"\n \"@types\u002Ftesting-library__jest-dom\" \"^5.9.1\"\n aria-query \"^4.2.2\"\n chalk \"^3.0.0\"\n css \"^3.0.0\"\n css.escape \"^1.5.1\"\n lodash \"^4.17.15\"\n redent \"^3.0.0\"\n\n\"@testing-library\u002Freact@^10.0.1\":\n version \"10.4.9\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@testing-library\u002Freact\u002F-\u002Freact-10.4.9.tgz#9faa29c6a1a217bf8bbb96a28bd29d7a847ca150\"\n integrity sha512-pHZKkqUy0tmiD81afs8xfiuseXfU\u002FN7rAX3iKjeZYje86t9VaB0LrxYVa+OOsvkrveX5jCK3IjajVn2MbePvqA==\n dependencies:\n \"@babel\u002Fruntime\" \"^7.10.3\"\n \"@testing-library\u002Fdom\" \"^7.22.3\"\n\n\"@types\u002Faria-query@^4.2.0\":\n version \"4.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Faria-query\u002F-\u002Faria-query-4.2.0.tgz#14264692a9d6e2fa4db3df5e56e94b5e25647ac0\"\n integrity sha512-iIgQNzCm0v7QMhhe4Jjn9uRh+I6GoPmt03CbEtwx3ao8\u002FEfoQcmgtqH4vQ5Db\u002FlxiIGaWDv6nwvunuh0RyX0+A==\n\n\"@types\u002Fbabel__core@^7.1.7\":\n version \"7.1.12\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fbabel__core\u002F-\u002Fbabel__core-7.1.12.tgz#4d8e9e51eb265552a7e4f1ff2219ab6133bdfb2d\"\n integrity sha512-wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq\u002F6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ==\n dependencies:\n \"@babel\u002Fparser\" \"^7.1.0\"\n \"@babel\u002Ftypes\" \"^7.0.0\"\n \"@types\u002Fbabel__generator\" \"*\"\n \"@types\u002Fbabel__template\" \"*\"\n \"@types\u002Fbabel__traverse\" \"*\"\n\n\"@types\u002Fbabel__generator@*\":\n version \"7.6.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fbabel__generator\u002F-\u002Fbabel__generator-7.6.2.tgz#f3d71178e187858f7c45e30380f8f1b7415a12d8\"\n integrity sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==\n dependencies:\n \"@babel\u002Ftypes\" \"^7.0.0\"\n\n\"@types\u002Fbabel__template@*\":\n version \"7.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fbabel__template\u002F-\u002Fbabel__template-7.0.3.tgz#b8aaeba0a45caca7b56a5de9459872dde3727214\"\n integrity sha512-uCoznIPDmnickEi6D0v11SBpW0OuVqHJCa7syXqQHy5uktSCreIlt0iglsCnmvz8yCb38hGcWeseA8cWJSwv5Q==\n dependencies:\n \"@babel\u002Fparser\" \"^7.1.0\"\n \"@babel\u002Ftypes\" \"^7.0.0\"\n\n\"@types\u002Fbabel__traverse@*\", \"@types\u002Fbabel__traverse@^7.0.6\":\n version \"7.0.15\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fbabel__traverse\u002F-\u002Fbabel__traverse-7.0.15.tgz#db9e4238931eb69ef8aab0ad6523d4d4caa39d03\"\n integrity sha512-Pzh9O3sTK8V6I1olsXpCfj2k\u002FygO2q1X0vhhnDrEQyYLHZesWz+zMZMVcwXLCYf0U36EtmyYaFGPfXlTtDHe3A==\n dependencies:\n \"@babel\u002Ftypes\" \"^7.3.0\"\n\n\"@types\u002Feslint-visitor-keys@^1.0.0\":\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Feslint-visitor-keys\u002F-\u002Feslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d\"\n integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ\u002F7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==\n\n\"@types\u002Fgraceful-fs@^4.1.2\":\n version \"4.1.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fgraceful-fs\u002F-\u002Fgraceful-fs-4.1.4.tgz#4ff9f641a7c6d1a3508ff88bc3141b152772e753\"\n integrity sha512-mWA\u002F4zFQhfvOA8zWkXobwJvBD7vzcxgrOQ0J5CH1votGqdq9m7+FwtGaqyCZqC3NyyBkc9z4m+iry4LlqcMWJg==\n dependencies:\n \"@types\u002Fnode\" \"*\"\n\n\"@types\u002Fhoist-non-react-statics@*\":\n version \"3.3.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fhoist-non-react-statics\u002F-\u002Fhoist-non-react-statics-3.3.1.tgz#1124aafe5118cb591977aeb1ceaaed1070eb039f\"\n integrity sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==\n dependencies:\n \"@types\u002Freact\" \"*\"\n hoist-non-react-statics \"^3.3.0\"\n\n\"@types\u002Fistanbul-lib-coverage@*\", \"@types\u002Fistanbul-lib-coverage@^2.0.0\", \"@types\u002Fistanbul-lib-coverage@^2.0.1\":\n version \"2.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fistanbul-lib-coverage\u002F-\u002Fistanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762\"\n integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8\u002FuVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==\n\n\"@types\u002Fistanbul-lib-report@*\":\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fistanbul-lib-report\u002F-\u002Fistanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686\"\n integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi\u002FP+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==\n dependencies:\n \"@types\u002Fistanbul-lib-coverage\" \"*\"\n\n\"@types\u002Fistanbul-reports@^1.1.1\":\n version \"1.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fistanbul-reports\u002F-\u002Fistanbul-reports-1.1.2.tgz#e875cc689e47bce549ec81f3df5e6f6f11cfaeb2\"\n integrity sha512-P\u002FW9yOX\u002F3oPZSpaYOCQzGqgCQRXn0FFO\u002FV8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==\n dependencies:\n \"@types\u002Fistanbul-lib-coverage\" \"*\"\n \"@types\u002Fistanbul-lib-report\" \"*\"\n\n\"@types\u002Fistanbul-reports@^3.0.0\":\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fistanbul-reports\u002F-\u002Fistanbul-reports-3.0.0.tgz#508b13aa344fa4976234e75dddcc34925737d821\"\n integrity sha512-nwKNbvnwJ2\u002FmndE9ItP\u002Fzc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0\u002Fezy1iKsFU2ZQiDqg4M9dN4+wZgA==\n dependencies:\n \"@types\u002Fistanbul-lib-report\" \"*\"\n\n\"@types\u002Fjest@*\":\n version \"26.0.15\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fjest\u002F-\u002Fjest-26.0.15.tgz#12e02c0372ad0548e07b9f4e19132b834cb1effe\"\n integrity sha512-s2VMReFXRg9XXxV+CW9e5Nz8fH2K1aEhwgjUqPPbQd7g95T0laAcvLv032EhFHIa5GHsZ8W7iJEQVaJq6k3Gog==\n dependencies:\n jest-diff \"^26.0.0\"\n pretty-format \"^26.0.0\"\n\n\"@types\u002Fjest@^25.1.4\":\n version \"25.2.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fjest\u002F-\u002Fjest-25.2.3.tgz#33d27e4c4716caae4eced355097a47ad363fdcaf\"\n integrity sha512-JXc1nK\u002FtXHiDhV55dvfzqtmP4S3sy3T3ouV2tkViZgxY\u002FzeUkcpQcQPGRlgF4KmWzWW5oiWYSZwtCB+2RsE4Fw==\n dependencies:\n jest-diff \"^25.2.1\"\n pretty-format \"^25.2.1\"\n\n\"@types\u002Fjson-schema@^7.0.3\", \"@types\u002Fjson-schema@^7.0.5\", \"@types\u002Fjson-schema@^7.0.6\":\n version \"7.0.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fjson-schema\u002F-\u002Fjson-schema-7.0.6.tgz#f4c7ec43e81b319a9815115031709f26987891f0\"\n integrity sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g\u002FDXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==\n\n\"@types\u002Fnode@*\":\n version \"14.14.7\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fnode\u002F-\u002Fnode-14.14.7.tgz#8ea1e8f8eae2430cf440564b98c6dfce1ec5945d\"\n integrity sha512-Zw1vhUSQZYw+7u5dAwNbIA9TuTotpzY\u002FOF7sJM9FqPOF3SPjKnxrjoTktXDZgUjybf4cWVBP7O8wvKdSaGHweg==\n\n\"@types\u002Fnode@^13.9.5\":\n version \"13.13.30\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fnode\u002F-\u002Fnode-13.13.30.tgz#1ed6e01e4ca576d5aec9cc802cc3bcf94c274192\"\n integrity sha512-HmqFpNzp3TSELxU\u002FbUuRK+xzarVOAsR00hzcvM0TXrMlt\u002F+wcSLa5q6YhTb6\u002FcA6wqDCZLDcfd8fSL95x5h7AA==\n\n\"@types\u002Fnormalize-package-data@^2.4.0\":\n version \"2.4.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fnormalize-package-data\u002F-\u002Fnormalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e\"\n integrity sha512-f5j5b\u002FGf71L+dbqxIpQ4Z2WlmI\u002FmPJ0fOkGGmFgtb6sAu97EPczzbS3\u002FtJKxmcYDj55OX6ssqwDAWOHIYDRDGA==\n\n\"@types\u002Fparse-json@^4.0.0\":\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fparse-json\u002F-\u002Fparse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0\"\n integrity sha512-\u002F\u002FoorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl\u002FL5wOnpyBGRe\u002FMmf5CVW3PwEBE1NjiMZ\u002FssFh4wA==\n\n\"@types\u002Fprettier@^1.19.0\":\n version \"1.19.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fprettier\u002F-\u002Fprettier-1.19.1.tgz#33509849f8e679e4add158959fdb086440e9553f\"\n integrity sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ==\n\n\"@types\u002Fprop-types@*\":\n version \"15.7.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fprop-types\u002F-\u002Fprop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7\"\n integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==\n\n\"@types\u002Freact-native@*\":\n version \"0.63.33\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Freact-native\u002F-\u002Freact-native-0.63.33.tgz#cd7123a872fcda8f2563c324ff7d35fc91d86d81\"\n integrity sha512-bqRtJI4EwiV3OTc9pHjmtE\u002FZIOLYi9KbrnMWyJIb90Z7+eXKPimKPTBU1oDVNdw8CXkDCrZaengvvdu2JMvjtg==\n dependencies:\n \"@types\u002Freact\" \"*\"\n\n\"@types\u002Freact-virtualized-auto-sizer@^1.0.0\":\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Freact-virtualized-auto-sizer\u002F-\u002Freact-virtualized-auto-sizer-1.0.0.tgz#fc32f30a8dab527b5816f3a757e1e1d040c8f272\"\n integrity sha512-NMErdIdSnm2j\u002F7IqMteRiRvRulpjoELnXWUwdbucYCz84xG9PHcoOrr7QfXwB\u002Fku7wd6egiKFrzt\u002F+QK4Imeeg==\n dependencies:\n \"@types\u002Freact\" \"*\"\n\n\"@types\u002Freact-window-infinite-loader@^1.0.3\":\n version \"1.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Freact-window-infinite-loader\u002F-\u002Freact-window-infinite-loader-1.0.3.tgz#fade6e7c625a348e83c4e1f0c897736537bc7f8c\"\n integrity sha512-P+XLcLxH23dwDJgPr571vUL79n++pHweCaCa5XocyxEt9YqdV627F6TCM\u002F\u002F2zoUbGw\u002FJnT94F8kSJ7\u002FijcUSIg==\n dependencies:\n \"@types\u002Freact\" \"*\"\n \"@types\u002Freact-window\" \"*\"\n\n\"@types\u002Freact-window@*\", \"@types\u002Freact-window@^1.8.2\":\n version \"1.8.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Freact-window\u002F-\u002Freact-window-1.8.2.tgz#a5a6b2762ce73ffaab7911ee1397cf645f2459fe\"\n integrity sha512-gP1xam68Wc4ZTAee++zx6pTdDAH08rAkQrWm4B4F\u002Fy6hhmlT9Mgx2q8lTCXnrPHXsr15XjRN9+K2DLKcz44qEQ==\n dependencies:\n \"@types\u002Freact\" \"*\"\n\n\"@types\u002Freact@*\", \"@types\u002Freact@^16.9.27\":\n version \"16.9.56\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Freact\u002F-\u002Freact-16.9.56.tgz#ea25847b53c5bec064933095fc366b1462e2adf0\"\n integrity sha512-gIkl4J44G\u002FqxbuC6r2Xh+D3CGZpJ+NdWTItAPmZbR5mUS+JQ8Zvzpl0ea5qT\u002FZT3ZNTUcDKUVqV3xBE8wv\u002FDyQ==\n dependencies:\n \"@types\u002Fprop-types\" \"*\"\n csstype \"^3.0.2\"\n\n\"@types\u002Fstack-utils@^1.0.1\":\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fstack-utils\u002F-\u002Fstack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e\"\n integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==\n\n\"@types\u002Fstyled-components@^5.1.4\":\n version \"5.1.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fstyled-components\u002F-\u002Fstyled-components-5.1.4.tgz#11f167dbde268635c66adc89b5a5db2e69d75384\"\n integrity sha512-78f5Zuy0v\u002FLTQNOYfpH+CINHpchzMMmAt9amY2YNtSgsk1TmlKm8L2Wijss\u002FmtTrsUAVTm2CdGB8VOM65vA8xg==\n dependencies:\n \"@types\u002Fhoist-non-react-statics\" \"*\"\n \"@types\u002Freact\" \"*\"\n \"@types\u002Freact-native\" \"*\"\n csstype \"^3.0.2\"\n\n\"@types\u002Ftesting-library__jest-dom@^5.9.1\":\n version \"5.9.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Ftesting-library__jest-dom\u002F-\u002Ftesting-library__jest-dom-5.9.5.tgz#5bf25c91ad2d7b38f264b12275e5c92a66d849b0\"\n integrity sha512-ggn3ws+yRbOHog9GxnXiEZ\u002F35Mow6YtPZpd7Z5mKDeZS\u002Fo7zx3yAle0ov\u002FwjhVB5QT4N2Dt+GNoGCdqkBGCajQ==\n dependencies:\n \"@types\u002Fjest\" \"*\"\n\n\"@types\u002Fyargs-parser@*\":\n version \"15.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fyargs-parser\u002F-\u002Fyargs-parser-15.0.0.tgz#cb3f9f741869e20cce330ffbeb9271590483882d\"\n integrity sha512-FA\u002FBWv8t8ZWJ+gEOnLLd8ygxH\u002F2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==\n\n\"@types\u002Fyargs@^15.0.0\":\n version \"15.0.9\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@types\u002Fyargs\u002F-\u002Fyargs-15.0.9.tgz#524cd7998fe810cdb02f26101b699cccd156ff19\"\n integrity sha512-HmU8SeIRhZCWcnRskCs36Q1Q00KBV6Cqh\u002Fora8WN1+22dY07AZdn6Gel8QZ3t26XYPImtcL8WV\u002FeqjhVmMEw4g==\n dependencies:\n \"@types\u002Fyargs-parser\" \"*\"\n\n\"@typescript-eslint\u002Feslint-plugin@^2.25.0\":\n version \"2.34.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@typescript-eslint\u002Feslint-plugin\u002F-\u002Feslint-plugin-2.34.0.tgz#6f8ce8a46c7dea4a6f1d171d2bb8fbae6dac2be9\"\n integrity sha512-4zY3Z88rEE99+CNvTbXSyovv2z9PNOVffTWD2W8QF5s2prBQtwN2zadqERcrHpcR7O\u002F+KMI3fcTAmUUhK\u002FiQcQ==\n dependencies:\n \"@typescript-eslint\u002Fexperimental-utils\" \"2.34.0\"\n functional-red-black-tree \"^1.0.1\"\n regexpp \"^3.0.0\"\n tsutils \"^3.17.1\"\n\n\"@typescript-eslint\u002Fexperimental-utils@2.34.0\":\n version \"2.34.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@typescript-eslint\u002Fexperimental-utils\u002F-\u002Fexperimental-utils-2.34.0.tgz#d3524b644cdb40eebceca67f8cf3e4cc9c8f980f\"\n integrity sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg\u002FnS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA==\n dependencies:\n \"@types\u002Fjson-schema\" \"^7.0.3\"\n \"@typescript-eslint\u002Ftypescript-estree\" \"2.34.0\"\n eslint-scope \"^5.0.0\"\n eslint-utils \"^2.0.0\"\n\n\"@typescript-eslint\u002Fparser@^2.25.0\":\n version \"2.34.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@typescript-eslint\u002Fparser\u002F-\u002Fparser-2.34.0.tgz#50252630ca319685420e9a39ca05fe185a256bc8\"\n integrity sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3\u002FZ3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA==\n dependencies:\n \"@types\u002Feslint-visitor-keys\" \"^1.0.0\"\n \"@typescript-eslint\u002Fexperimental-utils\" \"2.34.0\"\n \"@typescript-eslint\u002Ftypescript-estree\" \"2.34.0\"\n eslint-visitor-keys \"^1.1.0\"\n\n\"@typescript-eslint\u002Ftypescript-estree@2.34.0\":\n version \"2.34.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@typescript-eslint\u002Ftypescript-estree\u002F-\u002Ftypescript-estree-2.34.0.tgz#14aeb6353b39ef0732cc7f1b8285294937cf37d5\"\n integrity sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG\u002FFCwnKhXCIM7hnVg==\n dependencies:\n debug \"^4.1.1\"\n eslint-visitor-keys \"^1.1.0\"\n glob \"^7.1.6\"\n is-glob \"^4.0.1\"\n lodash \"^4.17.15\"\n semver \"^7.3.2\"\n tsutils \"^3.17.1\"\n\n\"@webassemblyjs\u002Fast@1.9.0\":\n version \"1.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@webassemblyjs\u002Fast\u002F-\u002Fast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964\"\n integrity sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN\u002F\u002FYisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH\u002FRJyEA==\n dependencies:\n \"@webassemblyjs\u002Fhelper-module-context\" \"1.9.0\"\n \"@webassemblyjs\u002Fhelper-wasm-bytecode\" \"1.9.0\"\n \"@webassemblyjs\u002Fwast-parser\" \"1.9.0\"\n\n\"@webassemblyjs\u002Ffloating-point-hex-parser@1.9.0\":\n version \"1.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@webassemblyjs\u002Ffloating-point-hex-parser\u002F-\u002Ffloating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4\"\n integrity sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey\u002F7YL\u002FxN+36rRjl\u002FBlGE\u002FNcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==\n\n\"@webassemblyjs\u002Fhelper-api-error@1.9.0\":\n version \"1.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@webassemblyjs\u002Fhelper-api-error\u002F-\u002Fhelper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2\"\n integrity sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==\n\n\"@webassemblyjs\u002Fhelper-buffer@1.9.0\":\n version \"1.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@webassemblyjs\u002Fhelper-buffer\u002F-\u002Fhelper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00\"\n integrity sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e\u002FPpKSiLfyetpaBnogSbNCfBwyB00CA==\n\n\"@webassemblyjs\u002Fhelper-code-frame@1.9.0\":\n version \"1.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@webassemblyjs\u002Fhelper-code-frame\u002F-\u002Fhelper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27\"\n integrity sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq\u002FME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==\n dependencies:\n \"@webassemblyjs\u002Fwast-printer\" \"1.9.0\"\n\n\"@webassemblyjs\u002Fhelper-fsm@1.9.0\":\n version \"1.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@webassemblyjs\u002Fhelper-fsm\u002F-\u002Fhelper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8\"\n integrity sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH\u002FdWKlk\u002FmzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==\n\n\"@webassemblyjs\u002Fhelper-module-context@1.9.0\":\n version \"1.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@webassemblyjs\u002Fhelper-module-context\u002F-\u002Fhelper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07\"\n integrity sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8\u002F7ph\u002FVGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==\n dependencies:\n \"@webassemblyjs\u002Fast\" \"1.9.0\"\n\n\"@webassemblyjs\u002Fhelper-wasm-bytecode@1.9.0\":\n version \"1.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@webassemblyjs\u002Fhelper-wasm-bytecode\u002F-\u002Fhelper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790\"\n integrity sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId\u002FhMOd20I+v8wDXEn+bjfKDLzTepoaUw==\n\n\"@webassemblyjs\u002Fhelper-wasm-section@1.9.0\":\n version \"1.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@webassemblyjs\u002Fhelper-wasm-section\u002F-\u002Fhelper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346\"\n integrity sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==\n dependencies:\n \"@webassemblyjs\u002Fast\" \"1.9.0\"\n \"@webassemblyjs\u002Fhelper-buffer\" \"1.9.0\"\n \"@webassemblyjs\u002Fhelper-wasm-bytecode\" \"1.9.0\"\n \"@webassemblyjs\u002Fwasm-gen\" \"1.9.0\"\n\n\"@webassemblyjs\u002Fieee754@1.9.0\":\n version \"1.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@webassemblyjs\u002Fieee754\u002F-\u002Fieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4\"\n integrity sha512-dcX8JuYU\u002FgvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==\n dependencies:\n \"@xtuc\u002Fieee754\" \"^1.2.0\"\n\n\"@webassemblyjs\u002Fleb128@1.9.0\":\n version \"1.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@webassemblyjs\u002Fleb128\u002F-\u002Fleb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95\"\n integrity sha512-ENVzM5VwV1ojs9jam6vPys97B\u002FS65YQtv\u002FaanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==\n dependencies:\n \"@xtuc\u002Flong\" \"4.2.2\"\n\n\"@webassemblyjs\u002Futf8@1.9.0\":\n version \"1.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@webassemblyjs\u002Futf8\u002F-\u002Futf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab\"\n integrity sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge\u002FMf+csMJAjEdSwhOyLAS0AoR3AG5P8w==\n\n\"@webassemblyjs\u002Fwasm-edit@1.9.0\":\n version \"1.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@webassemblyjs\u002Fwasm-edit\u002F-\u002Fwasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf\"\n integrity sha512-FgHzBm80uwz5M8WKnMTn6j\u002FsVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==\n dependencies:\n \"@webassemblyjs\u002Fast\" \"1.9.0\"\n \"@webassemblyjs\u002Fhelper-buffer\" \"1.9.0\"\n \"@webassemblyjs\u002Fhelper-wasm-bytecode\" \"1.9.0\"\n \"@webassemblyjs\u002Fhelper-wasm-section\" \"1.9.0\"\n \"@webassemblyjs\u002Fwasm-gen\" \"1.9.0\"\n \"@webassemblyjs\u002Fwasm-opt\" \"1.9.0\"\n \"@webassemblyjs\u002Fwasm-parser\" \"1.9.0\"\n \"@webassemblyjs\u002Fwast-printer\" \"1.9.0\"\n\n\"@webassemblyjs\u002Fwasm-gen@1.9.0\":\n version \"1.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@webassemblyjs\u002Fwasm-gen\u002F-\u002Fwasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c\"\n integrity sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO\u002FBHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==\n dependencies:\n \"@webassemblyjs\u002Fast\" \"1.9.0\"\n \"@webassemblyjs\u002Fhelper-wasm-bytecode\" \"1.9.0\"\n \"@webassemblyjs\u002Fieee754\" \"1.9.0\"\n \"@webassemblyjs\u002Fleb128\" \"1.9.0\"\n \"@webassemblyjs\u002Futf8\" \"1.9.0\"\n\n\"@webassemblyjs\u002Fwasm-opt@1.9.0\":\n version \"1.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@webassemblyjs\u002Fwasm-opt\u002F-\u002Fwasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61\"\n integrity sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP\u002FFwkl2A==\n dependencies:\n \"@webassemblyjs\u002Fast\" \"1.9.0\"\n \"@webassemblyjs\u002Fhelper-buffer\" \"1.9.0\"\n \"@webassemblyjs\u002Fwasm-gen\" \"1.9.0\"\n \"@webassemblyjs\u002Fwasm-parser\" \"1.9.0\"\n\n\"@webassemblyjs\u002Fwasm-parser@1.9.0\":\n version \"1.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@webassemblyjs\u002Fwasm-parser\u002F-\u002Fwasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e\"\n integrity sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==\n dependencies:\n \"@webassemblyjs\u002Fast\" \"1.9.0\"\n \"@webassemblyjs\u002Fhelper-api-error\" \"1.9.0\"\n \"@webassemblyjs\u002Fhelper-wasm-bytecode\" \"1.9.0\"\n \"@webassemblyjs\u002Fieee754\" \"1.9.0\"\n \"@webassemblyjs\u002Fleb128\" \"1.9.0\"\n \"@webassemblyjs\u002Futf8\" \"1.9.0\"\n\n\"@webassemblyjs\u002Fwast-parser@1.9.0\":\n version \"1.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@webassemblyjs\u002Fwast-parser\u002F-\u002Fwast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914\"\n integrity sha512-qsqSAP3QQ3LyZjNC\u002F0jBJ\u002FToSxfYJ8kYyuiGvtn\u002F8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==\n dependencies:\n \"@webassemblyjs\u002Fast\" \"1.9.0\"\n \"@webassemblyjs\u002Ffloating-point-hex-parser\" \"1.9.0\"\n \"@webassemblyjs\u002Fhelper-api-error\" \"1.9.0\"\n \"@webassemblyjs\u002Fhelper-code-frame\" \"1.9.0\"\n \"@webassemblyjs\u002Fhelper-fsm\" \"1.9.0\"\n \"@xtuc\u002Flong\" \"4.2.2\"\n\n\"@webassemblyjs\u002Fwast-printer@1.9.0\":\n version \"1.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@webassemblyjs\u002Fwast-printer\u002F-\u002Fwast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899\"\n integrity sha512-2J0nE95rHXHyQ24cWjMKJ1tqB\u002Fds8z\u002FcyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==\n dependencies:\n \"@webassemblyjs\u002Fast\" \"1.9.0\"\n \"@webassemblyjs\u002Fwast-parser\" \"1.9.0\"\n \"@xtuc\u002Flong\" \"4.2.2\"\n\n\"@xtuc\u002Fieee754@^1.2.0\":\n version \"1.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@xtuc\u002Fieee754\u002F-\u002Fieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790\"\n integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT\u002FMIYTOTPeA==\n\n\"@xtuc\u002Flong@4.2.2\":\n version \"4.2.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002F@xtuc\u002Flong\u002F-\u002Flong-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d\"\n integrity sha512-NuHqBY1PB\u002FD8xU6s\u002FthBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN\u002FYPhktdIoucipkAQ==\n\nabab@^2.0.0:\n version \"2.0.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fabab\u002F-\u002Fabab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a\"\n integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M\u002FJwmUa8idz6Eci6eKfJryPs6Q==\n\nabort-controller@3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fabort-controller\u002F-\u002Fabort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392\"\n integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5\u002F+l06Au2Pcriv\u002FGmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==\n dependencies:\n event-target-shim \"^5.0.0\"\n\nacorn-globals@^4.3.2:\n version \"4.3.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Facorn-globals\u002F-\u002Facorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7\"\n integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==\n dependencies:\n acorn \"^6.0.1\"\n acorn-walk \"^6.0.1\"\n\nacorn-jsx@^5.2.0:\n version \"5.3.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Facorn-jsx\u002F-\u002Facorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b\"\n integrity sha512-K0Ptm\u002F47OKfQRpNQ2J\u002FoIN\u002F3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg\u002Fg+zi1E+jvJha5ng==\n\nacorn-walk@^6.0.1:\n version \"6.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Facorn-walk\u002F-\u002Facorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c\"\n integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe\u002F\u002FvS0QqfqqjCS2JkiIs0cA==\n\nacorn@^6.0.1, acorn@^6.4.1:\n version \"6.4.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Facorn\u002F-\u002Facorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6\"\n integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh\u002F7+gfDBmHCQ==\n\nacorn@^7.1.0, acorn@^7.1.1:\n version \"7.4.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Facorn\u002F-\u002Facorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa\"\n integrity sha512-nQyp0o1\u002FmNdbTO1PO6kHkwSrmgZ0MT\u002FjCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==\n\nadjust-sourcemap-loader@3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fadjust-sourcemap-loader\u002F-\u002Fadjust-sourcemap-loader-3.0.0.tgz#5ae12fb5b7b1c585e80bbb5a63ec163a1a45e61e\"\n integrity sha512-YBrGyT2\u002FuVQ\u002Fc6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E\u002Fri63RYyG1IacMZtqw==\n dependencies:\n loader-utils \"^2.0.0\"\n regex-parser \"^2.2.11\"\n\nagent-base@6:\n version \"6.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fagent-base\u002F-\u002Fagent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77\"\n integrity sha512-RZNwNclF7+MS\u002F8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==\n dependencies:\n debug \"4\"\n\naggregate-error@^3.0.0:\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Faggregate-error\u002F-\u002Faggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a\"\n integrity sha512-4I7Td01quW\u002FRpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==\n dependencies:\n clean-stack \"^2.0.0\"\n indent-string \"^4.0.0\"\n\najv-errors@^1.0.0:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fajv-errors\u002F-\u002Fajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d\"\n integrity sha512-DCRfO\u002F4nQ+89p\u002FRK43i8Ezd41EqdGIU4ld7nGF8OQ14oc\u002Fwe5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==\n\najv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2:\n version \"3.5.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fajv-keywords\u002F-\u002Fajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d\"\n integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq\u002F3hvfwd1aof6L386Ougkx6RfyMIQ==\n\najv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5:\n version \"6.12.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fajv\u002F-\u002Fajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4\"\n integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==\n dependencies:\n fast-deep-equal \"^3.1.1\"\n fast-json-stable-stringify \"^2.0.0\"\n json-schema-traverse \"^0.4.1\"\n uri-js \"^4.2.2\"\n\nally.js@1.4.1:\n version \"1.4.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fally.js\u002F-\u002Fally.js-1.4.1.tgz#9fb7e6ba58efac4ee9131cb29aa9ee3b540bcf1e\"\n integrity sha1-n7fmuljvrE7pExyymqnuO1QLzx4=\n dependencies:\n css.escape \"^1.5.0\"\n platform \"1.3.3\"\n\nanser@1.4.9:\n version \"1.4.9\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fanser\u002F-\u002Fanser-1.4.9.tgz#1f85423a5dcf8da4631a341665ff675b96845760\"\n integrity sha512-AI+BjTeGt2+WFk4eWcqbQ7snZpDBt8SaLlj0RT2h5xfdWaiy51OjYvqwMrNzJLGy8iOAL6nKDITWO+rd4MkYEA==\n\nansi-colors@^4.1.1:\n version \"4.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fansi-colors\u002F-\u002Fansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348\"\n integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666\u002FhhCGKN5t9QFjbJQKUU\u002Fg8MNbFDbvfrgKXvI1QpZplPOnwIo99lX\u002FAAmA==\n\nansi-escapes@^4.2.1, ansi-escapes@^4.3.0:\n version \"4.3.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fansi-escapes\u002F-\u002Fansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61\"\n integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly\u002FLmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==\n dependencies:\n type-fest \"^0.11.0\"\n\nansi-regex@^2.0.0:\n version \"2.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fansi-regex\u002F-\u002Fansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df\"\n integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8=\n\nansi-regex@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fansi-regex\u002F-\u002Fansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998\"\n integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=\n\nansi-regex@^4.1.0:\n version \"4.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fansi-regex\u002F-\u002Fansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997\"\n integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p\u002FrmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==\n\nansi-regex@^5.0.0:\n version \"5.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fansi-regex\u002F-\u002Fansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75\"\n integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f\u002Flg==\n\nansi-styles@^3.2.0, ansi-styles@^3.2.1:\n version \"3.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fansi-styles\u002F-\u002Fansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d\"\n integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm\u002Fu+NqfsAxEpWO0Pf9sq8\u002Fe94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==\n dependencies:\n color-convert \"^1.9.0\"\n\nansi-styles@^4.0.0, ansi-styles@^4.1.0:\n version \"4.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fansi-styles\u002F-\u002Fansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937\"\n integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==\n dependencies:\n color-convert \"^2.0.1\"\n\nanymatch@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fanymatch\u002F-\u002Fanymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb\"\n integrity sha512-5teOsQWABXHHBFP9y3skS5P3d\u002FWfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==\n dependencies:\n micromatch \"^3.1.4\"\n normalize-path \"^2.1.1\"\n\nanymatch@^3.0.3, anymatch@~3.1.1:\n version \"3.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fanymatch\u002F-\u002Fanymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142\"\n integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==\n dependencies:\n normalize-path \"^3.0.0\"\n picomatch \"^2.0.4\"\n\naproba@^1.0.3, aproba@^1.1.1:\n version \"1.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Faproba\u002F-\u002Faproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a\"\n integrity sha512-Y9J6ZjXtoYh8RnXVCMOU\u002FttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==\n\nare-we-there-yet@~1.1.2:\n version \"1.1.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fare-we-there-yet\u002F-\u002Fare-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21\"\n integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q\u002FgYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==\n dependencies:\n delegates \"^1.0.0\"\n readable-stream \"^2.0.6\"\n\nargparse@^1.0.7:\n version \"1.0.10\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fargparse\u002F-\u002Fargparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911\"\n integrity sha512-o5Roy6tNG4SL\u002FFOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==\n dependencies:\n sprintf-js \"~1.0.2\"\n\naria-query@^4.2.2:\n version \"4.2.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Faria-query\u002F-\u002Faria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b\"\n integrity sha512-o\u002FHelwhuKpTj\u002FfrsOsbNLNgnNGVIFsVP\u002FSW2BSF14gVl7kAfMOJ6\u002F8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==\n dependencies:\n \"@babel\u002Fruntime\" \"^7.10.2\"\n \"@babel\u002Fruntime-corejs3\" \"^7.10.2\"\n\narity-n@^1.0.4:\n version \"1.0.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Farity-n\u002F-\u002Farity-n-1.0.4.tgz#d9e76b11733e08569c0847ae7b39b2860b30b745\"\n integrity sha1-2edrEXM+CFacCEeuezmyhgswt0U=\n\narr-diff@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Farr-diff\u002F-\u002Farr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520\"\n integrity sha1-1kYQdP6\u002F7HHn4VI1dhoyml3HxSA=\n\narr-flatten@^1.1.0:\n version \"1.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Farr-flatten\u002F-\u002Farr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1\"\n integrity sha512-L3hKV5R\u002Fp5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==\n\narr-union@^3.1.0:\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Farr-union\u002F-\u002Farr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4\"\n integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=\n\narray-equal@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Farray-equal\u002F-\u002Farray-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93\"\n integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=\n\narray-includes@^3.1.1:\n version \"3.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Farray-includes\u002F-\u002Farray-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348\"\n integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H\u002FXwdg+7fv3n2r\u002FisyS8EBj5b06M9kHyZuIr4El6WQ==\n dependencies:\n define-properties \"^1.1.3\"\n es-abstract \"^1.17.0\"\n is-string \"^1.0.5\"\n\narray-unique@^0.3.2:\n version \"0.3.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Farray-unique\u002F-\u002Farray-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428\"\n integrity sha1-qJS3XUvE9s1nnvMkSp\u002FY9Gri1Cg=\n\narray.prototype.flatmap@^1.2.3:\n version \"1.2.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Farray.prototype.flatmap\u002F-\u002Farray.prototype.flatmap-1.2.3.tgz#1c13f84a178566042dd63de4414440db9222e443\"\n integrity sha512-OOEk+lkePcg+ODXIpvuU9PAryCikCJyo7GlDG1upleEpQRx6mzL9puEBkozQ5iAx20KV0l3DbyQwqciJtqe5Pg==\n dependencies:\n define-properties \"^1.1.3\"\n es-abstract \"^1.17.0-next.1\"\n function-bind \"^1.1.1\"\n\nasn1.js@^5.2.0:\n version \"5.4.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fasn1.js\u002F-\u002Fasn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07\"\n integrity sha512-+I\u002F\u002F4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx\u002FUdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==\n dependencies:\n bn.js \"^4.0.0\"\n inherits \"^2.0.1\"\n minimalistic-assert \"^1.0.0\"\n safer-buffer \"^2.1.0\"\n\nasn1@~0.2.3:\n version \"0.2.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fasn1\u002F-\u002Fasn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136\"\n integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7\u002FkyEyQEagBC5mBEFlIYvdg==\n dependencies:\n safer-buffer \"~2.1.0\"\n\nassert-plus@1.0.0, assert-plus@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fassert-plus\u002F-\u002Fassert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525\"\n integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=\n\nassert@^1.1.1:\n version \"1.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fassert\u002F-\u002Fassert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb\"\n integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM\u002F3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==\n dependencies:\n object-assign \"^4.1.1\"\n util \"0.10.3\"\n\nassign-symbols@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fassign-symbols\u002F-\u002Fassign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367\"\n integrity sha1-WWZ\u002FQfrdTyDMvCu5a41Pf3jsA2c=\n\nast-types@0.13.2:\n version \"0.13.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fast-types\u002F-\u002Fast-types-0.13.2.tgz#df39b677a911a83f3a049644fb74fdded23cea48\"\n integrity sha512-uWMHxJxtfj\u002F1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA==\n\nastral-regex@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fastral-regex\u002F-\u002Fastral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9\"\n integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF\u002F1\u002FsQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==\n\nastral-regex@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fastral-regex\u002F-\u002Fastral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31\"\n integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==\n\nasync-each@^1.0.1:\n version \"1.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fasync-each\u002F-\u002Fasync-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf\"\n integrity sha512-z\u002FWhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7\u002FuSckMetoRGb5UBZPC1z0jlw+n\u002FXCgjeH7y1AQ==\n\nasynckit@^0.4.0:\n version \"0.4.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fasynckit\u002F-\u002Fasynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79\"\n integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=\n\natob@^2.1.2:\n version \"2.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fatob\u002F-\u002Fatob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9\"\n integrity sha512-Wm6ukoaOGJi\u002F73p\u002Fcl2GvLjTI5JM1k\u002FO14isD73YML8StrH\u002F7\u002FlRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==\n\naws-sign2@~0.7.0:\n version \"0.7.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Faws-sign2\u002F-\u002Faws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8\"\n integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=\n\naws4@^1.8.0:\n version \"1.11.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Faws4\u002F-\u002Faws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59\"\n integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==\n\nbabel-jest@^25.2.3, babel-jest@^25.5.1:\n version \"25.5.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbabel-jest\u002F-\u002Fbabel-jest-25.5.1.tgz#bc2e6101f849d6f6aec09720ffc7bc5332e62853\"\n integrity sha512-9dA9+GmMjIzgPnYtkhBg73gOo\u002FRHqPmLruP3BaGL4KEX3Dwz6pI8auSN8G8+iuEG90+GSswyKvslN+JYSaacaQ==\n dependencies:\n \"@jest\u002Ftransform\" \"^25.5.1\"\n \"@jest\u002Ftypes\" \"^25.5.0\"\n \"@types\u002Fbabel__core\" \"^7.1.7\"\n babel-plugin-istanbul \"^6.0.0\"\n babel-preset-jest \"^25.5.0\"\n chalk \"^3.0.0\"\n graceful-fs \"^4.2.4\"\n slash \"^3.0.0\"\n\nbabel-plugin-istanbul@^6.0.0:\n version \"6.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbabel-plugin-istanbul\u002F-\u002Fbabel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765\"\n integrity sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE\u002FQtHmqtP8SWlTENqbK8GCSQ==\n dependencies:\n \"@babel\u002Fhelper-plugin-utils\" \"^7.0.0\"\n \"@istanbuljs\u002Fload-nyc-config\" \"^1.0.0\"\n \"@istanbuljs\u002Fschema\" \"^0.1.2\"\n istanbul-lib-instrument \"^4.0.0\"\n test-exclude \"^6.0.0\"\n\nbabel-plugin-jest-hoist@^25.5.0:\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbabel-plugin-jest-hoist\u002F-\u002Fbabel-plugin-jest-hoist-25.5.0.tgz#129c80ba5c7fc75baf3a45b93e2e372d57ca2677\"\n integrity sha512-u+\u002FW+WAjMlvoocYGTwthAiQSxDcJAyHpQ6oWlHdFZaaN+Rlk8Q7iiwDPg2lN\u002FFyJtAYnKjFxbn7xus4HCFkg5g==\n dependencies:\n \"@babel\u002Ftemplate\" \"^7.3.3\"\n \"@babel\u002Ftypes\" \"^7.3.3\"\n \"@types\u002Fbabel__traverse\" \"^7.0.6\"\n\n\"babel-plugin-styled-components@\u003E= 1\", babel-plugin-styled-components@^1.11.1:\n version \"1.11.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbabel-plugin-styled-components\u002F-\u002Fbabel-plugin-styled-components-1.11.1.tgz#5296a9e557d736c3186be079fff27c6665d63d76\"\n integrity sha512-YwrInHyKUk1PU3avIRdiLyCpM++18Rs1NgyMXEAQC33rIXs\u002Fvro0A+stf4sT0Gf22Got+xRWB8Cm0tw+qkRzBA==\n dependencies:\n \"@babel\u002Fhelper-annotate-as-pure\" \"^7.0.0\"\n \"@babel\u002Fhelper-module-imports\" \"^7.0.0\"\n babel-plugin-syntax-jsx \"^6.18.0\"\n lodash \"^4.17.11\"\n\nbabel-plugin-syntax-jsx@6.18.0, babel-plugin-syntax-jsx@^6.18.0:\n version \"6.18.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbabel-plugin-syntax-jsx\u002F-\u002Fbabel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946\"\n integrity sha1-CvMqmm4Tyno\u002F1QaeYtew9Y0NiUY=\n\nbabel-plugin-transform-define@2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbabel-plugin-transform-define\u002F-\u002Fbabel-plugin-transform-define-2.0.0.tgz#79c3536635f899aabaf830b194b25519465675a4\"\n integrity sha512-0dv5RNRUlUKxGYIIErl01lpvi8b7W2R04Qcl1mCj70ahwZcgiklfXnFlh4FGnRh6aayCfSZKdhiMryVzcq5Dmg==\n dependencies:\n lodash \"^4.17.11\"\n traverse \"0.6.6\"\n\nbabel-plugin-transform-react-remove-prop-types@0.4.24:\n version \"0.4.24\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbabel-plugin-transform-react-remove-prop-types\u002F-\u002Fbabel-plugin-transform-react-remove-prop-types-0.4.24.tgz#f2edaf9b4c6a5fbe5c1d678bfb531078c1555f3a\"\n integrity sha512-eqj0hVcJUR57\u002FUg2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd\u002Fv+4nc4y+8JsA==\n\nbabel-preset-current-node-syntax@^0.1.2:\n version \"0.1.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbabel-preset-current-node-syntax\u002F-\u002Fbabel-preset-current-node-syntax-0.1.4.tgz#826f1f8e7245ad534714ba001f84f7e906c3b615\"\n integrity sha512-5\u002FINNCYhUGqw7VbVjT\u002Fhb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ\u002Fh+h16ECVB38R\u002F9SF6aACydpKMLZ\u002Fc9w==\n dependencies:\n \"@babel\u002Fplugin-syntax-async-generators\" \"^7.8.4\"\n \"@babel\u002Fplugin-syntax-bigint\" \"^7.8.3\"\n \"@babel\u002Fplugin-syntax-class-properties\" \"^7.8.3\"\n \"@babel\u002Fplugin-syntax-import-meta\" \"^7.8.3\"\n \"@babel\u002Fplugin-syntax-json-strings\" \"^7.8.3\"\n \"@babel\u002Fplugin-syntax-logical-assignment-operators\" \"^7.8.3\"\n \"@babel\u002Fplugin-syntax-nullish-coalescing-operator\" \"^7.8.3\"\n \"@babel\u002Fplugin-syntax-numeric-separator\" \"^7.8.3\"\n \"@babel\u002Fplugin-syntax-object-rest-spread\" \"^7.8.3\"\n \"@babel\u002Fplugin-syntax-optional-catch-binding\" \"^7.8.3\"\n \"@babel\u002Fplugin-syntax-optional-chaining\" \"^7.8.3\"\n\nbabel-preset-jest@^25.5.0:\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbabel-preset-jest\u002F-\u002Fbabel-preset-jest-25.5.0.tgz#c1d7f191829487a907764c65307faa0e66590b49\"\n integrity sha512-8ZczygctQkBU+63DtSOKGh7tFL0CeCuz+1ieud9lJ1WPQ9O6A1a\u002Fr+LGn6Y705PA6whHQ3T1XuB\u002FPmpfNYf8Fw==\n dependencies:\n babel-plugin-jest-hoist \"^25.5.0\"\n babel-preset-current-node-syntax \"^0.1.2\"\n\nbalanced-match@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbalanced-match\u002F-\u002Fbalanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767\"\n integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=\n\nbase64-js@^1.0.2, base64-js@^1.3.1:\n version \"1.3.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbase64-js\u002F-\u002Fbase64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1\"\n integrity sha512-mLQ4i2QO1ytvGWFWmcngKO\u002F\u002FJXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==\n\nbase@^0.11.1:\n version \"0.11.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbase\u002F-\u002Fbase-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f\"\n integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==\n dependencies:\n cache-base \"^1.0.1\"\n class-utils \"^0.3.5\"\n component-emitter \"^1.2.1\"\n define-property \"^1.0.0\"\n isobject \"^3.0.1\"\n mixin-deep \"^1.2.0\"\n pascalcase \"^0.1.1\"\n\nbcrypt-pbkdf@^1.0.0:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbcrypt-pbkdf\u002F-\u002Fbcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e\"\n integrity sha1-pDAdOJtqQ\u002Fm2f\u002FPKEaP2Y342Dp4=\n dependencies:\n tweetnacl \"^0.14.3\"\n\nbig.js@^5.2.2:\n version \"5.2.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbig.js\u002F-\u002Fbig.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328\"\n integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==\n\nbinary-extensions@^1.0.0:\n version \"1.13.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbinary-extensions\u002F-\u002Fbinary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65\"\n integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==\n\nbinary-extensions@^2.0.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbinary-extensions\u002F-\u002Fbinary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9\"\n integrity sha512-1Yj8h9Q+QDF5FzhMs\u002Fc9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==\n\nbindings@^1.5.0:\n version \"1.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbindings\u002F-\u002Fbindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df\"\n integrity sha512-p2q\u002Ft\u002FmhvuOj\u002FUeLlV6566GD\u002Fguowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==\n dependencies:\n file-uri-to-path \"1.0.0\"\n\nbl@^4.0.3:\n version \"4.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbl\u002F-\u002Fbl-4.0.3.tgz#12d6287adc29080e22a705e5764b2a9522cdc489\"\n integrity sha512-fs4G6\u002FHu4\u002FEE+F75J8DuN\u002F0IpQqNjAdC7aEQv7Qt8MHGUH7Ckv2MwTEEeN9QehD0pfIDkMI1bkHYkKy7xHyKIg==\n dependencies:\n buffer \"^5.5.0\"\n inherits \"^2.0.4\"\n readable-stream \"^3.4.0\"\n\nbluebird@^3.5.5:\n version \"3.7.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbluebird\u002F-\u002Fbluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f\"\n integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==\n\nbn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0:\n version \"4.11.9\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbn.js\u002F-\u002Fbn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828\"\n integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==\n\nbn.js@^5.1.1:\n version \"5.1.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbn.js\u002F-\u002Fbn.js-5.1.3.tgz#beca005408f642ebebea80b042b4d18d2ac0ee6b\"\n integrity sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==\n\nbrace-expansion@^1.1.7:\n version \"1.1.11\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbrace-expansion\u002F-\u002Fbrace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd\"\n integrity sha512-iCuPHDFgrHX7H2vEI\u002F5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==\n dependencies:\n balanced-match \"^1.0.0\"\n concat-map \"0.0.1\"\n\nbraces@^2.3.1, braces@^2.3.2:\n version \"2.3.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbraces\u002F-\u002Fbraces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729\"\n integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc\u002FEoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==\n dependencies:\n arr-flatten \"^1.1.0\"\n array-unique \"^0.3.2\"\n extend-shallow \"^2.0.1\"\n fill-range \"^4.0.0\"\n isobject \"^3.0.1\"\n repeat-element \"^1.1.2\"\n snapdragon \"^0.8.1\"\n snapdragon-node \"^2.0.1\"\n split-string \"^3.0.2\"\n to-regex \"^3.0.1\"\n\nbraces@^3.0.1, braces@~3.0.2:\n version \"3.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbraces\u002F-\u002Fbraces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107\"\n integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==\n dependencies:\n fill-range \"^7.0.1\"\n\nbrorand@^1.0.1:\n version \"1.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbrorand\u002F-\u002Fbrorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f\"\n integrity sha1-EsJe\u002FkCkXjwyPrhnWgoM5XsiNx8=\n\nbrowser-process-hrtime@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbrowser-process-hrtime\u002F-\u002Fbrowser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626\"\n integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==\n\nbrowser-resolve@^1.11.3:\n version \"1.11.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbrowser-resolve\u002F-\u002Fbrowser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6\"\n integrity sha512-exDi1BYWB\u002F6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK\u002FQfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==\n dependencies:\n resolve \"1.1.7\"\n\nbrowserify-aes@^1.0.0, browserify-aes@^1.0.4:\n version \"1.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbrowserify-aes\u002F-\u002Fbrowserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48\"\n integrity sha512-+7CHXqGuspUn\u002FSl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc\u002Fuzk5zSOI3H52CYnjCfb5hA==\n dependencies:\n buffer-xor \"^1.0.3\"\n cipher-base \"^1.0.0\"\n create-hash \"^1.1.0\"\n evp_bytestokey \"^1.0.3\"\n inherits \"^2.0.1\"\n safe-buffer \"^5.0.1\"\n\nbrowserify-cipher@^1.0.0:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbrowserify-cipher\u002F-\u002Fbrowserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0\"\n integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO\u002FmexrNunNECisZs+gw2zz1w==\n dependencies:\n browserify-aes \"^1.0.4\"\n browserify-des \"^1.0.0\"\n evp_bytestokey \"^1.0.0\"\n\nbrowserify-des@^1.0.0:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbrowserify-des\u002F-\u002Fbrowserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c\"\n integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4\u002F0\u002Fvd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==\n dependencies:\n cipher-base \"^1.0.1\"\n des.js \"^1.0.0\"\n inherits \"^2.0.1\"\n safe-buffer \"^5.1.2\"\n\nbrowserify-rsa@^4.0.0, browserify-rsa@^4.0.1:\n version \"4.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbrowserify-rsa\u002F-\u002Fbrowserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524\"\n integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=\n dependencies:\n bn.js \"^4.1.0\"\n randombytes \"^2.0.1\"\n\nbrowserify-sign@^4.0.0:\n version \"4.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbrowserify-sign\u002F-\u002Fbrowserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3\"\n integrity sha512-\u002FvrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu\u002F0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==\n dependencies:\n bn.js \"^5.1.1\"\n browserify-rsa \"^4.0.1\"\n create-hash \"^1.2.0\"\n create-hmac \"^1.1.7\"\n elliptic \"^6.5.3\"\n inherits \"^2.0.4\"\n parse-asn1 \"^5.1.5\"\n readable-stream \"^3.6.0\"\n safe-buffer \"^5.2.0\"\n\nbrowserify-zlib@^0.2.0:\n version \"0.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbrowserify-zlib\u002F-\u002Fbrowserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f\"\n integrity sha512-Z942RysHXmJrhqk88FmKBVq\u002Fv5tqmSkDz7p54G\u002FMGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==\n dependencies:\n pako \"~1.0.5\"\n\nbrowserslist@4.14.6:\n version \"4.14.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbrowserslist\u002F-\u002Fbrowserslist-4.14.6.tgz#97702a9c212e0c6b6afefad913d3a1538e348457\"\n integrity sha512-zeFYcUo85ENhc\u002FzxHbiIp0LGzzTrE2Pv2JhxvS7kpUb9Q9D38kUX6Bie7pGutJ\u002F5iF5rOxE7CepAuWD56xJ33A==\n dependencies:\n caniuse-lite \"^1.0.30001154\"\n electron-to-chromium \"^1.3.585\"\n escalade \"^3.1.1\"\n node-releases \"^1.1.65\"\n\nbser@2.1.1:\n version \"2.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbser\u002F-\u002Fbser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05\"\n integrity sha512-gQxTNE\u002FGAfIIrmHLUE3oJyp5FO6HRBfhjnw4\u002FwMmA63ZGDJnWBmgY\u002FlyQBpnDUkGmAhbSe39tx2d\u002FiTOAfglwQ==\n dependencies:\n node-int64 \"^0.4.0\"\n\nbuffer-from@^1.0.0, buffer-from@^1.1.1:\n version \"1.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbuffer-from\u002F-\u002Fbuffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef\"\n integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO\u002Fk9V3hjVUF\u002FzwW7KBVdSK4gIt\u002FbzwS9MbR5qob+F5jusZsb0YQK2A==\n\nbuffer-xor@^1.0.3:\n version \"1.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbuffer-xor\u002F-\u002Fbuffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9\"\n integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=\n\nbuffer@5.6.0:\n version \"5.6.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbuffer\u002F-\u002Fbuffer-5.6.0.tgz#a31749dc7d81d84db08abf937b6b8c4033f62786\"\n integrity sha512-\u002FgDYp\u002FUtU0eA1ys8bOs9J6a+E\u002FKWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==\n dependencies:\n base64-js \"^1.0.2\"\n ieee754 \"^1.1.4\"\n\nbuffer@^4.3.0:\n version \"4.9.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbuffer\u002F-\u002Fbuffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8\"\n integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T\u002FNB1XMtTVEwNTrfFF3gAxiyW0Bu\u002FxWEGhjVKgUcMhCrUy2+uCWg==\n dependencies:\n base64-js \"^1.0.2\"\n ieee754 \"^1.1.4\"\n isarray \"^1.0.0\"\n\nbuffer@^5.5.0:\n version \"5.7.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbuffer\u002F-\u002Fbuffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0\"\n integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY\u002F2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==\n dependencies:\n base64-js \"^1.3.1\"\n ieee754 \"^1.1.13\"\n\nbuiltin-status-codes@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbuiltin-status-codes\u002F-\u002Fbuiltin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8\"\n integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=\n\nbytes@3.1.0:\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fbytes\u002F-\u002Fbytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6\"\n integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==\n\ncacache@^12.0.2:\n version \"12.0.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcacache\u002F-\u002Fcacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c\"\n integrity sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO\u002Fu\u002FhIXdafzOI5JC3wDwHyf24buOAQ==\n dependencies:\n bluebird \"^3.5.5\"\n chownr \"^1.1.1\"\n figgy-pudding \"^3.5.1\"\n glob \"^7.1.4\"\n graceful-fs \"^4.1.15\"\n infer-owner \"^1.0.3\"\n lru-cache \"^5.1.1\"\n mississippi \"^3.0.0\"\n mkdirp \"^0.5.1\"\n move-concurrently \"^1.0.1\"\n promise-inflight \"^1.0.1\"\n rimraf \"^2.6.3\"\n ssri \"^6.0.1\"\n unique-filename \"^1.1.1\"\n y18n \"^4.0.0\"\n\ncache-base@^1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcache-base\u002F-\u002Fcache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2\"\n integrity sha512-AKcdTnFSWATd5\u002FGCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==\n dependencies:\n collection-visit \"^1.0.0\"\n component-emitter \"^1.2.1\"\n get-value \"^2.0.6\"\n has-value \"^1.0.0\"\n isobject \"^3.0.1\"\n set-value \"^2.0.0\"\n to-object-path \"^0.3.0\"\n union-value \"^1.0.0\"\n unset-value \"^1.0.0\"\n\ncall-bind@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcall-bind\u002F-\u002Fcall-bind-1.0.0.tgz#24127054bb3f9bdcb4b1fb82418186072f77b8ce\"\n integrity sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w==\n dependencies:\n function-bind \"^1.1.1\"\n get-intrinsic \"^1.0.0\"\n\ncallsites@^3.0.0:\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcallsites\u002F-\u002Fcallsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73\"\n integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==\n\ncamelcase@5.3.1, camelcase@^5.0.0, camelcase@^5.3.1:\n version \"5.3.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcamelcase\u002F-\u002Fcamelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320\"\n integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==\n\ncamelcase@^6.0.0:\n version \"6.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcamelcase\u002F-\u002Fcamelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809\"\n integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN\u002FhdLdnZTDQhg6e9Dq5M1vKvfg==\n\ncamelize@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcamelize\u002F-\u002Fcamelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b\"\n integrity sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=\n\ncaniuse-lite@^1.0.30001093, caniuse-lite@^1.0.30001113, caniuse-lite@^1.0.30001154:\n version \"1.0.30001157\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcaniuse-lite\u002F-\u002Fcaniuse-lite-1.0.30001157.tgz#2d11aaeb239b340bc1aa730eca18a37fdb07a9ab\"\n integrity sha512-gOerH9Wz2IRZ2ZPdMfBvyOi3cjaz4O4dgNwPGzx8EhqAs4+2IL\u002FO+fJsbt+znSigujoZG8bVcIAUM\u002FI\u002FE5K3MA==\n\ncapture-exit@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcapture-exit\u002F-\u002Fcapture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4\"\n integrity sha512-PiT\u002FhQmTonHhl\u002FHFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==\n dependencies:\n rsvp \"^4.8.4\"\n\ncaseless@~0.12.0:\n version \"0.12.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcaseless\u002F-\u002Fcaseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc\"\n integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=\n\nchalk@2.4.2, chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.2:\n version \"2.4.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fchalk\u002F-\u002Fchalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424\"\n integrity sha512-Mti+f9lpJNcwF4tWV8\u002FOrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==\n dependencies:\n ansi-styles \"^3.2.1\"\n escape-string-regexp \"^1.0.5\"\n supports-color \"^5.3.0\"\n\nchalk@4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fchalk\u002F-\u002Fchalk-4.0.0.tgz#6e98081ed2d17faab615eb52ac66ec1fe6209e72\"\n integrity sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==\n dependencies:\n ansi-styles \"^4.1.0\"\n supports-color \"^7.1.0\"\n\nchalk@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fchalk\u002F-\u002Fchalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4\"\n integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV\u002FuMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==\n dependencies:\n ansi-styles \"^4.1.0\"\n supports-color \"^7.1.0\"\n\nchalk@^4.0.0, chalk@^4.1.0:\n version \"4.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fchalk\u002F-\u002Fchalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a\"\n integrity sha512-qwx12AxXe2Q5xQ43Ac\u002F\u002FI6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==\n dependencies:\n ansi-styles \"^4.1.0\"\n supports-color \"^7.1.0\"\n\nchardet@^0.7.0:\n version \"0.7.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fchardet\u002F-\u002Fchardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e\"\n integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0\u002F0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==\n\nchokidar@3.4.2:\n version \"3.4.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fchokidar\u002F-\u002Fchokidar-3.4.2.tgz#38dc8e658dec3809741eb3ef7bb0a47fe424232d\"\n integrity sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A==\n dependencies:\n anymatch \"~3.1.1\"\n braces \"~3.0.2\"\n glob-parent \"~5.1.0\"\n is-binary-path \"~2.1.0\"\n is-glob \"~4.0.1\"\n normalize-path \"~3.0.0\"\n readdirp \"~3.4.0\"\n optionalDependencies:\n fsevents \"~2.1.2\"\n\nchokidar@^2.1.8:\n version \"2.1.8\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fchokidar\u002F-\u002Fchokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917\"\n integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==\n dependencies:\n anymatch \"^2.0.0\"\n async-each \"^1.0.1\"\n braces \"^2.3.2\"\n glob-parent \"^3.1.0\"\n inherits \"^2.0.3\"\n is-binary-path \"^1.0.0\"\n is-glob \"^4.0.0\"\n normalize-path \"^3.0.0\"\n path-is-absolute \"^1.0.0\"\n readdirp \"^2.2.1\"\n upath \"^1.1.1\"\n optionalDependencies:\n fsevents \"^1.2.7\"\n\nchokidar@^3.4.1:\n version \"3.4.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fchokidar\u002F-\u002Fchokidar-3.4.3.tgz#c1df38231448e45ca4ac588e6c79573ba6a57d5b\"\n integrity sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==\n dependencies:\n anymatch \"~3.1.1\"\n braces \"~3.0.2\"\n glob-parent \"~5.1.0\"\n is-binary-path \"~2.1.0\"\n is-glob \"~4.0.1\"\n normalize-path \"~3.0.0\"\n readdirp \"~3.5.0\"\n optionalDependencies:\n fsevents \"~2.1.2\"\n\nchownr@^1.1.1:\n version \"1.1.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fchownr\u002F-\u002Fchownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b\"\n integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr\u002Fb0YL8\u002F2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==\n\nchrome-trace-event@^1.0.2:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fchrome-trace-event\u002F-\u002Fchrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4\"\n integrity sha512-9e\u002Fzx1jw7B4CO+c\u002FRXoCsfg\u002Fx1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==\n dependencies:\n tslib \"^1.9.0\"\n\nci-info@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fci-info\u002F-\u002Fci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46\"\n integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1\u002FZ8wZzYPxqUrXeBboCQ==\n\ncipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:\n version \"1.0.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcipher-base\u002F-\u002Fcipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de\"\n integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj\u002FT71N\u002FXzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==\n dependencies:\n inherits \"^2.0.1\"\n safe-buffer \"^5.0.1\"\n\nclass-utils@^0.3.5:\n version \"0.3.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fclass-utils\u002F-\u002Fclass-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463\"\n integrity sha512-qOhPa\u002FFj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==\n dependencies:\n arr-union \"^3.1.0\"\n define-property \"^0.2.5\"\n isobject \"^3.0.0\"\n static-extend \"^0.1.1\"\n\nclassnames@2.2.6:\n version \"2.2.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fclassnames\u002F-\u002Fclassnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce\"\n integrity sha512-JR\u002FiSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==\n\nclean-stack@^2.0.0:\n version \"2.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fclean-stack\u002F-\u002Fclean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b\"\n integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ\u002FSMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==\n\ncli-cursor@^3.1.0:\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcli-cursor\u002F-\u002Fcli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307\"\n integrity sha512-I\u002FzHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==\n dependencies:\n restore-cursor \"^3.1.0\"\n\ncli-truncate@^2.1.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcli-truncate\u002F-\u002Fcli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7\"\n integrity sha512-n8fOixwDD6b\u002FObinzTrp1ZKFzbgvKZvuz\u002FTvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==\n dependencies:\n slice-ansi \"^3.0.0\"\n string-width \"^4.2.0\"\n\ncli-width@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcli-width\u002F-\u002Fcli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6\"\n integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ\u002FDc\u002FEWN1vZRY0+kOhbw==\n\ncliui@^6.0.0:\n version \"6.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcliui\u002F-\u002Fcliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1\"\n integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL\u002Fcvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==\n dependencies:\n string-width \"^4.2.0\"\n strip-ansi \"^6.0.0\"\n wrap-ansi \"^6.2.0\"\n\nco@^4.6.0:\n version \"4.6.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fco\u002F-\u002Fco-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184\"\n integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=\n\ncode-point-at@^1.0.0:\n version \"1.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcode-point-at\u002F-\u002Fcode-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77\"\n integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=\n\ncollect-v8-coverage@^1.0.0:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcollect-v8-coverage\u002F-\u002Fcollect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59\"\n integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==\n\ncollection-visit@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcollection-visit\u002F-\u002Fcollection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0\"\n integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=\n dependencies:\n map-visit \"^1.0.0\"\n object-visit \"^1.0.0\"\n\ncolor-convert@^1.9.0, color-convert@^1.9.1:\n version \"1.9.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcolor-convert\u002F-\u002Fcolor-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8\"\n integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G\u002FSHHJYAT88\u002Faz\u002FIuDGALsNVbGg==\n dependencies:\n color-name \"1.1.3\"\n\ncolor-convert@^2.0.1:\n version \"2.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcolor-convert\u002F-\u002Fcolor-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3\"\n integrity sha512-RRECPsj7iu\u002Fxb5oKYcsFHSppFNnsj\u002F52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK\u002FU584fMg38ZHCaElKQ==\n dependencies:\n color-name \"~1.1.4\"\n\ncolor-name@1.1.3:\n version \"1.1.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25\"\n integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=\n\ncolor-name@^1.0.0, color-name@~1.1.4:\n version \"1.1.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcolor-name\u002F-\u002Fcolor-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2\"\n integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU\u002FuBL\u002FubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==\n\ncolor-string@^1.5.4:\n version \"1.5.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcolor-string\u002F-\u002Fcolor-string-1.5.4.tgz#dd51cd25cfee953d138fe4002372cc3d0e504cb6\"\n integrity sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN\u002F4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==\n dependencies:\n color-name \"^1.0.0\"\n simple-swizzle \"^0.2.2\"\n\ncolor@^3.1.2:\n version \"3.1.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcolor\u002F-\u002Fcolor-3.1.3.tgz#ca67fb4e7b97d611dcde39eceed422067d91596e\"\n integrity sha512-xgXAcTHa2HeFCGLE9Xs\u002FR82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==\n dependencies:\n color-convert \"^1.9.1\"\n color-string \"^1.5.4\"\n\ncolorette@^1.2.1:\n version \"1.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcolorette\u002F-\u002Fcolorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b\"\n integrity sha512-puCDz0CzydiSYOrnXpz\u002FPKd69zRrribezjtE9yd4zvytoRc8+RY\u002FKJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==\n\ncombined-stream@^1.0.6, combined-stream@~1.0.6:\n version \"1.0.8\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcombined-stream\u002F-\u002Fcombined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f\"\n integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe\u002F+5cdoEdg==\n dependencies:\n delayed-stream \"~1.0.0\"\n\ncommander@^2.20.0:\n version \"2.20.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcommander\u002F-\u002Fcommander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33\"\n integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey\u002FlJEnhZw75x\u002FOMcQ==\n\ncommander@^6.2.0:\n version \"6.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcommander\u002F-\u002Fcommander-6.2.0.tgz#b990bfb8ac030aedc6d11bc04d1488ffef56db75\"\n integrity sha512-zP4jEKbe8SHzKJYQmq8Y9gYjtO\u002FPOJLgIdKgV7B9qNmABVFVc+ctqSX6iXh4mCpJfRBOabiZ2YKPg8ciDw6C+Q==\n\ncommondir@^1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcommondir\u002F-\u002Fcommondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b\"\n integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=\n\ncompare-versions@^3.6.0:\n version \"3.6.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcompare-versions\u002F-\u002Fcompare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62\"\n integrity sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4\u002F+FlaqfBA==\n\ncomponent-emitter@^1.2.1:\n version \"1.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcomponent-emitter\u002F-\u002Fcomponent-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0\"\n integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0\u002FyYnSin6Q\u002FrD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==\n\ncompose-function@3.0.3:\n version \"3.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcompose-function\u002F-\u002Fcompose-function-3.0.3.tgz#9ed675f13cc54501d30950a486ff6a7ba3ab185f\"\n integrity sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8=\n dependencies:\n arity-n \"^1.0.4\"\n\nconcat-map@0.0.1:\n version \"0.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fconcat-map\u002F-\u002Fconcat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b\"\n integrity sha1-2Klr13\u002FWjfd5OnMDajug1UBdR3s=\n\nconcat-stream@^1.5.0:\n version \"1.6.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fconcat-stream\u002F-\u002Fconcat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34\"\n integrity sha512-27HBghJxjiZtIk3Ycvn\u002F4kbJk\u002F1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==\n dependencies:\n buffer-from \"^1.0.0\"\n inherits \"^2.0.3\"\n readable-stream \"^2.2.2\"\n typedarray \"^0.0.6\"\n\nconsole-browserify@^1.1.0:\n version \"1.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fconsole-browserify\u002F-\u002Fconsole-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336\"\n integrity sha512-ZMkYO\u002FLkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==\n\nconsole-control-strings@^1.0.0, console-control-strings@~1.1.0:\n version \"1.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fconsole-control-strings\u002F-\u002Fconsole-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e\"\n integrity sha1-PXz0Rk22RG6mRL9LOVB\u002FmFEAjo4=\n\nconstants-browserify@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fconstants-browserify\u002F-\u002Fconstants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75\"\n integrity sha1-wguW2MYXdIqvHBYCF2DNJ\u002Fy4y3U=\n\nconvert-source-map@1.7.0, convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0:\n version \"1.7.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fconvert-source-map\u002F-\u002Fconvert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442\"\n integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==\n dependencies:\n safe-buffer \"~5.1.1\"\n\nconvert-source-map@^0.3.3:\n version \"0.3.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fconvert-source-map\u002F-\u002Fconvert-source-map-0.3.5.tgz#f1d802950af7dd2631a1febe0596550c86ab3190\"\n integrity sha1-8dgClQr33SYxof6+BZZVDIarMZA=\n\ncopy-concurrently@^1.0.0:\n version \"1.0.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcopy-concurrently\u002F-\u002Fcopy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0\"\n integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB\u002FQ8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T\u002FKTFOL4X2A==\n dependencies:\n aproba \"^1.1.1\"\n fs-write-stream-atomic \"^1.0.8\"\n iferr \"^0.1.5\"\n mkdirp \"^0.5.1\"\n rimraf \"^2.5.4\"\n run-queue \"^1.0.0\"\n\ncopy-descriptor@^0.1.0:\n version \"0.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcopy-descriptor\u002F-\u002Fcopy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d\"\n integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=\n\ncore-js-pure@^3.0.0:\n version \"3.7.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcore-js-pure\u002F-\u002Fcore-js-pure-3.7.0.tgz#28a57c861d5698e053f0ff36905f7a3301b4191e\"\n integrity sha512-EZD2ckZysv8MMt4J6HSvS9K2GdtlZtdBncKAmF9lr2n0c9dJUaUN88PSTjvgwCgQPWKTkERXITgS6JJRAnljtg==\n\ncore-util-is@1.0.2, core-util-is@~1.0.0:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcore-util-is\u002F-\u002Fcore-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7\"\n integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=\n\ncosmiconfig@^7.0.0:\n version \"7.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcosmiconfig\u002F-\u002Fcosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3\"\n integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==\n dependencies:\n \"@types\u002Fparse-json\" \"^4.0.0\"\n import-fresh \"^3.2.1\"\n parse-json \"^5.0.0\"\n path-type \"^4.0.0\"\n yaml \"^1.10.0\"\n\ncreate-ecdh@^4.0.0:\n version \"4.0.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcreate-ecdh\u002F-\u002Fcreate-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e\"\n integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf\u002FWs0A==\n dependencies:\n bn.js \"^4.1.0\"\n elliptic \"^6.5.3\"\n\ncreate-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0:\n version \"1.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcreate-hash\u002F-\u002Fcreate-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196\"\n integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq\u002F4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj\u002Fhl2u4OGIjapeCg==\n dependencies:\n cipher-base \"^1.0.1\"\n inherits \"^2.0.1\"\n md5.js \"^1.3.4\"\n ripemd160 \"^2.0.1\"\n sha.js \"^2.4.0\"\n\ncreate-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7:\n version \"1.1.7\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcreate-hmac\u002F-\u002Fcreate-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff\"\n integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR\u002Fg5h82fGaIRWMWddtKBHi7\u002FsVhfjQZ6SehlyhvQYrcYkaUIpLg==\n dependencies:\n cipher-base \"^1.0.3\"\n create-hash \"^1.1.0\"\n inherits \"^2.0.1\"\n ripemd160 \"^2.0.0\"\n safe-buffer \"^5.0.1\"\n sha.js \"^2.4.8\"\n\ncross-fetch@3.0.5:\n version \"3.0.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcross-fetch\u002F-\u002Fcross-fetch-3.0.5.tgz#2739d2981892e7ab488a7ad03b92df2816e03f4c\"\n integrity sha512-FFLcLtraisj5eteosnX1gf01qYDCOc4fDy0+euOt8Kn9YBY2NtXL\u002FpCoYPavw24NIQkQqm5ZOLsGD5Zzj0gyew==\n dependencies:\n node-fetch \"2.6.0\"\n\ncross-fetch@3.0.6:\n version \"3.0.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcross-fetch\u002F-\u002Fcross-fetch-3.0.6.tgz#3a4040bc8941e653e0e9cf17f29ebcd177d3365c\"\n integrity sha512-KBPUbqgFjzWlVcURG+Svp9TlhA5uliYtiNx\u002F0r8nv0pdypeQCRJ9IaSIc3q\u002Fx3q8t3F75cHuwxVql1HFGHCNJQ==\n dependencies:\n node-fetch \"2.6.1\"\n\ncross-spawn@^6.0.0, cross-spawn@^6.0.5:\n version \"6.0.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcross-spawn\u002F-\u002Fcross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4\"\n integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==\n dependencies:\n nice-try \"^1.0.4\"\n path-key \"^2.0.1\"\n semver \"^5.5.0\"\n shebang-command \"^1.2.0\"\n which \"^1.2.9\"\n\ncross-spawn@^7.0.0:\n version \"7.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcross-spawn\u002F-\u002Fcross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6\"\n integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==\n dependencies:\n path-key \"^3.1.0\"\n shebang-command \"^2.0.0\"\n which \"^2.0.1\"\n\ncrypto-browserify@3.12.0, crypto-browserify@^3.11.0:\n version \"3.12.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcrypto-browserify\u002F-\u002Fcrypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec\"\n integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+\u002FcCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==\n dependencies:\n browserify-cipher \"^1.0.0\"\n browserify-sign \"^4.0.0\"\n create-ecdh \"^4.0.0\"\n create-hash \"^1.1.0\"\n create-hmac \"^1.1.0\"\n diffie-hellman \"^5.0.0\"\n inherits \"^2.0.1\"\n pbkdf2 \"^3.0.3\"\n public-encrypt \"^4.0.0\"\n randombytes \"^2.0.0\"\n randomfill \"^1.0.3\"\n\ncss-color-keywords@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcss-color-keywords\u002F-\u002Fcss-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05\"\n integrity sha1-\u002FqJhbcZ2spYmhrOvjb2+GAskTgU=\n\ncss-loader@4.3.0:\n version \"4.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcss-loader\u002F-\u002Fcss-loader-4.3.0.tgz#c888af64b2a5b2e85462c72c0f4a85c7e2e0821e\"\n integrity sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz\u002FmFjuGOekf3PY3NUg==\n dependencies:\n camelcase \"^6.0.0\"\n cssesc \"^3.0.0\"\n icss-utils \"^4.1.1\"\n loader-utils \"^2.0.0\"\n postcss \"^7.0.32\"\n postcss-modules-extract-imports \"^2.0.0\"\n postcss-modules-local-by-default \"^3.0.3\"\n postcss-modules-scope \"^2.2.0\"\n postcss-modules-values \"^3.0.0\"\n postcss-value-parser \"^4.1.0\"\n schema-utils \"^2.7.1\"\n semver \"^7.3.2\"\n\ncss-to-react-native@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcss-to-react-native\u002F-\u002Fcss-to-react-native-3.0.0.tgz#62dbe678072a824a689bcfee011fc96e02a7d756\"\n integrity sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1\u002Fv9eYBKR2EHVEniE2MI\u002FNqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==\n dependencies:\n camelize \"^1.0.0\"\n css-color-keywords \"^1.0.0\"\n postcss-value-parser \"^4.0.2\"\n\ncss.escape@^1.5.0, css.escape@^1.5.1:\n version \"1.5.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcss.escape\u002F-\u002Fcss.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb\"\n integrity sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=\n\ncss@^2.0.0:\n version \"2.2.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcss\u002F-\u002Fcss-2.2.4.tgz#c646755c73971f2bba6a601e2cf2fd71b1298929\"\n integrity sha512-oUnjmWpy0niI3x\u002FmPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==\n dependencies:\n inherits \"^2.0.3\"\n source-map \"^0.6.1\"\n source-map-resolve \"^0.5.2\"\n urix \"^0.1.0\"\n\ncss@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcss\u002F-\u002Fcss-3.0.0.tgz#4447a4d58fdd03367c516ca9f64ae365cee4aa5d\"\n integrity sha512-DG9pFfwOrzc+hawpmqX\u002FdHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==\n dependencies:\n inherits \"^2.0.4\"\n source-map \"^0.6.1\"\n source-map-resolve \"^0.6.0\"\n\ncssesc@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcssesc\u002F-\u002Fcssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee\"\n integrity sha512-\u002FTb\u002FJcjK111nNScGob5MNtsntNM1aCNUDipB\u002FTkwZFhyDrrE47SOx\u002F18wF2bbjgc3ZzCSKW1T5nt5EbFoAz\u002FVg==\n\ncssnano-preset-simple@1.2.0:\n version \"1.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcssnano-preset-simple\u002F-\u002Fcssnano-preset-simple-1.2.0.tgz#afcf13eb076e8ebd91c4f311cd449781c14c7371\"\n integrity sha512-zojGlY+KasFeQT\u002FSnD\u002FWqYXHcKddz2XHRDtIwxrWpGqGHp5IyLWsWFS3UW7pOf3AWvfkpYSRdxOSlYuJPz8j8g==\n dependencies:\n caniuse-lite \"^1.0.30001093\"\n postcss \"^7.0.32\"\n\ncssnano-preset-simple@1.2.1:\n version \"1.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcssnano-preset-simple\u002F-\u002Fcssnano-preset-simple-1.2.1.tgz#8976013114b1fc4718253d30f21aaed1780fb80e\"\n integrity sha512-B2KahOIFTV6dw5Ioy9jHshTh\u002FvAYNnUB2enyWRgnAEg3oJBjI\u002F035ExpePaMqS2SwpbH7gCgvQqwpMBH6hTJSw==\n dependencies:\n caniuse-lite \"^1.0.30001093\"\n postcss \"^7.0.32\"\n\ncssnano-simple@1.2.0:\n version \"1.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcssnano-simple\u002F-\u002Fcssnano-simple-1.2.0.tgz#b8cc5f52c2a52e6513b4636d0da165ec9d48d327\"\n integrity sha512-pton9cZ70\u002FwOCWMAbEGHO1ACsW1KggTB6Ikj7k71uOEsz6SfByH++86+WAmXjRSc9q\u002Fg9gxkpFP9bDX9vRotdA==\n dependencies:\n cssnano-preset-simple \"1.2.0\"\n postcss \"^7.0.32\"\n\ncssnano-simple@1.2.1:\n version \"1.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcssnano-simple\u002F-\u002Fcssnano-simple-1.2.1.tgz#6de5d9dd75774bc8f31767573410a952c7dd8a12\"\n integrity sha512-9vOyjw8Dj\u002FT12kIOnXPZ5VnEIo6F3YMaIn0wqJXmn277R58cWpI3AvtdlCBtohX7VAUNYcyk2d0dKcXXkb5I6Q==\n dependencies:\n cssnano-preset-simple \"1.2.1\"\n postcss \"^7.0.32\"\n\ncssom@^0.4.1:\n version \"0.4.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcssom\u002F-\u002Fcssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10\"\n integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR\u002FNS6otuzveI7+7BBq3SjBS2mw==\n\ncssom@~0.3.6:\n version \"0.3.8\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcssom\u002F-\u002Fcssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a\"\n integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==\n\ncssstyle@^2.0.0:\n version \"2.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcssstyle\u002F-\u002Fcssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852\"\n integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi\u002F05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==\n dependencies:\n cssom \"~0.3.6\"\n\ncsstype@^3.0.2:\n version \"3.0.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcsstype\u002F-\u002Fcsstype-3.0.4.tgz#b156d7be03b84ff425c9a0a4b1e5f4da9c5ca888\"\n integrity sha512-xc8DUsCLmjvCfoD7LTGE0ou2MIWLx0K9RCZwSHMOdynqRsP4MtUcLeqh1HcQ2dInwDTqn+3CE0\u002FFZh1et+p4jA==\n\ncyclist@^1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fcyclist\u002F-\u002Fcyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9\"\n integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=\n\nd@1, d@^1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fd\u002F-\u002Fd-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a\"\n integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc\u002FF3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==\n dependencies:\n es5-ext \"^0.10.50\"\n type \"^1.0.1\"\n\ndashdash@^1.12.0:\n version \"1.14.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdashdash\u002F-\u002Fdashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0\"\n integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=\n dependencies:\n assert-plus \"^1.0.0\"\n\ndata-uri-to-buffer@3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdata-uri-to-buffer\u002F-\u002Fdata-uri-to-buffer-3.0.0.tgz#8a3088a5efd3f53c3682343313c6895d498eb8d7\"\n integrity sha512-MJ6mFTZ+nPQO+39ua\u002FltwNePXrfdF3Ww0wP1Od7EePySXN1cP9XNqRQOG3FxTfipp8jx898LUCgBCEP11Qw\u002FZQ==\n dependencies:\n buffer-from \"^1.1.1\"\n\ndata-urls@^1.1.0:\n version \"1.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdata-urls\u002F-\u002Fdata-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe\"\n integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6\u002Ft52odI64KP2YvFpkDOi3eQ==\n dependencies:\n abab \"^2.0.0\"\n whatwg-mimetype \"^2.2.0\"\n whatwg-url \"^7.0.0\"\n\ndebug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.2.0:\n version \"4.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdebug\u002F-\u002Fdebug-4.2.0.tgz#7f150f93920e94c58f5574c2fd01a3110effe7f1\"\n integrity sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99\u002FtPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ\u002FI8sg==\n dependencies:\n ms \"2.1.2\"\n\ndebug@^2.2.0, debug@^2.3.3:\n version \"2.6.9\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdebug\u002F-\u002Fdebug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f\"\n integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm\u002FE7AdgFBVeAPVMNcKGsHMA==\n dependencies:\n ms \"2.0.0\"\n\ndecamelize@^1.2.0:\n version \"1.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdecamelize\u002F-\u002Fdecamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290\"\n integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=\n\ndecode-uri-component@^0.2.0:\n version \"0.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdecode-uri-component\u002F-\u002Fdecode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545\"\n integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=\n\ndecompress-response@^4.2.0:\n version \"4.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdecompress-response\u002F-\u002Fdecompress-response-4.2.1.tgz#414023cc7a302da25ce2ec82d0d5238ccafd8986\"\n integrity sha512-jOSne2qbyE+\u002Fr8G1VU+G\u002F82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+\u002FyIXOtTcRQMzPcgyhoFlqPkw==\n dependencies:\n mimic-response \"^2.0.0\"\n\ndecompress-response@^6.0.0:\n version \"6.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdecompress-response\u002F-\u002Fdecompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc\"\n integrity sha512-aW35yZM6Bb\u002F4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==\n dependencies:\n mimic-response \"^3.1.0\"\n\ndedent@^0.7.0:\n version \"0.7.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdedent\u002F-\u002Fdedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c\"\n integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=\n\ndeep-extend@^0.6.0:\n version \"0.6.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdeep-extend\u002F-\u002Fdeep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac\"\n integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw\u002FufM8+rVj649RIHzcm\u002FvGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==\n\ndeep-is@~0.1.3:\n version \"0.1.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdeep-is\u002F-\u002Fdeep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34\"\n integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=\n\ndeepmerge@^4.2.2:\n version \"4.2.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdeepmerge\u002F-\u002Fdeepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955\"\n integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj\u002F6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==\n\ndefine-properties@^1.1.3:\n version \"1.1.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdefine-properties\u002F-\u002Fdefine-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1\"\n integrity sha512-3MqfYKj2lLzdMSf8ZIZE\u002FV+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==\n dependencies:\n object-keys \"^1.0.12\"\n\ndefine-property@^0.2.5:\n version \"0.2.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdefine-property\u002F-\u002Fdefine-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116\"\n integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=\n dependencies:\n is-descriptor \"^0.1.0\"\n\ndefine-property@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdefine-property\u002F-\u002Fdefine-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6\"\n integrity sha1-dp66rz9KY6rTr56NMEybvnm\u002FsOY=\n dependencies:\n is-descriptor \"^1.0.0\"\n\ndefine-property@^2.0.2:\n version \"2.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdefine-property\u002F-\u002Fdefine-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d\"\n integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ\u002F46ZYQ==\n dependencies:\n is-descriptor \"^1.0.2\"\n isobject \"^3.0.1\"\n\ndelayed-stream@~1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdelayed-stream\u002F-\u002Fdelayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619\"\n integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=\n\ndelegates@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdelegates\u002F-\u002Fdelegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a\"\n integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=\n\ndepd@~1.1.2:\n version \"1.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdepd\u002F-\u002Fdepd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9\"\n integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=\n\ndequal@2.0.2:\n version \"2.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdequal\u002F-\u002Fdequal-2.0.2.tgz#85ca22025e3a87e65ef75a7a437b35284a7e319d\"\n integrity sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL\u002FImpruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==\n\ndes.js@^1.0.0:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdes.js\u002F-\u002Fdes.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843\"\n integrity sha512-Q0I4pfFrv2VPd34\u002FvfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==\n dependencies:\n inherits \"^2.0.1\"\n minimalistic-assert \"^1.0.0\"\n\ndetect-libc@^1.0.3:\n version \"1.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdetect-libc\u002F-\u002Fdetect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b\"\n integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=\n\ndetect-newline@^3.0.0:\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdetect-newline\u002F-\u002Fdetect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651\"\n integrity sha512-TLz+x\u002FvEXm\u002FY7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==\n\ndiff-sequences@^25.2.6:\n version \"25.2.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdiff-sequences\u002F-\u002Fdiff-sequences-25.2.6.tgz#5f467c00edd35352b7bca46d7927d60e687a76dd\"\n integrity sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==\n\ndiff-sequences@^26.6.2:\n version \"26.6.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdiff-sequences\u002F-\u002Fdiff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1\"\n integrity sha512-Mv\u002FTDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP\u002FK47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==\n\ndiffie-hellman@^5.0.0:\n version \"5.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdiffie-hellman\u002F-\u002Fdiffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875\"\n integrity sha512-kqag\u002FNl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==\n dependencies:\n bn.js \"^4.1.0\"\n miller-rabin \"^4.0.0\"\n randombytes \"^2.0.0\"\n\ndoctrine@^2.1.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdoctrine\u002F-\u002Fdoctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d\"\n integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==\n dependencies:\n esutils \"^2.0.2\"\n\ndoctrine@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdoctrine\u002F-\u002Fdoctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961\"\n integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==\n dependencies:\n esutils \"^2.0.2\"\n\ndom-accessibility-api@^0.5.4:\n version \"0.5.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdom-accessibility-api\u002F-\u002Fdom-accessibility-api-0.5.4.tgz#b06d059cdd4a4ad9a79275f9d414a5c126241166\"\n integrity sha512-TvrjBckDy2c6v6RLxPv5QXOnU+SmF9nBII5621Ve5fu6Z\u002FBDrENurBEvlC1f44lKEUVqOpK4w9E5Idc5\u002FEgkLQ==\n\ndom-serializer@1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdom-serializer\u002F-\u002Fdom-serializer-1.0.1.tgz#79695eb49af3cd8abc8d93a73da382deb1ca0795\"\n integrity sha512-1Aj1Qy3YLbdslkI75QEOfdp9TkQ3o8LRISAzxOibjBs\u002FxWwr1WxZFOQphFkZuepHFGo+kB8e5FVJSS0faAJ4Rw==\n dependencies:\n domelementtype \"^2.0.1\"\n domhandler \"^3.0.0\"\n entities \"^2.0.0\"\n\ndom-serializer@^0.2.1:\n version \"0.2.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdom-serializer\u002F-\u002Fdom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51\"\n integrity sha512-2\u002FxPb3ORsQ42nHYiSunXkDjPLBaEj\u002FxTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==\n dependencies:\n domelementtype \"^2.0.1\"\n entities \"^2.0.0\"\n\ndom-serializer@^1.0.1:\n version \"1.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdom-serializer\u002F-\u002Fdom-serializer-1.1.0.tgz#5f7c828f1bfc44887dc2a315ab5c45691d544b58\"\n integrity sha512-ox7bvGXt2n+uLWtCRLybYx60IrOlWL\u002FaCebWJk1T0d4m3y2tzf4U3ij9wBMUb6YJZpz06HCCYuyCDveE2xXmzQ==\n dependencies:\n domelementtype \"^2.0.1\"\n domhandler \"^3.0.0\"\n entities \"^2.0.0\"\n\ndomain-browser@^1.1.1:\n version \"1.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdomain-browser\u002F-\u002Fdomain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda\"\n integrity sha512-jnjyiM6eRyZl2H+W8Q\u002FzLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==\n\ndomelementtype@^2.0.1:\n version \"2.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdomelementtype\u002F-\u002Fdomelementtype-2.0.2.tgz#f3b6e549201e46f588b59463dd77187131fe6971\"\n integrity sha512-wFwTwCVebUrMgGeAwRL\u002FNhZtHAUyT9n9yg4IMDwf10+6iCMxSkVq9MGCVEH+QZWo1nNidy8kNvwmv4zWHDTqvA==\n\ndomexception@^1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdomexception\u002F-\u002Fdomexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90\"\n integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==\n dependencies:\n webidl-conversions \"^4.0.2\"\n\ndomhandler@3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdomhandler\u002F-\u002Fdomhandler-3.0.0.tgz#51cd13efca31da95bbb0c5bee3a48300e333b3e9\"\n integrity sha512-eKLdI5v9m67kbXQbJSNn1zjh0SDzvzWVWtX+qEI3eMjZw8daH9k8rlj1FZY9memPwjiskQFbe7vHVVJIAqoEhw==\n dependencies:\n domelementtype \"^2.0.1\"\n\ndomhandler@^3.0.0, domhandler@^3.3.0:\n version \"3.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdomhandler\u002F-\u002Fdomhandler-3.3.0.tgz#6db7ea46e4617eb15cf875df68b2b8524ce0037a\"\n integrity sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==\n dependencies:\n domelementtype \"^2.0.1\"\n\ndomutils@2.1.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdomutils\u002F-\u002Fdomutils-2.1.0.tgz#7ade3201af43703fde154952e3a868eb4b635f16\"\n integrity sha512-CD9M0Dm1iaHfQ1R\u002FTI+z3\u002FJWp\u002Fpgub0j4jIQKH89ARR4ATAV2nbaOQS5XxU9maJP5jHaPdDDQSEHuE2UmpUTKg==\n dependencies:\n dom-serializer \"^0.2.1\"\n domelementtype \"^2.0.1\"\n domhandler \"^3.0.0\"\n\ndomutils@^2.0.0:\n version \"2.4.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fdomutils\u002F-\u002Fdomutils-2.4.2.tgz#7ee5be261944e1ad487d9aa0616720010123922b\"\n integrity sha512-NKbgaM8ZJOecTZsIzW5gSuplsX2IWW2mIK7xVr8hTQF2v1CJWTmLZ1HOCh5sH+IzVPAGE5IucooOkvwBRAdowA==\n dependencies:\n dom-serializer \"^1.0.1\"\n domelementtype \"^2.0.1\"\n domhandler \"^3.3.0\"\n\nduplexify@^3.4.2, duplexify@^3.6.0:\n version \"3.7.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fduplexify\u002F-\u002Fduplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309\"\n integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==\n dependencies:\n end-of-stream \"^1.0.0\"\n inherits \"^2.0.1\"\n readable-stream \"^2.0.0\"\n stream-shift \"^1.0.0\"\n\necc-jsbn@~0.1.1:\n version \"0.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fecc-jsbn\u002F-\u002Fecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9\"\n integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=\n dependencies:\n jsbn \"~0.1.0\"\n safer-buffer \"^2.1.0\"\n\nelectron-to-chromium@^1.3.585:\n version \"1.3.592\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Felectron-to-chromium\u002F-\u002Felectron-to-chromium-1.3.592.tgz#4621521b223bf6e5469373528321e185d3c24670\"\n integrity sha512-kGNowksvqQiPb1pUSQKpd8JFoGPLxYOwduNRCqCxGh\u002F2Q1qE2JdmwouCW41lUzDxOb\u002F2RIV4lR0tVIfboWlO9A==\n\nelliptic@^6.5.3:\n version \"6.5.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Felliptic\u002F-\u002Felliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6\"\n integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7\u002FVyHUYG91PRmPyeQDObKLPpeS4dw==\n dependencies:\n bn.js \"^4.4.0\"\n brorand \"^1.0.1\"\n hash.js \"^1.0.0\"\n hmac-drbg \"^1.0.0\"\n inherits \"^2.0.1\"\n minimalistic-assert \"^1.0.0\"\n minimalistic-crypto-utils \"^1.0.0\"\n\nemoji-regex@^7.0.1:\n version \"7.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Femoji-regex\u002F-\u002Femoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156\"\n integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==\n\nemoji-regex@^8.0.0:\n version \"8.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Femoji-regex\u002F-\u002Femoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37\"\n integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo\u002FRPgnr1\u002FGGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==\n\nemojis-list@^2.0.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Femojis-list\u002F-\u002Femojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389\"\n integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k=\n\nemojis-list@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Femojis-list\u002F-\u002Femojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78\"\n integrity sha512-\u002FkyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==\n\nend-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1:\n version \"1.4.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fend-of-stream\u002F-\u002Fend-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0\"\n integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x\u002FoIyhLP5PR1H+phQAHu5Q==\n dependencies:\n once \"^1.4.0\"\n\nenhanced-resolve@^4.3.0:\n version \"4.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fenhanced-resolve\u002F-\u002Fenhanced-resolve-4.3.0.tgz#3b806f3bfafc1ec7de69551ef93cca46c1704126\"\n integrity sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI\u002FATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==\n dependencies:\n graceful-fs \"^4.1.2\"\n memory-fs \"^0.5.0\"\n tapable \"^1.0.0\"\n\nenquirer@^2.3.6:\n version \"2.3.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fenquirer\u002F-\u002Fenquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d\"\n integrity sha512-yjNnPr315\u002FFjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ\u002FodMA7cRkjhsPbltwBOrLg==\n dependencies:\n ansi-colors \"^4.1.1\"\n\nentities@^2.0.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fentities\u002F-\u002Fentities-2.1.0.tgz#992d3129cf7df6870b96c57858c249a120f8b8b5\"\n integrity sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==\n\nerrno@^0.1.3, errno@~0.1.7:\n version \"0.1.7\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ferrno\u002F-\u002Ferrno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618\"\n integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze\u002F8V6kgyz7H3FF8Npzv78mZ7XLLflg==\n dependencies:\n prr \"~1.0.1\"\n\nerror-ex@^1.3.1:\n version \"1.3.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ferror-ex\u002F-\u002Ferror-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf\"\n integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4\u002F\u002FDL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==\n dependencies:\n is-arrayish \"^0.2.1\"\n\nes-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.5:\n version \"1.17.7\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fes-abstract\u002F-\u002Fes-abstract-1.17.7.tgz#a4de61b2f66989fc7421676c1cb9787573ace54c\"\n integrity sha512-VBl\u002FgnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt\u002FDw8ezpcOHYZXa\u002FJ96O8vx+g4x65YKhxOwDUh63aS5g==\n dependencies:\n es-to-primitive \"^1.2.1\"\n function-bind \"^1.1.1\"\n has \"^1.0.3\"\n has-symbols \"^1.0.1\"\n is-callable \"^1.2.2\"\n is-regex \"^1.1.1\"\n object-inspect \"^1.8.0\"\n object-keys \"^1.1.1\"\n object.assign \"^4.1.1\"\n string.prototype.trimend \"^1.0.1\"\n string.prototype.trimstart \"^1.0.1\"\n\nes-abstract@^1.18.0-next.0, es-abstract@^1.18.0-next.1:\n version \"1.18.0-next.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fes-abstract\u002F-\u002Fes-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68\"\n integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT\u002F1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==\n dependencies:\n es-to-primitive \"^1.2.1\"\n function-bind \"^1.1.1\"\n has \"^1.0.3\"\n has-symbols \"^1.0.1\"\n is-callable \"^1.2.2\"\n is-negative-zero \"^2.0.0\"\n is-regex \"^1.1.1\"\n object-inspect \"^1.8.0\"\n object-keys \"^1.1.1\"\n object.assign \"^4.1.1\"\n string.prototype.trimend \"^1.0.1\"\n string.prototype.trimstart \"^1.0.1\"\n\nes-to-primitive@^1.2.1:\n version \"1.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fes-to-primitive\u002F-\u002Fes-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a\"\n integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==\n dependencies:\n is-callable \"^1.1.4\"\n is-date-object \"^1.0.1\"\n is-symbol \"^1.0.2\"\n\nes5-ext@^0.10.35, es5-ext@^0.10.50:\n version \"0.10.53\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fes5-ext\u002F-\u002Fes5-ext-0.10.53.tgz#93c5a3acfdbef275220ad72644ad02ee18368de1\"\n integrity sha512-Xs2Stw6NiNHWypzRTY1MtaG\u002FuJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==\n dependencies:\n es6-iterator \"~2.0.3\"\n es6-symbol \"~3.1.3\"\n next-tick \"~1.0.0\"\n\nes6-iterator@2.0.3, es6-iterator@~2.0.3:\n version \"2.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fes6-iterator\u002F-\u002Fes6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7\"\n integrity sha1-p96IkUGgWpSwhUQDstCg+\u002FqY87c=\n dependencies:\n d \"1\"\n es5-ext \"^0.10.35\"\n es6-symbol \"^3.1.1\"\n\nes6-symbol@^3.1.1, es6-symbol@~3.1.3:\n version \"3.1.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fes6-symbol\u002F-\u002Fes6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18\"\n integrity sha512-NJ6Yn3FuDinBaBRWl\u002Fq5X\u002Fs4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR\u002FEXVfylRk8dpQVJoLEFhK+Mu31NA==\n dependencies:\n d \"^1.0.1\"\n ext \"^1.1.2\"\n\nescalade@^3.1.1:\n version \"3.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fescalade\u002F-\u002Fescalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40\"\n integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX\u002FTJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==\n\nescape-string-regexp@^1.0.5:\n version \"1.0.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fescape-string-regexp\u002F-\u002Fescape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4\"\n integrity sha1-G2HAViGQqN\u002F2rjuyzwIAyhMLhtQ=\n\nescodegen@^1.11.1:\n version \"1.14.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fescodegen\u002F-\u002Fescodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503\"\n integrity sha512-qFcX0XJkdg+PB3xjZZG\u002FwKSuT1PnQWx57+TVSjIMmILd2yC\u002F6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==\n dependencies:\n esprima \"^4.0.1\"\n estraverse \"^4.2.0\"\n esutils \"^2.0.2\"\n optionator \"^0.8.1\"\n optionalDependencies:\n source-map \"~0.6.1\"\n\neslint-config-prettier@^6.10.1:\n version \"6.15.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Feslint-config-prettier\u002F-\u002Feslint-config-prettier-6.15.0.tgz#7f93f6cb7d45a92f1537a70ecc06366e1ac6fed9\"\n integrity sha512-a1+kOYLR8wMGustcgAjdydMsQ2A\u002F2ipRPwRKUmfYaSxc9ZPcrku080Ctl6zrZzZNs\u002FU82MjSv+qKREkoq3bJaw==\n dependencies:\n get-stdin \"^6.0.0\"\n\neslint-plugin-react@^7.19.0:\n version \"7.21.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Feslint-plugin-react\u002F-\u002Feslint-plugin-react-7.21.5.tgz#50b21a412b9574bfe05b21db176e8b7b3b15bff3\"\n integrity sha512-8MaEggC2et0wSF6bUeywF7qQ46ER81irOdWS4QWxnnlAEsnzeBevk1sWh7fhpCghPpXb+8Ks7hvaft6L\u002FxsR6g==\n dependencies:\n array-includes \"^3.1.1\"\n array.prototype.flatmap \"^1.2.3\"\n doctrine \"^2.1.0\"\n has \"^1.0.3\"\n jsx-ast-utils \"^2.4.1 || ^3.0.0\"\n object.entries \"^1.1.2\"\n object.fromentries \"^2.0.2\"\n object.values \"^1.1.1\"\n prop-types \"^15.7.2\"\n resolve \"^1.18.1\"\n string.prototype.matchall \"^4.0.2\"\n\neslint-scope@^4.0.3:\n version \"4.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Feslint-scope\u002F-\u002Feslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848\"\n integrity sha512-p7VutNr1O\u002FQrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW\u002Fy6lW3O76VaYNPKfpKrg==\n dependencies:\n esrecurse \"^4.1.0\"\n estraverse \"^4.1.1\"\n\neslint-scope@^5.0.0:\n version \"5.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Feslint-scope\u002F-\u002Feslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c\"\n integrity sha512-2NxwbF\u002FhZ0KpepYN0cNbo+FN6XoK7GaHlQhgx\u002FhIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==\n dependencies:\n esrecurse \"^4.3.0\"\n estraverse \"^4.1.1\"\n\neslint-utils@^1.4.3:\n version \"1.4.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Feslint-utils\u002F-\u002Feslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f\"\n integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT\u002F464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+\u002FE+XAeZ8Q==\n dependencies:\n eslint-visitor-keys \"^1.1.0\"\n\neslint-utils@^2.0.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Feslint-utils\u002F-\u002Feslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27\"\n integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0\u002FV3Zg==\n dependencies:\n eslint-visitor-keys \"^1.1.0\"\n\neslint-visitor-keys@^1.1.0:\n version \"1.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Feslint-visitor-keys\u002F-\u002Feslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e\"\n integrity sha512-6J72N8UNa462wa\u002FKFODt\u002FPJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==\n\neslint@^6.8.0:\n version \"6.8.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Feslint\u002F-\u002Feslint-6.8.0.tgz#62262d6729739f9275723824302fb227c8c93ffb\"\n integrity sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==\n dependencies:\n \"@babel\u002Fcode-frame\" \"^7.0.0\"\n ajv \"^6.10.0\"\n chalk \"^2.1.0\"\n cross-spawn \"^6.0.5\"\n debug \"^4.0.1\"\n doctrine \"^3.0.0\"\n eslint-scope \"^5.0.0\"\n eslint-utils \"^1.4.3\"\n eslint-visitor-keys \"^1.1.0\"\n espree \"^6.1.2\"\n esquery \"^1.0.1\"\n esutils \"^2.0.2\"\n file-entry-cache \"^5.0.1\"\n functional-red-black-tree \"^1.0.1\"\n glob-parent \"^5.0.0\"\n globals \"^12.1.0\"\n ignore \"^4.0.6\"\n import-fresh \"^3.0.0\"\n imurmurhash \"^0.1.4\"\n inquirer \"^7.0.0\"\n is-glob \"^4.0.0\"\n js-yaml \"^3.13.1\"\n json-stable-stringify-without-jsonify \"^1.0.1\"\n levn \"^0.3.0\"\n lodash \"^4.17.14\"\n minimatch \"^3.0.4\"\n mkdirp \"^0.5.1\"\n natural-compare \"^1.4.0\"\n optionator \"^0.8.3\"\n progress \"^2.0.0\"\n regexpp \"^2.0.1\"\n semver \"^6.1.2\"\n strip-ansi \"^5.2.0\"\n strip-json-comments \"^3.0.1\"\n table \"^5.2.3\"\n text-table \"^0.2.0\"\n v8-compile-cache \"^2.0.3\"\n\nespree@^6.1.2:\n version \"6.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fespree\u002F-\u002Fespree-6.2.1.tgz#77fc72e1fd744a2052c20f38a5b575832e82734a\"\n integrity sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y\u002FXrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx\u002F+ttFjF8i+ACbArnB4ce68a9m5hw==\n dependencies:\n acorn \"^7.1.1\"\n acorn-jsx \"^5.2.0\"\n eslint-visitor-keys \"^1.1.0\"\n\nesprima@^4.0.0, esprima@^4.0.1:\n version \"4.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fesprima\u002F-\u002Fesprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71\"\n integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX\u002FSVeJBDM\u002FgCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB\u002FsbNop0Kszm0jsaWU4A==\n\nesquery@^1.0.1:\n version \"1.3.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fesquery\u002F-\u002Fesquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57\"\n integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip\u002FDHQ==\n dependencies:\n estraverse \"^5.1.0\"\n\nesrecurse@^4.1.0, esrecurse@^4.3.0:\n version \"4.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fesrecurse\u002F-\u002Fesrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921\"\n integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL\u002FoCFgn2NYXEtqP8\u002FL3pKapUA4G8cFVaoF3SU323CD4XypR\u002FffioHmkti6\u002FTag==\n dependencies:\n estraverse \"^5.2.0\"\n\nestraverse@^4.1.1, estraverse@^4.2.0:\n version \"4.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Festraverse\u002F-\u002Festraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d\"\n integrity sha512-39nnKffWz8xN1BU\u002F2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==\n\nestraverse@^5.1.0, estraverse@^5.2.0:\n version \"5.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Festraverse\u002F-\u002Festraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880\"\n integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==\n\nesutils@^2.0.2:\n version \"2.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fesutils\u002F-\u002Fesutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64\"\n integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6\u002F8ij300KBWTJq32P\u002FdYeWTSwK41WyTxalN1eRmA5Z9UU\u002FLX9D7FWSmV9SAYx6g==\n\netag@1.8.1:\n version \"1.8.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fetag\u002F-\u002Fetag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887\"\n integrity sha1-Qa4u62XvpiJorr\u002Fqg6x9eSmbCIc=\n\nevent-target-shim@^5.0.0:\n version \"5.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fevent-target-shim\u002F-\u002Fevent-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789\"\n integrity sha512-i\u002F2XbnSz\u002FuxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==\n\nevents@^3.0.0:\n version \"3.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fevents\u002F-\u002Fevents-3.2.0.tgz#93b87c18f8efcd4202a461aec4dfc0556b639379\"\n integrity sha512-\u002F46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==\n\nevp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:\n version \"1.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fevp_bytestokey\u002F-\u002Fevp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02\"\n integrity sha512-\u002Ff2Go4TognH\u002FKvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm\u002F40hdlgSLyuOimsrTKLUMEorQexp\u002FaPQeA==\n dependencies:\n md5.js \"^1.3.4\"\n safe-buffer \"^5.1.1\"\n\nexec-sh@^0.3.2:\n version \"0.3.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fexec-sh\u002F-\u002Fexec-sh-0.3.4.tgz#3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5\"\n integrity sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk\u002FO\u002Fz2qgS15y2gWVFrI6f2Qn\u002Fqw\u002F0\u002FNCfCEsmNA4zOjkwEZT1A==\n\nexeca@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fexeca\u002F-\u002Fexeca-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8\"\n integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7\u002FnxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP\u002FRw\u002FAuEbX61LA==\n dependencies:\n cross-spawn \"^6.0.0\"\n get-stream \"^4.0.0\"\n is-stream \"^1.1.0\"\n npm-run-path \"^2.0.0\"\n p-finally \"^1.0.0\"\n signal-exit \"^3.0.0\"\n strip-eof \"^1.0.0\"\n\nexeca@^3.2.0:\n version \"3.4.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fexeca\u002F-\u002Fexeca-3.4.0.tgz#c08ed4550ef65d858fac269ffc8572446f37eb89\"\n integrity sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU\u002F4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==\n dependencies:\n cross-spawn \"^7.0.0\"\n get-stream \"^5.0.0\"\n human-signals \"^1.1.1\"\n is-stream \"^2.0.0\"\n merge-stream \"^2.0.0\"\n npm-run-path \"^4.0.0\"\n onetime \"^5.1.0\"\n p-finally \"^2.0.0\"\n signal-exit \"^3.0.2\"\n strip-final-newline \"^2.0.0\"\n\nexeca@^4.1.0:\n version \"4.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fexeca\u002F-\u002Fexeca-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a\"\n integrity sha512-j5W0\u002F\u002FW7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==\n dependencies:\n cross-spawn \"^7.0.0\"\n get-stream \"^5.0.0\"\n human-signals \"^1.1.1\"\n is-stream \"^2.0.0\"\n merge-stream \"^2.0.0\"\n npm-run-path \"^4.0.0\"\n onetime \"^5.1.0\"\n signal-exit \"^3.0.2\"\n strip-final-newline \"^2.0.0\"\n\nexit@^0.1.2:\n version \"0.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fexit\u002F-\u002Fexit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c\"\n integrity sha1-BjJjj42HfMghB9MKD\u002F8aF8uhzQw=\n\nexpand-brackets@^2.1.4:\n version \"2.1.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fexpand-brackets\u002F-\u002Fexpand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622\"\n integrity sha1-t3c14xXOMPa27\u002FD4OwQVGiJEliI=\n dependencies:\n debug \"^2.3.3\"\n define-property \"^0.2.5\"\n extend-shallow \"^2.0.1\"\n posix-character-classes \"^0.1.0\"\n regex-not \"^1.0.0\"\n snapdragon \"^0.8.1\"\n to-regex \"^3.0.1\"\n\nexpand-template@^2.0.3:\n version \"2.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fexpand-template\u002F-\u002Fexpand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c\"\n integrity sha512-XYfuKMvj4O35f\u002FpOXLObndIRvyQ+\u002F+6AhODh+OKWj9S9498pHHn\u002FIMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==\n\nexpect@^25.5.0:\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fexpect\u002F-\u002Fexpect-25.5.0.tgz#f07f848712a2813bb59167da3fb828ca21f58bba\"\n integrity sha512-w7KAXo0+6qqZZhovCaBVPSIqQp7\u002FUTcx4M9uKt2m6pd2VB1voyC8JizLRqeEqud3AAVP02g+hbErDu5gu64tlA==\n dependencies:\n \"@jest\u002Ftypes\" \"^25.5.0\"\n ansi-styles \"^4.0.0\"\n jest-get-type \"^25.2.6\"\n jest-matcher-utils \"^25.5.0\"\n jest-message-util \"^25.5.0\"\n jest-regex-util \"^25.2.6\"\n\next@^1.1.2:\n version \"1.4.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fext\u002F-\u002Fext-1.4.0.tgz#89ae7a07158f79d35517882904324077e4379244\"\n integrity sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey\u002FZvUc6sERLTxKdyCu4gZFmUbk1Q7A==\n dependencies:\n type \"^2.0.0\"\n\nextend-shallow@^2.0.1:\n version \"2.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fextend-shallow\u002F-\u002Fextend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f\"\n integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=\n dependencies:\n is-extendable \"^0.1.0\"\n\nextend-shallow@^3.0.0, extend-shallow@^3.0.2:\n version \"3.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fextend-shallow\u002F-\u002Fextend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8\"\n integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=\n dependencies:\n assign-symbols \"^1.0.0\"\n is-extendable \"^1.0.1\"\n\nextend@~3.0.2:\n version \"3.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fextend\u002F-\u002Fextend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa\"\n integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S\u002FWARVqhXffZl2LNgS+gQdPIIim\u002Fg==\n\nexternal-editor@^3.0.3:\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fexternal-editor\u002F-\u002Fexternal-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495\"\n integrity sha512-hMQ4CX1p1izmuLYyZqLMO\u002FqGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==\n dependencies:\n chardet \"^0.7.0\"\n iconv-lite \"^0.4.24\"\n tmp \"^0.0.33\"\n\nextglob@^2.0.4:\n version \"2.0.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fextglob\u002F-\u002Fextglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543\"\n integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==\n dependencies:\n array-unique \"^0.3.2\"\n define-property \"^1.0.0\"\n expand-brackets \"^2.1.4\"\n extend-shallow \"^2.0.1\"\n fragment-cache \"^0.2.1\"\n regex-not \"^1.0.0\"\n snapdragon \"^0.8.1\"\n to-regex \"^3.0.1\"\n\nextsprintf@1.3.0:\n version \"1.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fextsprintf\u002F-\u002Fextsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05\"\n integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=\n\nextsprintf@^1.2.0:\n version \"1.4.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fextsprintf\u002F-\u002Fextsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f\"\n integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8=\n\nfast-deep-equal@^3.1.1:\n version \"3.1.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffast-deep-equal\u002F-\u002Ffast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525\"\n integrity sha512-f3qQ9oQy9j2AhBe\u002FH9VC91wLmKBCCU\u002FgDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==\n\nfast-json-stable-stringify@^2.0.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffast-json-stable-stringify\u002F-\u002Ffast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633\"\n integrity sha512-lhd\u002FwF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==\n\nfast-levenshtein@~2.0.6:\n version \"2.0.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffast-levenshtein\u002F-\u002Ffast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917\"\n integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=\n\nfb-watchman@^2.0.0:\n version \"2.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffb-watchman\u002F-\u002Ffb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85\"\n integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==\n dependencies:\n bser \"2.1.1\"\n\nfiggy-pudding@^3.5.1:\n version \"3.5.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffiggy-pudding\u002F-\u002Ffiggy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e\"\n integrity sha512-0btnI\u002FH8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN\u002FMCcfuWF0Ezbw==\n\nfigures@^3.0.0, figures@^3.2.0:\n version \"3.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffigures\u002F-\u002Ffigures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af\"\n integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==\n dependencies:\n escape-string-regexp \"^1.0.5\"\n\nfile-entry-cache@^5.0.1:\n version \"5.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffile-entry-cache\u002F-\u002Ffile-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c\"\n integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM\u002FYn\u002FFDoqndh\u002F9vNuQfXRDvTuXKLxfD\u002FJtZQGKFT8MGcJBK644g==\n dependencies:\n flat-cache \"^2.0.1\"\n\nfile-uri-to-path@1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffile-uri-to-path\u002F-\u002Ffile-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd\"\n integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB\u002Fj3jR81u\u002FO2LbqK+Bm1CDSNDKVtJ\u002FYjwY7TUd5SkeLQLw==\n\nfill-range@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffill-range\u002F-\u002Ffill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7\"\n integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=\n dependencies:\n extend-shallow \"^2.0.1\"\n is-number \"^3.0.0\"\n repeat-string \"^1.6.1\"\n to-regex-range \"^2.1.0\"\n\nfill-range@^7.0.1:\n version \"7.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffill-range\u002F-\u002Ffill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40\"\n integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl\u002FdjYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==\n dependencies:\n to-regex-range \"^5.0.1\"\n\nfind-cache-dir@3.3.1:\n version \"3.3.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffind-cache-dir\u002F-\u002Ffind-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880\"\n integrity sha512-t2GDMt3oGC\u002Fv+BMwzmllWDuJF\u002FxcDtE5j\u002FfCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==\n dependencies:\n commondir \"^1.0.1\"\n make-dir \"^3.0.2\"\n pkg-dir \"^4.1.0\"\n\nfind-cache-dir@^2.1.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffind-cache-dir\u002F-\u002Ffind-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7\"\n integrity sha512-Tq6PixE0w\u002FVMFfCgbONnkiQIVol\u002FJJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==\n dependencies:\n commondir \"^1.0.1\"\n make-dir \"^2.0.0\"\n pkg-dir \"^3.0.0\"\n\nfind-up@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffind-up\u002F-\u002Ffind-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73\"\n integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX\u002FFTs9cBAMEk1gWSEx1kSbylg==\n dependencies:\n locate-path \"^3.0.0\"\n\nfind-up@^4.0.0, find-up@^4.1.0:\n version \"4.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffind-up\u002F-\u002Ffind-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19\"\n integrity sha512-PpOwAdQ\u002FYlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==\n dependencies:\n locate-path \"^5.0.0\"\n path-exists \"^4.0.0\"\n\nfind-versions@^3.2.0:\n version \"3.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffind-versions\u002F-\u002Ffind-versions-3.2.0.tgz#10297f98030a786829681690545ef659ed1d254e\"\n integrity sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==\n dependencies:\n semver-regex \"^2.0.0\"\n\nflat-cache@^2.0.1:\n version \"2.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fflat-cache\u002F-\u002Fflat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0\"\n integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc\u002F7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B\u002Fzj24a5ReA==\n dependencies:\n flatted \"^2.0.0\"\n rimraf \"2.6.3\"\n write \"1.0.3\"\n\nflatted@^2.0.0:\n version \"2.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fflatted\u002F-\u002Fflatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138\"\n integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+\u002FRB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==\n\nflush-write-stream@^1.0.0:\n version \"1.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fflush-write-stream\u002F-\u002Fflush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8\"\n integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz\u002Fr+1MWCaMoSQ28P85+1Yc77w==\n dependencies:\n inherits \"^2.0.3\"\n readable-stream \"^2.3.6\"\n\nfor-in@^1.0.2:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffor-in\u002F-\u002Ffor-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80\"\n integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=\n\nforever-agent@~0.6.1:\n version \"0.6.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fforever-agent\u002F-\u002Fforever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91\"\n integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=\n\nform-data@~2.3.2:\n version \"2.3.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fform-data\u002F-\u002Fform-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6\"\n integrity sha512-1lLKB2Mu3aGP1Q\u002F2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==\n dependencies:\n asynckit \"^0.4.0\"\n combined-stream \"^1.0.6\"\n mime-types \"^2.1.12\"\n\nfragment-cache@^0.2.1:\n version \"0.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffragment-cache\u002F-\u002Ffragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19\"\n integrity sha1-QpD60n8T6Jvn8zeZxrxaCr\u002F\u002FDRk=\n dependencies:\n map-cache \"^0.2.2\"\n\nfrom2@^2.1.0:\n version \"2.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffrom2\u002F-\u002Ffrom2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af\"\n integrity sha1-i\u002FtVAr3kpNNs\u002Fe6gB\u002FzKIdfjgq8=\n dependencies:\n inherits \"^2.0.1\"\n readable-stream \"^2.0.0\"\n\nfs-constants@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffs-constants\u002F-\u002Ffs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad\"\n integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI\u002FfPFZkL5PSixOt6ZNKm+w+Hfp\u002FBciwow==\n\nfs-write-stream-atomic@^1.0.8:\n version \"1.0.10\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffs-write-stream-atomic\u002F-\u002Ffs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9\"\n integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=\n dependencies:\n graceful-fs \"^4.1.2\"\n iferr \"^0.1.5\"\n imurmurhash \"^0.1.4\"\n readable-stream \"1 || 2\"\n\nfs.realpath@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffs.realpath\u002F-\u002Ffs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f\"\n integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=\n\nfsevents@^1.2.7:\n version \"1.2.13\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffsevents\u002F-\u002Ffsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38\"\n integrity sha512-oWb1Z6mkHIskLzEJ\u002FXWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk\u002FRZwbgG4brR5BeWECw==\n dependencies:\n bindings \"^1.5.0\"\n nan \"^2.12.1\"\n\nfsevents@^2.1.2:\n version \"2.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffsevents\u002F-\u002Ffsevents-2.2.1.tgz#1fb02ded2036a8ac288d507a65962bd87b97628d\"\n integrity sha512-bTLYHSeC0UH\u002FEFXS9KqWnXuOl\u002FwHK5Z\u002Fd+ghd5AsFMYN7wIGkUCOJyzy88+wJKkZPGON8u4Z9f6U4FdgURE9qA==\n\nfsevents@~2.1.2:\n version \"2.1.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffsevents\u002F-\u002Ffsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e\"\n integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==\n\nfunction-bind@^1.1.1:\n version \"1.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffunction-bind\u002F-\u002Ffunction-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d\"\n integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==\n\nfunctional-red-black-tree@^1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ffunctional-red-black-tree\u002F-\u002Ffunctional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327\"\n integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=\n\ngauge@~2.7.3:\n version \"2.7.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fgauge\u002F-\u002Fgauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7\"\n integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi\u002Fc=\n dependencies:\n aproba \"^1.0.3\"\n console-control-strings \"^1.0.0\"\n has-unicode \"^2.0.0\"\n object-assign \"^4.1.0\"\n signal-exit \"^3.0.0\"\n string-width \"^1.0.1\"\n strip-ansi \"^3.0.1\"\n wide-align \"^1.1.0\"\n\ngensync@^1.0.0-beta.1:\n version \"1.0.0-beta.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fgensync\u002F-\u002Fgensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0\"\n integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo\u002FTlYz6eQiFcp1HcsCZO+nGgS8zg==\n\nget-caller-file@^2.0.1:\n version \"2.0.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fget-caller-file\u002F-\u002Fget-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e\"\n integrity sha512-DyFP3BM\u002F3YHTQOCUL\u002Fw0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==\n\nget-intrinsic@^1.0.0:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fget-intrinsic\u002F-\u002Fget-intrinsic-1.0.1.tgz#94a9768fcbdd0595a1c9273aacf4c89d075631be\"\n integrity sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg==\n dependencies:\n function-bind \"^1.1.1\"\n has \"^1.0.3\"\n has-symbols \"^1.0.1\"\n\nget-own-enumerable-property-symbols@^3.0.0:\n version \"3.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fget-own-enumerable-property-symbols\u002F-\u002Fget-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664\"\n integrity sha512-I0UBV\u002FXOz1XkIJHEUDMZAbzCThU\u002FH8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==\n\nget-package-type@^0.1.0:\n version \"0.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fget-package-type\u002F-\u002Fget-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a\"\n integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==\n\nget-stdin@^6.0.0:\n version \"6.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fget-stdin\u002F-\u002Fget-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b\"\n integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh\u002FllF1ur6oNwi+2ZzjKZ7g==\n\nget-stream@^4.0.0:\n version \"4.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fget-stream\u002F-\u002Fget-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5\"\n integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS\u002FL66Kox+rJRNklLK7w==\n dependencies:\n pump \"^3.0.0\"\n\nget-stream@^5.0.0:\n version \"5.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fget-stream\u002F-\u002Fget-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3\"\n integrity sha512-nBF+F1rAZVCu\u002Fp7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP\u002FQwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==\n dependencies:\n pump \"^3.0.0\"\n\nget-value@^2.0.3, get-value@^2.0.6:\n version \"2.0.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fget-value\u002F-\u002Fget-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28\"\n integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=\n\ngetpass@^0.1.1:\n version \"0.1.7\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fgetpass\u002F-\u002Fgetpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa\"\n integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=\n dependencies:\n assert-plus \"^1.0.0\"\n\ngithub-from-package@0.0.0:\n version \"0.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fgithub-from-package\u002F-\u002Fgithub-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce\"\n integrity sha1-l\u002Ftdlr\u002FeiXMxPyDoKI75oWf6ZM4=\n\nglob-parent@^3.1.0:\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fglob-parent\u002F-\u002Fglob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae\"\n integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=\n dependencies:\n is-glob \"^3.1.0\"\n path-dirname \"^1.0.0\"\n\nglob-parent@^5.0.0, glob-parent@~5.1.0:\n version \"5.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fglob-parent\u002F-\u002Fglob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229\"\n integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna\u002FWrfROrolq8GK5Ek6BiMwqL\u002FvoRYQ==\n dependencies:\n is-glob \"^4.0.1\"\n\nglob-to-regexp@^0.4.1:\n version \"0.4.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fglob-to-regexp\u002F-\u002Fglob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e\"\n integrity sha512-lkX1HJXwyMcprw\u002F5YUZc2s7DrpAiHB21\u002FV+E1rHUrVNokkvB6bqMzT0VfV6\u002F86ZNabt1k14YOIaT7nDvOX3Iiw==\n\nglob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:\n version \"7.1.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fglob\u002F-\u002Fglob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6\"\n integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==\n dependencies:\n fs.realpath \"^1.0.0\"\n inflight \"^1.0.4\"\n inherits \"2\"\n minimatch \"^3.0.4\"\n once \"^1.3.0\"\n path-is-absolute \"^1.0.0\"\n\nglobals@^11.1.0:\n version \"11.12.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fglobals\u002F-\u002Fglobals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e\"\n integrity sha512-WOBp\u002FEEGUiIsJSp7wcv\u002Fy6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==\n\nglobals@^12.1.0:\n version \"12.4.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fglobals\u002F-\u002Fglobals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8\"\n integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==\n dependencies:\n type-fest \"^0.8.1\"\n\ngraceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.2.4:\n version \"4.2.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fgraceful-fs\u002F-\u002Fgraceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb\"\n integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN\u002F4m1NdkbZ2nOsEF+cI1Edgql5zCRhs\u002FVsQYRvrXctxktVXZUkixw==\n\ngrowly@^1.3.0:\n version \"1.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fgrowly\u002F-\u002Fgrowly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081\"\n integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=\n\nhar-schema@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhar-schema\u002F-\u002Fhar-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92\"\n integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=\n\nhar-validator@~5.1.3:\n version \"5.1.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhar-validator\u002F-\u002Fhar-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd\"\n integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==\n dependencies:\n ajv \"^6.12.3\"\n har-schema \"^2.0.0\"\n\nhas-flag@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhas-flag\u002F-\u002Fhas-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd\"\n integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=\n\nhas-flag@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhas-flag\u002F-\u002Fhas-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b\"\n integrity sha512-EykJT\u002FQ1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG\u002FZxU3EvlMPQ==\n\nhas-symbols@^1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhas-symbols\u002F-\u002Fhas-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8\"\n integrity sha512-PLcsoqu++dmEIZB+6totNFKq\u002F7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP\u002FGvrS0Kg==\n\nhas-unicode@^2.0.0:\n version \"2.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhas-unicode\u002F-\u002Fhas-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9\"\n integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=\n\nhas-value@^0.3.1:\n version \"0.3.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhas-value\u002F-\u002Fhas-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f\"\n integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=\n dependencies:\n get-value \"^2.0.3\"\n has-values \"^0.1.4\"\n isobject \"^2.0.0\"\n\nhas-value@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhas-value\u002F-\u002Fhas-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177\"\n integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=\n dependencies:\n get-value \"^2.0.6\"\n has-values \"^1.0.0\"\n isobject \"^3.0.0\"\n\nhas-values@^0.1.4:\n version \"0.1.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhas-values\u002F-\u002Fhas-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771\"\n integrity sha1-bWHeldkd\u002FKm5oCCJrThL\u002F49it3E=\n\nhas-values@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhas-values\u002F-\u002Fhas-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f\"\n integrity sha1-lbC2P+whRmGab+V\u002F51Yo1aOe\u002Fk8=\n dependencies:\n is-number \"^3.0.0\"\n kind-of \"^4.0.0\"\n\nhas@^1.0.3:\n version \"1.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhas\u002F-\u002Fhas-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796\"\n integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5\u002FVKPp5tTpWIV4JHHZK1\u002FBxbFRtf\u002FsiA2SWTe09caDmVtYYzWEIbBS4zw==\n dependencies:\n function-bind \"^1.1.1\"\n\nhash-base@^3.0.0:\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhash-base\u002F-\u002Fhash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33\"\n integrity sha512-1nmYp\u002FrhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI\u002FNcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==\n dependencies:\n inherits \"^2.0.4\"\n readable-stream \"^3.6.0\"\n safe-buffer \"^5.2.0\"\n\nhash.js@^1.0.0, hash.js@^1.0.3:\n version \"1.1.7\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhash.js\u002F-\u002Fhash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42\"\n integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s\u002FuzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==\n dependencies:\n inherits \"^2.0.3\"\n minimalistic-assert \"^1.0.1\"\n\nhe@1.2.0:\n version \"1.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhe\u002F-\u002Fhe-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f\"\n integrity sha512-F\u002F1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn\u002F7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==\n\nhmac-drbg@^1.0.0:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhmac-drbg\u002F-\u002Fhmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1\"\n integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=\n dependencies:\n hash.js \"^1.0.3\"\n minimalistic-assert \"^1.0.0\"\n minimalistic-crypto-utils \"^1.0.1\"\n\nhoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.3.0:\n version \"3.3.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhoist-non-react-statics\u002F-\u002Fhoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45\"\n integrity sha512-\u002FgGivxi8JPKWNm\u002FW0jSmzcMPpfpPLc3dY\u002F6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==\n dependencies:\n react-is \"^16.7.0\"\n\nhosted-git-info@^2.1.4:\n version \"2.8.8\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhosted-git-info\u002F-\u002Fhosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488\"\n integrity sha512-f\u002FwzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==\n\nhtml-encoding-sniffer@^1.0.2:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhtml-encoding-sniffer\u002F-\u002Fhtml-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8\"\n integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4\u002FFuZJMVWyNaIDr4RGmaSYw==\n dependencies:\n whatwg-encoding \"^1.0.1\"\n\nhtml-escaper@^2.0.0:\n version \"2.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhtml-escaper\u002F-\u002Fhtml-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453\"\n integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==\n\nhtmlparser2@4.1.0:\n version \"4.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhtmlparser2\u002F-\u002Fhtmlparser2-4.1.0.tgz#9a4ef161f2e4625ebf7dfbe6c0a2f52d18a59e78\"\n integrity sha512-4zDq1a1zhE4gQso\u002Fc5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==\n dependencies:\n domelementtype \"^2.0.1\"\n domhandler \"^3.0.0\"\n domutils \"^2.0.0\"\n entities \"^2.0.0\"\n\nhttp-errors@1.7.3:\n version \"1.7.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhttp-errors\u002F-\u002Fhttp-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06\"\n integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm\u002FQfw==\n dependencies:\n depd \"~1.1.2\"\n inherits \"2.0.4\"\n setprototypeof \"1.1.1\"\n statuses \"\u003E= 1.5.0 \u003C 2\"\n toidentifier \"1.0.0\"\n\nhttp-signature@~1.2.0:\n version \"1.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhttp-signature\u002F-\u002Fhttp-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1\"\n integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=\n dependencies:\n assert-plus \"^1.0.0\"\n jsprim \"^1.2.2\"\n sshpk \"^1.7.0\"\n\nhttps-browserify@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhttps-browserify\u002F-\u002Fhttps-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73\"\n integrity sha1-7AbBDgo0wPL68Zn3\u002FX\u002FHj\u002F\u002FQPHM=\n\nhttps-proxy-agent@5.0.0:\n version \"5.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhttps-proxy-agent\u002F-\u002Fhttps-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2\"\n integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==\n dependencies:\n agent-base \"6\"\n debug \"4\"\n\nhuman-signals@^1.1.1:\n version \"1.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhuman-signals\u002F-\u002Fhuman-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3\"\n integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj\u002F3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==\n\nhusky@^4.2.3:\n version \"4.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fhusky\u002F-\u002Fhusky-4.3.0.tgz#0b2ec1d66424e9219d359e26a51c58ec5278f0de\"\n integrity sha512-tTMeLCLqSBqnflBZnlVDhpaIMucSGaYyX6855jM4AguGeWCeSzNdb1mfyWduTZ3pe3SJVvVWGL0jO1iKZVPfTA==\n dependencies:\n chalk \"^4.0.0\"\n ci-info \"^2.0.0\"\n compare-versions \"^3.6.0\"\n cosmiconfig \"^7.0.0\"\n find-versions \"^3.2.0\"\n opencollective-postinstall \"^2.0.2\"\n pkg-dir \"^4.2.0\"\n please-upgrade-node \"^3.2.0\"\n slash \"^3.0.0\"\n which-pm-runs \"^1.0.0\"\n\niconv-lite@0.4.24, iconv-lite@^0.4.24:\n version \"0.4.24\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ficonv-lite\u002F-\u002Ficonv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b\"\n integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8\u002FrA==\n dependencies:\n safer-buffer \"\u003E= 2.1.2 \u003C 3\"\n\nicss-utils@^4.0.0, icss-utils@^4.1.1:\n version \"4.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ficss-utils\u002F-\u002Ficss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467\"\n integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==\n dependencies:\n postcss \"^7.0.14\"\n\nieee754@^1.1.13, ieee754@^1.1.4:\n version \"1.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fieee754\u002F-\u002Fieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352\"\n integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6\u002FDf5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==\n\niferr@^0.1.5:\n version \"0.1.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fiferr\u002F-\u002Fiferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501\"\n integrity sha1-xg7taebY\u002FbazEEofy8ocGS3FtQE=\n\nignore@^4.0.6:\n version \"4.0.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fignore\u002F-\u002Fignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc\"\n integrity sha512-cyFDKrqc\u002FYdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy\u002FKjuxWLZ\u002FFHEH6Moq1NizMOBWyTcv8O4OZIMg==\n\nimport-fresh@^3.0.0, import-fresh@^3.2.1:\n version \"3.2.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fimport-fresh\u002F-\u002Fimport-fresh-3.2.2.tgz#fc129c160c5d68235507f4331a6baad186bdbc3e\"\n integrity sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG\u002Flw==\n dependencies:\n parent-module \"^1.0.0\"\n resolve-from \"^4.0.0\"\n\nimport-local@^3.0.2:\n version \"3.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fimport-local\u002F-\u002Fimport-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6\"\n integrity sha512-vjL3+w0oulAVZ0hBHnxa\u002FNm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==\n dependencies:\n pkg-dir \"^4.2.0\"\n resolve-cwd \"^3.0.0\"\n\nimurmurhash@^0.1.4:\n version \"0.1.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fimurmurhash\u002F-\u002Fimurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea\"\n integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=\n\nindent-string@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Findent-string\u002F-\u002Findent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251\"\n integrity sha512-EdDDZu4A2OyIK7Lr\u002F2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1\u002Fy5xwg==\n\nindexes-of@^1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Findexes-of\u002F-\u002Findexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607\"\n integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc=\n\ninfer-owner@^1.0.3:\n version \"1.0.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Finfer-owner\u002F-\u002Finfer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467\"\n integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+\u002FATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==\n\ninflight@^1.0.4:\n version \"1.0.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Finflight\u002F-\u002Finflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9\"\n integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=\n dependencies:\n once \"^1.3.0\"\n wrappy \"1\"\n\ninherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3, inherits@~2.0.4:\n version \"2.0.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Finherits\u002F-\u002Finherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c\"\n integrity sha512-k\u002FvGaX4\u002FYla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==\n\ninherits@2.0.1:\n version \"2.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Finherits\u002F-\u002Finherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1\"\n integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=\n\ninherits@2.0.3:\n version \"2.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Finherits\u002F-\u002Finherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de\"\n integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=\n\nini@~1.3.0:\n version \"1.3.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fini\u002F-\u002Fini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927\"\n integrity sha512-RZY5huIKCMRWDUqZlEi72f\u002FlmXKMvuszcMBduliQ3nnWbx9X\u002FZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==\n\ninquirer@^7.0.0:\n version \"7.3.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Finquirer\u002F-\u002Finquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003\"\n integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC\u002FqvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY\u002FCR0IA==\n dependencies:\n ansi-escapes \"^4.2.1\"\n chalk \"^4.1.0\"\n cli-cursor \"^3.1.0\"\n cli-width \"^3.0.0\"\n external-editor \"^3.0.3\"\n figures \"^3.0.0\"\n lodash \"^4.17.19\"\n mute-stream \"0.0.8\"\n run-async \"^2.4.0\"\n rxjs \"^6.6.0\"\n string-width \"^4.1.0\"\n strip-ansi \"^6.0.0\"\n through \"^2.3.6\"\n\ninternal-slot@^1.0.2:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Finternal-slot\u002F-\u002Finternal-slot-1.0.2.tgz#9c2e9fb3cd8e5e4256c6f45fe310067fcfa378a3\"\n integrity sha512-2cQNfwhAfJIkU4KZPkDI+Gj5yNNnbqi40W9Gge6dfnk4TocEVm00B3bdiL+JINrbGJil2TeHvM4rETGzk\u002Ff\u002F0g==\n dependencies:\n es-abstract \"^1.17.0-next.1\"\n has \"^1.0.3\"\n side-channel \"^1.0.2\"\n\nip-regex@^2.1.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fip-regex\u002F-\u002Fip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9\"\n integrity sha1-+ni\u002FXS5pE8kRzp+BnuUUa7bYROk=\n\nis-accessor-descriptor@^0.1.6:\n version \"0.1.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-accessor-descriptor\u002F-\u002Fis-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6\"\n integrity sha1-qeEss66Nh2cn7u84Q\u002FigiXtcmNY=\n dependencies:\n kind-of \"^3.0.2\"\n\nis-accessor-descriptor@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-accessor-descriptor\u002F-\u002Fis-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656\"\n integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==\n dependencies:\n kind-of \"^6.0.0\"\n\nis-arrayish@^0.2.1:\n version \"0.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-arrayish\u002F-\u002Fis-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d\"\n integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=\n\nis-arrayish@^0.3.1:\n version \"0.3.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-arrayish\u002F-\u002Fis-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03\"\n integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR\u002FLRY\u002F92w0zxQ5\u002F1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==\n\nis-binary-path@^1.0.0:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-binary-path\u002F-\u002Fis-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898\"\n integrity sha1-dfFmQrSA8YenEcgUFh\u002FTpKdlWJg=\n dependencies:\n binary-extensions \"^1.0.0\"\n\nis-binary-path@~2.1.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-binary-path\u002F-\u002Fis-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09\"\n integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR\u002Fg7rd0xUimYNlvZRE\u002FK2MgZTjWy725IfelLeVcEM97mmtRGXw==\n dependencies:\n binary-extensions \"^2.0.0\"\n\nis-buffer@^1.1.5:\n version \"1.1.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-buffer\u002F-\u002Fis-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be\"\n integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5\u002FewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==\n\nis-callable@^1.1.4, is-callable@^1.2.2:\n version \"1.2.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-callable\u002F-\u002Fis-callable-1.2.2.tgz#c7c6715cd22d4ddb48d3e19970223aceabb080d9\"\n integrity sha512-dnMqspv5nU3LoewK2N\u002Fy7KLtxtakvTuaCsU9FU50\u002FQDmdbHNy\u002F4\u002FJuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==\n\nis-ci@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-ci\u002F-\u002Fis-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c\"\n integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==\n dependencies:\n ci-info \"^2.0.0\"\n\nis-core-module@^2.0.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-core-module\u002F-\u002Fis-core-module-2.1.0.tgz#a4cc031d9b1aca63eecbd18a650e13cb4eeab946\"\n integrity sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==\n dependencies:\n has \"^1.0.3\"\n\nis-data-descriptor@^0.1.4:\n version \"0.1.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-data-descriptor\u002F-\u002Fis-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56\"\n integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=\n dependencies:\n kind-of \"^3.0.2\"\n\nis-data-descriptor@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-data-descriptor\u002F-\u002Fis-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7\"\n integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE\u002FjLQ==\n dependencies:\n kind-of \"^6.0.0\"\n\nis-date-object@^1.0.1:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-date-object\u002F-\u002Fis-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e\"\n integrity sha512-USlDT524woQ08aoZFzh3\u002FZ6ch9Y\u002FEWXEHQ\u002FAaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP\u002FL5zk0g==\n\nis-descriptor@^0.1.0:\n version \"0.1.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-descriptor\u002F-\u002Fis-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca\"\n integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq\u002F4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==\n dependencies:\n is-accessor-descriptor \"^0.1.6\"\n is-data-descriptor \"^0.1.4\"\n kind-of \"^5.0.0\"\n\nis-descriptor@^1.0.0, is-descriptor@^1.0.2:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-descriptor\u002F-\u002Fis-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec\"\n integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==\n dependencies:\n is-accessor-descriptor \"^1.0.0\"\n is-data-descriptor \"^1.0.0\"\n kind-of \"^6.0.2\"\n\nis-docker@^2.0.0:\n version \"2.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-docker\u002F-\u002Fis-docker-2.1.1.tgz#4125a88e44e450d384e09047ede71adc2d144156\"\n integrity sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==\n\nis-extendable@^0.1.0, is-extendable@^0.1.1:\n version \"0.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-extendable\u002F-\u002Fis-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89\"\n integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd\u002FIk=\n\nis-extendable@^1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-extendable\u002F-\u002Fis-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4\"\n integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul\u002F6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==\n dependencies:\n is-plain-object \"^2.0.4\"\n\nis-extglob@^2.1.0, is-extglob@^2.1.1:\n version \"2.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-extglob\u002F-\u002Fis-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2\"\n integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=\n\nis-fullwidth-code-point@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-fullwidth-code-point\u002F-\u002Fis-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb\"\n integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs=\n dependencies:\n number-is-nan \"^1.0.0\"\n\nis-fullwidth-code-point@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-fullwidth-code-point\u002F-\u002Fis-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f\"\n integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=\n\nis-fullwidth-code-point@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-fullwidth-code-point\u002F-\u002Fis-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d\"\n integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==\n\nis-generator-fn@^2.0.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-generator-fn\u002F-\u002Fis-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118\"\n integrity sha512-cTIB4yPYL\u002FGrw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==\n\nis-glob@^3.1.0:\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-glob\u002F-\u002Fis-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a\"\n integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=\n dependencies:\n is-extglob \"^2.1.0\"\n\nis-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:\n version \"4.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-glob\u002F-\u002Fis-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc\"\n integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT\u002FH6NQv\u002Fghhy30o55ufafxJ\u002FLdH79LLs2Kfrn85TLKyA7BUg==\n dependencies:\n is-extglob \"^2.1.1\"\n\nis-negative-zero@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-negative-zero\u002F-\u002Fis-negative-zero-2.0.0.tgz#9553b121b0fac28869da9ed459e20c7543788461\"\n integrity sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE=\n\nis-number@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-number\u002F-\u002Fis-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195\"\n integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=\n dependencies:\n kind-of \"^3.0.2\"\n\nis-number@^7.0.0:\n version \"7.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-number\u002F-\u002Fis-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b\"\n integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==\n\nis-obj@^1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-obj\u002F-\u002Fis-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f\"\n integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8=\n\nis-plain-object@^2.0.3, is-plain-object@^2.0.4:\n version \"2.0.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-plain-object\u002F-\u002Fis-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677\"\n integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI\u002FyqXiFR5mdLsgYNaPe8uao6Uv9Og==\n dependencies:\n isobject \"^3.0.1\"\n\nis-regex@^1.1.1:\n version \"1.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-regex\u002F-\u002Fis-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9\"\n integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq\u002Fw2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh\u002FLIg==\n dependencies:\n has-symbols \"^1.0.1\"\n\nis-regexp@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-regexp\u002F-\u002Fis-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069\"\n integrity sha1-\u002FS2INUXEa6xaYz57mgnof6LLUGk=\n\nis-stream@^1.1.0:\n version \"1.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-stream\u002F-\u002Fis-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44\"\n integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=\n\nis-stream@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-stream\u002F-\u002Fis-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3\"\n integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S\u002Fs7Ftw6Nd\u002FkiEw==\n\nis-string@^1.0.5:\n version \"1.0.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-string\u002F-\u002Fis-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6\"\n integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0\u002FH+fBhEfWX4A\u002Fw9TBJ+ol+okqJKFE6vQ==\n\nis-symbol@^1.0.2:\n version \"1.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-symbol\u002F-\u002Fis-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937\"\n integrity sha512-OwijhaRSgqvhm\u002F0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl\u002Fop6GqY894AZwv9faQ==\n dependencies:\n has-symbols \"^1.0.1\"\n\nis-typedarray@^1.0.0, is-typedarray@~1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-typedarray\u002F-\u002Fis-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a\"\n integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=\n\nis-windows@^1.0.2:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-windows\u002F-\u002Fis-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d\"\n integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ\u002FpGu6m8TRnBHP9dkXQVsT\u002FCOVIA==\n\nis-wsl@^1.1.0:\n version \"1.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-wsl\u002F-\u002Fis-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d\"\n integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=\n\nis-wsl@^2.1.1:\n version \"2.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fis-wsl\u002F-\u002Fis-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271\"\n integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==\n dependencies:\n is-docker \"^2.0.0\"\n\nisarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fisarray\u002F-\u002Fisarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11\"\n integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=\n\nisexe@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fisexe\u002F-\u002Fisexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10\"\n integrity sha1-6PvzdNxVb\u002FiUehDcsFctYz8s+hA=\n\nisobject@^2.0.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fisobject\u002F-\u002Fisobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89\"\n integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=\n dependencies:\n isarray \"1.0.0\"\n\nisobject@^3.0.0, isobject@^3.0.1:\n version \"3.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fisobject\u002F-\u002Fisobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df\"\n integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=\n\nisstream@~0.1.2:\n version \"0.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fisstream\u002F-\u002Fisstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a\"\n integrity sha1-R+Y\u002FevVa+m+S4VAOaQ64uFKcCZo=\n\nistanbul-lib-coverage@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fistanbul-lib-coverage\u002F-\u002Fistanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec\"\n integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC\u002FmggutCMUIhWMm8gAHb8tHlyfD3\u002Fl6rlgNA5cKdDzEAf6hEg==\n\nistanbul-lib-instrument@^4.0.0:\n version \"4.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fistanbul-lib-instrument\u002F-\u002Fistanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d\"\n integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz\u002F+uhvm7h7PFKUYxh7qarQd3ER33vHG\u002F\u002FqaE8eN25l07YqZPpHXU9I09l\u002FRD5aGQ==\n dependencies:\n \"@babel\u002Fcore\" \"^7.7.5\"\n \"@istanbuljs\u002Fschema\" \"^0.1.2\"\n istanbul-lib-coverage \"^3.0.0\"\n semver \"^6.3.0\"\n\nistanbul-lib-report@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fistanbul-lib-report\u002F-\u002Fistanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6\"\n integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==\n dependencies:\n istanbul-lib-coverage \"^3.0.0\"\n make-dir \"^3.0.0\"\n supports-color \"^7.1.0\"\n\nistanbul-lib-source-maps@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fistanbul-lib-source-maps\u002F-\u002Fistanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9\"\n integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU\u002FDisrZg==\n dependencies:\n debug \"^4.1.1\"\n istanbul-lib-coverage \"^3.0.0\"\n source-map \"^0.6.1\"\n\nistanbul-reports@^3.0.2:\n version \"3.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fistanbul-reports\u002F-\u002Fistanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b\"\n integrity sha512-9tZvz7AiR3PEDNGiV9vIouQ\u002FEAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI\u002FOqjWNCRUw==\n dependencies:\n html-escaper \"^2.0.0\"\n istanbul-lib-report \"^3.0.0\"\n\njest-changed-files@^25.5.0:\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-changed-files\u002F-\u002Fjest-changed-files-25.5.0.tgz#141cc23567ceb3f534526f8614ba39421383634c\"\n integrity sha512-EOw9QEqapsDT7mKF162m8HFzRPbmP8qJQny6ldVOdOVBz3ACgPm\u002F1nAn5fPQ\u002FNDaYhX\u002FAHkrGwwkCncpAVSXcw==\n dependencies:\n \"@jest\u002Ftypes\" \"^25.5.0\"\n execa \"^3.2.0\"\n throat \"^5.0.0\"\n\njest-cli@^25.5.4:\n version \"25.5.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-cli\u002F-\u002Fjest-cli-25.5.4.tgz#b9f1a84d1301a92c5c217684cb79840831db9f0d\"\n integrity sha512-rG8uJkIiOUpnREh1768\u002FN3n27Cm+xPFkSNFO91tgg+8o2rXeVLStz+vkXkGr4UtzH6t1SNbjwoiswd7p4AhHTw==\n dependencies:\n \"@jest\u002Fcore\" \"^25.5.4\"\n \"@jest\u002Ftest-result\" \"^25.5.0\"\n \"@jest\u002Ftypes\" \"^25.5.0\"\n chalk \"^3.0.0\"\n exit \"^0.1.2\"\n graceful-fs \"^4.2.4\"\n import-local \"^3.0.2\"\n is-ci \"^2.0.0\"\n jest-config \"^25.5.4\"\n jest-util \"^25.5.0\"\n jest-validate \"^25.5.0\"\n prompts \"^2.0.1\"\n realpath-native \"^2.0.0\"\n yargs \"^15.3.1\"\n\njest-config@^25.5.4:\n version \"25.5.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-config\u002F-\u002Fjest-config-25.5.4.tgz#38e2057b3f976ef7309b2b2c8dcd2a708a67f02c\"\n integrity sha512-SZwR91SwcdK6bz7Gco8qL7YY2sx8tFJYzvg216DLihTWf+LKY\u002FDoJXpM9nTzYakSyfblbqeU48p\u002Fp7Jzy05Atg==\n dependencies:\n \"@babel\u002Fcore\" \"^7.1.0\"\n \"@jest\u002Ftest-sequencer\" \"^25.5.4\"\n \"@jest\u002Ftypes\" \"^25.5.0\"\n babel-jest \"^25.5.1\"\n chalk \"^3.0.0\"\n deepmerge \"^4.2.2\"\n glob \"^7.1.1\"\n graceful-fs \"^4.2.4\"\n jest-environment-jsdom \"^25.5.0\"\n jest-environment-node \"^25.5.0\"\n jest-get-type \"^25.2.6\"\n jest-jasmine2 \"^25.5.4\"\n jest-regex-util \"^25.2.6\"\n jest-resolve \"^25.5.1\"\n jest-util \"^25.5.0\"\n jest-validate \"^25.5.0\"\n micromatch \"^4.0.2\"\n pretty-format \"^25.5.0\"\n realpath-native \"^2.0.0\"\n\njest-diff@^25.2.1, jest-diff@^25.5.0:\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-diff\u002F-\u002Fjest-diff-25.5.0.tgz#1dd26ed64f96667c068cef026b677dfa01afcfa9\"\n integrity sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==\n dependencies:\n chalk \"^3.0.0\"\n diff-sequences \"^25.2.6\"\n jest-get-type \"^25.2.6\"\n pretty-format \"^25.5.0\"\n\njest-diff@^26.0.0:\n version \"26.6.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-diff\u002F-\u002Fjest-diff-26.6.2.tgz#1aa7468b52c3a68d7d5c5fdcdfcd5e49bd164394\"\n integrity sha512-6m+9Z3Gv9wN0WFVasqjCL\u002F06+EFCMTqDEUl\u002Fb87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==\n dependencies:\n chalk \"^4.0.0\"\n diff-sequences \"^26.6.2\"\n jest-get-type \"^26.3.0\"\n pretty-format \"^26.6.2\"\n\njest-docblock@^25.3.0:\n version \"25.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-docblock\u002F-\u002Fjest-docblock-25.3.0.tgz#8b777a27e3477cd77a168c05290c471a575623ef\"\n integrity sha512-aktF0kCar8+zxRHxQZwxMy70stc9R1mOmrLsT5VO3pIT0uzGRSDAXxSlz4NqQWpuLjPpuMhPRl7H+5FRsvIQAg==\n dependencies:\n detect-newline \"^3.0.0\"\n\njest-each@^25.5.0:\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-each\u002F-\u002Fjest-each-25.5.0.tgz#0c3c2797e8225cb7bec7e4d249dcd96b934be516\"\n integrity sha512-QBogUxna3D8vtiItvn54xXde7+vuzqRrEeaw8r1s+1TG9eZLVJE5ZkKoSUlqFwRjnlaA4hyKGiu9OlkFIuKnjA==\n dependencies:\n \"@jest\u002Ftypes\" \"^25.5.0\"\n chalk \"^3.0.0\"\n jest-get-type \"^25.2.6\"\n jest-util \"^25.5.0\"\n pretty-format \"^25.5.0\"\n\njest-environment-jsdom@^25.5.0:\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-environment-jsdom\u002F-\u002Fjest-environment-jsdom-25.5.0.tgz#dcbe4da2ea997707997040ecf6e2560aec4e9834\"\n integrity sha512-7Jr02ydaq4jaWMZLY+Skn8wL5nVIYpWvmeatOHL3tOcV3Zw8sjnPpx+ZdeBfc457p8jCR9J6YCc+Lga0oIy62A==\n dependencies:\n \"@jest\u002Fenvironment\" \"^25.5.0\"\n \"@jest\u002Ffake-timers\" \"^25.5.0\"\n \"@jest\u002Ftypes\" \"^25.5.0\"\n jest-mock \"^25.5.0\"\n jest-util \"^25.5.0\"\n jsdom \"^15.2.1\"\n\njest-environment-node@^25.5.0:\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-environment-node\u002F-\u002Fjest-environment-node-25.5.0.tgz#0f55270d94804902988e64adca37c6ce0f7d07a1\"\n integrity sha512-iuxK6rQR2En9EID+2k+IBs5fCFd919gVVK5BeND82fYeLWPqvRcFNPKu9+gxTwfB5XwBGBvZ0HFQa+cHtIoslA==\n dependencies:\n \"@jest\u002Fenvironment\" \"^25.5.0\"\n \"@jest\u002Ffake-timers\" \"^25.5.0\"\n \"@jest\u002Ftypes\" \"^25.5.0\"\n jest-mock \"^25.5.0\"\n jest-util \"^25.5.0\"\n semver \"^6.3.0\"\n\njest-get-type@^25.2.6:\n version \"25.2.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-get-type\u002F-\u002Fjest-get-type-25.2.6.tgz#0b0a32fab8908b44d508be81681487dbabb8d877\"\n integrity sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF\u002FIg==\n\njest-get-type@^26.3.0:\n version \"26.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-get-type\u002F-\u002Fjest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0\"\n integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6\u002F3gK\u002Fxl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==\n\njest-haste-map@^25.5.1:\n version \"25.5.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-haste-map\u002F-\u002Fjest-haste-map-25.5.1.tgz#1df10f716c1d94e60a1ebf7798c9fb3da2620943\"\n integrity sha512-dddgh9UZjV7SCDQUrQ+5t9yy8iEgKc1AKqZR9YDww8xsVOtzPQSMVLDChc21+g29oTRexb9\u002FB0bIlZL+sWmvAQ==\n dependencies:\n \"@jest\u002Ftypes\" \"^25.5.0\"\n \"@types\u002Fgraceful-fs\" \"^4.1.2\"\n anymatch \"^3.0.3\"\n fb-watchman \"^2.0.0\"\n graceful-fs \"^4.2.4\"\n jest-serializer \"^25.5.0\"\n jest-util \"^25.5.0\"\n jest-worker \"^25.5.0\"\n micromatch \"^4.0.2\"\n sane \"^4.0.3\"\n walker \"^1.0.7\"\n which \"^2.0.2\"\n optionalDependencies:\n fsevents \"^2.1.2\"\n\njest-jasmine2@^25.5.4:\n version \"25.5.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-jasmine2\u002F-\u002Fjest-jasmine2-25.5.4.tgz#66ca8b328fb1a3c5364816f8958f6970a8526968\"\n integrity sha512-9acbWEfbmS8UpdcfqnDO+uBUgKa\u002F9hcRh983IHdM+pKmJPL77G0sWAAK0V0kr5LK3a8cSBfkFSoncXwQlRZfkQ==\n dependencies:\n \"@babel\u002Ftraverse\" \"^7.1.0\"\n \"@jest\u002Fenvironment\" \"^25.5.0\"\n \"@jest\u002Fsource-map\" \"^25.5.0\"\n \"@jest\u002Ftest-result\" \"^25.5.0\"\n \"@jest\u002Ftypes\" \"^25.5.0\"\n chalk \"^3.0.0\"\n co \"^4.6.0\"\n expect \"^25.5.0\"\n is-generator-fn \"^2.0.0\"\n jest-each \"^25.5.0\"\n jest-matcher-utils \"^25.5.0\"\n jest-message-util \"^25.5.0\"\n jest-runtime \"^25.5.4\"\n jest-snapshot \"^25.5.1\"\n jest-util \"^25.5.0\"\n pretty-format \"^25.5.0\"\n throat \"^5.0.0\"\n\njest-leak-detector@^25.5.0:\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-leak-detector\u002F-\u002Fjest-leak-detector-25.5.0.tgz#2291c6294b0ce404241bb56fe60e2d0c3e34f0bb\"\n integrity sha512-rV7JdLsanS8OkdDpZtgBf61L5xZ4NnYLBq72r6ldxahJWWczZjXawRsoHyXzibM5ed7C2QRjpp6ypgwGdKyoVA==\n dependencies:\n jest-get-type \"^25.2.6\"\n pretty-format \"^25.5.0\"\n\njest-matcher-utils@^25.5.0:\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-matcher-utils\u002F-\u002Fjest-matcher-utils-25.5.0.tgz#fbc98a12d730e5d2453d7f1ed4a4d948e34b7867\"\n integrity sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt\u002Fb7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw==\n dependencies:\n chalk \"^3.0.0\"\n jest-diff \"^25.5.0\"\n jest-get-type \"^25.2.6\"\n pretty-format \"^25.5.0\"\n\njest-message-util@^25.5.0:\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-message-util\u002F-\u002Fjest-message-util-25.5.0.tgz#ea11d93204cc7ae97456e1d8716251185b8880ea\"\n integrity sha512-ezddz3YCT\u002FLT0SKAmylVyWWIGYoKHOFOFXx3\u002FnA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA==\n dependencies:\n \"@babel\u002Fcode-frame\" \"^7.0.0\"\n \"@jest\u002Ftypes\" \"^25.5.0\"\n \"@types\u002Fstack-utils\" \"^1.0.1\"\n chalk \"^3.0.0\"\n graceful-fs \"^4.2.4\"\n micromatch \"^4.0.2\"\n slash \"^3.0.0\"\n stack-utils \"^1.0.1\"\n\njest-mock@^25.5.0:\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-mock\u002F-\u002Fjest-mock-25.5.0.tgz#a91a54dabd14e37ecd61665d6b6e06360a55387a\"\n integrity sha512-eXWuTV8mKzp\u002FovHc5+3USJMYsTBhyQ+5A1Mak35dey\u002FRG8GlM4YWVylZuGgVXinaW6tpvk\u002FRSecmF37FKUlpXA==\n dependencies:\n \"@jest\u002Ftypes\" \"^25.5.0\"\n\njest-pnp-resolver@^1.2.1:\n version \"1.2.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-pnp-resolver\u002F-\u002Fjest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c\"\n integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6\u002Fw==\n\njest-regex-util@^25.2.1, jest-regex-util@^25.2.6:\n version \"25.2.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-regex-util\u002F-\u002Fjest-regex-util-25.2.6.tgz#d847d38ba15d2118d3b06390056028d0f2fd3964\"\n integrity sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx\u002FfIenLEobNanUxb7abQ1sjADHBseG\u002F2FGpsv\u002Fwr+Qw==\n\njest-resolve-dependencies@^25.5.4:\n version \"25.5.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-resolve-dependencies\u002F-\u002Fjest-resolve-dependencies-25.5.4.tgz#85501f53957c8e3be446e863a74777b5a17397a7\"\n integrity sha512-yFmbPd+DAQjJQg88HveObcGBA32nqNZ02fjYmtL16t1xw9bAttSn5UGRRhzMHIQbsep7znWvAvnD4kDqOFM0Uw==\n dependencies:\n \"@jest\u002Ftypes\" \"^25.5.0\"\n jest-regex-util \"^25.2.6\"\n jest-snapshot \"^25.5.1\"\n\njest-resolve@^25.5.1:\n version \"25.5.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-resolve\u002F-\u002Fjest-resolve-25.5.1.tgz#0e6fbcfa7c26d2a5fe8f456088dc332a79266829\"\n integrity sha512-Hc09hYch5aWdtejsUZhA+vSzcotf7fajSlPA6EZPE1RmPBAD39XtJhvHWFStid58iit4IPDLI\u002FDa4cwdDmAHiQ==\n dependencies:\n \"@jest\u002Ftypes\" \"^25.5.0\"\n browser-resolve \"^1.11.3\"\n chalk \"^3.0.0\"\n graceful-fs \"^4.2.4\"\n jest-pnp-resolver \"^1.2.1\"\n read-pkg-up \"^7.0.1\"\n realpath-native \"^2.0.0\"\n resolve \"^1.17.0\"\n slash \"^3.0.0\"\n\njest-runner@^25.5.4:\n version \"25.5.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-runner\u002F-\u002Fjest-runner-25.5.4.tgz#ffec5df3875da5f5c878ae6d0a17b8e4ecd7c71d\"\n integrity sha512-V\u002F2R7fKZo6blP8E9BL9vJ8aTU4TH2beuqGNxHbxi6t14XzTb+x90B3FRgdvuHm41GY8ch4xxvf0ATH4hdpjTqg==\n dependencies:\n \"@jest\u002Fconsole\" \"^25.5.0\"\n \"@jest\u002Fenvironment\" \"^25.5.0\"\n \"@jest\u002Ftest-result\" \"^25.5.0\"\n \"@jest\u002Ftypes\" \"^25.5.0\"\n chalk \"^3.0.0\"\n exit \"^0.1.2\"\n graceful-fs \"^4.2.4\"\n jest-config \"^25.5.4\"\n jest-docblock \"^25.3.0\"\n jest-haste-map \"^25.5.1\"\n jest-jasmine2 \"^25.5.4\"\n jest-leak-detector \"^25.5.0\"\n jest-message-util \"^25.5.0\"\n jest-resolve \"^25.5.1\"\n jest-runtime \"^25.5.4\"\n jest-util \"^25.5.0\"\n jest-worker \"^25.5.0\"\n source-map-support \"^0.5.6\"\n throat \"^5.0.0\"\n\njest-runtime@^25.5.4:\n version \"25.5.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-runtime\u002F-\u002Fjest-runtime-25.5.4.tgz#dc981fe2cb2137abcd319e74ccae7f7eeffbfaab\"\n integrity sha512-RWTt8LeWh3GvjYtASH2eezkc8AehVoWKK20udV6n3\u002FgC87wlTbE1kIA+opCvNWyyPeBs6ptYsc6nyHUb1GlUVQ==\n dependencies:\n \"@jest\u002Fconsole\" \"^25.5.0\"\n \"@jest\u002Fenvironment\" \"^25.5.0\"\n \"@jest\u002Fglobals\" \"^25.5.2\"\n \"@jest\u002Fsource-map\" \"^25.5.0\"\n \"@jest\u002Ftest-result\" \"^25.5.0\"\n \"@jest\u002Ftransform\" \"^25.5.1\"\n \"@jest\u002Ftypes\" \"^25.5.0\"\n \"@types\u002Fyargs\" \"^15.0.0\"\n chalk \"^3.0.0\"\n collect-v8-coverage \"^1.0.0\"\n exit \"^0.1.2\"\n glob \"^7.1.3\"\n graceful-fs \"^4.2.4\"\n jest-config \"^25.5.4\"\n jest-haste-map \"^25.5.1\"\n jest-message-util \"^25.5.0\"\n jest-mock \"^25.5.0\"\n jest-regex-util \"^25.2.6\"\n jest-resolve \"^25.5.1\"\n jest-snapshot \"^25.5.1\"\n jest-util \"^25.5.0\"\n jest-validate \"^25.5.0\"\n realpath-native \"^2.0.0\"\n slash \"^3.0.0\"\n strip-bom \"^4.0.0\"\n yargs \"^15.3.1\"\n\njest-serializer@^25.5.0:\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-serializer\u002F-\u002Fjest-serializer-25.5.0.tgz#a993f484e769b4ed54e70e0efdb74007f503072b\"\n integrity sha512-LxD8fY1lByomEPflwur9o4e2a5twSQ7TaVNLlFUuToIdoJuBt8tzHfCsZ42Ok6LkKXWzFWf3AGmheuLAA7LcCA==\n dependencies:\n graceful-fs \"^4.2.4\"\n\njest-snapshot@^25.5.1:\n version \"25.5.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-snapshot\u002F-\u002Fjest-snapshot-25.5.1.tgz#1a2a576491f9961eb8d00c2e5fd479bc28e5ff7f\"\n integrity sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ==\n dependencies:\n \"@babel\u002Ftypes\" \"^7.0.0\"\n \"@jest\u002Ftypes\" \"^25.5.0\"\n \"@types\u002Fprettier\" \"^1.19.0\"\n chalk \"^3.0.0\"\n expect \"^25.5.0\"\n graceful-fs \"^4.2.4\"\n jest-diff \"^25.5.0\"\n jest-get-type \"^25.2.6\"\n jest-matcher-utils \"^25.5.0\"\n jest-message-util \"^25.5.0\"\n jest-resolve \"^25.5.1\"\n make-dir \"^3.0.0\"\n natural-compare \"^1.4.0\"\n pretty-format \"^25.5.0\"\n semver \"^6.3.0\"\n\njest-util@^25.5.0:\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-util\u002F-\u002Fjest-util-25.5.0.tgz#31c63b5d6e901274d264a4fec849230aa3fa35b0\"\n integrity sha512-KVlX+WWg1zUTB9ktvhsg2PXZVdkI1NBevOJSkTKYAyXyH4QSvh+Lay\u002Fe\u002Fv+bmaFfrkfx43xD8QTfgobzlEXdIA==\n dependencies:\n \"@jest\u002Ftypes\" \"^25.5.0\"\n chalk \"^3.0.0\"\n graceful-fs \"^4.2.4\"\n is-ci \"^2.0.0\"\n make-dir \"^3.0.0\"\n\njest-validate@^25.5.0:\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-validate\u002F-\u002Fjest-validate-25.5.0.tgz#fb4c93f332c2e4cf70151a628e58a35e459a413a\"\n integrity sha512-okUFKqhZIpo3jDdtUXUZ2LxGUZJIlfdYBvZb1aczzxrlyMlqdnnws9MOxezoLGhSaFc2XYaHNReNQfj5zPIWyQ==\n dependencies:\n \"@jest\u002Ftypes\" \"^25.5.0\"\n camelcase \"^5.3.1\"\n chalk \"^3.0.0\"\n jest-get-type \"^25.2.6\"\n leven \"^3.1.0\"\n pretty-format \"^25.5.0\"\n\njest-watch-typeahead@^0.5.0:\n version \"0.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-watch-typeahead\u002F-\u002Fjest-watch-typeahead-0.5.0.tgz#903dba6112f22daae7e90b0a271853f7ff182008\"\n integrity sha512-4r36w9vU8+rdg48hj0Z7TvcSqVP6Ao8dk04grlHQNgduyCB0SqrI0xWIl85ZhXrzYvxQ0N5H+rRLAejkQzEHeQ==\n dependencies:\n ansi-escapes \"^4.2.1\"\n chalk \"^3.0.0\"\n jest-regex-util \"^25.2.1\"\n jest-watcher \"^25.2.4\"\n slash \"^3.0.0\"\n string-length \"^3.1.0\"\n strip-ansi \"^6.0.0\"\n\njest-watcher@^25.2.4, jest-watcher@^25.5.0:\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-watcher\u002F-\u002Fjest-watcher-25.5.0.tgz#d6110d101df98badebe435003956fd4a465e8456\"\n integrity sha512-XrSfJnVASEl+5+bb51V0Q7WQx65dTSk7NL4yDdVjPnRNpM0hG+ncFmDYJo9O8jaSRcAitVbuVawyXCRoxGrT5Q==\n dependencies:\n \"@jest\u002Ftest-result\" \"^25.5.0\"\n \"@jest\u002Ftypes\" \"^25.5.0\"\n ansi-escapes \"^4.2.1\"\n chalk \"^3.0.0\"\n jest-util \"^25.5.0\"\n string-length \"^3.1.0\"\n\njest-worker@24.9.0:\n version \"24.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-worker\u002F-\u002Fjest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5\"\n integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX\u002FHrAoKEKz3uUPzSvKs9A3qR4iVw==\n dependencies:\n merge-stream \"^2.0.0\"\n supports-color \"^6.1.0\"\n\njest-worker@^25.5.0:\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest-worker\u002F-\u002Fjest-worker-25.5.0.tgz#2611d071b79cea0f43ee57a3d118593ac1547db1\"\n integrity sha512-\u002FdsSmUkIy5EBGfv\u002FIjjqmFxrNAUpBERfGs1oHROyD7yxjG\u002Fw+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==\n dependencies:\n merge-stream \"^2.0.0\"\n supports-color \"^7.0.0\"\n\njest@^25.2.3:\n version \"25.5.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjest\u002F-\u002Fjest-25.5.4.tgz#f21107b6489cfe32b076ce2adcadee3587acb9db\"\n integrity sha512-hHFJROBTqZahnO+X+PMtT6G2\u002FztqAZJveGqz\u002F\u002FFnWWHurizkD05PQGzRZOhF3XP6z7SJmL+5tCfW8qV06JypwQ==\n dependencies:\n \"@jest\u002Fcore\" \"^25.5.4\"\n import-local \"^3.0.2\"\n jest-cli \"^25.5.4\"\n\n\"js-tokens@^3.0.0 || ^4.0.0\", js-tokens@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjs-tokens\u002F-\u002Fjs-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499\"\n integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW\u002FPKQ==\n\njs-yaml@^3.13.1:\n version \"3.14.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjs-yaml\u002F-\u002Fjs-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482\"\n integrity sha512-\u002F4IbIeHcD9VMHFqDR\u002FgQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab\u002FlRl5AlUqmpBx8EhPaWR+OtY17A==\n dependencies:\n argparse \"^1.0.7\"\n esprima \"^4.0.0\"\n\njsbn@~0.1.0:\n version \"0.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjsbn\u002F-\u002Fjsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513\"\n integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM=\n\njsdom@^15.2.1:\n version \"15.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjsdom\u002F-\u002Fjsdom-15.2.1.tgz#d2feb1aef7183f86be521b8c6833ff5296d07ec5\"\n integrity sha512-fAl1W0\u002F7T2G5vURSyxBzrJ1LSdQn6Tr5UX\u002FxD4PXDx\u002FPDgwygedfW6El\u002FKIj3xJ7FU61TTYnc\u002Fl\u002FB7P49Eqt6g==\n dependencies:\n abab \"^2.0.0\"\n acorn \"^7.1.0\"\n acorn-globals \"^4.3.2\"\n array-equal \"^1.0.0\"\n cssom \"^0.4.1\"\n cssstyle \"^2.0.0\"\n data-urls \"^1.1.0\"\n domexception \"^1.0.1\"\n escodegen \"^1.11.1\"\n html-encoding-sniffer \"^1.0.2\"\n nwsapi \"^2.2.0\"\n parse5 \"5.1.0\"\n pn \"^1.1.0\"\n request \"^2.88.0\"\n request-promise-native \"^1.0.7\"\n saxes \"^3.1.9\"\n symbol-tree \"^3.2.2\"\n tough-cookie \"^3.0.1\"\n w3c-hr-time \"^1.0.1\"\n w3c-xmlserializer \"^1.1.2\"\n webidl-conversions \"^4.0.2\"\n whatwg-encoding \"^1.0.5\"\n whatwg-mimetype \"^2.3.0\"\n whatwg-url \"^7.0.0\"\n ws \"^7.0.0\"\n xml-name-validator \"^3.0.0\"\n\njsesc@^2.5.1:\n version \"2.5.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjsesc\u002F-\u002Fjsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4\"\n integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6\u002FCy2lbNdPlZBpuQHXE63gA==\n\njson-parse-better-errors@^1.0.2:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjson-parse-better-errors\u002F-\u002Fjson-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9\"\n integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==\n\njson-parse-even-better-errors@^2.3.0:\n version \"2.3.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjson-parse-even-better-errors\u002F-\u002Fjson-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d\"\n integrity sha512-xyFwyhro\u002FJEof6Ghe2iz2NcXoj2sloNsWr\u002FXsERDK\u002FoiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==\n\njson-schema-traverse@^0.4.1:\n version \"0.4.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjson-schema-traverse\u002F-\u002Fjson-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660\"\n integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU\u002FJxzk629Brsab\u002FmMiHQti9wMP+845RPe3Vg==\n\njson-schema@0.2.3:\n version \"0.2.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjson-schema\u002F-\u002Fjson-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13\"\n integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=\n\njson-stable-stringify-without-jsonify@^1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjson-stable-stringify-without-jsonify\u002F-\u002Fjson-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651\"\n integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=\n\njson-stringify-safe@~5.0.1:\n version \"5.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjson-stringify-safe\u002F-\u002Fjson-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb\"\n integrity sha1-Epai1Y\u002FUXxmg9s4B1lcB4sc1tus=\n\njson5@^1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjson5\u002F-\u002Fjson5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe\"\n integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd\u002F1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==\n dependencies:\n minimist \"^1.2.0\"\n\njson5@^2.1.2:\n version \"2.1.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjson5\u002F-\u002Fjson5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43\"\n integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g\u002FgiieX0NLCaMnb4hEiVFqnop2ImTXCc5e0\u002FoHz3LTqmHGtExn5hfMkOA==\n dependencies:\n minimist \"^1.2.5\"\n\njsprim@^1.2.2:\n version \"1.4.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjsprim\u002F-\u002Fjsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2\"\n integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=\n dependencies:\n assert-plus \"1.0.0\"\n extsprintf \"1.3.0\"\n json-schema \"0.2.3\"\n verror \"1.10.0\"\n\n\"jsx-ast-utils@^2.4.1 || ^3.0.0\":\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fjsx-ast-utils\u002F-\u002Fjsx-ast-utils-3.1.0.tgz#642f1d7b88aa6d7eb9d8f2210e166478444fa891\"\n integrity sha512-d4\u002FUOjg+mxAWxCiF0c5UTSwyqbchkbqCvK87aBovhnh8GtysTjWmgC63tY0cJx\u002FHzGgm9qnA147jVBdpOiQ2RA==\n dependencies:\n array-includes \"^3.1.1\"\n object.assign \"^4.1.1\"\n\nkind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:\n version \"3.2.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fkind-of\u002F-\u002Fkind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64\"\n integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=\n dependencies:\n is-buffer \"^1.1.5\"\n\nkind-of@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fkind-of\u002F-\u002Fkind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57\"\n integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc=\n dependencies:\n is-buffer \"^1.1.5\"\n\nkind-of@^5.0.0:\n version \"5.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fkind-of\u002F-\u002Fkind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d\"\n integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7\u002FwOcfdRHaZ7VWtqCztfHri\u002F++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==\n\nkind-of@^6.0.0, kind-of@^6.0.2:\n version \"6.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fkind-of\u002F-\u002Fkind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd\"\n integrity sha512-dcS1ul+9tmeD95T+x28\u002FehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==\n\nkleur@^3.0.3:\n version \"3.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fkleur\u002F-\u002Fkleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e\"\n integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==\n\nklona@^2.0.4:\n version \"2.0.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fklona\u002F-\u002Fklona-2.0.4.tgz#7bb1e3affb0cb8624547ef7e8f6708ea2e39dfc0\"\n integrity sha512-ZRbnvdg\u002FNxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY\u002FuwIA==\n\nleven@^3.1.0:\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fleven\u002F-\u002Fleven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2\"\n integrity sha512-qsda+H8jTaUaN\u002Fx5vzW2rzc+8Rw4TAQ\u002F4KjB46IwK5VH+IlVeeeje\u002FEoZRpiXvIqjFgK84QffqPztGI3VBLG1A==\n\nlevn@^0.3.0, levn@~0.3.0:\n version \"0.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Flevn\u002F-\u002Flevn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee\"\n integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=\n dependencies:\n prelude-ls \"~1.1.2\"\n type-check \"~0.3.2\"\n\nline-column@^1.0.2:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fline-column\u002F-\u002Fline-column-1.0.2.tgz#d25af2936b6f4849172b312e4792d1d987bc34a2\"\n integrity sha1-0lryk2tvSEkXKzEuR5LR2Ye8NKI=\n dependencies:\n isarray \"^1.0.0\"\n isobject \"^2.0.0\"\n\nlines-and-columns@^1.1.6:\n version \"1.1.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Flines-and-columns\u002F-\u002Flines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00\"\n integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ\u002FwA=\n\nlint-staged@^10.0.10:\n version \"10.5.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Flint-staged\u002F-\u002Flint-staged-10.5.1.tgz#901e915c2360072dded0e7d752a0d9a49e079daa\"\n integrity sha512-fTkTGFtwFIJJzn\u002FPbUO3RXyEBHIhbfYBE7+rJyLcOXabViaO\u002Fh6OslgeK6zpeUtzkDrzkgyAYDTLAwx6JzDTHw==\n dependencies:\n chalk \"^4.1.0\"\n cli-truncate \"^2.1.0\"\n commander \"^6.2.0\"\n cosmiconfig \"^7.0.0\"\n debug \"^4.2.0\"\n dedent \"^0.7.0\"\n enquirer \"^2.3.6\"\n execa \"^4.1.0\"\n listr2 \"^3.2.2\"\n log-symbols \"^4.0.0\"\n micromatch \"^4.0.2\"\n normalize-path \"^3.0.0\"\n please-upgrade-node \"^3.2.0\"\n string-argv \"0.3.1\"\n stringify-object \"^3.3.0\"\n\nlistr2@^3.2.2:\n version \"3.2.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Flistr2\u002F-\u002Flistr2-3.2.2.tgz#d20feb75015e506992b55af40722ba1af168b8f1\"\n integrity sha512-AajqcZEUikF2ioph6PfH3dIuxJclhr3i3kHgTOP0xeXdWQohrvJAAmqVcV43\u002FGI987HFY\u002FvzT73jYXoa4esDHg==\n dependencies:\n chalk \"^4.1.0\"\n cli-truncate \"^2.1.0\"\n figures \"^3.2.0\"\n indent-string \"^4.0.0\"\n log-update \"^4.0.0\"\n p-map \"^4.0.0\"\n rxjs \"^6.6.3\"\n through \"^2.3.8\"\n\nloader-runner@^2.4.0:\n version \"2.4.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Floader-runner\u002F-\u002Floader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357\"\n integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9\u002F4Fc3wW4LVcB5DmGflaRw==\n\nloader-utils@1.2.3:\n version \"1.2.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Floader-utils\u002F-\u002Floader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7\"\n integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==\n dependencies:\n big.js \"^5.2.2\"\n emojis-list \"^2.0.0\"\n json5 \"^1.0.1\"\n\nloader-utils@2.0.0, loader-utils@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Floader-utils\u002F-\u002Floader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0\"\n integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B\u002FJg1mkQe5NYUEHtHQ==\n dependencies:\n big.js \"^5.2.2\"\n emojis-list \"^3.0.0\"\n json5 \"^2.1.2\"\n\nloader-utils@^1.2.3:\n version \"1.4.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Floader-utils\u002F-\u002Floader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613\"\n integrity sha512-qH0WSMBtn\u002FoHuwjy\u002FNucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==\n dependencies:\n big.js \"^5.2.2\"\n emojis-list \"^3.0.0\"\n json5 \"^1.0.1\"\n\nlocate-path@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Flocate-path\u002F-\u002Flocate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e\"\n integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220\u002FmaaRsrec1G65A==\n dependencies:\n p-locate \"^3.0.0\"\n path-exists \"^3.0.0\"\n\nlocate-path@^5.0.0:\n version \"5.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Flocate-path\u002F-\u002Flocate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0\"\n integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==\n dependencies:\n p-locate \"^4.1.0\"\n\nlodash.sortby@^4.7.0:\n version \"4.7.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Flodash.sortby\u002F-\u002Flodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438\"\n integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=\n\nlodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19:\n version \"4.17.20\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Flodash\u002F-\u002Flodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52\"\n integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==\n\nlog-symbols@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Flog-symbols\u002F-\u002Flog-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920\"\n integrity sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==\n dependencies:\n chalk \"^4.0.0\"\n\nlog-update@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Flog-update\u002F-\u002Flog-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1\"\n integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==\n dependencies:\n ansi-escapes \"^4.3.0\"\n cli-cursor \"^3.1.0\"\n slice-ansi \"^4.0.0\"\n wrap-ansi \"^6.2.0\"\n\nlolex@^5.0.0:\n version \"5.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Flolex\u002F-\u002Flolex-5.1.2.tgz#953694d098ce7c07bc5ed6d0e42bc6c0c6d5a367\"\n integrity sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H\u002F3bjwfMJtN+t3CX8672UIkglz28A==\n dependencies:\n \"@sinonjs\u002Fcommons\" \"^1.7.0\"\n\nloose-envify@^1.1.0, loose-envify@^1.4.0:\n version \"1.4.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Floose-envify\u002F-\u002Floose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf\"\n integrity sha512-lyuxPGr\u002FWfhrlem2CL\u002FUcnUc1zcqKAImBDzukY7Y5F\u002FyQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==\n dependencies:\n js-tokens \"^3.0.0 || ^4.0.0\"\n\nlru-cache@6.0.0:\n version \"6.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Flru-cache\u002F-\u002Flru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94\"\n integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd\u002FH0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==\n dependencies:\n yallist \"^4.0.0\"\n\nlru-cache@^5.1.1:\n version \"5.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Flru-cache\u002F-\u002Flru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920\"\n integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk\u002FFviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==\n dependencies:\n yallist \"^3.0.2\"\n\nlz-string@^1.4.4:\n version \"1.4.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Flz-string\u002F-\u002Flz-string-1.4.4.tgz#c0d8eaf36059f705796e1e344811cf4c498d3a26\"\n integrity sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=\n\nmake-dir@^2.0.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmake-dir\u002F-\u002Fmake-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5\"\n integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy\u002FlSO57ilRixqk0vDmtRA==\n dependencies:\n pify \"^4.0.1\"\n semver \"^5.6.0\"\n\nmake-dir@^3.0.0, make-dir@^3.0.2:\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmake-dir\u002F-\u002Fmake-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f\"\n integrity sha512-g3FeP20LNwhALb\u002F6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J\u002FfiSf1sa1ADhXqi5+oVwOM\u002FeGw==\n dependencies:\n semver \"^6.0.0\"\n\nmakeerror@1.0.x:\n version \"1.0.11\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmakeerror\u002F-\u002Fmakeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c\"\n integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=\n dependencies:\n tmpl \"1.0.x\"\n\nmap-cache@^0.2.2:\n version \"0.2.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmap-cache\u002F-\u002Fmap-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf\"\n integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=\n\nmap-visit@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmap-visit\u002F-\u002Fmap-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f\"\n integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=\n dependencies:\n object-visit \"^1.0.0\"\n\nmd5.js@^1.3.4:\n version \"1.3.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmd5.js\u002F-\u002Fmd5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f\"\n integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==\n dependencies:\n hash-base \"^3.0.0\"\n inherits \"^2.0.1\"\n safe-buffer \"^5.1.2\"\n\n\"memoize-one@\u003E=3.1.1 \u003C6\":\n version \"5.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmemoize-one\u002F-\u002Fmemoize-one-5.1.1.tgz#047b6e3199b508eaec03504de71229b8eb1d75c0\"\n integrity sha512-HKeeBpWvqiVJD57ZUAsJNm71eHTykffzcLZVYWiVfQeI1rJtuEaS7hQiEpWfVVk18donPwJEcFKIkCmPJNOhHA==\n\nmemory-fs@^0.4.1:\n version \"0.4.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmemory-fs\u002F-\u002Fmemory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552\"\n integrity sha1-OpoguEYlI+RHz7x+i7gO1me\u002FxVI=\n dependencies:\n errno \"^0.1.3\"\n readable-stream \"^2.0.1\"\n\nmemory-fs@^0.5.0:\n version \"0.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmemory-fs\u002F-\u002Fmemory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c\"\n integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj\u002FMtHwGIbB1QaK\u002FdunyjWteJzmkpd7ooeWg10T7GA==\n dependencies:\n errno \"^0.1.3\"\n readable-stream \"^2.0.1\"\n\nmerge-stream@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmerge-stream\u002F-\u002Fmerge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60\"\n integrity sha512-abv\u002FqOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol\u002FdoWcdA4ZqsWQ8ENrFKkd67Mfpo\u002FLovbIUsbt3w==\n\nmicromatch@^3.1.10, micromatch@^3.1.4:\n version \"3.1.10\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmicromatch\u002F-\u002Fmicromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23\"\n integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==\n dependencies:\n arr-diff \"^4.0.0\"\n array-unique \"^0.3.2\"\n braces \"^2.3.1\"\n define-property \"^2.0.2\"\n extend-shallow \"^3.0.2\"\n extglob \"^2.0.4\"\n fragment-cache \"^0.2.1\"\n kind-of \"^6.0.2\"\n nanomatch \"^1.2.9\"\n object.pick \"^1.3.0\"\n regex-not \"^1.0.0\"\n snapdragon \"^0.8.1\"\n to-regex \"^3.0.2\"\n\nmicromatch@^4.0.2:\n version \"4.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmicromatch\u002F-\u002Fmicromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259\"\n integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX\u002F09u5iFJ+aYf5Q==\n dependencies:\n braces \"^3.0.1\"\n picomatch \"^2.0.5\"\n\nmiller-rabin@^4.0.0:\n version \"4.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmiller-rabin\u002F-\u002Fmiller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d\"\n integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O\u002FOxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==\n dependencies:\n bn.js \"^4.0.0\"\n brorand \"^1.0.1\"\n\nmime-db@1.44.0:\n version \"1.44.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmime-db\u002F-\u002Fmime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92\"\n integrity sha512-\u002FNOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ\u002F6lkKCitSc\u002FNmpg==\n\nmime-types@^2.1.12, mime-types@~2.1.19:\n version \"2.1.27\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmime-types\u002F-\u002Fmime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f\"\n integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ\u002FnJQLp7w==\n dependencies:\n mime-db \"1.44.0\"\n\nmimic-fn@^2.1.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmimic-fn\u002F-\u002Fmimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b\"\n integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH\u002FsqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==\n\nmimic-response@^2.0.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmimic-response\u002F-\u002Fmimic-response-2.1.0.tgz#d13763d35f613d09ec37ebb30bac0469c0ee8f43\"\n integrity sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790\u002FkVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==\n\nmimic-response@^3.1.0:\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmimic-response\u002F-\u002Fmimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9\"\n integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N\u002Fwv0DzQTjNzHNGQ==\n\nmin-indent@^1.0.0:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmin-indent\u002F-\u002Fmin-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869\"\n integrity sha512-I9jwMn07Sy\u002FIwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB\u002FHeAg==\n\nminimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fminimalistic-assert\u002F-\u002Fminimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7\"\n integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH\u002F8\u002FIm3yEHQP4b67cXlD\u002FQr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00\u002FA==\n\nminimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fminimalistic-crypto-utils\u002F-\u002Fminimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a\"\n integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=\n\nminimatch@^3.0.4:\n version \"3.0.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fminimatch\u002F-\u002Fminimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083\"\n integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==\n dependencies:\n brace-expansion \"^1.1.7\"\n\nminimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5:\n version \"1.2.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fminimist\u002F-\u002Fminimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602\"\n integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP\u002FUODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==\n\nmississippi@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmississippi\u002F-\u002Fmississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022\"\n integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+\u002F2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss\u002F\u002FrHnWryupDrgLvmSkA==\n dependencies:\n concat-stream \"^1.5.0\"\n duplexify \"^3.4.2\"\n end-of-stream \"^1.1.0\"\n flush-write-stream \"^1.0.0\"\n from2 \"^2.1.0\"\n parallel-transform \"^1.1.0\"\n pump \"^3.0.0\"\n pumpify \"^1.3.3\"\n stream-each \"^1.1.0\"\n through2 \"^2.0.0\"\n\nmixin-deep@^1.2.0:\n version \"1.3.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmixin-deep\u002F-\u002Fmixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566\"\n integrity sha512-WRoDn\u002F\u002FmXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==\n dependencies:\n for-in \"^1.0.2\"\n is-extendable \"^1.0.1\"\n\nmkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3:\n version \"0.5.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmkdirp-classic\u002F-\u002Fmkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113\"\n integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr\u002FtxX35NjcaY6Ns\u002FA==\n\nmkdirp@^0.5.1, mkdirp@^0.5.3:\n version \"0.5.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmkdirp\u002F-\u002Fmkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def\"\n integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg\u002F0BC0wiv9ih5NYPB1Wn1UEI1\u002FL+xQ==\n dependencies:\n minimist \"^1.2.5\"\n\nmove-concurrently@^1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmove-concurrently\u002F-\u002Fmove-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92\"\n integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=\n dependencies:\n aproba \"^1.1.1\"\n copy-concurrently \"^1.0.0\"\n fs-write-stream-atomic \"^1.0.8\"\n mkdirp \"^0.5.1\"\n rimraf \"^2.5.4\"\n run-queue \"^1.0.3\"\n\nms@2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fms\u002F-\u002Fms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8\"\n integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=\n\nms@2.1.2:\n version \"2.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fms\u002F-\u002Fms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009\"\n integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk\u002FRyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==\n\nmute-stream@0.0.8:\n version \"0.0.8\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fmute-stream\u002F-\u002Fmute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d\"\n integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==\n\nnan@^2.12.1:\n version \"2.14.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnan\u002F-\u002Fnan-2.14.2.tgz#f5376400695168f4cc694ac9393d0c9585eeea19\"\n integrity sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B\u002Ft8dPvcjhKMmlfnP47EzQ==\n\nnanoid@^3.1.12:\n version \"3.1.16\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnanoid\u002F-\u002Fnanoid-3.1.16.tgz#b21f0a7d031196faf75314d7c65d36352beeef64\"\n integrity sha512-+AK8MN0WHji40lj8AEuwLOvLSbWYApQpre\u002FaFJZD71r43wVRLrOYS4FmJOPQYon1TqB462RzrrxlfA74XRES8w==\n\nnanomatch@^1.2.9:\n version \"1.2.13\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnanomatch\u002F-\u002Fnanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119\"\n integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb\u002Fh+X94VXzI64rKFHYImXSvdwGGCmwOqCA==\n dependencies:\n arr-diff \"^4.0.0\"\n array-unique \"^0.3.2\"\n define-property \"^2.0.2\"\n extend-shallow \"^3.0.2\"\n fragment-cache \"^0.2.1\"\n is-windows \"^1.0.2\"\n kind-of \"^6.0.2\"\n object.pick \"^1.3.0\"\n regex-not \"^1.0.0\"\n snapdragon \"^0.8.1\"\n to-regex \"^3.0.1\"\n\nnapi-build-utils@^1.0.1:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnapi-build-utils\u002F-\u002Fnapi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806\"\n integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+\u002FMakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==\n\nnative-url@0.3.4:\n version \"0.3.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnative-url\u002F-\u002Fnative-url-0.3.4.tgz#29c943172aed86c63cee62c8c04db7f5756661f8\"\n integrity sha512-6iM8R99ze45ivyH8vybJ7X0yekIcPf5GgLV5K0ENCbmRcaRIDoj37BC8iLEmaaBfqqb8enuZ5p0uhY+lVAbAcA==\n dependencies:\n querystring \"^0.2.0\"\n\nnatural-compare@^1.4.0:\n version \"1.4.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnatural-compare\u002F-\u002Fnatural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7\"\n integrity sha1-Sr6\u002F7tdUHywnrPspvbvRXI1bpPc=\n\nneo-async@^2.5.0, neo-async@^2.6.1, neo-async@^2.6.2:\n version \"2.6.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fneo-async\u002F-\u002Fneo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f\"\n integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4\u002FsF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==\n\nnext-tick@~1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnext-tick\u002F-\u002Fnext-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c\"\n integrity sha1-yobR\u002FogoFpsBICCOPchCS524NCw=\n\nnext@canary:\n version \"10.0.2-canary.7\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnext\u002F-\u002Fnext-10.0.2-canary.7.tgz#957be63f08f3f6ef847a8fee559eab66612eeef6\"\n integrity sha512-kKM17Irxli5cbQyJ1mk\u002F5f90DWNXujJ5kIjev8o+rkAgLfbIsAXHNFFZNPQyaVEniBfC3SYajJbfylvKUR\u002Fvgw==\n dependencies:\n \"@ampproject\u002Ftoolbox-optimizer\" \"2.7.0-alpha.1\"\n \"@babel\u002Fruntime\" \"7.12.5\"\n \"@hapi\u002Faccept\" \"5.0.1\"\n \"@next\u002Fenv\" \"10.0.2-canary.7\"\n \"@next\u002Fpolyfill-module\" \"10.0.2-canary.7\"\n \"@next\u002Freact-dev-overlay\" \"10.0.2-canary.7\"\n \"@next\u002Freact-refresh-utils\" \"10.0.2-canary.7\"\n ast-types \"0.13.2\"\n babel-plugin-transform-define \"2.0.0\"\n babel-plugin-transform-react-remove-prop-types \"0.4.24\"\n browserslist \"4.14.6\"\n buffer \"5.6.0\"\n caniuse-lite \"^1.0.30001113\"\n chalk \"2.4.2\"\n chokidar \"3.4.2\"\n crypto-browserify \"3.12.0\"\n css-loader \"4.3.0\"\n cssnano-simple \"1.2.1\"\n etag \"1.8.1\"\n find-cache-dir \"3.3.1\"\n jest-worker \"24.9.0\"\n loader-utils \"2.0.0\"\n native-url \"0.3.4\"\n node-fetch \"2.6.1\"\n node-html-parser \"^1.2.19\"\n path-browserify \"1.0.1\"\n pnp-webpack-plugin \"1.6.4\"\n postcss \"8.1.1\"\n process \"0.11.10\"\n prop-types \"15.7.2\"\n raw-body \"2.4.1\"\n react-is \"16.13.1\"\n react-refresh \"0.8.3\"\n resolve-url-loader \"3.1.2\"\n sass-loader \"10.0.5\"\n schema-utils \"2.7.1\"\n stream-browserify \"3.0.0\"\n style-loader \"1.2.1\"\n styled-jsx \"3.3.1\"\n use-subscription \"1.5.0\"\n vm-browserify \"1.1.2\"\n watchpack \"2.0.0-beta.13\"\n webpack \"4.44.1\"\n webpack-sources \"1.4.3\"\n optionalDependencies:\n sharp \"0.26.2\"\n\nnice-try@^1.0.4:\n version \"1.0.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnice-try\u002F-\u002Fnice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366\"\n integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==\n\nnode-abi@^2.7.0:\n version \"2.19.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnode-abi\u002F-\u002Fnode-abi-2.19.1.tgz#6aa32561d0a5e2fdb6810d8c25641b657a8cea85\"\n integrity sha512-HbtmIuByq44yhAzK7b9j\u002FFelKlHYISKQn0mtvcBrU5QBkhoCMp5bu8Hv5AI34DcKfOAcJBcOEMwLlwO62FFu9A==\n dependencies:\n semver \"^5.4.1\"\n\nnode-addon-api@^3.0.2:\n version \"3.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnode-addon-api\u002F-\u002Fnode-addon-api-3.0.2.tgz#04bc7b83fd845ba785bb6eae25bc857e1ef75681\"\n integrity sha512-+D4s2HCnxPd5PjjI0STKwncjXTUKKqm74MDMz9OPXavjsGmjkvwgLtA5yoxJUdmpj52+2u+RrXgPipahKczMKg==\n\nnode-fetch@2.6.0:\n version \"2.6.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnode-fetch\u002F-\u002Fnode-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd\"\n integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY\u002FZumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq\u002FTbdOcmNA==\n\nnode-fetch@2.6.1:\n version \"2.6.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnode-fetch\u002F-\u002Fnode-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052\"\n integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==\n\nnode-html-parser@^1.2.19:\n version \"1.4.9\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnode-html-parser\u002F-\u002Fnode-html-parser-1.4.9.tgz#3c8f6cac46479fae5800725edb532e9ae8fd816c\"\n integrity sha512-UVcirFD1Bn0O+TSmloHeHqZZCxHjvtIeGdVdGMhyZ8\u002FPWlEiZaZ5iJzR189yKZr8p0FXN58BUeC7RHRkf\u002FKYGw==\n dependencies:\n he \"1.2.0\"\n\nnode-int64@^0.4.0:\n version \"0.4.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnode-int64\u002F-\u002Fnode-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b\"\n integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=\n\nnode-libs-browser@^2.2.1:\n version \"2.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnode-libs-browser\u002F-\u002Fnode-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425\"\n integrity sha512-h\u002FzcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==\n dependencies:\n assert \"^1.1.1\"\n browserify-zlib \"^0.2.0\"\n buffer \"^4.3.0\"\n console-browserify \"^1.1.0\"\n constants-browserify \"^1.0.0\"\n crypto-browserify \"^3.11.0\"\n domain-browser \"^1.1.1\"\n events \"^3.0.0\"\n https-browserify \"^1.0.0\"\n os-browserify \"^0.3.0\"\n path-browserify \"0.0.1\"\n process \"^0.11.10\"\n punycode \"^1.2.4\"\n querystring-es3 \"^0.2.0\"\n readable-stream \"^2.3.3\"\n stream-browserify \"^2.0.1\"\n stream-http \"^2.7.2\"\n string_decoder \"^1.0.0\"\n timers-browserify \"^2.0.4\"\n tty-browserify \"0.0.0\"\n url \"^0.11.0\"\n util \"^0.11.0\"\n vm-browserify \"^1.0.1\"\n\nnode-modules-regexp@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnode-modules-regexp\u002F-\u002Fnode-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40\"\n integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=\n\nnode-notifier@^6.0.0:\n version \"6.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnode-notifier\u002F-\u002Fnode-notifier-6.0.0.tgz#cea319e06baa16deec8ce5cd7f133c4a46b68e12\"\n integrity sha512-SVfQ\u002FwMw+DesunOm5cKqr6yDcvUTDl\u002Fyc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw==\n dependencies:\n growly \"^1.3.0\"\n is-wsl \"^2.1.1\"\n semver \"^6.3.0\"\n shellwords \"^0.1.1\"\n which \"^1.3.1\"\n\nnode-releases@^1.1.65:\n version \"1.1.66\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnode-releases\u002F-\u002Fnode-releases-1.1.66.tgz#609bd0dc069381015cd982300bae51ab4f1b1814\"\n integrity sha512-JHEQ1iWPGK+38VLB2H9ef2otU4l8s3yAMt9Xf934r6+ojCYDMHPMqvCc9TnzfeFSP1QEOeU6YZEd3+De0LTCgg==\n\nnoop-logger@^0.1.1:\n version \"0.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnoop-logger\u002F-\u002Fnoop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2\"\n integrity sha1-lKKxYzxPExdVMAfYlm\u002FQ6EG2pMI=\n\nnormalize-html-whitespace@1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnormalize-html-whitespace\u002F-\u002Fnormalize-html-whitespace-1.0.0.tgz#5e3c8e192f1b06c3b9eee4b7e7f28854c7601e34\"\n integrity sha512-9ui7CGtOOlehQu0t\u002FOhhlmDyc71mKVlv+4vF+me4iZLPrNtRL2xoquEdfZxasC\u002FbdQi\u002FHr3iTrpyRKIG+ocabA==\n\nnormalize-package-data@^2.5.0:\n version \"2.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnormalize-package-data\u002F-\u002Fnormalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8\"\n integrity sha512-\u002F5CMN3T0R4XTj4DcGaexo+roZSdSFW\u002F0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==\n dependencies:\n hosted-git-info \"^2.1.4\"\n resolve \"^1.10.0\"\n semver \"2 || 3 || 4 || 5\"\n validate-npm-package-license \"^3.0.1\"\n\nnormalize-path@^2.1.1:\n version \"2.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnormalize-path\u002F-\u002Fnormalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9\"\n integrity sha1-GrKLVW4Zg2Oowab35vogE3\u002Fmrtk=\n dependencies:\n remove-trailing-separator \"^1.0.1\"\n\nnormalize-path@^3.0.0, normalize-path@~3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnormalize-path\u002F-\u002Fnormalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65\"\n integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb\u002FmD4WYojCRwcwLA==\n\nnpm-run-path@^2.0.0:\n version \"2.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnpm-run-path\u002F-\u002Fnpm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f\"\n integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=\n dependencies:\n path-key \"^2.0.0\"\n\nnpm-run-path@^4.0.0:\n version \"4.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnpm-run-path\u002F-\u002Fnpm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea\"\n integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC\u002FuQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==\n dependencies:\n path-key \"^3.0.0\"\n\nnpmlog@^4.0.1, npmlog@^4.1.2:\n version \"4.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnpmlog\u002F-\u002Fnpmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b\"\n integrity sha512-2uUqazuKlTaSI\u002FdC8AzicUck7+IrEaOnN\u002Fe0jd3Xtt1KcGpwx30v50mL7oPyr\u002Fh9bL3E4aZccVwpwP+5W9Vjkg==\n dependencies:\n are-we-there-yet \"~1.1.2\"\n console-control-strings \"~1.1.0\"\n gauge \"~2.7.3\"\n set-blocking \"~2.0.0\"\n\nnumber-is-nan@^1.0.0:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnumber-is-nan\u002F-\u002Fnumber-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d\"\n integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=\n\nnwsapi@^2.2.0:\n version \"2.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fnwsapi\u002F-\u002Fnwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7\"\n integrity sha512-h2AatdwYH+JHiZpv7pt\u002FgSX1XoRGb7L\u002FqSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1\u002F\u002FvHK7hQ==\n\noauth-sign@~0.9.0:\n version \"0.9.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Foauth-sign\u002F-\u002Foauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455\"\n integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc\u002FmRDzZQ==\n\nobject-assign@^4.1.0, object-assign@^4.1.1:\n version \"4.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fobject-assign\u002F-\u002Fobject-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863\"\n integrity sha1-IQmtx5ZYh8\u002FAXLvUQsrIv7s2CGM=\n\nobject-copy@^0.1.0:\n version \"0.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fobject-copy\u002F-\u002Fobject-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c\"\n integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw=\n dependencies:\n copy-descriptor \"^0.1.0\"\n define-property \"^0.2.5\"\n kind-of \"^3.0.3\"\n\nobject-inspect@^1.8.0:\n version \"1.8.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fobject-inspect\u002F-\u002Fobject-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0\"\n integrity sha512-jLdtEOB112fORuypAyl\u002F50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==\n\nobject-keys@^1.0.12, object-keys@^1.1.1:\n version \"1.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fobject-keys\u002F-\u002Fobject-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e\"\n integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==\n\nobject-visit@^1.0.0:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fobject-visit\u002F-\u002Fobject-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb\"\n integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=\n dependencies:\n isobject \"^3.0.0\"\n\nobject.assign@^4.1.1:\n version \"4.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fobject.assign\u002F-\u002Fobject.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940\"\n integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c\u002FLU8Be47utCx2GL89hxGB6XSmKuQ==\n dependencies:\n call-bind \"^1.0.0\"\n define-properties \"^1.1.3\"\n has-symbols \"^1.0.1\"\n object-keys \"^1.1.1\"\n\nobject.entries@^1.1.2:\n version \"1.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fobject.entries\u002F-\u002Fobject.entries-1.1.2.tgz#bc73f00acb6b6bb16c203434b10f9a7e797d3add\"\n integrity sha512-BQdB9qKmb\u002FHyNdMNWVr7O3+z5MUIx3aiegEIJqjMBbBf0YT9RRxTJSim4mzFqtyr7PDAHigq0N9dO0m0tRakQA==\n dependencies:\n define-properties \"^1.1.3\"\n es-abstract \"^1.17.5\"\n has \"^1.0.3\"\n\nobject.fromentries@^2.0.2:\n version \"2.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fobject.fromentries\u002F-\u002Fobject.fromentries-2.0.2.tgz#4a09c9b9bb3843dd0f89acdb517a794d4f355ac9\"\n integrity sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ==\n dependencies:\n define-properties \"^1.1.3\"\n es-abstract \"^1.17.0-next.1\"\n function-bind \"^1.1.1\"\n has \"^1.0.3\"\n\nobject.pick@^1.3.0:\n version \"1.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fobject.pick\u002F-\u002Fobject.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747\"\n integrity sha1-h6EKxMFpS9Lhy\u002FU1kaZhQftd10c=\n dependencies:\n isobject \"^3.0.1\"\n\nobject.values@^1.1.1:\n version \"1.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fobject.values\u002F-\u002Fobject.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e\"\n integrity sha512-WTa54g2K8iu0kmS\u002Fus18jEmdv1a4Wi\u002F\u002FBZ\u002FDTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==\n dependencies:\n define-properties \"^1.1.3\"\n es-abstract \"^1.17.0-next.1\"\n function-bind \"^1.1.1\"\n has \"^1.0.3\"\n\nonce@^1.3.0, once@^1.3.1, once@^1.4.0:\n version \"1.4.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fonce\u002F-\u002Fonce-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1\"\n integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=\n dependencies:\n wrappy \"1\"\n\nonetime@^5.1.0:\n version \"5.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fonetime\u002F-\u002Fonetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e\"\n integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig\u002F1NKuWRKf7j5aaYSg==\n dependencies:\n mimic-fn \"^2.1.0\"\n\nopencollective-postinstall@^2.0.2:\n version \"2.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fopencollective-postinstall\u002F-\u002Fopencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259\"\n integrity sha512-8AV\u002FsCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==\n\noptionator@^0.8.1, optionator@^0.8.3:\n version \"0.8.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Foptionator\u002F-\u002Foptionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495\"\n integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==\n dependencies:\n deep-is \"~0.1.3\"\n fast-levenshtein \"~2.0.6\"\n levn \"~0.3.0\"\n prelude-ls \"~1.1.2\"\n type-check \"~0.3.2\"\n word-wrap \"~1.2.3\"\n\nos-browserify@^0.3.0:\n version \"0.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fos-browserify\u002F-\u002Fos-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27\"\n integrity sha1-hUNzx\u002FXCMVkU\u002FJv8a9gjj92h7Cc=\n\nos-tmpdir@~1.0.2:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fos-tmpdir\u002F-\u002Fos-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274\"\n integrity sha1-u+Z0BseaqFxc\u002Fsdm\u002Flc0VV36EnQ=\n\np-each-series@^2.1.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fp-each-series\u002F-\u002Fp-each-series-2.1.0.tgz#961c8dd3f195ea96c747e636b262b800a6b1af48\"\n integrity sha512-ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ==\n\np-finally@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fp-finally\u002F-\u002Fp-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae\"\n integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=\n\np-finally@^2.0.0:\n version \"2.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fp-finally\u002F-\u002Fp-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561\"\n integrity sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==\n\np-limit@^2.0.0, p-limit@^2.2.0:\n version \"2.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fp-limit\u002F-\u002Fp-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1\"\n integrity sha512-\u002F\u002F88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==\n dependencies:\n p-try \"^2.0.0\"\n\np-locate@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fp-locate\u002F-\u002Fp-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4\"\n integrity sha512-x+12w\u002FTo+4GFfgJhBEpiDcLozRJGegY+Ei7\u002Fz0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==\n dependencies:\n p-limit \"^2.0.0\"\n\np-locate@^4.1.0:\n version \"4.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fp-locate\u002F-\u002Fp-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07\"\n integrity sha512-R79ZZ\u002F0wAxKGu3oYMlz8jy\u002FkbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==\n dependencies:\n p-limit \"^2.2.0\"\n\np-map@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fp-map\u002F-\u002Fp-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b\"\n integrity sha512-\u002FbjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw\u002FMQ==\n dependencies:\n aggregate-error \"^3.0.0\"\n\np-try@^2.0.0:\n version \"2.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fp-try\u002F-\u002Fp-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6\"\n integrity sha512-R4nPAVTAU0B9D35\u002FGk3uJf\u002F7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==\n\npako@~1.0.5:\n version \"1.0.11\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpako\u002F-\u002Fpako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf\"\n integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv\u002FyGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==\n\nparallel-transform@^1.1.0:\n version \"1.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fparallel-transform\u002F-\u002Fparallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc\"\n integrity sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy\u002FABO5ZUbGowxNCopBq\u002FOoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==\n dependencies:\n cyclist \"^1.0.1\"\n inherits \"^2.0.3\"\n readable-stream \"^2.1.5\"\n\nparent-module@^1.0.0:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fparent-module\u002F-\u002Fparent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2\"\n integrity sha512-GQ2EWRpQV8\u002Fo+Aw8YqtfZZPfNRWZYkbidE9k5rpl\u002FhC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==\n dependencies:\n callsites \"^3.0.0\"\n\nparse-asn1@^5.0.0, parse-asn1@^5.1.5:\n version \"5.1.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fparse-asn1\u002F-\u002Fparse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4\"\n integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0\u002F04VD\u002F19rfzlBSwLstMw==\n dependencies:\n asn1.js \"^5.2.0\"\n browserify-aes \"^1.0.0\"\n evp_bytestokey \"^1.0.0\"\n pbkdf2 \"^3.0.3\"\n safe-buffer \"^5.1.1\"\n\nparse-json@^5.0.0:\n version \"5.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fparse-json\u002F-\u002Fparse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646\"\n integrity sha512-+mi\u002FlmVVNKFNVyLXV31ERiy2CY5E1\u002FF6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0\u002F+2qHID68KwfIQ==\n dependencies:\n \"@babel\u002Fcode-frame\" \"^7.0.0\"\n error-ex \"^1.3.1\"\n json-parse-even-better-errors \"^2.3.0\"\n lines-and-columns \"^1.1.6\"\n\nparse5@5.1.0:\n version \"5.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fparse5\u002F-\u002Fparse5-5.1.0.tgz#c59341c9723f414c452975564c7c00a68d58acd2\"\n integrity sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9\u002FgRQ==\n\npascalcase@^0.1.1:\n version \"0.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpascalcase\u002F-\u002Fpascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14\"\n integrity sha1-s2PlXoAGym\u002FiF4TS2yK9FdeRfxQ=\n\npath-browserify@0.0.1:\n version \"0.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpath-browserify\u002F-\u002Fpath-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a\"\n integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN\u002FWs5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO\u002FlQ==\n\npath-browserify@1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpath-browserify\u002F-\u002Fpath-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd\"\n integrity sha512-b7uo2UCUOYZcnF\u002F3ID0lulOJi\u002Fbafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==\n\npath-dirname@^1.0.0:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpath-dirname\u002F-\u002Fpath-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0\"\n integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=\n\npath-exists@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpath-exists\u002F-\u002Fpath-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515\"\n integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=\n\npath-exists@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpath-exists\u002F-\u002Fpath-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3\"\n integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc\u002FZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7\u002Fw==\n\npath-is-absolute@^1.0.0:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpath-is-absolute\u002F-\u002Fpath-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f\"\n integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=\n\npath-key@^2.0.0, path-key@^2.0.1:\n version \"2.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpath-key\u002F-\u002Fpath-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40\"\n integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=\n\npath-key@^3.0.0, path-key@^3.1.0:\n version \"3.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpath-key\u002F-\u002Fpath-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375\"\n integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==\n\npath-parse@^1.0.6:\n version \"1.0.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpath-parse\u002F-\u002Fpath-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c\"\n integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3\u002FTLNEJFD\u002FxZJjzyxg3KBWOzw==\n\npath-type@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpath-type\u002F-\u002Fpath-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b\"\n integrity sha512-gDKb8aZMDeD\u002FtZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==\n\npbkdf2@^3.0.3:\n version \"3.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpbkdf2\u002F-\u002Fpbkdf2-3.1.1.tgz#cb8724b0fada984596856d1a6ebafd3584654b94\"\n integrity sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG\u002FJtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==\n dependencies:\n create-hash \"^1.1.2\"\n create-hmac \"^1.1.4\"\n ripemd160 \"^2.0.1\"\n safe-buffer \"^5.0.1\"\n sha.js \"^2.4.8\"\n\nperformance-now@^2.1.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fperformance-now\u002F-\u002Fperformance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b\"\n integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=\n\npicomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1:\n version \"2.2.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpicomatch\u002F-\u002Fpicomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad\"\n integrity sha512-q0M\u002F9eZHzmr0AulXyPwNfZjtwZ\u002FRBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==\n\npify@^4.0.1:\n version \"4.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpify\u002F-\u002Fpify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231\"\n integrity sha512-uB80kBFb\u002Ftfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==\n\npirates@^4.0.1:\n version \"4.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpirates\u002F-\u002Fpirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87\"\n integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==\n dependencies:\n node-modules-regexp \"^1.0.0\"\n\npkg-dir@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpkg-dir\u002F-\u002Fpkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3\"\n integrity sha512-\u002FE57AYkoeQ25qkxMj5PBOVgF8Kiu\u002Fh7cYS30Z5+R7WaiCCBfLq58ZI\u002FdSeaEKb9WVJV5n\u002F03QwrN3IeWIFllvw==\n dependencies:\n find-up \"^3.0.0\"\n\npkg-dir@^4.1.0, pkg-dir@^4.2.0:\n version \"4.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpkg-dir\u002F-\u002Fpkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3\"\n integrity sha512-HRDzbaKjC+AOWVXxAU\u002Fx54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu\u002FFr23EiekbtZwmh1IcIG\u002Fl\u002Fa10GQ==\n dependencies:\n find-up \"^4.0.0\"\n\nplatform@1.3.3:\n version \"1.3.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fplatform\u002F-\u002Fplatform-1.3.3.tgz#646c77011899870b6a0903e75e997e8e51da7461\"\n integrity sha1-ZGx3ARiZhwtqCQPnXpl+jlHadGE=\n\nplease-upgrade-node@^3.2.0:\n version \"3.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fplease-upgrade-node\u002F-\u002Fplease-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942\"\n integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1\u002FE1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==\n dependencies:\n semver-compare \"^1.0.0\"\n\npn@^1.1.0:\n version \"1.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpn\u002F-\u002Fpn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb\"\n integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb\u002FnA==\n\npnp-webpack-plugin@1.6.4:\n version \"1.6.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpnp-webpack-plugin\u002F-\u002Fpnp-webpack-plugin-1.6.4.tgz#c9711ac4dc48a685dabafc86f8b6dd9f8df84149\"\n integrity sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw\u002FIpZCt\u002FH0srrntSg==\n dependencies:\n ts-pnp \"^1.1.6\"\n\nposix-character-classes@^0.1.0:\n version \"0.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fposix-character-classes\u002F-\u002Fposix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab\"\n integrity sha1-AerA\u002Fjta9xoqbAL+q7jB\u002FvfgDqs=\n\npostcss-modules-extract-imports@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpostcss-modules-extract-imports\u002F-\u002Fpostcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e\"\n integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr\u002FLv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==\n dependencies:\n postcss \"^7.0.5\"\n\npostcss-modules-local-by-default@^3.0.3:\n version \"3.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpostcss-modules-local-by-default\u002F-\u002Fpostcss-modules-local-by-default-3.0.3.tgz#bb14e0cc78279d504dbdcbfd7e0ca28993ffbbb0\"\n integrity sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui\u002FkyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==\n dependencies:\n icss-utils \"^4.1.1\"\n postcss \"^7.0.32\"\n postcss-selector-parser \"^6.0.2\"\n postcss-value-parser \"^4.1.0\"\n\npostcss-modules-scope@^2.2.0:\n version \"2.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpostcss-modules-scope\u002F-\u002Fpostcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee\"\n integrity sha512-YyEgsTMRpNd+HmyC7H\u002Fmh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW\u002FO04Hxyu9oXQ==\n dependencies:\n postcss \"^7.0.6\"\n postcss-selector-parser \"^6.0.0\"\n\npostcss-modules-values@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpostcss-modules-values\u002F-\u002Fpostcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10\"\n integrity sha512-1\u002F\u002FE5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==\n dependencies:\n icss-utils \"^4.0.0\"\n postcss \"^7.0.6\"\n\npostcss-safe-parser@4.0.2:\n version \"4.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpostcss-safe-parser\u002F-\u002Fpostcss-safe-parser-4.0.2.tgz#a6d4e48f0f37d9f7c11b2a581bf00f8ba4870b96\"\n integrity sha512-Uw6ekxSWNLCPesSv\u002Fcmqf2bY\u002F77z11O7jZGPax3ycZMFU\u002Foi2DMH9i89AdHc1tRwFg\u002FarFoEwX0IS3LCUxJh1g==\n dependencies:\n postcss \"^7.0.26\"\n\npostcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2:\n version \"6.0.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpostcss-selector-parser\u002F-\u002Fpostcss-selector-parser-6.0.4.tgz#56075a1380a04604c38b063ea7767a129af5c2b3\"\n integrity sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==\n dependencies:\n cssesc \"^3.0.0\"\n indexes-of \"^1.0.1\"\n uniq \"^1.0.1\"\n util-deprecate \"^1.0.2\"\n\npostcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0:\n version \"4.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpostcss-value-parser\u002F-\u002Fpostcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb\"\n integrity sha512-97DXOFbQJhk71ne5\u002FMt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==\n\npostcss@7.0.21:\n version \"7.0.21\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpostcss\u002F-\u002Fpostcss-7.0.21.tgz#06bb07824c19c2021c5d056d5b10c35b989f7e17\"\n integrity sha512-uIFtJElxJo29QC753JzhidoAhvp\u002Fe\u002FExezkdhfmt8AymWT6\u002F5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ==\n dependencies:\n chalk \"^2.4.2\"\n source-map \"^0.6.1\"\n supports-color \"^6.1.0\"\n\npostcss@7.0.32:\n version \"7.0.32\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpostcss\u002F-\u002Fpostcss-7.0.32.tgz#4310d6ee347053da3433db2be492883d62cec59d\"\n integrity sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g\u002FO\u002FUQRuOle2aRtiIRDg9tDcTGAkLfKw==\n dependencies:\n chalk \"^2.4.2\"\n source-map \"^0.6.1\"\n supports-color \"^6.1.0\"\n\npostcss@8.1.1:\n version \"8.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpostcss\u002F-\u002Fpostcss-8.1.1.tgz#c3a287dd10e4f6c84cb3791052b96a5d859c9389\"\n integrity sha512-9DGLSsjooH3kSNjTZUOt2eIj2ZTW0VI2PZ\u002F3My+8TC7KIbH2OKwUlISfDsf63EP4aiRUt3XkEWMWvyJHvJelEg==\n dependencies:\n colorette \"^1.2.1\"\n line-column \"^1.0.2\"\n nanoid \"^3.1.12\"\n source-map \"^0.6.1\"\n\npostcss@^7.0.14, postcss@^7.0.26, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6:\n version \"7.0.35\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpostcss\u002F-\u002Fpostcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24\"\n integrity sha512-3QT8bBJeX\u002FS5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==\n dependencies:\n chalk \"^2.4.2\"\n source-map \"^0.6.1\"\n supports-color \"^6.1.0\"\n\nprebuild-install@^5.3.5:\n version \"5.3.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fprebuild-install\u002F-\u002Fprebuild-install-5.3.6.tgz#7c225568d864c71d89d07f8796042733a3f54291\"\n integrity sha512-s8Aai8++QQGi4sSbs\u002FM1Qku62PFK49Jm1CbgXklGz4nmHveDq0wzJkg7Na5QbnO1uNH8K7iqx2EQ\u002FmV0MZEmOg==\n dependencies:\n detect-libc \"^1.0.3\"\n expand-template \"^2.0.3\"\n github-from-package \"0.0.0\"\n minimist \"^1.2.3\"\n mkdirp-classic \"^0.5.3\"\n napi-build-utils \"^1.0.1\"\n node-abi \"^2.7.0\"\n noop-logger \"^0.1.1\"\n npmlog \"^4.0.1\"\n pump \"^3.0.0\"\n rc \"^1.2.7\"\n simple-get \"^3.0.3\"\n tar-fs \"^2.0.0\"\n tunnel-agent \"^0.6.0\"\n which-pm-runs \"^1.0.0\"\n\nprelude-ls@~1.1.2:\n version \"1.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fprelude-ls\u002F-\u002Fprelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54\"\n integrity sha1-IZMqVJ9eUv\u002FZqCf1cOBL5iqX2lQ=\n\nprettier@^2.0.2:\n version \"2.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fprettier\u002F-\u002Fprettier-2.1.2.tgz#3050700dae2e4c8b67c4c3f666cdb8af405e1ce5\"\n integrity sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==\n\npretty-format@^25.2.1, pretty-format@^25.5.0:\n version \"25.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpretty-format\u002F-\u002Fpretty-format-25.5.0.tgz#7873c1d774f682c34b8d48b6743a2bf2ac55791a\"\n integrity sha512-kbo\u002Fkq2LQ\u002FA\u002Fis0PQwsEHM7Ca6\u002F\u002FbGPPvU6UnsdDRSKTWxT\u002Fru\u002Fxb88v4BJf6a69H+uTytOEsTusT9ksd\u002F1iWQ==\n dependencies:\n \"@jest\u002Ftypes\" \"^25.5.0\"\n ansi-regex \"^5.0.0\"\n ansi-styles \"^4.0.0\"\n react-is \"^16.12.0\"\n\npretty-format@^26.0.0, pretty-format@^26.6.2:\n version \"26.6.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpretty-format\u002F-\u002Fpretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93\"\n integrity sha512-7AeGuCYNGmycyQbCqd\u002F3PWH4eOoX\u002FOiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP\u002FWX69mkg==\n dependencies:\n \"@jest\u002Ftypes\" \"^26.6.2\"\n ansi-regex \"^5.0.0\"\n ansi-styles \"^4.0.0\"\n react-is \"^17.0.1\"\n\nprocess-nextick-args@~2.0.0:\n version \"2.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fprocess-nextick-args\u002F-\u002Fprocess-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2\"\n integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7\u002FAhoR3+A+\u002F1e9skrzelGi\u002FdXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==\n\nprocess@0.11.10, process@^0.11.10:\n version \"0.11.10\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fprocess\u002F-\u002Fprocess-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182\"\n integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI=\n\nprogress@^2.0.0:\n version \"2.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fprogress\u002F-\u002Fprogress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8\"\n integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa\u002FXMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==\n\npromise-inflight@^1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpromise-inflight\u002F-\u002Fpromise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3\"\n integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM=\n\nprompts@^2.0.1:\n version \"2.4.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fprompts\u002F-\u002Fprompts-2.4.0.tgz#4aa5de0723a231d1ee9121c40fdf663df73f61d7\"\n integrity sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm\u002FHBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==\n dependencies:\n kleur \"^3.0.3\"\n sisteransi \"^1.0.5\"\n\nprop-types@15.7.2, prop-types@^15.7.2:\n version \"15.7.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fprop-types\u002F-\u002Fprop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5\"\n integrity sha512-8QQikdH7\u002F\u002FR2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ\u002FnXFdJepOVrY1GCHQ==\n dependencies:\n loose-envify \"^1.4.0\"\n object-assign \"^4.1.1\"\n react-is \"^16.8.1\"\n\nprr@~1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fprr\u002F-\u002Fprr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476\"\n integrity sha1-0\u002FwRS6BplaRexok\u002FSEzrHXj19HY=\n\npsl@^1.1.28:\n version \"1.8.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpsl\u002F-\u002Fpsl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24\"\n integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ\u002F6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==\n\npublic-encrypt@^4.0.0:\n version \"4.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpublic-encrypt\u002F-\u002Fpublic-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0\"\n integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==\n dependencies:\n bn.js \"^4.1.0\"\n browserify-rsa \"^4.0.0\"\n create-hash \"^1.1.0\"\n parse-asn1 \"^5.0.0\"\n randombytes \"^2.0.1\"\n safe-buffer \"^5.1.2\"\n\npump@^2.0.0:\n version \"2.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpump\u002F-\u002Fpump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909\"\n integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T\u002FxDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==\n dependencies:\n end-of-stream \"^1.1.0\"\n once \"^1.3.1\"\n\npump@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpump\u002F-\u002Fpump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64\"\n integrity sha512-LwZy+p3SFs1Pytd\u002FjYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==\n dependencies:\n end-of-stream \"^1.1.0\"\n once \"^1.3.1\"\n\npumpify@^1.3.3:\n version \"1.5.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpumpify\u002F-\u002Fpumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce\"\n integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==\n dependencies:\n duplexify \"^3.6.0\"\n inherits \"^2.0.3\"\n pump \"^2.0.0\"\n\npunycode@1.3.2:\n version \"1.3.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpunycode\u002F-\u002Fpunycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d\"\n integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=\n\npunycode@^1.2.4:\n version \"1.4.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpunycode\u002F-\u002Fpunycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e\"\n integrity sha1-wNWmOycYgArY4esPpSachN1BhF4=\n\npunycode@^2.1.0, punycode@^2.1.1:\n version \"2.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fpunycode\u002F-\u002Fpunycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec\"\n integrity sha512-XRsRjdf+j5ml+y\u002F6GKHPZbrF\u002F8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==\n\nqs@~6.5.2:\n version \"6.5.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fqs\u002F-\u002Fqs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36\"\n integrity sha512-N5ZAX4\u002FLxJmF+7wN74pUD6qAh9\u002FwnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91\u002FodN2dW\u002FWOl7qQHNDGA==\n\nquerystring-es3@^0.2.0:\n version \"0.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fquerystring-es3\u002F-\u002Fquerystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73\"\n integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=\n\nquerystring@0.2.0, querystring@^0.2.0:\n version \"0.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fquerystring\u002F-\u002Fquerystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620\"\n integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=\n\nrandombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frandombytes\u002F-\u002Frandombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a\"\n integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==\n dependencies:\n safe-buffer \"^5.1.0\"\n\nrandomfill@^1.0.3:\n version \"1.0.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frandomfill\u002F-\u002Frandomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458\"\n integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU\u002Ffjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==\n dependencies:\n randombytes \"^2.0.5\"\n safe-buffer \"^5.1.0\"\n\nraw-body@2.4.1:\n version \"2.4.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fraw-body\u002F-\u002Fraw-body-2.4.1.tgz#30ac82f98bb5ae8c152e67149dac8d55153b168c\"\n integrity sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn\u002FByzo5P7JhXTyg9PzaJbH73bA==\n dependencies:\n bytes \"3.1.0\"\n http-errors \"1.7.3\"\n iconv-lite \"0.4.24\"\n unpipe \"1.0.0\"\n\nrc@^1.2.7:\n version \"1.2.8\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frc\u002F-\u002Frc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed\"\n integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==\n dependencies:\n deep-extend \"^0.6.0\"\n ini \"~1.3.0\"\n minimist \"^1.2.0\"\n strip-json-comments \"~2.0.1\"\n\nreact-dom@^17.0.1:\n version \"17.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Freact-dom\u002F-\u002Freact-dom-17.0.1.tgz#1de2560474ec9f0e334285662ede52dbc5426fc6\"\n integrity sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk\u002Flx\u002FUg==\n dependencies:\n loose-envify \"^1.1.0\"\n object-assign \"^4.1.1\"\n scheduler \"^0.20.1\"\n\nreact-is@16.13.1, react-is@^16.12.0, react-is@^16.7.0, react-is@^16.8.1:\n version \"16.13.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Freact-is\u002F-\u002Freact-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4\"\n integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki\u002FDHzaUoC5KuON\u002FBiccDaCCTZBuOcfZs70kR8bQ==\n\nreact-is@^17.0.1:\n version \"17.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Freact-is\u002F-\u002Freact-is-17.0.1.tgz#5b3531bd76a645a4c9fb6e693ed36419e3301339\"\n integrity sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up\u002FxWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==\n\nreact-refresh@0.8.3:\n version \"0.8.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Freact-refresh\u002F-\u002Freact-refresh-0.8.3.tgz#721d4657672d400c5e3c75d063c4a85fb2d5d68f\"\n integrity sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu\u002Fhg==\n\nreact-virtualized-auto-sizer@^1.0.2:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Freact-virtualized-auto-sizer\u002F-\u002Freact-virtualized-auto-sizer-1.0.2.tgz#a61dd4f756458bbf63bd895a92379f9b70f803bd\"\n integrity sha512-MYXhTY1BZpdJFjUovvYHVBmkq79szK\u002Fk7V3MO+36gJkWGkrXKtyr4vCPtpphaTLRAdDNoYEYFZWE8LjN+PIHNg==\n\nreact-window-infinite-loader@^1.0.5:\n version \"1.0.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Freact-window-infinite-loader\u002F-\u002Freact-window-infinite-loader-1.0.5.tgz#6fe094d538a88978c2c9b623052bc50cb28c2abc\"\n integrity sha512-IcPIq8lADK3zsAcqoLqQGyduicqR6jWkiK2VUX5sKSI9X\u002Frou6OWlOEexnGyujdNTG7hSG8OVBFEhLSDs4qrxg==\n\nreact-window@^1.8.6:\n version \"1.8.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Freact-window\u002F-\u002Freact-window-1.8.6.tgz#d011950ac643a994118632665aad0c6382e2a112\"\n integrity sha512-8VwEEYyjz6DCnGBsd+MgkD0KJ2\u002FOXFULyDtorIiTz+QzwoP94tBoA7CnbtyXMm+cCeAUER5KJcPtWl9cpKbOBg==\n dependencies:\n \"@babel\u002Fruntime\" \"^7.0.0\"\n memoize-one \"\u003E=3.1.1 \u003C6\"\n\nreact@^17.0.1:\n version \"17.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Freact\u002F-\u002Freact-17.0.1.tgz#6e0600416bd57574e3f86d92edba3d9008726127\"\n integrity sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==\n dependencies:\n loose-envify \"^1.1.0\"\n object-assign \"^4.1.1\"\n\nread-pkg-up@^7.0.1:\n version \"7.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fread-pkg-up\u002F-\u002Fread-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507\"\n integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+\u002FTlOePD6qKClNW7hHDKFh\u002FJ7\u002F7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==\n dependencies:\n find-up \"^4.1.0\"\n read-pkg \"^5.2.0\"\n type-fest \"^0.8.1\"\n\nread-pkg@^5.2.0:\n version \"5.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fread-pkg\u002F-\u002Fread-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc\"\n integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==\n dependencies:\n \"@types\u002Fnormalize-package-data\" \"^2.4.0\"\n normalize-package-data \"^2.5.0\"\n parse-json \"^5.0.0\"\n type-fest \"^0.6.0\"\n\n\"readable-stream@1 || 2\", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6:\n version \"2.3.7\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Freadable-stream\u002F-\u002Freadable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57\"\n integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF\u002FZTNcsZj6nRKyUmkhLFq8CHItp\u002Ffy6hQZuZmP\u002Fn3yZ9VBUbp4zz\u002FmX8hmYPw==\n dependencies:\n core-util-is \"~1.0.0\"\n inherits \"~2.0.3\"\n isarray \"~1.0.0\"\n process-nextick-args \"~2.0.0\"\n safe-buffer \"~5.1.1\"\n string_decoder \"~1.1.1\"\n util-deprecate \"~1.0.1\"\n\nreadable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.5.0, readable-stream@^3.6.0:\n version \"3.6.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Freadable-stream\u002F-\u002Freadable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198\"\n integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6\u002Fd3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==\n dependencies:\n inherits \"^2.0.3\"\n string_decoder \"^1.1.1\"\n util-deprecate \"^1.0.1\"\n\nreaddirp@^2.2.1:\n version \"2.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Freaddirp\u002F-\u002Freaddirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525\"\n integrity sha512-1JU\u002F8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==\n dependencies:\n graceful-fs \"^4.1.11\"\n micromatch \"^3.1.10\"\n readable-stream \"^2.0.2\"\n\nreaddirp@~3.4.0:\n version \"3.4.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Freaddirp\u002F-\u002Freaddirp-3.4.0.tgz#9fdccdf9e9155805449221ac645e8303ab5b9ada\"\n integrity sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB\u002FS7ov3m3EEbZI2zeNvX+hGQ==\n dependencies:\n picomatch \"^2.2.1\"\n\nreaddirp@~3.5.0:\n version \"3.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Freaddirp\u002F-\u002Freaddirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e\"\n integrity sha512-cMhu7c\u002F8rdhkHXWsY+osBhfSy0JikwpHK\u002F5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==\n dependencies:\n picomatch \"^2.2.1\"\n\nrealpath-native@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frealpath-native\u002F-\u002Frealpath-native-2.0.0.tgz#7377ac429b6e1fd599dc38d08ed942d0d7beb866\"\n integrity sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+\u002F6Ur1Q==\n\nredent@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fredent\u002F-\u002Fredent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f\"\n integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==\n dependencies:\n indent-string \"^4.0.0\"\n strip-indent \"^3.0.0\"\n\nregenerator-runtime@^0.13.4:\n version \"0.13.7\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fregenerator-runtime\u002F-\u002Fregenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55\"\n integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf\u002F6gH456HZ\u002FPhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==\n\nregex-not@^1.0.0, regex-not@^1.0.2:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fregex-not\u002F-\u002Fregex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c\"\n integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN\u002F+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==\n dependencies:\n extend-shallow \"^3.0.2\"\n safe-regex \"^1.1.0\"\n\nregex-parser@^2.2.11:\n version \"2.2.11\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fregex-parser\u002F-\u002Fregex-parser-2.2.11.tgz#3b37ec9049e19479806e878cabe7c1ca83ccfe58\"\n integrity sha512-jbD\u002FFT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD\u002FYFTjn1JdCk3rbMJajz8Q==\n\nregexp.prototype.flags@^1.3.0:\n version \"1.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fregexp.prototype.flags\u002F-\u002Fregexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75\"\n integrity sha512-2+Q0C5g951OlYlJz6yu5\u002FM33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP\u002FfVBkSpbbbZlS5gynbEWLipiiXiQ==\n dependencies:\n define-properties \"^1.1.3\"\n es-abstract \"^1.17.0-next.1\"\n\nregexpp@^2.0.1:\n version \"2.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fregexpp\u002F-\u002Fregexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f\"\n integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU\u002FbooSu7Eev3TDO\u002FmZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==\n\nregexpp@^3.0.0:\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fregexpp\u002F-\u002Fregexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2\"\n integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai\u002FvHUDu74pKwV8OxseMS65u2NImosQcSD0Q==\n\nremove-trailing-separator@^1.0.1:\n version \"1.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fremove-trailing-separator\u002F-\u002Fremove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef\"\n integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8=\n\nrepeat-element@^1.1.2:\n version \"1.1.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frepeat-element\u002F-\u002Frepeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce\"\n integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==\n\nrepeat-string@^1.6.1:\n version \"1.6.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frepeat-string\u002F-\u002Frepeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637\"\n integrity sha1-jcrkcOHIirwtYA\u002F\u002FSndihtp15jc=\n\nrequest-promise-core@1.1.4:\n version \"1.1.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frequest-promise-core\u002F-\u002Frequest-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f\"\n integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN\u002FKigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==\n dependencies:\n lodash \"^4.17.19\"\n\nrequest-promise-native@^1.0.7:\n version \"1.0.9\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frequest-promise-native\u002F-\u002Frequest-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28\"\n integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF\u002FI+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==\n dependencies:\n request-promise-core \"1.1.4\"\n stealthy-require \"^1.1.1\"\n tough-cookie \"^2.3.3\"\n\nrequest@^2.88.0:\n version \"2.88.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frequest\u002F-\u002Frequest-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3\"\n integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==\n dependencies:\n aws-sign2 \"~0.7.0\"\n aws4 \"^1.8.0\"\n caseless \"~0.12.0\"\n combined-stream \"~1.0.6\"\n extend \"~3.0.2\"\n forever-agent \"~0.6.1\"\n form-data \"~2.3.2\"\n har-validator \"~5.1.3\"\n http-signature \"~1.2.0\"\n is-typedarray \"~1.0.0\"\n isstream \"~0.1.2\"\n json-stringify-safe \"~5.0.1\"\n mime-types \"~2.1.19\"\n oauth-sign \"~0.9.0\"\n performance-now \"^2.1.0\"\n qs \"~6.5.2\"\n safe-buffer \"^5.1.2\"\n tough-cookie \"~2.5.0\"\n tunnel-agent \"^0.6.0\"\n uuid \"^3.3.2\"\n\nrequire-directory@^2.1.1:\n version \"2.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frequire-directory\u002F-\u002Frequire-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42\"\n integrity sha1-jGStX9MNqxyXbiNE\u002F+f3kqam30I=\n\nrequire-main-filename@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frequire-main-filename\u002F-\u002Frequire-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b\"\n integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe\u002FZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==\n\nresolve-cwd@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fresolve-cwd\u002F-\u002Fresolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d\"\n integrity sha512-OrZaX2Mb+rJCpH\u002F6CpSqt9xFVpN++x01XnN2ie9g6P5\u002F3xelLAkXWVADpdz1IHD\u002FKFfEXyE6V0U01OQ3UO2rEg==\n dependencies:\n resolve-from \"^5.0.0\"\n\nresolve-from@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fresolve-from\u002F-\u002Fresolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6\"\n integrity sha512-pb\u002FMYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp\u002F+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==\n\nresolve-from@^5.0.0:\n version \"5.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fresolve-from\u002F-\u002Fresolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69\"\n integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==\n\nresolve-url-loader@3.1.2:\n version \"3.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fresolve-url-loader\u002F-\u002Fresolve-url-loader-3.1.2.tgz#235e2c28e22e3e432ba7a5d4e305c59a58edfc08\"\n integrity sha512-QEb4A76c8Mi7I3xNKXlRKQSlLBwjUV\u002FULFMP+G7n3\u002F7tJZ8MG5wsZ3ucxP1Jz8Vevn6fnJsxDx9cIls+utGzPQ==\n dependencies:\n adjust-sourcemap-loader \"3.0.0\"\n camelcase \"5.3.1\"\n compose-function \"3.0.3\"\n convert-source-map \"1.7.0\"\n es6-iterator \"2.0.3\"\n loader-utils \"1.2.3\"\n postcss \"7.0.21\"\n rework \"1.0.1\"\n rework-visit \"1.0.0\"\n source-map \"0.6.1\"\n\nresolve-url@^0.2.1:\n version \"0.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fresolve-url\u002F-\u002Fresolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a\"\n integrity sha1-LGN\u002F53yJOv0qZj\u002FiGqkIAGjiBSo=\n\nresolve@1.1.7:\n version \"1.1.7\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fresolve\u002F-\u002Fresolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b\"\n integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=\n\nresolve@^1.10.0, resolve@^1.17.0, resolve@^1.18.1, resolve@^1.3.2:\n version \"1.18.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fresolve\u002F-\u002Fresolve-1.18.1.tgz#018fcb2c5b207d2a6424aee361c5a266da8f4130\"\n integrity sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw\u002FqbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==\n dependencies:\n is-core-module \"^2.0.0\"\n path-parse \"^1.0.6\"\n\nrestore-cursor@^3.1.0:\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frestore-cursor\u002F-\u002Frestore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e\"\n integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==\n dependencies:\n onetime \"^5.1.0\"\n signal-exit \"^3.0.2\"\n\nret@~0.1.10:\n version \"0.1.15\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fret\u002F-\u002Fret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc\"\n integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B\u002FRzEfUlLct7b5G\u002Fytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==\n\nrework-visit@1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frework-visit\u002F-\u002Frework-visit-1.0.0.tgz#9945b2803f219e2f7aca00adb8bc9f640f842c9a\"\n integrity sha1-mUWygD8hni96ygCtuLyfZA+ELJo=\n\nrework@1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frework\u002F-\u002Frework-1.0.1.tgz#30806a841342b54510aa4110850cd48534144aa7\"\n integrity sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=\n dependencies:\n convert-source-map \"^0.3.3\"\n css \"^2.0.0\"\n\nrimraf@2.6.3:\n version \"2.6.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frimraf\u002F-\u002Frimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab\"\n integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi\u002FQO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==\n dependencies:\n glob \"^7.1.3\"\n\nrimraf@^2.5.4, rimraf@^2.6.3:\n version \"2.7.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frimraf\u002F-\u002Frimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec\"\n integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==\n dependencies:\n glob \"^7.1.3\"\n\nrimraf@^3.0.0:\n version \"3.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frimraf\u002F-\u002Frimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a\"\n integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX\u002F2o0L9UBw9O\u002FY3o6wFw\u002Fi9YLapcUJWwqbi3kdxIPdC62TIA==\n dependencies:\n glob \"^7.1.3\"\n\nripemd160@^2.0.0, ripemd160@^2.0.1:\n version \"2.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fripemd160\u002F-\u002Fripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c\"\n integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==\n dependencies:\n hash-base \"^3.0.0\"\n inherits \"^2.0.1\"\n\nrsvp@^4.8.4:\n version \"4.8.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frsvp\u002F-\u002Frsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734\"\n integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==\n\nrun-async@^2.4.0:\n version \"2.4.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frun-async\u002F-\u002Frun-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455\"\n integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv\u002FYrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2\u002Fqg9O4bceNvUuDgQ==\n\nrun-queue@^1.0.0, run-queue@^1.0.3:\n version \"1.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frun-queue\u002F-\u002Frun-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47\"\n integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=\n dependencies:\n aproba \"^1.1.1\"\n\nrxjs@^6.6.0, rxjs@^6.6.3:\n version \"6.6.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Frxjs\u002F-\u002Frxjs-6.6.3.tgz#8ca84635c4daa900c0d3967a6ee7ac60271ee552\"\n integrity sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==\n dependencies:\n tslib \"^1.9.0\"\n\nsafe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0:\n version \"5.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsafe-buffer\u002F-\u002Fsafe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6\"\n integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==\n\nsafe-buffer@~5.1.0, safe-buffer@~5.1.1:\n version \"5.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsafe-buffer\u002F-\u002Fsafe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d\"\n integrity sha512-Gd2UZBJDkXlY7GbJxfsE8\u002FnvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud\u002FwPtojys4G6+g==\n\nsafe-regex@^1.1.0:\n version \"1.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsafe-regex\u002F-\u002Fsafe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e\"\n integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4=\n dependencies:\n ret \"~0.1.10\"\n\n\"safer-buffer@\u003E= 2.1.2 \u003C 3\", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:\n version \"2.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsafer-buffer\u002F-\u002Fsafer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a\"\n integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==\n\nsane@^4.0.3:\n version \"4.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsane\u002F-\u002Fsane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded\"\n integrity sha512-hhbzAgTIX8O7SHfp2c8\u002FkREfEn4qO\u002F9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==\n dependencies:\n \"@cnakazawa\u002Fwatch\" \"^1.0.3\"\n anymatch \"^2.0.0\"\n capture-exit \"^2.0.0\"\n exec-sh \"^0.3.2\"\n execa \"^1.0.0\"\n fb-watchman \"^2.0.0\"\n micromatch \"^3.1.4\"\n minimist \"^1.1.1\"\n walker \"~1.0.5\"\n\nsass-loader@10.0.5:\n version \"10.0.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsass-loader\u002F-\u002Fsass-loader-10.0.5.tgz#f53505b5ddbedf43797470ceb34066ded82bb769\"\n integrity sha512-2LqoNPtKkZq\u002FXbXNQ4C64GFEleSEHKv6NPSI+bMC\u002Fl+jpEXGJhiRYkAQToO24MR7NU4JRY2RpLpJ\u002Fgjo2Uf13w==\n dependencies:\n klona \"^2.0.4\"\n loader-utils \"^2.0.0\"\n neo-async \"^2.6.2\"\n schema-utils \"^3.0.0\"\n semver \"^7.3.2\"\n\nsaxes@^3.1.9:\n version \"3.1.11\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsaxes\u002F-\u002Fsaxes-3.1.11.tgz#d59d1fd332ec92ad98a2e0b2ee644702384b1c5b\"\n integrity sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==\n dependencies:\n xmlchars \"^2.1.1\"\n\nscheduler@^0.20.1:\n version \"0.20.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fscheduler\u002F-\u002Fscheduler-0.20.1.tgz#da0b907e24026b01181ecbc75efdc7f27b5a000c\"\n integrity sha512-LKTe+2xNJBNxu\u002FQhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw==\n dependencies:\n loose-envify \"^1.1.0\"\n object-assign \"^4.1.1\"\n\nschema-utils@2.7.1, schema-utils@^2.6.6, schema-utils@^2.7.1:\n version \"2.7.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fschema-utils\u002F-\u002Fschema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7\"\n integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R\u002Fpy0fA6xtbgLL\u002FRvtJZnU9b8s0F1q0Xg==\n dependencies:\n \"@types\u002Fjson-schema\" \"^7.0.5\"\n ajv \"^6.12.4\"\n ajv-keywords \"^3.5.2\"\n\nschema-utils@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fschema-utils\u002F-\u002Fschema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770\"\n integrity sha512-i27Mic4KovM\u002FlnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic\u002FHLU4j11mjsz2G\u002F75g==\n dependencies:\n ajv \"^6.1.0\"\n ajv-errors \"^1.0.0\"\n ajv-keywords \"^3.1.0\"\n\nschema-utils@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fschema-utils\u002F-\u002Fschema-utils-3.0.0.tgz#67502f6aa2b66a2d4032b4279a2944978a0913ef\"\n integrity sha512-6D82\u002FxSzO094ajanoOSbe4YvXWMfn2A\u002F\u002F8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==\n dependencies:\n \"@types\u002Fjson-schema\" \"^7.0.6\"\n ajv \"^6.12.5\"\n ajv-keywords \"^3.5.2\"\n\nsemver-compare@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsemver-compare\u002F-\u002Fsemver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc\"\n integrity sha1-De4hahyUGrN+nvsXiPavxf9VN\u002Fw=\n\nsemver-regex@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsemver-regex\u002F-\u002Fsemver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338\"\n integrity sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv\u002FkGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+\u002F5Qw==\n\n\"semver@2 || 3 || 4 || 5\", semver@^5.4.1, semver@^5.5.0, semver@^5.6.0:\n version \"5.7.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsemver\u002F-\u002Fsemver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7\"\n integrity sha512-sauaDf\u002FPZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==\n\nsemver@^6.0.0, semver@^6.1.2, semver@^6.3.0:\n version \"6.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsemver\u002F-\u002Fsemver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d\"\n integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m\u002FNwnDocOVruQFS1\u002FveMgdzuPcnOM34M6CwxW8jH\u002FlxEa5rBoDeUwu5HHTw==\n\nsemver@^7.3.2:\n version \"7.3.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsemver\u002F-\u002Fsemver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938\"\n integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6\u002F5XpPNp2DuRH6+9QLw\u002Forhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==\n\nserialize-javascript@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fserialize-javascript\u002F-\u002Fserialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa\"\n integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD\u002F9fCPzEqkw==\n dependencies:\n randombytes \"^2.1.0\"\n\nset-blocking@^2.0.0, set-blocking@~2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fset-blocking\u002F-\u002Fset-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7\"\n integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=\n\nset-value@^2.0.0, set-value@^2.0.1:\n version \"2.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fset-value\u002F-\u002Fset-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b\"\n integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m\u002FXPHafOmK4UWD7m2CI14GMcFypt4w\u002F0+NV5f\u002FZMby2F6S2wwA7fgynh9gWSw==\n dependencies:\n extend-shallow \"^2.0.1\"\n is-extendable \"^0.1.1\"\n is-plain-object \"^2.0.3\"\n split-string \"^3.0.1\"\n\nsetimmediate@^1.0.4:\n version \"1.0.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsetimmediate\u002F-\u002Fsetimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285\"\n integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=\n\nsetprototypeof@1.1.1:\n version \"1.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsetprototypeof\u002F-\u002Fsetprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683\"\n integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==\n\nsha.js@^2.4.0, sha.js@^2.4.8:\n version \"2.4.11\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsha.js\u002F-\u002Fsha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7\"\n integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==\n dependencies:\n inherits \"^2.0.1\"\n safe-buffer \"^5.0.1\"\n\nshallowequal@^1.1.0:\n version \"1.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fshallowequal\u002F-\u002Fshallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8\"\n integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL\u002FdSP7AFkRnniLCrK\u002F8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==\n\nsharp@0.26.2:\n version \"0.26.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsharp\u002F-\u002Fsharp-0.26.2.tgz#3d5777d246ae32890afe82a783c1cbb98456a88c\"\n integrity sha512-bGBPCxRAvdK9bX5HokqEYma4j\u002FQ5+w8Nrmb2\u002FsfgQCLEUx\u002FHblcpmOfp59obL3+knIKnOhyKmDb4tEOhvFlp6Q==\n dependencies:\n color \"^3.1.2\"\n detect-libc \"^1.0.3\"\n node-addon-api \"^3.0.2\"\n npmlog \"^4.1.2\"\n prebuild-install \"^5.3.5\"\n semver \"^7.3.2\"\n simple-get \"^4.0.0\"\n tar-fs \"^2.1.0\"\n tunnel-agent \"^0.6.0\"\n\nshebang-command@^1.2.0:\n version \"1.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fshebang-command\u002F-\u002Fshebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea\"\n integrity sha1-RKrGW2lbAzmJaMOfNj\u002FuXer98eo=\n dependencies:\n shebang-regex \"^1.0.0\"\n\nshebang-command@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fshebang-command\u002F-\u002Fshebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea\"\n integrity sha512-kHxr2zZpYtdmrN1qDjrrX\u002FZ1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1\u002FyZp6YuDY77YtvbN0dmDA==\n dependencies:\n shebang-regex \"^3.0.0\"\n\nshebang-regex@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fshebang-regex\u002F-\u002Fshebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3\"\n integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO\u002FqM=\n\nshebang-regex@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fshebang-regex\u002F-\u002Fshebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172\"\n integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M\u002Fyhz8ekcb1A==\n\nshell-quote@1.7.2:\n version \"1.7.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fshell-quote\u002F-\u002Fshell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2\"\n integrity sha512-mRz\u002Fm\u002FJVscCrkMyPqHc\u002Fbczi3OQHkLTqXHEFu0zDhK\u002Fqfv3UcOA4SVmRCLmos4bhjr9ekVQubj\u002FR7waKapmiQg==\n\nshellwords@^0.1.1:\n version \"0.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fshellwords\u002F-\u002Fshellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b\"\n integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==\n\nside-channel@^1.0.2:\n version \"1.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fside-channel\u002F-\u002Fside-channel-1.0.3.tgz#cdc46b057550bbab63706210838df5d4c19519c3\"\n integrity sha512-A6+ByhlLkksFoUepsGxfj5x1gTSrs+OydsRptUxeNCabQpCFUvcwIczgOigI8vhY\u002FOJCnPnyE9rGiwgvr9cS1g==\n dependencies:\n es-abstract \"^1.18.0-next.0\"\n object-inspect \"^1.8.0\"\n\nsignal-exit@^3.0.0, signal-exit@^3.0.2:\n version \"3.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsignal-exit\u002F-\u002Fsignal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c\"\n integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf\u002F6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==\n\nsimple-concat@^1.0.0:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsimple-concat\u002F-\u002Fsimple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f\"\n integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi\u002FrtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u\u002FsfYJLa947b7nAN2Q==\n\nsimple-get@^3.0.3:\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsimple-get\u002F-\u002Fsimple-get-3.1.0.tgz#b45be062435e50d159540b576202ceec40b9c6b3\"\n integrity sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp\u002Fhj9EDLJo3Nw4y1QksqaovlW\u002FbnptB6\u002Fc1e+qmNIDHRK+oXFDdEqBT8WzUA==\n dependencies:\n decompress-response \"^4.2.0\"\n once \"^1.3.1\"\n simple-concat \"^1.0.0\"\n\nsimple-get@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsimple-get\u002F-\u002Fsimple-get-4.0.0.tgz#73fa628278d21de83dadd5512d2cc1f4872bd675\"\n integrity sha512-ZalZGexYr3TA0SwySsr5HlgOOinS4Jsa8YB2GJ6lUNAazyAu4KG\u002FVmzMTwAt2YVXzzVj8QmefmAonZIK2BSGcQ==\n dependencies:\n decompress-response \"^6.0.0\"\n once \"^1.3.1\"\n simple-concat \"^1.0.0\"\n\nsimple-swizzle@^0.2.2:\n version \"0.2.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsimple-swizzle\u002F-\u002Fsimple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a\"\n integrity sha1-pNprY1\u002F8zMoz9w0Xy5JZLeleVXo=\n dependencies:\n is-arrayish \"^0.3.1\"\n\nsisteransi@^1.0.5:\n version \"1.0.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsisteransi\u002F-\u002Fsisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed\"\n integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==\n\nslash@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fslash\u002F-\u002Fslash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634\"\n integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==\n\nslice-ansi@^2.1.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fslice-ansi\u002F-\u002Fslice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636\"\n integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==\n dependencies:\n ansi-styles \"^3.2.0\"\n astral-regex \"^1.0.0\"\n is-fullwidth-code-point \"^2.0.0\"\n\nslice-ansi@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fslice-ansi\u002F-\u002Fslice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787\"\n integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==\n dependencies:\n ansi-styles \"^4.0.0\"\n astral-regex \"^2.0.0\"\n is-fullwidth-code-point \"^3.0.0\"\n\nslice-ansi@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fslice-ansi\u002F-\u002Fslice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b\"\n integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg\u002FWBnOLxghZtKKurENQ==\n dependencies:\n ansi-styles \"^4.0.0\"\n astral-regex \"^2.0.0\"\n is-fullwidth-code-point \"^3.0.0\"\n\nsnapdragon-node@^2.0.1:\n version \"2.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsnapdragon-node\u002F-\u002Fsnapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b\"\n integrity sha512-O27l4xaMYt\u002FRSQ5TR3vpWCAB5Kb\u002FczIcqUFOM\u002FC4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==\n dependencies:\n define-property \"^1.0.0\"\n isobject \"^3.0.0\"\n snapdragon-util \"^3.0.1\"\n\nsnapdragon-util@^3.0.1:\n version \"3.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsnapdragon-util\u002F-\u002Fsnapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2\"\n integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==\n dependencies:\n kind-of \"^3.2.0\"\n\nsnapdragon@^0.8.1:\n version \"0.8.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsnapdragon\u002F-\u002Fsnapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d\"\n integrity sha512-FtyOnWN\u002FwCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy\u002F4dMtbBjA4ioNlg==\n dependencies:\n base \"^0.11.1\"\n debug \"^2.2.0\"\n define-property \"^0.2.5\"\n extend-shallow \"^2.0.1\"\n map-cache \"^0.2.2\"\n source-map \"^0.5.6\"\n source-map-resolve \"^0.5.0\"\n use \"^3.1.0\"\n\nsource-list-map@^2.0.0:\n version \"2.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsource-list-map\u002F-\u002Fsource-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34\"\n integrity sha512-qnQ7gVMxGNxsiL4lEuJwe\u002FTo8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==\n\nsource-map-resolve@^0.5.0, source-map-resolve@^0.5.2:\n version \"0.5.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsource-map-resolve\u002F-\u002Fsource-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a\"\n integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF\u002Ff5O\u002Ft8x+KaNdrdIAsruNzoh\u002FKpialbqAnw==\n dependencies:\n atob \"^2.1.2\"\n decode-uri-component \"^0.2.0\"\n resolve-url \"^0.2.1\"\n source-map-url \"^0.4.0\"\n urix \"^0.1.0\"\n\nsource-map-resolve@^0.6.0:\n version \"0.6.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsource-map-resolve\u002F-\u002Fsource-map-resolve-0.6.0.tgz#3d9df87e236b53f16d01e58150fc7711138e5ed2\"\n integrity sha512-KXBr9d\u002FfO\u002FbWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP\u002FqkuMgR\u002Fw==\n dependencies:\n atob \"^2.1.2\"\n decode-uri-component \"^0.2.0\"\n\nsource-map-support@^0.5.6, source-map-support@~0.5.12:\n version \"0.5.19\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsource-map-support\u002F-\u002Fsource-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61\"\n integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi\u002FMdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==\n dependencies:\n buffer-from \"^1.0.0\"\n source-map \"^0.6.0\"\n\nsource-map-url@^0.4.0:\n version \"0.4.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsource-map-url\u002F-\u002Fsource-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3\"\n integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=\n\nsource-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:\n version \"0.6.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsource-map\u002F-\u002Fsource-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263\"\n integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz\u002Fh0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==\n\nsource-map@0.7.3, source-map@^0.7.3:\n version \"0.7.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsource-map\u002F-\u002Fsource-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383\"\n integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==\n\nsource-map@0.8.0-beta.0:\n version \"0.8.0-beta.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsource-map\u002F-\u002Fsource-map-0.8.0-beta.0.tgz#d4c1bb42c3f7ee925f005927ba10709e0d1d1f11\"\n integrity sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==\n dependencies:\n whatwg-url \"^7.0.0\"\n\nsource-map@^0.5.0, source-map@^0.5.6:\n version \"0.5.7\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsource-map\u002F-\u002Fsource-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc\"\n integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=\n\nspdx-correct@^3.0.0:\n version \"3.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fspdx-correct\u002F-\u002Fspdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9\"\n integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==\n dependencies:\n spdx-expression-parse \"^3.0.0\"\n spdx-license-ids \"^3.0.0\"\n\nspdx-exceptions@^2.1.0:\n version \"2.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fspdx-exceptions\u002F-\u002Fspdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d\"\n integrity sha512-\u002FtTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu\u002Ftfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==\n\nspdx-expression-parse@^3.0.0:\n version \"3.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fspdx-expression-parse\u002F-\u002Fspdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679\"\n integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H\u002FL9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx\u002FZK4Q==\n dependencies:\n spdx-exceptions \"^2.1.0\"\n spdx-license-ids \"^3.0.0\"\n\nspdx-license-ids@^3.0.0:\n version \"3.0.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fspdx-license-ids\u002F-\u002Fspdx-license-ids-3.0.6.tgz#c80757383c28abf7296744998cbc106ae8b854ce\"\n integrity sha512-+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ\u002FE\u002FXiIWoXBTw==\n\nsplit-string@^3.0.1, split-string@^3.0.2:\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsplit-string\u002F-\u002Fsplit-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2\"\n integrity sha512-NzNVhJDYpwceVVii8\u002FHu6DKfD2G+NrQHlS\u002FV\u002Fqgv763EYudVwEcMQNxd2lh+0VrUByXN\u002FoJkl5grOhYWvQUYiw==\n dependencies:\n extend-shallow \"^3.0.0\"\n\nsprintf-js@~1.0.2:\n version \"1.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsprintf-js\u002F-\u002Fsprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c\"\n integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=\n\nsshpk@^1.7.0:\n version \"1.16.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsshpk\u002F-\u002Fsshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877\"\n integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==\n dependencies:\n asn1 \"~0.2.3\"\n assert-plus \"^1.0.0\"\n bcrypt-pbkdf \"^1.0.0\"\n dashdash \"^1.12.0\"\n ecc-jsbn \"~0.1.1\"\n getpass \"^0.1.1\"\n jsbn \"~0.1.0\"\n safer-buffer \"^2.0.2\"\n tweetnacl \"~0.14.0\"\n\nssri@^6.0.1:\n version \"6.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fssri\u002F-\u002Fssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8\"\n integrity sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs\u002F7WvSACcrMYrNp+b8kDL1\u002F0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx\u002FQA==\n dependencies:\n figgy-pudding \"^3.5.1\"\n\nstack-utils@^1.0.1:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstack-utils\u002F-\u002Fstack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8\"\n integrity sha512-MTX+MeG5U994cazkjd\u002F9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==\n\nstacktrace-parser@0.1.10:\n version \"0.1.10\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstacktrace-parser\u002F-\u002Fstacktrace-parser-0.1.10.tgz#29fb0cae4e0d0b85155879402857a1639eb6051a\"\n integrity sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4\u002FWG68jMlQZ2p8wlg==\n dependencies:\n type-fest \"^0.7.1\"\n\nstatic-extend@^0.1.1:\n version \"0.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstatic-extend\u002F-\u002Fstatic-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6\"\n integrity sha1-YICcOcv\u002FVTNyJv1eC1IPNB8ftcY=\n dependencies:\n define-property \"^0.2.5\"\n object-copy \"^0.1.0\"\n\n\"statuses@\u003E= 1.5.0 \u003C 2\":\n version \"1.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstatuses\u002F-\u002Fstatuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c\"\n integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=\n\nstealthy-require@^1.1.1:\n version \"1.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstealthy-require\u002F-\u002Fstealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b\"\n integrity sha1-NbCYdbT\u002FSfJqd35QmzCQoyJr8ks=\n\nstream-browserify@3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstream-browserify\u002F-\u002Fstream-browserify-3.0.0.tgz#22b0a2850cdf6503e73085da1fc7b7d0c2122f2f\"\n integrity sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==\n dependencies:\n inherits \"~2.0.4\"\n readable-stream \"^3.5.0\"\n\nstream-browserify@^2.0.1:\n version \"2.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstream-browserify\u002F-\u002Fstream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b\"\n integrity sha512-nX6hmklHs\u002Fgr2FuxYDltq8fJA1GDlxKQCz8O\u002FIM4atRqBH8OORmBNgfvW5gG10GT\u002FqQ9u0CzIvr2X5Pkt6ntqg==\n dependencies:\n inherits \"~2.0.1\"\n readable-stream \"^2.0.2\"\n\nstream-each@^1.1.0:\n version \"1.2.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstream-each\u002F-\u002Fstream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae\"\n integrity sha512-vlMC2f8I2u\u002FbZGqkdfLQW\u002F13Zihpej\u002F7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==\n dependencies:\n end-of-stream \"^1.1.0\"\n stream-shift \"^1.0.0\"\n\nstream-http@^2.7.2:\n version \"2.8.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstream-http\u002F-\u002Fstream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc\"\n integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE\u002Fa47L+38PenXhUw==\n dependencies:\n builtin-status-codes \"^3.0.0\"\n inherits \"^2.0.1\"\n readable-stream \"^2.3.6\"\n to-arraybuffer \"^1.0.0\"\n xtend \"^4.0.0\"\n\nstream-shift@^1.0.0:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstream-shift\u002F-\u002Fstream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d\"\n integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA\u002FRauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==\n\nstring-argv@0.3.1:\n version \"0.3.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstring-argv\u002F-\u002Fstring-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da\"\n integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==\n\nstring-hash@1.1.3:\n version \"1.1.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstring-hash\u002F-\u002Fstring-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b\"\n integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=\n\nstring-length@^3.1.0:\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstring-length\u002F-\u002Fstring-length-3.1.0.tgz#107ef8c23456e187a8abd4a61162ff4ac6e25837\"\n integrity sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k\u002FCXFgrTIteU3jAw3payCnwSTA==\n dependencies:\n astral-regex \"^1.0.0\"\n strip-ansi \"^5.2.0\"\n\nstring-width@^1.0.1:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstring-width\u002F-\u002Fstring-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3\"\n integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=\n dependencies:\n code-point-at \"^1.0.0\"\n is-fullwidth-code-point \"^1.0.0\"\n strip-ansi \"^3.0.0\"\n\n\"string-width@^1.0.2 || 2\":\n version \"2.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstring-width\u002F-\u002Fstring-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e\"\n integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==\n dependencies:\n is-fullwidth-code-point \"^2.0.0\"\n strip-ansi \"^4.0.0\"\n\nstring-width@^3.0.0:\n version \"3.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstring-width\u002F-\u002Fstring-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961\"\n integrity sha512-vafcv6KjVZKSgz06oM\u002FH6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==\n dependencies:\n emoji-regex \"^7.0.1\"\n is-fullwidth-code-point \"^2.0.0\"\n strip-ansi \"^5.1.0\"\n\nstring-width@^4.1.0, string-width@^4.2.0:\n version \"4.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstring-width\u002F-\u002Fstring-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5\"\n integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01\u002FK5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==\n dependencies:\n emoji-regex \"^8.0.0\"\n is-fullwidth-code-point \"^3.0.0\"\n strip-ansi \"^6.0.0\"\n\nstring.prototype.matchall@^4.0.2:\n version \"4.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstring.prototype.matchall\u002F-\u002Fstring.prototype.matchall-4.0.2.tgz#48bb510326fb9fdeb6a33ceaa81a6ea04ef7648e\"\n integrity sha512-N\u002Fjp6O5fMf9os0JU3E72Qhf590RSRZU\u002FungsL\u002FqJUYVTNv7hTG0P\u002FdbPjxINVN9jpscu3nzYwKESU3P3RY5tOg==\n dependencies:\n define-properties \"^1.1.3\"\n es-abstract \"^1.17.0\"\n has-symbols \"^1.0.1\"\n internal-slot \"^1.0.2\"\n regexp.prototype.flags \"^1.3.0\"\n side-channel \"^1.0.2\"\n\nstring.prototype.trimend@^1.0.1:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstring.prototype.trimend\u002F-\u002Fstring.prototype.trimend-1.0.2.tgz#6ddd9a8796bc714b489a3ae22246a208f37bfa46\"\n integrity sha512-8oAG\u002Fhi14Z4nOVP0z6mdiVZ\u002FwqjDtWSLygMigTzAb+7aPEDTleeFf+WrF+alzecxIRkckkJVn+dTlwzJXORATw==\n dependencies:\n define-properties \"^1.1.3\"\n es-abstract \"^1.18.0-next.1\"\n\nstring.prototype.trimstart@^1.0.1:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstring.prototype.trimstart\u002F-\u002Fstring.prototype.trimstart-1.0.2.tgz#22d45da81015309cd0cdd79787e8919fc5c613e7\"\n integrity sha512-7F6CdBTl5zyu30BJFdzSTlSlLPwODC23Od+iLoVH8X6+3fvDPPuBVVj9iaB1GOsSTSIgVfsfm27R2FGrAPznWg==\n dependencies:\n define-properties \"^1.1.3\"\n es-abstract \"^1.18.0-next.1\"\n\nstring_decoder@^1.0.0, string_decoder@^1.1.1:\n version \"1.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstring_decoder\u002F-\u002Fstring_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e\"\n integrity sha512-hkRX8U1WjJFd8LsDJ2yQ\u002FwWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup\u002FwKeA==\n dependencies:\n safe-buffer \"~5.2.0\"\n\nstring_decoder@~1.1.1:\n version \"1.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstring_decoder\u002F-\u002Fstring_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8\"\n integrity sha512-n\u002FShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP\u002FmzRfwg==\n dependencies:\n safe-buffer \"~5.1.0\"\n\nstringify-object@^3.3.0:\n version \"3.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstringify-object\u002F-\u002Fstringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629\"\n integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q\u002Fg\u002Fwj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==\n dependencies:\n get-own-enumerable-property-symbols \"^3.0.0\"\n is-obj \"^1.0.1\"\n is-regexp \"^1.0.0\"\n\nstrip-ansi@6.0.0, strip-ansi@^6.0.0:\n version \"6.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstrip-ansi\u002F-\u002Fstrip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532\"\n integrity sha512-AuvKTrTfQNYNIctbR1K\u002FYGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==\n dependencies:\n ansi-regex \"^5.0.0\"\n\nstrip-ansi@^3.0.0, strip-ansi@^3.0.1:\n version \"3.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstrip-ansi\u002F-\u002Fstrip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf\"\n integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=\n dependencies:\n ansi-regex \"^2.0.0\"\n\nstrip-ansi@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstrip-ansi\u002F-\u002Fstrip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f\"\n integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8=\n dependencies:\n ansi-regex \"^3.0.0\"\n\nstrip-ansi@^5.1.0, strip-ansi@^5.2.0:\n version \"5.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstrip-ansi\u002F-\u002Fstrip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae\"\n integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==\n dependencies:\n ansi-regex \"^4.1.0\"\n\nstrip-bom@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstrip-bom\u002F-\u002Fstrip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878\"\n integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV\u002FioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==\n\nstrip-eof@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstrip-eof\u002F-\u002Fstrip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf\"\n integrity sha1-u0P\u002FVZim6wXYm1n80SnJgzE2Br8=\n\nstrip-final-newline@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstrip-final-newline\u002F-\u002Fstrip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad\"\n integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==\n\nstrip-indent@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstrip-indent\u002F-\u002Fstrip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001\"\n integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid\u002FdrOhgitgYku\u002FletMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==\n dependencies:\n min-indent \"^1.0.0\"\n\nstrip-json-comments@^3.0.1:\n version \"3.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstrip-json-comments\u002F-\u002Fstrip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006\"\n integrity sha512-6fPc+R4ihwqP6N\u002FaIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS\u002FmEHLp7Vehlt3ql6lEig==\n\nstrip-json-comments@~2.0.1:\n version \"2.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstrip-json-comments\u002F-\u002Fstrip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a\"\n integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=\n\nstyle-loader@1.2.1:\n version \"1.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstyle-loader\u002F-\u002Fstyle-loader-1.2.1.tgz#c5cbbfbf1170d076cfdd86e0109c5bba114baa1a\"\n integrity sha512-ByHSTQvHLkWE9Ir5+lGbVOXhxX10fbprhLvdg96wedFZb4NDekDPxVKv5Fwmio+QcMlkkNfuK+5W1peQ5CUhZg==\n dependencies:\n loader-utils \"^2.0.0\"\n schema-utils \"^2.6.6\"\n\nstyled-components@^5.2.1:\n version \"5.2.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstyled-components\u002F-\u002Fstyled-components-5.2.1.tgz#6ed7fad2dc233825f64c719ffbdedd84ad79101a\"\n integrity sha512-sBdgLWrCFTKtmZm\u002F9x7jkIabjFNVzCUeKfoQsM6R3saImkUnjx0QYdLwJHBjY9ifEcmjDamJDVfknWm1yxZPxQ==\n dependencies:\n \"@babel\u002Fhelper-module-imports\" \"^7.0.0\"\n \"@babel\u002Ftraverse\" \"^7.4.5\"\n \"@emotion\u002Fis-prop-valid\" \"^0.8.8\"\n \"@emotion\u002Fstylis\" \"^0.8.4\"\n \"@emotion\u002Funitless\" \"^0.7.4\"\n babel-plugin-styled-components \"\u003E= 1\"\n css-to-react-native \"^3.0.0\"\n hoist-non-react-statics \"^3.0.0\"\n shallowequal \"^1.1.0\"\n supports-color \"^5.5.0\"\n\nstyled-jsx@3.3.1:\n version \"3.3.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstyled-jsx\u002F-\u002Fstyled-jsx-3.3.1.tgz#d79f306c42c99cefbe8e76f35dad8100dc5c9ecc\"\n integrity sha512-RhW71t3k95E3g7Zq3lEBk+kmf+p4ZME7c5tfsYf9M5mq6CgIvFXkbvhawL2gWriXLRlMyKAYACE89Qa2JnTqUw==\n dependencies:\n \"@babel\u002Ftypes\" \"7.8.3\"\n babel-plugin-syntax-jsx \"6.18.0\"\n convert-source-map \"1.7.0\"\n loader-utils \"1.2.3\"\n source-map \"0.7.3\"\n string-hash \"1.1.3\"\n stylis \"3.5.4\"\n stylis-rule-sheet \"0.0.10\"\n\nstylis-rule-sheet@0.0.10:\n version \"0.0.10\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstylis-rule-sheet\u002F-\u002Fstylis-rule-sheet-0.0.10.tgz#44e64a2b076643f4b52e5ff71efc04d8c3c4a430\"\n integrity sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==\n\nstylis@3.5.4:\n version \"3.5.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fstylis\u002F-\u002Fstylis-3.5.4.tgz#f665f25f5e299cf3d64654ab949a57c768b73fbe\"\n integrity sha512-8\u002F3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k\u002F8BIexd5ydZdboXtU90XH9Ec4Bv\u002FQ==\n\nsupports-color@^5.3.0, supports-color@^5.5.0:\n version \"5.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsupports-color\u002F-\u002Fsupports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f\"\n integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==\n dependencies:\n has-flag \"^3.0.0\"\n\nsupports-color@^6.1.0:\n version \"6.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsupports-color\u002F-\u002Fsupports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3\"\n integrity sha512-qe1jfm1Mg7Nq\u002FNSh6XE24gPXROEVsWHxC1LIx\u002F\u002FXNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==\n dependencies:\n has-flag \"^3.0.0\"\n\nsupports-color@^7.0.0, supports-color@^7.1.0:\n version \"7.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsupports-color\u002F-\u002Fsupports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da\"\n integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO\u002F+Lwxc9+0q2wLyv4Dfvt80\u002FDPn2pqOBsJdDiogXGR9+OvwRw==\n dependencies:\n has-flag \"^4.0.0\"\n\nsupports-hyperlinks@^2.0.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsupports-hyperlinks\u002F-\u002Fsupports-hyperlinks-2.1.0.tgz#f663df252af5f37c5d49bbd7eeefa9e0b9e59e47\"\n integrity sha512-zoE5\u002Fe+dnEijk6ASB6\u002FqrK+oYdm2do1hjoLWrqUC\u002F8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL\u002FF5CA==\n dependencies:\n has-flag \"^4.0.0\"\n supports-color \"^7.0.0\"\n\nswr@^0.3.8:\n version \"0.3.8\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fswr\u002F-\u002Fswr-0.3.8.tgz#b3c3c7fa278913d22dbe1f3f28c07df9da9be944\"\n integrity sha512-EHRlaqoBtHsB2wOB+dQJ74DrZvaRGu4BaIQrhkD+\u002Frj8\u002FUGo2iQXN+rCcYnV7\u002FVAreBJBmm9+lDkwZmUqWEkKA==\n dependencies:\n dequal \"2.0.2\"\n\nsymbol-tree@^3.2.2:\n version \"3.2.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fsymbol-tree\u002F-\u002Fsymbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2\"\n integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==\n\ntable@^5.2.3:\n version \"5.4.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftable\u002F-\u002Ftable-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e\"\n integrity sha512-wmEc8m4fjnob4gt5riFRtTu\u002F6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6\u002FYR3qRZv7e56kAEAtd6nKZaxe0Ug==\n dependencies:\n ajv \"^6.10.2\"\n lodash \"^4.17.14\"\n slice-ansi \"^2.1.0\"\n string-width \"^3.0.0\"\n\ntapable@^1.0.0, tapable@^1.1.3:\n version \"1.1.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftapable\u002F-\u002Ftapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2\"\n integrity sha512-4WK\u002FbYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==\n\ntar-fs@^2.0.0, tar-fs@^2.1.0:\n version \"2.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftar-fs\u002F-\u002Ftar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784\"\n integrity sha512-V0r2Y9scmbDRLCNex\u002F+hYzvp\u002FzyYjvFbHPNgVTKfQvVrb6guiE\u002FfxP+XblDNR011utopbkex2nM4dHNV6GDsng==\n dependencies:\n chownr \"^1.1.1\"\n mkdirp-classic \"^0.5.2\"\n pump \"^3.0.0\"\n tar-stream \"^2.1.4\"\n\ntar-stream@^2.1.4:\n version \"2.1.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftar-stream\u002F-\u002Ftar-stream-2.1.4.tgz#c4fb1a11eb0da29b893a5b25476397ba2d053bfa\"\n integrity sha512-o3pS2zlG4gxr67GmFYBLlq+dM8gyRGUOvsrHclSkvtVtQbjV0s\u002F+ZE8OpICbaj8clrX3tjeHngYGP7rweaBnuw==\n dependencies:\n bl \"^4.0.3\"\n end-of-stream \"^1.4.1\"\n fs-constants \"^1.0.0\"\n inherits \"^2.0.3\"\n readable-stream \"^3.1.1\"\n\nterminal-link@^2.0.0:\n version \"2.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fterminal-link\u002F-\u002Fterminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994\"\n integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp\u002Fbt+ymiy9\u002FnpwXya9KH99nJ\u002FGXFIiUkYGFQ==\n dependencies:\n ansi-escapes \"^4.2.1\"\n supports-hyperlinks \"^2.0.0\"\n\nterser-webpack-plugin@^1.4.3:\n version \"1.4.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fterser-webpack-plugin\u002F-\u002Fterser-webpack-plugin-1.4.5.tgz#a217aefaea330e734ffacb6120ec1fa312d6040b\"\n integrity sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd\u002FagHtH0kOtw==\n dependencies:\n cacache \"^12.0.2\"\n find-cache-dir \"^2.1.0\"\n is-wsl \"^1.1.0\"\n schema-utils \"^1.0.0\"\n serialize-javascript \"^4.0.0\"\n source-map \"^0.6.1\"\n terser \"^4.1.2\"\n webpack-sources \"^1.4.0\"\n worker-farm \"^1.7.0\"\n\nterser@5.1.0:\n version \"5.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fterser\u002F-\u002Fterser-5.1.0.tgz#1f4ab81c8619654fdded51f3157b001e1747281d\"\n integrity sha512-pwC1Jbzahz1ZPU87NQ8B3g5pKbhyJSiHih4gLH6WZiPU8mmS1IlGbB0A2Nuvkj\u002FLCNsgIKctg6GkYwWCeTvXZQ==\n dependencies:\n commander \"^2.20.0\"\n source-map \"~0.6.1\"\n source-map-support \"~0.5.12\"\n\nterser@^4.1.2:\n version \"4.8.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fterser\u002F-\u002Fterser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17\"\n integrity sha512-EAPipTNeWsb\u002F3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==\n dependencies:\n commander \"^2.20.0\"\n source-map \"~0.6.1\"\n source-map-support \"~0.5.12\"\n\ntest-exclude@^6.0.0:\n version \"6.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftest-exclude\u002F-\u002Ftest-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e\"\n integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk\u002FMh\u002FxC\u002FpzVPlQtY6ngoIH\u002F5\u002FtciuhGfvESU8GrHrcxD56w==\n dependencies:\n \"@istanbuljs\u002Fschema\" \"^0.1.2\"\n glob \"^7.1.4\"\n minimatch \"^3.0.4\"\n\ntext-table@^0.2.0:\n version \"0.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftext-table\u002F-\u002Ftext-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4\"\n integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=\n\nthroat@^5.0.0:\n version \"5.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fthroat\u002F-\u002Fthroat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b\"\n integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7\u002FGYAuXaNOiYCA==\n\nthrough2@^2.0.0:\n version \"2.0.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fthrough2\u002F-\u002Fthrough2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd\"\n integrity sha512-\u002FmrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW\u002FSu8LQGc4YKni5rYSQ==\n dependencies:\n readable-stream \"~2.3.6\"\n xtend \"~4.0.1\"\n\nthrough@^2.3.6, through@^2.3.8:\n version \"2.3.8\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fthrough\u002F-\u002Fthrough-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5\"\n integrity sha1-DdTJ\u002F6q8NXlgsbckEV1+Doai4fU=\n\ntimers-browserify@^2.0.4:\n version \"2.0.12\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftimers-browserify\u002F-\u002Ftimers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee\"\n integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf\u002FhAvg8EEyJxDo3du\u002F0KlhPiKQ==\n dependencies:\n setimmediate \"^1.0.4\"\n\ntmp@^0.0.33:\n version \"0.0.33\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftmp\u002F-\u002Ftmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9\"\n integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==\n dependencies:\n os-tmpdir \"~1.0.2\"\n\ntmpl@1.0.x:\n version \"1.0.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftmpl\u002F-\u002Ftmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1\"\n integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=\n\nto-arraybuffer@^1.0.0:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fto-arraybuffer\u002F-\u002Fto-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43\"\n integrity sha1-fSKbH8xjfkZsoIEYCDanqr\u002F4P0M=\n\nto-fast-properties@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fto-fast-properties\u002F-\u002Fto-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e\"\n integrity sha1-3F5pjL0HkmW8c+A3doGk5Og\u002FYW4=\n\nto-object-path@^0.3.0:\n version \"0.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fto-object-path\u002F-\u002Fto-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af\"\n integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=\n dependencies:\n kind-of \"^3.0.2\"\n\nto-regex-range@^2.1.0:\n version \"2.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fto-regex-range\u002F-\u002Fto-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38\"\n integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=\n dependencies:\n is-number \"^3.0.0\"\n repeat-string \"^1.6.1\"\n\nto-regex-range@^5.0.1:\n version \"5.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fto-regex-range\u002F-\u002Fto-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4\"\n integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li\u002FHx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==\n dependencies:\n is-number \"^7.0.0\"\n\nto-regex@^3.0.1, to-regex@^3.0.2:\n version \"3.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fto-regex\u002F-\u002Fto-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce\"\n integrity sha512-FWtleNAtZ\u002FKi2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==\n dependencies:\n define-property \"^2.0.2\"\n extend-shallow \"^3.0.2\"\n regex-not \"^1.0.2\"\n safe-regex \"^1.1.0\"\n\ntoidentifier@1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftoidentifier\u002F-\u002Ftoidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553\"\n integrity sha512-yaOH\u002FPk\u002FVEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==\n\ntough-cookie@^2.3.3, tough-cookie@~2.5.0:\n version \"2.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftough-cookie\u002F-\u002Ftough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2\"\n integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX\u002Fqboeycw6iO8JwVv2+g==\n dependencies:\n psl \"^1.1.28\"\n punycode \"^2.1.1\"\n\ntough-cookie@^3.0.1:\n version \"3.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftough-cookie\u002F-\u002Ftough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2\"\n integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==\n dependencies:\n ip-regex \"^2.1.0\"\n psl \"^1.1.28\"\n punycode \"^2.1.1\"\n\ntr46@^1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftr46\u002F-\u002Ftr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09\"\n integrity sha1-qLE\u002F1r\u002FSSJUZZ0zN5VujaTtwbQk=\n dependencies:\n punycode \"^2.1.0\"\n\ntraverse@0.6.6:\n version \"0.6.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftraverse\u002F-\u002Ftraverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137\"\n integrity sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=\n\nts-pnp@^1.1.6:\n version \"1.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fts-pnp\u002F-\u002Fts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92\"\n integrity sha512-csd+vJOb\u002FgkzvcCHgTGSChYpy5f1\u002FXKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q\u002FccdhQw==\n\ntslib@^1.8.1, tslib@^1.9.0:\n version \"1.14.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftslib\u002F-\u002Ftslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00\"\n integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV\u002F0E4EyYn43P7\u002F7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==\n\ntsutils@^3.17.1:\n version \"3.17.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftsutils\u002F-\u002Ftsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759\"\n integrity sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==\n dependencies:\n tslib \"^1.8.1\"\n\ntty-browserify@0.0.0:\n version \"0.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftty-browserify\u002F-\u002Ftty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6\"\n integrity sha1-oVe6QC2iTpv5V\u002FmqadUk7tQpAaY=\n\ntunnel-agent@^0.6.0:\n version \"0.6.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftunnel-agent\u002F-\u002Ftunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd\"\n integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=\n dependencies:\n safe-buffer \"^5.0.1\"\n\ntweetnacl@^0.14.3, tweetnacl@~0.14.0:\n version \"0.14.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftweetnacl\u002F-\u002Ftweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64\"\n integrity sha1-WuaBd\u002FGS1EViadEIr6k\u002F+HQ\u002FT2Q=\n\ntype-check@~0.3.2:\n version \"0.3.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftype-check\u002F-\u002Ftype-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72\"\n integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=\n dependencies:\n prelude-ls \"~1.1.2\"\n\ntype-detect@4.0.8:\n version \"4.0.8\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftype-detect\u002F-\u002Ftype-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c\"\n integrity sha512-0fr\u002FmIH1dlO+x7TlcMy+bIDqKPsw\u002F70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5\u002Fg==\n\ntype-fest@^0.11.0:\n version \"0.11.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftype-fest\u002F-\u002Ftype-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1\"\n integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==\n\ntype-fest@^0.6.0:\n version \"0.6.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftype-fest\u002F-\u002Ftype-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b\"\n integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7\u002FQLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==\n\ntype-fest@^0.7.1:\n version \"0.7.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftype-fest\u002F-\u002Ftype-fest-0.7.1.tgz#8dda65feaf03ed78f0a3f9678f1869147f7c5c48\"\n integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh\u002FJdL1+PSicowtNb0WFpn59GK8\u002FlfD61bVtzguz7b3PBt74nxpv\u002FPw5po5Rg==\n\ntype-fest@^0.8.1:\n version \"0.8.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftype-fest\u002F-\u002Ftype-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d\"\n integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==\n\ntype@^1.0.1:\n version \"1.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftype\u002F-\u002Ftype-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0\"\n integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN\u002FF+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==\n\ntype@^2.0.0:\n version \"2.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftype\u002F-\u002Ftype-2.1.0.tgz#9bdc22c648cf8cf86dd23d32336a41cfb6475e3f\"\n integrity sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA==\n\ntypedarray-to-buffer@^3.1.5:\n version \"3.1.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftypedarray-to-buffer\u002F-\u002Ftypedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080\"\n integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr\u002F\u002FH6V+0DvJ3OQ19S979M0laLfX8rm82Q==\n dependencies:\n is-typedarray \"^1.0.0\"\n\ntypedarray@^0.0.6:\n version \"0.0.6\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftypedarray\u002F-\u002Ftypedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777\"\n integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=\n\ntypescript@^4.0.5:\n version \"4.0.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Ftypescript\u002F-\u002Ftypescript-4.0.5.tgz#ae9dddfd1069f1cb5beb3ef3b2170dd7c1332389\"\n integrity sha512-ywmr\u002FVrTVCmNTJ6iV2LwIrfG1P+lv6luD8sUJs+2eI9NLGigaN+nUQc13iHqisq7bra9lnmUSYqbJvegraBOPQ==\n\nunion-value@^1.0.0:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Funion-value\u002F-\u002Funion-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847\"\n integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG\u002FxwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==\n dependencies:\n arr-union \"^3.1.0\"\n get-value \"^2.0.6\"\n is-extendable \"^0.1.1\"\n set-value \"^2.0.1\"\n\nuniq@^1.0.1:\n version \"1.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Funiq\u002F-\u002Funiq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff\"\n integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=\n\nunique-filename@^1.1.1:\n version \"1.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Funique-filename\u002F-\u002Funique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230\"\n integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==\n dependencies:\n unique-slug \"^2.0.0\"\n\nunique-slug@^2.0.0:\n version \"2.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Funique-slug\u002F-\u002Funique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c\"\n integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==\n dependencies:\n imurmurhash \"^0.1.4\"\n\nunpipe@1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Funpipe\u002F-\u002Funpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec\"\n integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=\n\nunset-value@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Funset-value\u002F-\u002Funset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559\"\n integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=\n dependencies:\n has-value \"^0.3.1\"\n isobject \"^3.0.0\"\n\nupath@^1.1.1:\n version \"1.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fupath\u002F-\u002Fupath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894\"\n integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN\u002FG\u002FjS4jfqUkZxoryvJgVPEcrl5NL\u002FggHsSmLMHuH64Lhg==\n\nuri-js@^4.2.2:\n version \"4.4.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Furi-js\u002F-\u002Furi-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602\"\n integrity sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g\u002FOejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==\n dependencies:\n punycode \"^2.1.0\"\n\nurix@^0.1.0:\n version \"0.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Furix\u002F-\u002Furix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72\"\n integrity sha1-2pN\u002FemLiH+wf0Y1Js1wpNQZ6bHI=\n\nurl@^0.11.0:\n version \"0.11.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Furl\u002F-\u002Furl-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1\"\n integrity sha1-ODjpfPxgUh63PFJajlW\u002F3Z4uKPE=\n dependencies:\n punycode \"1.3.2\"\n querystring \"0.2.0\"\n\nuse-subscription@1.5.0:\n version \"1.5.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fuse-subscription\u002F-\u002Fuse-subscription-1.5.0.tgz#0df66fdf97b9a340147ad72f76fac1db6f56d240\"\n integrity sha512-\u002FFVRiB2I7NDjzWoNBYPt6YkkvleMm\u002FlFtxj1hH6nX2TVrJ\u002F5UTbovw9OE1efv2Zl0HoAYuTjM7zHd9OsABn5sg==\n dependencies:\n object-assign \"^4.1.1\"\n\nuse@^3.1.0:\n version \"3.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fuse\u002F-\u002Fuse-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f\"\n integrity sha512-cwESVXlO3url9YWlFW\u002FTA9cshCEhtu7IKJ\u002Fp5soJ\u002FgGpj7vbvFrAY\u002FeIioQ6Dw23KjZhYgiIo8HOs1nQ2vr\u002FoQ==\n\nutil-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Futil-deprecate\u002F-\u002Futil-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf\"\n integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=\n\nutil@0.10.3:\n version \"0.10.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Futil\u002F-\u002Futil-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9\"\n integrity sha1-evsa\u002FlCAUkZInj23\u002Fg7TeTNqwPk=\n dependencies:\n inherits \"2.0.1\"\n\nutil@^0.11.0:\n version \"0.11.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Futil\u002F-\u002Futil-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61\"\n integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM\u002FS5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW\u002FNdn2NB\u002FHQ==\n dependencies:\n inherits \"2.0.3\"\n\nuuid@^3.3.2:\n version \"3.4.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fuuid\u002F-\u002Fuuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee\"\n integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S\u002FbReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb\u002FA==\n\nv8-compile-cache@^2.0.3:\n version \"2.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fv8-compile-cache\u002F-\u002Fv8-compile-cache-2.2.0.tgz#9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132\"\n integrity sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K\u002F9rfpZR3VLX+YWBbKoxCgS43Q==\n\nv8-to-istanbul@^4.1.3:\n version \"4.1.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fv8-to-istanbul\u002F-\u002Fv8-to-istanbul-4.1.4.tgz#b97936f21c0e2d9996d4985e5c5156e9d4e49cd6\"\n integrity sha512-Rw6vJHj1mbdK8edjR7+zuJrpDtKIgNdAvTSAcpYfgMIw+u2dPDntD3dgN4XQFLU2\u002FfvFQdzj+EeSGfd\u002FjnY5fQ==\n dependencies:\n \"@types\u002Fistanbul-lib-coverage\" \"^2.0.1\"\n convert-source-map \"^1.6.0\"\n source-map \"^0.7.3\"\n\nvalidate-npm-package-license@^3.0.1:\n version \"3.0.4\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fvalidate-npm-package-license\u002F-\u002Fvalidate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a\"\n integrity sha512-DpKm2Ui\u002FxN7\u002FHQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3\u002FJmbhsDo7fcAJq4s9h27Ew==\n dependencies:\n spdx-correct \"^3.0.0\"\n spdx-expression-parse \"^3.0.0\"\n\nverror@1.10.0:\n version \"1.10.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fverror\u002F-\u002Fverror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400\"\n integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=\n dependencies:\n assert-plus \"^1.0.0\"\n core-util-is \"1.0.2\"\n extsprintf \"^1.2.0\"\n\nvm-browserify@1.1.2, vm-browserify@^1.0.1:\n version \"1.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fvm-browserify\u002F-\u002Fvm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0\"\n integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd\u002FRRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==\n\nw3c-hr-time@^1.0.1:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fw3c-hr-time\u002F-\u002Fw3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd\"\n integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo\u002FYe3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==\n dependencies:\n browser-process-hrtime \"^1.0.0\"\n\nw3c-xmlserializer@^1.1.2:\n version \"1.1.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fw3c-xmlserializer\u002F-\u002Fw3c-xmlserializer-1.1.2.tgz#30485ca7d70a6fd052420a3d12fd90e6339ce794\"\n integrity sha512-p10l\u002FayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==\n dependencies:\n domexception \"^1.0.1\"\n webidl-conversions \"^4.0.2\"\n xml-name-validator \"^3.0.0\"\n\nwalker@^1.0.7, walker@~1.0.5:\n version \"1.0.7\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fwalker\u002F-\u002Fwalker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb\"\n integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=\n dependencies:\n makeerror \"1.0.x\"\n\nwatchpack-chokidar2@^2.0.1:\n version \"2.0.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fwatchpack-chokidar2\u002F-\u002Fwatchpack-chokidar2-2.0.1.tgz#38500072ee6ece66f3769936950ea1771be1c957\"\n integrity sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5\u002FPpw2P2B\u002F3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==\n dependencies:\n chokidar \"^2.1.8\"\n\nwatchpack@2.0.0-beta.13:\n version \"2.0.0-beta.13\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fwatchpack\u002F-\u002Fwatchpack-2.0.0-beta.13.tgz#9d9b0c094b8402139333e04eb6194643c8384f55\"\n integrity sha512-ZEFq2mx\u002Fk5qgQwgi6NOm+2ImICb8ngAkA\u002FrZ6oyXZ7SgPn3pncf+nfhYTCrs3lmHwOxnPtGLTOuFLfpSMh1VMA==\n dependencies:\n glob-to-regexp \"^0.4.1\"\n graceful-fs \"^4.1.2\"\n\nwatchpack@^1.7.4:\n version \"1.7.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fwatchpack\u002F-\u002Fwatchpack-1.7.5.tgz#1267e6c55e0b9b5be44c2023aed5437a2c26c453\"\n integrity sha512-9P3MWk6SrKjHsGkLT2KHXdQ\u002F9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe\u002FMQ==\n dependencies:\n graceful-fs \"^4.1.2\"\n neo-async \"^2.5.0\"\n optionalDependencies:\n chokidar \"^3.4.1\"\n watchpack-chokidar2 \"^2.0.1\"\n\nwebidl-conversions@^4.0.2:\n version \"4.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fwebidl-conversions\u002F-\u002Fwebidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad\"\n integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==\n\nwebpack-sources@1.4.3, webpack-sources@^1.4.0, webpack-sources@^1.4.1:\n version \"1.4.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fwebpack-sources\u002F-\u002Fwebpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933\"\n integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==\n dependencies:\n source-list-map \"^2.0.0\"\n source-map \"~0.6.1\"\n\nwebpack@4.44.1:\n version \"4.44.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fwebpack\u002F-\u002Fwebpack-4.44.1.tgz#17e69fff9f321b8f117d1fda714edfc0b939cc21\"\n integrity sha512-4UOGAohv\u002FVGUNQJstzEywwNxqX417FnjZgZJpJQegddzPmTvph37eBIRbRTfdySXzVtJXLJfbMN3mMYhM6GdmQ==\n dependencies:\n \"@webassemblyjs\u002Fast\" \"1.9.0\"\n \"@webassemblyjs\u002Fhelper-module-context\" \"1.9.0\"\n \"@webassemblyjs\u002Fwasm-edit\" \"1.9.0\"\n \"@webassemblyjs\u002Fwasm-parser\" \"1.9.0\"\n acorn \"^6.4.1\"\n ajv \"^6.10.2\"\n ajv-keywords \"^3.4.1\"\n chrome-trace-event \"^1.0.2\"\n enhanced-resolve \"^4.3.0\"\n eslint-scope \"^4.0.3\"\n json-parse-better-errors \"^1.0.2\"\n loader-runner \"^2.4.0\"\n loader-utils \"^1.2.3\"\n memory-fs \"^0.4.1\"\n micromatch \"^3.1.10\"\n mkdirp \"^0.5.3\"\n neo-async \"^2.6.1\"\n node-libs-browser \"^2.2.1\"\n schema-utils \"^1.0.0\"\n tapable \"^1.1.3\"\n terser-webpack-plugin \"^1.4.3\"\n watchpack \"^1.7.4\"\n webpack-sources \"^1.4.1\"\n\nwhatwg-encoding@^1.0.1, whatwg-encoding@^1.0.5:\n version \"1.0.5\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fwhatwg-encoding\u002F-\u002Fwhatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0\"\n integrity sha512-b5lim54JOPN9HtzvK9HFXvBma\u002FrnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY\u002FKNh8rxSo9DKQrnUEw==\n dependencies:\n iconv-lite \"0.4.24\"\n\nwhatwg-mimetype@^2.2.0, whatwg-mimetype@^2.3.0:\n version \"2.3.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fwhatwg-mimetype\u002F-\u002Fwhatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf\"\n integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB\u002FnCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV\u002Fvi0IC5lEAGFgrjGv\u002Fg==\n\nwhatwg-url@^7.0.0:\n version \"7.1.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fwhatwg-url\u002F-\u002Fwhatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06\"\n integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI\u002F9gzIie9CtwVLm8wtw6YJdKyxSjeg==\n dependencies:\n lodash.sortby \"^4.7.0\"\n tr46 \"^1.0.1\"\n webidl-conversions \"^4.0.2\"\n\nwhich-module@^2.0.0:\n version \"2.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fwhich-module\u002F-\u002Fwhich-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a\"\n integrity sha1-2e8H3Od7mQK4o6j6SzHD4\u002Ffm6Ho=\n\nwhich-pm-runs@^1.0.0:\n version \"1.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fwhich-pm-runs\u002F-\u002Fwhich-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb\"\n integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=\n\nwhich@^1.2.9, which@^1.3.1:\n version \"1.3.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fwhich\u002F-\u002Fwhich-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a\"\n integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112\u002FTZmHxxUfuJqPXSOm7tDyas0OSIQ==\n dependencies:\n isexe \"^2.0.0\"\n\nwhich@^2.0.1, which@^2.0.2:\n version \"2.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fwhich\u002F-\u002Fwhich-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1\"\n integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==\n dependencies:\n isexe \"^2.0.0\"\n\nwide-align@^1.1.0:\n version \"1.1.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fwide-align\u002F-\u002Fwide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457\"\n integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm\u002FwG5u\u002FRSKzwdAC4i51YigihA==\n dependencies:\n string-width \"^1.0.2 || 2\"\n\nword-wrap@~1.2.3:\n version \"1.2.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fword-wrap\u002F-\u002Fword-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c\"\n integrity sha512-Hz\u002FmrNwitNRh\u002FHUAtM\u002FVT\u002F5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==\n\nworker-farm@^1.7.0:\n version \"1.7.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fworker-farm\u002F-\u002Fworker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8\"\n integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP\u002FIJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB\u002FT5M+FLcRPjz4TDacRf3OCfNUzw==\n dependencies:\n errno \"~0.1.7\"\n\nwrap-ansi@^6.2.0:\n version \"6.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fwrap-ansi\u002F-\u002Fwrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53\"\n integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ\u002FSOIZwINatK9KY\u002Ftf+ZrlywOKU0UDj3ATXUBfxJXA==\n dependencies:\n ansi-styles \"^4.0.0\"\n string-width \"^4.1.0\"\n strip-ansi \"^6.0.0\"\n\nwrappy@1:\n version \"1.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fwrappy\u002F-\u002Fwrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f\"\n integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=\n\nwrite-file-atomic@^3.0.0:\n version \"3.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fwrite-file-atomic\u002F-\u002Fwrite-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8\"\n integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8\u002F9My\u002FDD9onKeu\u002F94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1\u002FPV\u002FQ==\n dependencies:\n imurmurhash \"^0.1.4\"\n is-typedarray \"^1.0.0\"\n signal-exit \"^3.0.2\"\n typedarray-to-buffer \"^3.1.5\"\n\nwrite@1.0.3:\n version \"1.0.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fwrite\u002F-\u002Fwrite-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3\"\n integrity sha512-\u002Flg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==\n dependencies:\n mkdirp \"^0.5.1\"\n\nws@^7.0.0:\n version \"7.4.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fws\u002F-\u002Fws-7.4.0.tgz#a5dd76a24197940d4a8bb9e0e152bb4503764da7\"\n integrity sha512-kyFwXuV\u002F5ymf+IXhS6f0+eAFvydbaBW3zjpT6hUdAh\u002FhbVjTIB5EHBGi0bPoCLSK2wcuz3BrEkB9LrYv1Nm4NQ==\n\nxml-name-validator@^3.0.0:\n version \"3.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fxml-name-validator\u002F-\u002Fxml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a\"\n integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz\u002FqizqzJKOMIfUJHETbBw\u002FsFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg\u002F4Pw==\n\nxmlchars@^2.1.1:\n version \"2.2.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fxmlchars\u002F-\u002Fxmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb\"\n integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==\n\nxtend@^4.0.0, xtend@~4.0.1:\n version \"4.0.2\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fxtend\u002F-\u002Fxtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54\"\n integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0\u002FCjtrUwFAxD82\u002FmCWbtLsGjFIad0wIsod4zrTAEQ==\n\ny18n@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fy18n\u002F-\u002Fy18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b\"\n integrity sha512-r9S\u002FZyXu\u002FXu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj\u002Fw==\n\nyallist@^3.0.2:\n version \"3.1.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fyallist\u002F-\u002Fyallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd\"\n integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==\n\nyallist@^4.0.0:\n version \"4.0.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fyallist\u002F-\u002Fyallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72\"\n integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv\u002F41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==\n\nyaml@^1.10.0:\n version \"1.10.0\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fyaml\u002F-\u002Fyaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e\"\n integrity sha512-yr2icI4glYaNG+KWONODapy2\u002FjDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==\n\nyargs-parser@^18.1.2:\n version \"18.1.3\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fyargs-parser\u002F-\u002Fyargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0\"\n integrity sha512-o50j0JeToy\u002F4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==\n dependencies:\n camelcase \"^5.0.0\"\n decamelize \"^1.2.0\"\n\nyargs@^15.3.1:\n version \"15.4.1\"\n resolved \"https:\u002F\u002Fregistry.yarnpkg.com\u002Fyargs\u002F-\u002Fyargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8\"\n integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8\u002FOVvhMrADFFEDh8DHDFRv\u002FO9i3lPhsENjO7QX0+A==\n dependencies:\n cliui \"^6.0.0\"\n decamelize \"^1.2.0\"\n find-up \"^4.1.0\"\n get-caller-file \"^2.0.1\"\n require-directory \"^2.1.1\"\n require-main-filename \"^2.0.0\"\n set-blocking \"^2.0.0\"\n string-width \"^4.2.0\"\n which-module \"^2.0.0\"\n y18n \"^4.0.0\"\n yargs-parser \"^18.1.2\"\n","id":"f5b2f655-ba09-4fb6-8d53-12ff88670fd8","is_binary":false,"title":"yarn.lock","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"SJ-ZTEPZo1_","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":null},{"code":"https:\u002F\u002Frawcdn.githack.com\u002FJCofman\u002Fswapi-example\u002Fd856d8ba0559c85aff9d3500acde02127d30fad1\u002Fpublic\u002Ffavicon.ico","id":"a346b9cc-49ac-4bba-8621-580ff5e363f3","is_binary":true,"title":"favicon.ico","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"SJzZTNDbiyu","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":"BkzaEwWoyO"},{"code":"https:\u002F\u002Frawcdn.githack.com\u002FJCofman\u002Fswapi-example\u002F463dc771f023644304af40a946c44374e7072471\u002Fpublic\u002Fimages\u002Fplanet-1.jpg","id":"1bd698f3-18f8-4a18-b989-0b3ad53f64ac","is_binary":true,"title":"planet-1.jpg","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"r1QWaNwZsku","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":"Hyv6VDZoy_"},{"code":"https:\u002F\u002Frawcdn.githack.com\u002FJCofman\u002Fswapi-example\u002F463dc771f023644304af40a946c44374e7072471\u002Fpublic\u002Fimages\u002Fplanet-5.jpg","id":"772f9647-0ace-4fb8-91ec-fc0b30ad1388","is_binary":true,"title":"planet-5.jpg","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"SyVbTVwZi1O","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":"Hyv6VDZoy_"},{"code":"https:\u002F\u002Frawcdn.githack.com\u002FJCofman\u002Fswapi-example\u002F463dc771f023644304af40a946c44374e7072471\u002Fpublic\u002Fimages\u002Fplanet-8.jpg","id":"697c948a-418b-486b-aa85-92c6e3f1e253","is_binary":true,"title":"planet-8.jpg","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"HyBbpED-jJu","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":"Hyv6VDZoy_"},{"code":"https:\u002F\u002Frawcdn.githack.com\u002FJCofman\u002Fswapi-example\u002F463dc771f023644304af40a946c44374e7072471\u002Fpublic\u002Fimages\u002Fplanet-11.jpg","id":"9b930738-17d3-47ae-a738-c415b0a7f5d9","is_binary":true,"title":"planet-11.jpg","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"SkLW64vbjJu","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":"Hyv6VDZoy_"},{"code":"https:\u002F\u002Frawcdn.githack.com\u002FJCofman\u002Fswapi-example\u002F463dc771f023644304af40a946c44374e7072471\u002Fpublic\u002Fimages\u002Fplanet-13.jpg","id":"d3c183f9-e71a-447d-b6ff-3b9538dba1ac","is_binary":true,"title":"planet-13.jpg","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"Bkw-TEPbo1O","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":"Hyv6VDZoy_"},{"code":"https:\u002F\u002Frawcdn.githack.com\u002FJCofman\u002Fswapi-example\u002F463dc771f023644304af40a946c44374e7072471\u002Fpublic\u002Fimages\u002Fplanet-7.jpg","id":"bddb9457-5251-4a83-b9e2-cda19171f744","is_binary":true,"title":"planet-7.jpg","sha":null,"inserted_at":"2021-01-24T14:41:57","updated_at":"2021-01-24T14:41:57","upload_id":null,"shortid":"Hkd-T4PZjJO","source_id":"2da85f1e-3750-42fe-89a9-5a68e5bb99a9","directory_shortid":"Hyv6VDZoy_"}],"template":"next","free_plan_editing_restricted":false,"entry":"package.json","author":null,"is_sse":true,"always_on":false,"privacy":0,"ai_consent":false,"forked_template_sandbox":null,"forked_template":null,"view_count":10514,"tags":[],"user_liked":false,"settings":{"ai_consent":null},"preview_secret":null,"npm_registries":[],"git":{"path":"","branch":"main","repo":"swapi-example","username":"JCofman","commit_sha":"911ee854ecf52062ef3060426655e6e1286fc5b3"},"original_git_commit_sha":null,"external_resources":[],"v2":false,"inserted_at":"2021-01-24T14:41:57","room_id":null,"custom_template":{"id":"3d11b163-01b1-4b17-bfc3-d5cb397e89df","title":"swapi-example","color":"#61DAFB","v2":false,"url":null,"published":false,"icon_url":null,"official":false},"restrictions":{"free_plan_editing_restricted":false,"live_sessions_restricted":false},"picks":[],"forked_from_sandbox":null,"npm_dependencies":{}};