├── .gitignore ├── components ├── button.js ├── contrast-boxes.js └── layout.js ├── lib ├── contrast.js └── index.js ├── package.json ├── pages ├── apca.js └── index.js ├── readme.md ├── theme.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next 3 | dist 4 | -------------------------------------------------------------------------------- /components/button.js: -------------------------------------------------------------------------------- 1 | /** @jsxRuntime classic */ 2 | /** @jsx jsx */ 3 | import { jsx } from 'theme-ui' 4 | 5 | const Button = ({ color, backgroundColor, borderColor, ...props }) => ( 6 | 230 | 231 | 241 |
242 | 251 |
252 | 253 | 254 |
260 |
277 |
a': { 278 | // boxShadow: '0 0 2px 4px rgba(0,0,0,.125)' 279 | }}}>
280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 |
292 |
293 | 294 | 295 |
296 | 312 | Advanced Editor 313 | 314 |

{count} generated combinations

315 |
316 | 317 | 318 | ) 319 | } 320 | 321 | export async function getServerSideProps(context) { 322 | return { 323 | props: { 324 | pinnedColor: context.query.color? decodeURI(context.query.color) : null, 325 | }, 326 | } 327 | } 328 | 329 | export default Page 330 | -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- 1 | /** @jsxRuntime classic */ 2 | /** @jsx jsx */ 3 | import { jsx } from 'theme-ui' 4 | import { useEffect, useState } from 'react' 5 | import Link from 'next/link' 6 | import contrast from 'get-contrast' 7 | import { Shuffle, Sliders, ArrowRightCircle, ArrowUpCircle, ArrowDownCircle } from 'react-feather' 8 | 9 | import Layout from '../components/layout' 10 | import Button from '../components/button' 11 | import ContrastBoxes from '../components/contrast-boxes' 12 | 13 | import { getColorPair } from '../lib' 14 | 15 | const Page = ({ pinnedColor }) => { 16 | 17 | const [count, setCount] = useState(0); 18 | 19 | const durableObjectName = 'RANDOMA11Y'; // Replace with the actual name of your Durable Object 20 | 21 | const fetchCount = async () => { 22 | try { 23 | const response = await fetch(`https://ts-gen-count.adam-f8f.workers.dev/?name=${durableObjectName}`); 24 | const data = await response.text(); 25 | setCount(data); 26 | } catch (error) { 27 | console.error('Error fetching count:', error); 28 | } 29 | }; 30 | 31 | const handleIncrement = async () => { 32 | try { 33 | await fetch(`https://ts-gen-count.adam-f8f.workers.dev/increment?name=${durableObjectName}`, { 34 | method: 'POST', 35 | }); 36 | fetchCount(); // Update count after increment 37 | } catch (error) { 38 | console.error('Error incrementing count:', error); 39 | } 40 | }; 41 | 42 | useEffect(() => { 43 | fetchCount(); 44 | }, []); 45 | 46 | 47 | const [colorPair, setColorPair] = useState([]) 48 | const newColorPair = () => { 49 | setColorPair(getColorPair(pinnedColor)) 50 | handleIncrement() 51 | 52 | } 53 | 54 | const skip = () => { 55 | newColorPair() 56 | } 57 | const skiplink = (color) => { 58 | setColorPair(getColorPair(color)) 59 | } 60 | const handleKeyUp = (e) => { 61 | const { key } = e 62 | 63 | if (key === 'ArrowRight') { 64 | skip() 65 | } else { 66 | return 67 | } 68 | } 69 | 70 | useEffect(() => { 71 | newColorPair() 72 | }, []) 73 | 74 | useEffect(() => { 75 | window.addEventListener('keyup', handleKeyUp) 76 | 77 | return () => { 78 | window.removeEventListener('keyup', handleKeyUp) 79 | } 80 | }, [colorPair]) 81 | 82 | if (!colorPair.length) { 83 | return ( 84 | 85 |
86 |

Generating color pair...

87 |
88 |
89 | ) 90 | } 91 | 92 | 93 | const [colorA, colorB] = colorPair 94 | 95 | const contrastRatio = contrast.ratio(colorA, colorB).toFixed(2) 96 | const contrastScore = contrast.score(colorA, colorB) 97 | 98 | const ColorLink = ({color, ...props}) => { 99 | return ( 100 | 105 | skiplink(color)} 107 | title={'Find matches for '+color} 108 | sx={{ 109 | display: 'block', 110 | textDecoration: 'none', 111 | backgroundColor: color, 112 | borderRadius: '9999px', 113 | fontSize: 0, 114 | height: ['12px', '12px', '12px'], 115 | aspectRatio: '1/1', 116 | cursor: 'pointer', 117 | //boxShadow: '0 0 0 2px '+colorB+', 0 0 0 3px '+colorB, 118 | transition: 'all .2s ease', 119 | ':hover': { filter: 'brightness(120%)'} 120 | //':active': {boxShadow: '0 0 0 2px '+colorB+', 0 0 0 3px '+color}, 121 | 122 | }} {...props} /> 123 | 124 | ) 125 | } 126 | return ( 127 | 128 |
142 |

153 | 168 | Randoma11y 169 |

170 | 175 |
198 | {contrastRatio}{' '} 199 | 200 | {contrastScore} 201 | 202 | 203 | 204 |
212 | 222 |
223 |
224 |
230 |
249 |
a': { 250 | // boxShadow: '0 0 2px 4px rgba(0,0,0,.125)' 251 | }}}>
252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 |
271 |
272 | 273 | 274 |
275 | 291 | Advanced Editor 292 | 293 |

{count} generated combinations

294 |
295 | 296 | 297 | ) 298 | } 299 | 300 | export async function getServerSideProps(context) { 301 | return { 302 | props: { 303 | pinnedColor: context.query.color? decodeURI(context.query.color) : null, 304 | }, 305 | } 306 | } 307 | 308 | export default Page 309 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # [randoma11y.com](https://randoma11y.com) 2 | 3 | ![Screenshot of app](https://user-images.githubusercontent.com/1424573/101247001-f2890f00-36d3-11eb-9dbf-864a50772943.png) 4 | 5 | Get random, accessible color combinations and train 6 | the robots by voting. 7 | 8 | ## Installation 9 | 10 | ```sh 11 | git clone https://github.com/components-ai/randoma11y 12 | cd randoma11y 13 | yarn 14 | ``` 15 | 16 | ## Usage 17 | 18 | ```sh 19 | yarn dev 20 | ``` 21 | -------------------------------------------------------------------------------- /theme.js: -------------------------------------------------------------------------------- 1 | export default { 2 | space: [0, 4, 8, 16, 32, 64, 128, 256, 512], 3 | fonts: { 4 | body: "system-ui, sans-serif", 5 | heading: "inherit", 6 | monospace: "Menlo, monospace", 7 | }, 8 | fontSizes: [10, 12, 14, 16, 20, 24, 32, 48, 64, 96], 9 | fontWeights: { 10 | body: 400, 11 | heading: 500, 12 | bold: 700, 13 | }, 14 | lineHeights: { 15 | body: 1.5, 16 | heading: 1, 17 | }, 18 | colors: { 19 | text: "#000", 20 | background: "#fff", 21 | primary: "#07c", 22 | secondary: "#30c", 23 | muted: "#f6f6f6", 24 | }, 25 | styles: { 26 | root: { 27 | fontFamily: "body", 28 | lineHeight: "body", 29 | fontWeight: "body", 30 | }, 31 | h1: { 32 | fontFamily: "heading", 33 | fontWeight: "heading", 34 | fontSize: 5, 35 | }, 36 | h2: { 37 | fontFamily: "heading", 38 | fontWeight: "heading", 39 | fontSize: 4, 40 | }, 41 | h3: { 42 | fontFamily: "heading", 43 | fontWeight: "heading", 44 | fontSize: 3, 45 | }, 46 | h4: { 47 | fontFamily: "heading", 48 | fontWeight: "heading", 49 | fontSize: 2, 50 | }, 51 | h5: { 52 | fontFamily: "heading", 53 | fontWeight: "heading", 54 | fontSize: 1, 55 | }, 56 | h6: { 57 | fontFamily: "heading", 58 | fontWeight: "heading", 59 | fontSize: 0, 60 | }, 61 | p: { 62 | fontFamily: "body", 63 | fontWeight: "body", 64 | lineHeight: "body", 65 | }, 66 | a: { 67 | color: "inherit", 68 | }, 69 | pre: { 70 | fontFamily: "monospace", 71 | overflowX: "auto", 72 | code: { 73 | color: "inherit", 74 | }, 75 | }, 76 | code: { 77 | fontFamily: "monospace", 78 | fontSize: "inherit", 79 | }, 80 | table: { 81 | width: "100%", 82 | borderCollapse: "separate", 83 | borderSpacing: 0, 84 | }, 85 | th: { 86 | textAlign: "left", 87 | borderBottomStyle: "solid", 88 | }, 89 | td: { 90 | textAlign: "left", 91 | borderBottomStyle: "solid", 92 | }, 93 | img: { 94 | maxWidth: "100%", 95 | }, 96 | }, 97 | layout: { 98 | container: { 99 | px: [3, 4, 5], 100 | py: [1, 2, 3] 101 | } 102 | } 103 | }; 104 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4": 6 | version "7.10.4" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" 8 | integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== 9 | dependencies: 10 | "@babel/highlight" "^7.10.4" 11 | 12 | "@babel/core@7.10.5": 13 | version "7.10.5" 14 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.10.5.tgz#1f15e2cca8ad9a1d78a38ddba612f5e7cdbbd330" 15 | integrity sha512-O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w== 16 | dependencies: 17 | "@babel/code-frame" "^7.10.4" 18 | "@babel/generator" "^7.10.5" 19 | "@babel/helper-module-transforms" "^7.10.5" 20 | "@babel/helpers" "^7.10.4" 21 | "@babel/parser" "^7.10.5" 22 | "@babel/template" "^7.10.4" 23 | "@babel/traverse" "^7.10.5" 24 | "@babel/types" "^7.10.5" 25 | convert-source-map "^1.7.0" 26 | debug "^4.1.0" 27 | gensync "^1.0.0-beta.1" 28 | json5 "^2.1.2" 29 | lodash "^4.17.19" 30 | resolve "^1.3.2" 31 | semver "^5.4.1" 32 | source-map "^0.5.0" 33 | 34 | "@babel/generator@^7.10.5", "@babel/generator@^7.12.5": 35 | version "7.12.5" 36 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.5.tgz#a2c50de5c8b6d708ab95be5e6053936c1884a4de" 37 | integrity sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A== 38 | dependencies: 39 | "@babel/types" "^7.12.5" 40 | jsesc "^2.5.1" 41 | source-map "^0.5.0" 42 | 43 | "@babel/helper-function-name@^7.10.4": 44 | version "7.10.4" 45 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a" 46 | integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== 47 | dependencies: 48 | "@babel/helper-get-function-arity" "^7.10.4" 49 | "@babel/template" "^7.10.4" 50 | "@babel/types" "^7.10.4" 51 | 52 | "@babel/helper-get-function-arity@^7.10.4": 53 | version "7.10.4" 54 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2" 55 | integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A== 56 | dependencies: 57 | "@babel/types" "^7.10.4" 58 | 59 | "@babel/helper-member-expression-to-functions@^7.12.1": 60 | version "7.12.7" 61 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz#aa77bd0396ec8114e5e30787efa78599d874a855" 62 | integrity sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw== 63 | dependencies: 64 | "@babel/types" "^7.12.7" 65 | 66 | "@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.7.0": 67 | version "7.12.5" 68 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz#1bfc0229f794988f76ed0a4d4e90860850b54dfb" 69 | integrity sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA== 70 | dependencies: 71 | "@babel/types" "^7.12.5" 72 | 73 | "@babel/helper-module-transforms@^7.10.5": 74 | version "7.12.1" 75 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz#7954fec71f5b32c48e4b303b437c34453fd7247c" 76 | integrity sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w== 77 | dependencies: 78 | "@babel/helper-module-imports" "^7.12.1" 79 | "@babel/helper-replace-supers" "^7.12.1" 80 | "@babel/helper-simple-access" "^7.12.1" 81 | "@babel/helper-split-export-declaration" "^7.11.0" 82 | "@babel/helper-validator-identifier" "^7.10.4" 83 | "@babel/template" "^7.10.4" 84 | "@babel/traverse" "^7.12.1" 85 | "@babel/types" "^7.12.1" 86 | lodash "^4.17.19" 87 | 88 | "@babel/helper-optimise-call-expression@^7.10.4": 89 | version "7.12.7" 90 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.7.tgz#7f94ae5e08721a49467346aa04fd22f750033b9c" 91 | integrity sha512-I5xc9oSJ2h59OwyUqjv95HRyzxj53DAubUERgQMrpcCEYQyToeHA+NEcUEsVWB4j53RDeskeBJ0SgRAYHDBckw== 92 | dependencies: 93 | "@babel/types" "^7.12.7" 94 | 95 | "@babel/helper-plugin-utils@7.10.4", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0": 96 | version "7.10.4" 97 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" 98 | integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== 99 | 100 | "@babel/helper-replace-supers@^7.12.1": 101 | version "7.12.5" 102 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz#f009a17543bbbbce16b06206ae73b63d3fca68d9" 103 | integrity sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA== 104 | dependencies: 105 | "@babel/helper-member-expression-to-functions" "^7.12.1" 106 | "@babel/helper-optimise-call-expression" "^7.10.4" 107 | "@babel/traverse" "^7.12.5" 108 | "@babel/types" "^7.12.5" 109 | 110 | "@babel/helper-simple-access@^7.12.1": 111 | version "7.12.1" 112 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz#32427e5aa61547d38eb1e6eaf5fd1426fdad9136" 113 | integrity sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA== 114 | dependencies: 115 | "@babel/types" "^7.12.1" 116 | 117 | "@babel/helper-split-export-declaration@^7.11.0": 118 | version "7.11.0" 119 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" 120 | integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== 121 | dependencies: 122 | "@babel/types" "^7.11.0" 123 | 124 | "@babel/helper-validator-identifier@^7.10.4": 125 | version "7.10.4" 126 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" 127 | integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== 128 | 129 | "@babel/helpers@^7.10.4": 130 | version "7.12.5" 131 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.5.tgz#1a1ba4a768d9b58310eda516c449913fe647116e" 132 | integrity sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA== 133 | dependencies: 134 | "@babel/template" "^7.10.4" 135 | "@babel/traverse" "^7.12.5" 136 | "@babel/types" "^7.12.5" 137 | 138 | "@babel/highlight@^7.10.4": 139 | version "7.10.4" 140 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" 141 | integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== 142 | dependencies: 143 | "@babel/helper-validator-identifier" "^7.10.4" 144 | chalk "^2.0.0" 145 | js-tokens "^4.0.0" 146 | 147 | "@babel/parser@^7.10.5", "@babel/parser@^7.12.7": 148 | version "7.12.7" 149 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.7.tgz#fee7b39fe809d0e73e5b25eecaf5780ef3d73056" 150 | integrity sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg== 151 | 152 | "@babel/plugin-proposal-object-rest-spread@7.10.4": 153 | version "7.10.4" 154 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.10.4.tgz#50129ac216b9a6a55b3853fdd923e74bf553a4c0" 155 | integrity sha512-6vh4SqRuLLarjgeOf4EaROJAHjvu9Gl+/346PbDH9yWbJyfnJ/ah3jmYKYtswEyCoWZiidvVHjHshd4WgjB9BA== 156 | dependencies: 157 | "@babel/helper-plugin-utils" "^7.10.4" 158 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0" 159 | "@babel/plugin-transform-parameters" "^7.10.4" 160 | 161 | "@babel/plugin-syntax-jsx@7.10.4": 162 | version "7.10.4" 163 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz#39abaae3cbf710c4373d8429484e6ba21340166c" 164 | integrity sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g== 165 | dependencies: 166 | "@babel/helper-plugin-utils" "^7.10.4" 167 | 168 | "@babel/plugin-syntax-jsx@^7.12.1": 169 | version "7.12.1" 170 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz#9d9d357cc818aa7ae7935917c1257f67677a0926" 171 | integrity sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg== 172 | dependencies: 173 | "@babel/helper-plugin-utils" "^7.10.4" 174 | 175 | "@babel/plugin-syntax-object-rest-spread@7.8.3", "@babel/plugin-syntax-object-rest-spread@^7.8.0": 176 | version "7.8.3" 177 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 178 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 179 | dependencies: 180 | "@babel/helper-plugin-utils" "^7.8.0" 181 | 182 | "@babel/plugin-transform-parameters@^7.10.4": 183 | version "7.12.1" 184 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz#d2e963b038771650c922eff593799c96d853255d" 185 | integrity sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg== 186 | dependencies: 187 | "@babel/helper-plugin-utils" "^7.10.4" 188 | 189 | "@babel/runtime@^7.13.10", "@babel/runtime@^7.7.2": 190 | version "7.15.3" 191 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.15.3.tgz#2e1c2880ca118e5b2f9988322bd8a7656a32502b" 192 | integrity sha512-OvwMLqNXkCXSz1kSm58sEsNuhqOx/fKpnUnKnFB5v8uDda5bLNEHNgKPvhDN6IU0LDcnHQ90LlJ0Q6jnyBSIBA== 193 | dependencies: 194 | regenerator-runtime "^0.13.4" 195 | 196 | "@babel/template@^7.10.4": 197 | version "7.12.7" 198 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.7.tgz#c817233696018e39fbb6c491d2fb684e05ed43bc" 199 | integrity sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow== 200 | dependencies: 201 | "@babel/code-frame" "^7.10.4" 202 | "@babel/parser" "^7.12.7" 203 | "@babel/types" "^7.12.7" 204 | 205 | "@babel/traverse@^7.10.5", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.5": 206 | version "7.12.9" 207 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.9.tgz#fad26c972eabbc11350e0b695978de6cc8e8596f" 208 | integrity sha512-iX9ajqnLdoU1s1nHt36JDI9KG4k+vmI8WgjK5d+aDTwQbL2fUnzedNedssA645Ede3PM2ma1n8Q4h2ohwXgMXw== 209 | dependencies: 210 | "@babel/code-frame" "^7.10.4" 211 | "@babel/generator" "^7.12.5" 212 | "@babel/helper-function-name" "^7.10.4" 213 | "@babel/helper-split-export-declaration" "^7.11.0" 214 | "@babel/parser" "^7.12.7" 215 | "@babel/types" "^7.12.7" 216 | debug "^4.1.0" 217 | globals "^11.1.0" 218 | lodash "^4.17.19" 219 | 220 | "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.12.1", "@babel/types@^7.12.5", "@babel/types@^7.12.7": 221 | version "7.12.7" 222 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.7.tgz#6039ff1e242640a29452c9ae572162ec9a8f5d13" 223 | integrity sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ== 224 | dependencies: 225 | "@babel/helper-validator-identifier" "^7.10.4" 226 | lodash "^4.17.19" 227 | to-fast-properties "^2.0.0" 228 | 229 | "@emotion/babel-plugin@^11.0.0": 230 | version "11.0.0" 231 | resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.0.0.tgz#e6f40fa81ef52775773a53d50220c597ebc5c2ef" 232 | integrity sha512-w3YP0jlqrNwBBaSI6W+r80fOKF6l9QmsPfLNx5YWSHwrxjVZhM+L50gY7YCVAvlfr1/qdD1vsFN+PDZmLvt42Q== 233 | dependencies: 234 | "@babel/helper-module-imports" "^7.7.0" 235 | "@babel/plugin-syntax-jsx" "^7.12.1" 236 | "@babel/runtime" "^7.7.2" 237 | "@emotion/hash" "^0.8.0" 238 | "@emotion/memoize" "^0.7.4" 239 | "@emotion/serialize" "^1.0.0" 240 | babel-plugin-macros "^2.6.1" 241 | convert-source-map "^1.5.0" 242 | escape-string-regexp "^4.0.0" 243 | find-root "^1.1.0" 244 | source-map "^0.5.7" 245 | stylis "^4.0.3" 246 | 247 | "@emotion/cache@^11.0.0": 248 | version "11.0.0" 249 | resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.0.0.tgz#473adcaf9e04c6a0e30fb1421e79a209a96818f8" 250 | integrity sha512-NStfcnLkL5vj3mBILvkR2m/5vFxo3G0QEreYKDGHNHm9IMYoT/t3j6xwjx6lMI/S1LUJfVHQqn0m9wSINttTTQ== 251 | dependencies: 252 | "@emotion/memoize" "^0.7.4" 253 | "@emotion/sheet" "^1.0.0" 254 | "@emotion/utils" "^1.0.0" 255 | "@emotion/weak-memoize" "^0.2.5" 256 | stylis "^4.0.3" 257 | 258 | "@emotion/cache@^11.4.0": 259 | version "11.4.0" 260 | resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.4.0.tgz#293fc9d9a7a38b9aad8e9337e5014366c3b09ac0" 261 | integrity sha512-Zx70bjE7LErRO9OaZrhf22Qye1y4F7iDl+ITjet0J+i+B88PrAOBkKvaAWhxsZf72tDLajwCgfCjJ2dvH77C3g== 262 | dependencies: 263 | "@emotion/memoize" "^0.7.4" 264 | "@emotion/sheet" "^1.0.0" 265 | "@emotion/utils" "^1.0.0" 266 | "@emotion/weak-memoize" "^0.2.5" 267 | stylis "^4.0.3" 268 | 269 | "@emotion/hash@^0.8.0": 270 | version "0.8.0" 271 | resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413" 272 | integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow== 273 | 274 | "@emotion/is-prop-valid@^0.8.1": 275 | version "0.8.8" 276 | resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a" 277 | integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA== 278 | dependencies: 279 | "@emotion/memoize" "0.7.4" 280 | 281 | "@emotion/is-prop-valid@^1.0.0": 282 | version "1.0.0" 283 | resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.0.0.tgz#1dbe82e52a12c065d416a702e2d106e552cde5be" 284 | integrity sha512-G5X0t7eR9pkhUvAY32QS3lToP9JyNF8It5CcmMvbWjmC9/Yq7IhevaKqxl+me2BKR93iTPiL/h3En1ZX/1G3PQ== 285 | dependencies: 286 | "@emotion/memoize" "^0.7.4" 287 | 288 | "@emotion/memoize@0.7.4", "@emotion/memoize@^0.7.1", "@emotion/memoize@^0.7.4": 289 | version "0.7.4" 290 | resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb" 291 | integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw== 292 | 293 | "@emotion/react@^11.1.1": 294 | version "11.1.1" 295 | resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.1.1.tgz#4b304d494af321b0179e6763830e07cf674f0423" 296 | integrity sha512-otA0Np8OnOeU9ChkOS9iuLB6vIxiM+bJiU0id33CsQn3R2Pk9ijVHnxevENIKV/P2S7AhrD8cFbUGysEciWlEA== 297 | dependencies: 298 | "@babel/runtime" "^7.7.2" 299 | "@emotion/cache" "^11.0.0" 300 | "@emotion/serialize" "^1.0.0" 301 | "@emotion/sheet" "^1.0.0" 302 | "@emotion/utils" "^1.0.0" 303 | "@emotion/weak-memoize" "^0.2.5" 304 | hoist-non-react-statics "^3.3.1" 305 | 306 | "@emotion/react@^11.4.1": 307 | version "11.4.1" 308 | resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.4.1.tgz#a1b0b767b5bad57515ffb0cad9349614d27f4d57" 309 | integrity sha512-pRegcsuGYj4FCdZN6j5vqCALkNytdrKw3TZMekTzNXixRg4wkLsU5QEaBG5LC6l01Vppxlp7FE3aTHpIG5phLg== 310 | dependencies: 311 | "@babel/runtime" "^7.13.10" 312 | "@emotion/cache" "^11.4.0" 313 | "@emotion/serialize" "^1.0.2" 314 | "@emotion/sheet" "^1.0.2" 315 | "@emotion/utils" "^1.0.0" 316 | "@emotion/weak-memoize" "^0.2.5" 317 | hoist-non-react-statics "^3.3.1" 318 | 319 | "@emotion/serialize@^1.0.0": 320 | version "1.0.0" 321 | resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.0.0.tgz#1a61f4f037cf39995c97fc80ebe99abc7b191ca9" 322 | integrity sha512-zt1gm4rhdo5Sry8QpCOpopIUIKU+mUSpV9WNmFILUraatm5dttNEaYzUWWSboSMUE6PtN2j1cAsuvcugfdI3mw== 323 | dependencies: 324 | "@emotion/hash" "^0.8.0" 325 | "@emotion/memoize" "^0.7.4" 326 | "@emotion/unitless" "^0.7.5" 327 | "@emotion/utils" "^1.0.0" 328 | csstype "^3.0.2" 329 | 330 | "@emotion/serialize@^1.0.2": 331 | version "1.0.2" 332 | resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.0.2.tgz#77cb21a0571c9f68eb66087754a65fa97bfcd965" 333 | integrity sha512-95MgNJ9+/ajxU7QIAruiOAdYNjxZX7G2mhgrtDWswA21VviYIRP1R5QilZ/bDY42xiKsaktP4egJb3QdYQZi1A== 334 | dependencies: 335 | "@emotion/hash" "^0.8.0" 336 | "@emotion/memoize" "^0.7.4" 337 | "@emotion/unitless" "^0.7.5" 338 | "@emotion/utils" "^1.0.0" 339 | csstype "^3.0.2" 340 | 341 | "@emotion/sheet@^1.0.0": 342 | version "1.0.0" 343 | resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.0.0.tgz#a0ef06080f339477ad4ba7f56e1c931f7ba50822" 344 | integrity sha512-cdCHfZtf/0rahPDCZ9zyq+36EqfD/6c0WUqTFZ/hv9xadTUv2lGE5QK7/Z6Dnx2oRxC0usfVM2/BYn9q9B9wZA== 345 | 346 | "@emotion/sheet@^1.0.2": 347 | version "1.0.2" 348 | resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.0.2.tgz#1d9ffde531714ba28e62dac6a996a8b1089719d0" 349 | integrity sha512-QQPB1B70JEVUHuNtzjHftMGv6eC3Y9wqavyarj4x4lg47RACkeSfNo5pxIOKizwS9AEFLohsqoaxGQj4p0vSIw== 350 | 351 | "@emotion/styled@^11.0.0": 352 | version "11.0.0" 353 | resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-11.0.0.tgz#698196c2822746360a8644a73a5d842b2d1a78a5" 354 | integrity sha512-498laccxJlBiJqrr2r/fx9q+Pr55D0URP2UyOkoSGLjevb8LLAFWueqthsQ5XijE66iGo7y3rzzEYdA7CHmZEQ== 355 | dependencies: 356 | "@babel/runtime" "^7.7.2" 357 | "@emotion/babel-plugin" "^11.0.0" 358 | "@emotion/is-prop-valid" "^1.0.0" 359 | "@emotion/serialize" "^1.0.0" 360 | "@emotion/utils" "^1.0.0" 361 | 362 | "@emotion/unitless@^0.7.5": 363 | version "0.7.5" 364 | resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed" 365 | integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg== 366 | 367 | "@emotion/utils@^1.0.0": 368 | version "1.0.0" 369 | resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-1.0.0.tgz#abe06a83160b10570816c913990245813a2fd6af" 370 | integrity sha512-mQC2b3XLDs6QCW+pDQDiyO/EdGZYOygE8s5N5rrzjSI4M3IejPE/JPndCBwRT9z982aqQNi6beWs1UeayrQxxA== 371 | 372 | "@emotion/weak-memoize@^0.2.5": 373 | version "0.2.5" 374 | resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46" 375 | integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA== 376 | 377 | "@mdx-js/mdx@^2.0.0-next.8": 378 | version "2.0.0-next.8" 379 | resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-2.0.0-next.8.tgz#7d29d7ee634ab0c37cf44bd8d9b1e93c5e09649f" 380 | integrity sha512-OT3bkvsA+rmqv378+UWFgeQuchaafhVgOO46+hc5U7KrGK3iPI2yGTcFwD3/KzSu+JGPCEUBREE96ncpvYqKjA== 381 | dependencies: 382 | "@babel/core" "7.10.5" 383 | "@babel/plugin-syntax-jsx" "7.10.4" 384 | "@babel/plugin-syntax-object-rest-spread" "7.8.3" 385 | "@mdx-js/util" "^2.0.0-next.8" 386 | babel-plugin-apply-mdx-type-prop "^2.0.0-next.8" 387 | babel-plugin-extract-export-names "^2.0.0-next.8" 388 | babel-plugin-extract-import-names "^2.0.0-next.8" 389 | camelcase-css "2.0.1" 390 | detab "2.0.3" 391 | hast-to-hyperscript "9.0.0" 392 | hast-util-raw "6.0.0" 393 | lodash.uniq "4.5.0" 394 | mdast-util-to-hast "9.1.0" 395 | remark-footnotes "1.0.0" 396 | remark-mdx "^2.0.0-next.8" 397 | remark-mdxjs "^2.0.0-next.8" 398 | remark-parse "8.0.2" 399 | remark-squeeze-paragraphs "4.0.0" 400 | unified "9.0.0" 401 | unist-builder "2.0.3" 402 | unist-util-visit "2.0.3" 403 | 404 | "@mdx-js/react@^1.6.22": 405 | version "1.6.22" 406 | resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-1.6.22.tgz#ae09b4744fddc74714ee9f9d6f17a66e77c43573" 407 | integrity sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg== 408 | 409 | "@mdx-js/react@^2.0.0-next.8": 410 | version "2.0.0-next.8" 411 | resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-2.0.0-next.8.tgz#fa774dc781600eb075513eebaae6bd705776ac34" 412 | integrity sha512-I/ped8Wb1L4sUlumQmUlYQsH0tjd2Zj2eyCWbqgigpg+rtRlNFO9swkeyr0GY9hNZnwI8QOnJtNe+UdIZim8LQ== 413 | 414 | "@mdx-js/util@^2.0.0-next.8": 415 | version "2.0.0-next.8" 416 | resolved "https://registry.yarnpkg.com/@mdx-js/util/-/util-2.0.0-next.8.tgz#66ecc27b78e07a3ea2eb1a8fc5a99dfa0ba96690" 417 | integrity sha512-T0BcXmNzEunFkuxrO8BFw44htvTPuAoKbLvTG41otyZBDV1Rs+JMddcUuaP5vXpTWtgD3grhcrPEwyx88RUumQ== 418 | 419 | "@next/env@12.1.0": 420 | version "12.1.0" 421 | resolved "https://registry.yarnpkg.com/@next/env/-/env-12.1.0.tgz#73713399399b34aa5a01771fb73272b55b22c314" 422 | integrity sha512-nrIgY6t17FQ9xxwH3jj0a6EOiQ/WDHUos35Hghtr+SWN/ntHIQ7UpuvSi0vaLzZVHQWaDupKI+liO5vANcDeTQ== 423 | 424 | "@next/swc-android-arm64@12.1.0": 425 | version "12.1.0" 426 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.1.0.tgz#865ba3a9afc204ff2bdeea49dd64d58705007a39" 427 | integrity sha512-/280MLdZe0W03stA69iL+v6I+J1ascrQ6FrXBlXGCsGzrfMaGr7fskMa0T5AhQIVQD4nA/46QQWxG//DYuFBcA== 428 | 429 | "@next/swc-darwin-arm64@12.1.0": 430 | version "12.1.0" 431 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.1.0.tgz#08e8b411b8accd095009ed12efbc2f1d4d547135" 432 | integrity sha512-R8vcXE2/iONJ1Unf5Ptqjk6LRW3bggH+8drNkkzH4FLEQkHtELhvcmJwkXcuipyQCsIakldAXhRbZmm3YN1vXg== 433 | 434 | "@next/swc-darwin-x64@12.1.0": 435 | version "12.1.0" 436 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.1.0.tgz#fcd684497a76e8feaca88db3c394480ff0b007cd" 437 | integrity sha512-ieAz0/J0PhmbZBB8+EA/JGdhRHBogF8BWaeqR7hwveb6SYEIJaDNQy0I+ZN8gF8hLj63bEDxJAs/cEhdnTq+ug== 438 | 439 | "@next/swc-linux-arm-gnueabihf@12.1.0": 440 | version "12.1.0" 441 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.1.0.tgz#9ec6380a27938a5799aaa6035c205b3c478468a7" 442 | integrity sha512-njUd9hpl6o6A5d08dC0cKAgXKCzm5fFtgGe6i0eko8IAdtAPbtHxtpre3VeSxdZvuGFh+hb0REySQP9T1ttkog== 443 | 444 | "@next/swc-linux-arm64-gnu@12.1.0": 445 | version "12.1.0" 446 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.1.0.tgz#7f4196dff1049cea479607c75b81033ae2dbd093" 447 | integrity sha512-OqangJLkRxVxMhDtcb7Qn1xjzFA3s50EIxY7mljbSCLybU+sByPaWAHY4px97ieOlr2y4S0xdPKkQ3BCAwyo6Q== 448 | 449 | "@next/swc-linux-arm64-musl@12.1.0": 450 | version "12.1.0" 451 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.1.0.tgz#b445f767569cdc2dddee785ca495e1a88c025566" 452 | integrity sha512-hB8cLSt4GdmOpcwRe2UzI5UWn6HHO/vLkr5OTuNvCJ5xGDwpPXelVkYW/0+C3g5axbDW2Tym4S+MQCkkH9QfWA== 453 | 454 | "@next/swc-linux-x64-gnu@12.1.0": 455 | version "12.1.0" 456 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.1.0.tgz#67610e9be4fbc987de7535f1bcb17e45fe12f90e" 457 | integrity sha512-OKO4R/digvrVuweSw/uBM4nSdyzsBV5EwkUeeG4KVpkIZEe64ZwRpnFB65bC6hGwxIBnTv5NMSnJ+0K/WmG78A== 458 | 459 | "@next/swc-linux-x64-musl@12.1.0": 460 | version "12.1.0" 461 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.1.0.tgz#ea19a23db08a9f2e34ac30401f774cf7d1669d31" 462 | integrity sha512-JohhgAHZvOD3rQY7tlp7NlmvtvYHBYgY0x5ZCecUT6eCCcl9lv6iV3nfu82ErkxNk1H893fqH0FUpznZ/H3pSw== 463 | 464 | "@next/swc-win32-arm64-msvc@12.1.0": 465 | version "12.1.0" 466 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.1.0.tgz#eadf054fc412085659b98e145435bbba200b5283" 467 | integrity sha512-T/3gIE6QEfKIJ4dmJk75v9hhNiYZhQYAoYm4iVo1TgcsuaKLFa+zMPh4056AHiG6n9tn2UQ1CFE8EoybEsqsSw== 468 | 469 | "@next/swc-win32-ia32-msvc@12.1.0": 470 | version "12.1.0" 471 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.1.0.tgz#68faeae10c89f698bf9d28759172b74c9c21bda1" 472 | integrity sha512-iwnKgHJdqhIW19H9PRPM9j55V6RdcOo6rX+5imx832BCWzkDbyomWnlzBfr6ByUYfhohb8QuH4hSGEikpPqI0Q== 473 | 474 | "@next/swc-win32-x64-msvc@12.1.0": 475 | version "12.1.0" 476 | resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.1.0.tgz#d27e7e76c87a460a4da99c5bfdb1618dcd6cd064" 477 | integrity sha512-aBvcbMwuanDH4EMrL2TthNJy+4nP59Bimn8egqv6GHMVj0a44cU6Au4PjOhLNqEh9l+IpRGBqMTzec94UdC5xg== 478 | 479 | "@styled-system/background@^5.1.2": 480 | version "5.1.2" 481 | resolved "https://registry.yarnpkg.com/@styled-system/background/-/background-5.1.2.tgz#75c63d06b497ab372b70186c0bf608d62847a2ba" 482 | integrity sha512-jtwH2C/U6ssuGSvwTN3ri/IyjdHb8W9X/g8Y0JLcrH02G+BW3OS8kZdHphF1/YyRklnrKrBT2ngwGUK6aqqV3A== 483 | dependencies: 484 | "@styled-system/core" "^5.1.2" 485 | 486 | "@styled-system/border@^5.1.5": 487 | version "5.1.5" 488 | resolved "https://registry.yarnpkg.com/@styled-system/border/-/border-5.1.5.tgz#0493d4332d2b59b74bb0d57d08c73eb555761ba6" 489 | integrity sha512-JvddhNrnhGigtzWRCVuAHepniyVi6hBlimxWDVAdcTuk7aRn9BYJUwfHslURtwYFsF5FoEs8Zmr1oZq2M1AP0A== 490 | dependencies: 491 | "@styled-system/core" "^5.1.2" 492 | 493 | "@styled-system/color@^5.1.2": 494 | version "5.1.2" 495 | resolved "https://registry.yarnpkg.com/@styled-system/color/-/color-5.1.2.tgz#b8d6b4af481faabe4abca1a60f8daa4ccc2d9f43" 496 | integrity sha512-1kCkeKDZkt4GYkuFNKc7vJQMcOmTl3bJY3YBUs7fCNM6mMYJeT1pViQ2LwBSBJytj3AB0o4IdLBoepgSgGl5MA== 497 | dependencies: 498 | "@styled-system/core" "^5.1.2" 499 | 500 | "@styled-system/core@^5.1.2": 501 | version "5.1.2" 502 | resolved "https://registry.yarnpkg.com/@styled-system/core/-/core-5.1.2.tgz#b8b7b86455d5a0514f071c4fa8e434b987f6a772" 503 | integrity sha512-XclBDdNIy7OPOsN4HBsawG2eiWfCcuFt6gxKn1x4QfMIgeO6TOlA2pZZ5GWZtIhCUqEPTgIBta6JXsGyCkLBYw== 504 | dependencies: 505 | object-assign "^4.1.1" 506 | 507 | "@styled-system/css@^5.1.5": 508 | version "5.1.5" 509 | resolved "https://registry.yarnpkg.com/@styled-system/css/-/css-5.1.5.tgz#0460d5f3ff962fa649ea128ef58d9584f403bbbc" 510 | integrity sha512-XkORZdS5kypzcBotAMPBoeckDs9aSZVkvrAlq5K3xP8IMAUek+x2O4NtwoSgkYkWWzVBu6DGdFZLR790QWGG+A== 511 | 512 | "@styled-system/flexbox@^5.1.2": 513 | version "5.1.2" 514 | resolved "https://registry.yarnpkg.com/@styled-system/flexbox/-/flexbox-5.1.2.tgz#077090f43f61c3852df63da24e4108087a8beecf" 515 | integrity sha512-6hHV52+eUk654Y1J2v77B8iLeBNtc+SA3R4necsu2VVinSD7+XY5PCCEzBFaWs42dtOEDIa2lMrgL0YBC01mDQ== 516 | dependencies: 517 | "@styled-system/core" "^5.1.2" 518 | 519 | "@styled-system/grid@^5.1.2": 520 | version "5.1.2" 521 | resolved "https://registry.yarnpkg.com/@styled-system/grid/-/grid-5.1.2.tgz#7165049877732900b99cd00759679fbe45c6c573" 522 | integrity sha512-K3YiV1KyHHzgdNuNlaw8oW2ktMuGga99o1e/NAfTEi5Zsa7JXxzwEnVSDSBdJC+z6R8WYTCYRQC6bkVFcvdTeg== 523 | dependencies: 524 | "@styled-system/core" "^5.1.2" 525 | 526 | "@styled-system/layout@^5.1.2": 527 | version "5.1.2" 528 | resolved "https://registry.yarnpkg.com/@styled-system/layout/-/layout-5.1.2.tgz#12d73e79887e10062f4dbbbc2067462eace42339" 529 | integrity sha512-wUhkMBqSeacPFhoE9S6UF3fsMEKFv91gF4AdDWp0Aym1yeMPpqz9l9qS/6vjSsDPF7zOb5cOKC3tcKKOMuDCPw== 530 | dependencies: 531 | "@styled-system/core" "^5.1.2" 532 | 533 | "@styled-system/position@^5.1.2": 534 | version "5.1.2" 535 | resolved "https://registry.yarnpkg.com/@styled-system/position/-/position-5.1.2.tgz#56961266566836f57a24d8e8e33ce0c1adb59dd3" 536 | integrity sha512-60IZfMXEOOZe3l1mCu6sj/2NAyUmES2kR9Kzp7s2D3P4qKsZWxD1Se1+wJvevb+1TP+ZMkGPEYYXRyU8M1aF5A== 537 | dependencies: 538 | "@styled-system/core" "^5.1.2" 539 | 540 | "@styled-system/shadow@^5.1.2": 541 | version "5.1.2" 542 | resolved "https://registry.yarnpkg.com/@styled-system/shadow/-/shadow-5.1.2.tgz#beddab28d7de03cd0177a87ac4ed3b3b6d9831fd" 543 | integrity sha512-wqniqYb7XuZM7K7C0d1Euxc4eGtqEe/lvM0WjuAFsQVImiq6KGT7s7is+0bNI8O4Dwg27jyu4Lfqo/oIQXNzAg== 544 | dependencies: 545 | "@styled-system/core" "^5.1.2" 546 | 547 | "@styled-system/should-forward-prop@^5.1.2": 548 | version "5.1.5" 549 | resolved "https://registry.yarnpkg.com/@styled-system/should-forward-prop/-/should-forward-prop-5.1.5.tgz#c392008c6ae14a6eb78bf1932733594f7f7e5c76" 550 | integrity sha512-+rPRomgCGYnUIaFabDoOgpSDc4UUJ1KsmlnzcEp0tu5lFrBQKgZclSo18Z1URhaZm7a6agGtS5Xif7tuC2s52Q== 551 | dependencies: 552 | "@emotion/is-prop-valid" "^0.8.1" 553 | "@emotion/memoize" "^0.7.1" 554 | styled-system "^5.1.5" 555 | 556 | "@styled-system/space@^5.1.2": 557 | version "5.1.2" 558 | resolved "https://registry.yarnpkg.com/@styled-system/space/-/space-5.1.2.tgz#38925d2fa29a41c0eb20e65b7c3efb6e8efce953" 559 | integrity sha512-+zzYpR8uvfhcAbaPXhH8QgDAV//flxqxSjHiS9cDFQQUSznXMQmxJegbhcdEF7/eNnJgHeIXv1jmny78kipgBA== 560 | dependencies: 561 | "@styled-system/core" "^5.1.2" 562 | 563 | "@styled-system/typography@^5.1.2": 564 | version "5.1.2" 565 | resolved "https://registry.yarnpkg.com/@styled-system/typography/-/typography-5.1.2.tgz#65fb791c67d50cd2900d234583eaacdca8c134f7" 566 | integrity sha512-BxbVUnN8N7hJ4aaPOd7wEsudeT7CxarR+2hns8XCX1zp0DFfbWw4xYa/olA0oQaqx7F1hzDg+eRaGzAJbF+jOg== 567 | dependencies: 568 | "@styled-system/core" "^5.1.2" 569 | 570 | "@styled-system/variant@^5.1.5": 571 | version "5.1.5" 572 | resolved "https://registry.yarnpkg.com/@styled-system/variant/-/variant-5.1.5.tgz#8446d8aad06af3a4c723d717841df2dbe4ddeafd" 573 | integrity sha512-Yn8hXAFoWIro8+Q5J8YJd/mP85Teiut3fsGVR9CAxwgNfIAiqlYxsk5iHU7VHJks/0KjL4ATSjmbtCDC/4l1qw== 574 | dependencies: 575 | "@styled-system/core" "^5.1.2" 576 | "@styled-system/css" "^5.1.5" 577 | 578 | "@theme-ui/color-modes@0.10.0": 579 | version "0.10.0" 580 | resolved "https://registry.yarnpkg.com/@theme-ui/color-modes/-/color-modes-0.10.0.tgz#85071f16d7d4458f3dab5a7af8b9ea459da4dcd0" 581 | integrity sha512-6sZaagCFK48p2YjecLljFwPkiB3/R9dMNKUQC3+fnaH3N9FcsflNWpjKAYhtQ5QLKvYacFdqczT4YaMtGwKb/Q== 582 | dependencies: 583 | "@emotion/react" "^11.1.1" 584 | "@theme-ui/core" "0.10.0" 585 | "@theme-ui/css" "0.10.0" 586 | deepmerge "^4.2.2" 587 | 588 | "@theme-ui/components@0.10.0": 589 | version "0.10.0" 590 | resolved "https://registry.yarnpkg.com/@theme-ui/components/-/components-0.10.0.tgz#c1aa9cade71e5a6cf7c19f9e0ade900122ef23f9" 591 | integrity sha512-zPA+16fP+R140kns+3FBhybsPzNjcCWHgXcwIPjww1dfDnlXRa7al9Nz4Y8zyWvk1wNiGqUa09Y1sabK6EYspQ== 592 | dependencies: 593 | "@emotion/react" "^11.1.1" 594 | "@emotion/styled" "^11.0.0" 595 | "@styled-system/color" "^5.1.2" 596 | "@styled-system/should-forward-prop" "^5.1.2" 597 | "@styled-system/space" "^5.1.2" 598 | "@theme-ui/css" "0.10.0" 599 | "@types/styled-system" "^5.1.10" 600 | 601 | "@theme-ui/core@0.10.0": 602 | version "0.10.0" 603 | resolved "https://registry.yarnpkg.com/@theme-ui/core/-/core-0.10.0.tgz#2373d53368da5fa561915414ade070a9de0e9678" 604 | integrity sha512-3DeTHGqyqIi05JCsJ+G+fqW6YsX/oGJiaAvMgLfd86tGdJOnDseEBQG41oDFHSWtQSJDpBcoFgAWMGITmYdH+g== 605 | dependencies: 606 | "@emotion/react" "^11.1.1" 607 | "@theme-ui/css" "0.10.0" 608 | "@theme-ui/parse-props" "0.10.0" 609 | deepmerge "^4.2.2" 610 | 611 | "@theme-ui/css@0.10.0": 612 | version "0.10.0" 613 | resolved "https://registry.yarnpkg.com/@theme-ui/css/-/css-0.10.0.tgz#871f63334fb138491406c32f8347d53b19846a9b" 614 | integrity sha512-Up3HqXoy2ERn/9gVxApCSl2n9vwtHBwPrYlMyEjX0YPs/rxmo+Aqe3kAxO+SG9idMw08mtdaDfMIFaPsBE5ovA== 615 | dependencies: 616 | "@emotion/react" "^11.1.1" 617 | csstype "^3.0.5" 618 | 619 | "@theme-ui/mdx@0.10.0": 620 | version "0.10.0" 621 | resolved "https://registry.yarnpkg.com/@theme-ui/mdx/-/mdx-0.10.0.tgz#14124cb194df8023f7253391900d8d17a6011a92" 622 | integrity sha512-IcDrQONVrOFQFCFdyrlNoTTKmhw7ELtrLktRYmmWtCEz+KHpBiEVdxNo2yvz/05zF2BPGKOqu4wkMpUR13wNSQ== 623 | dependencies: 624 | "@emotion/react" "^11.1.1" 625 | "@emotion/styled" "^11.0.0" 626 | "@mdx-js/react" "^1.6.22" 627 | "@theme-ui/core" "0.10.0" 628 | "@theme-ui/css" "0.10.0" 629 | 630 | "@theme-ui/parse-props@0.10.0": 631 | version "0.10.0" 632 | resolved "https://registry.yarnpkg.com/@theme-ui/parse-props/-/parse-props-0.10.0.tgz#8d2f4f3b3edafd925c3872ddd559e2b62006f43f" 633 | integrity sha512-UfcLyThXYsB9azc8qbsZVgbF7xf+GLF2Hhy+suyjwQ3XSVOx97B5ZsuzCNUGbggtBw4dXayJgRmMz0FHyp0L8Q== 634 | dependencies: 635 | "@emotion/react" "^11.1.1" 636 | "@theme-ui/css" "0.10.0" 637 | 638 | "@theme-ui/theme-provider@0.10.0": 639 | version "0.10.0" 640 | resolved "https://registry.yarnpkg.com/@theme-ui/theme-provider/-/theme-provider-0.10.0.tgz#16586af579bef804f1e4997a131134d2465bfd5d" 641 | integrity sha512-1AVsegjEAw7uidr0/qJMoKktKbdXuXRjfukI9712GZleft3dzoHhkQUO7IefXjbafyu/plzo/WTXkbz0A4uhmA== 642 | dependencies: 643 | "@emotion/react" "^11.1.1" 644 | "@theme-ui/color-modes" "0.10.0" 645 | "@theme-ui/core" "0.10.0" 646 | "@theme-ui/css" "0.10.0" 647 | "@theme-ui/mdx" "0.10.0" 648 | 649 | "@types/hast@^2.0.0": 650 | version "2.3.1" 651 | resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.1.tgz#b16872f2a6144c7025f296fb9636a667ebb79cd9" 652 | integrity sha512-viwwrB+6xGzw+G1eWpF9geV3fnsDgXqHG+cqgiHrvQfDUW5hzhCyV7Sy3UJxhfRFBsgky2SSW33qi/YrIkjX5Q== 653 | dependencies: 654 | "@types/unist" "*" 655 | 656 | "@types/mdast@^3.0.0": 657 | version "3.0.3" 658 | resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.3.tgz#2d7d671b1cd1ea3deb306ea75036c2a0407d2deb" 659 | integrity sha512-SXPBMnFVQg1s00dlMCc/jCdvPqdE4mXaMMCeRlxLDmTAEoegHT53xKtkDnzDTOcmMHUfcjyf36/YYZ6SxRdnsw== 660 | dependencies: 661 | "@types/unist" "*" 662 | 663 | "@types/parse-json@^4.0.0": 664 | version "4.0.0" 665 | resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" 666 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== 667 | 668 | "@types/parse5@^5.0.0": 669 | version "5.0.3" 670 | resolved "https://registry.yarnpkg.com/@types/parse5/-/parse5-5.0.3.tgz#e7b5aebbac150f8b5fdd4a46e7f0bd8e65e19109" 671 | integrity sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw== 672 | 673 | "@types/styled-system@^5.1.10": 674 | version "5.1.12" 675 | resolved "https://registry.yarnpkg.com/@types/styled-system/-/styled-system-5.1.12.tgz#4f3ca8da3dffe3c5a6cc3b2a97f51b41464c104a" 676 | integrity sha512-7x4BYKKfK9QewfsFC2x5r9BK/OrfX+JF/1P21jKPMHruawDw9gvG7bTZgTVk6YkzDO2JUlsk4i8hdiAepAhD0g== 677 | dependencies: 678 | csstype "^3.0.2" 679 | 680 | "@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2", "@types/unist@^2.0.3": 681 | version "2.0.3" 682 | resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.3.tgz#9c088679876f374eb5983f150d4787aa6fb32d7e" 683 | integrity sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ== 684 | 685 | ansi-styles@^3.2.1: 686 | version "3.2.1" 687 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 688 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 689 | dependencies: 690 | color-convert "^1.9.0" 691 | 692 | apca-w3@^0.1.9: 693 | version "0.1.9" 694 | resolved "https://registry.yarnpkg.com/apca-w3/-/apca-w3-0.1.9.tgz#5fe32d4a0bc6295f89532a856dbb81a4d6818fc5" 695 | integrity sha512-Zrf6AeBeQjNe/fxK7U1jCo5zfdjDl6T4/kdw5Xlky3G7u+EJTZkyItjMYQGtwf9pkftsINxcYyOpuLkzKf1ITQ== 696 | dependencies: 697 | colorparsley "^0.1.8" 698 | 699 | babel-plugin-apply-mdx-type-prop@^2.0.0-next.8: 700 | version "2.0.0-next.8" 701 | resolved "https://registry.yarnpkg.com/babel-plugin-apply-mdx-type-prop/-/babel-plugin-apply-mdx-type-prop-2.0.0-next.8.tgz#f598b236ac1e5fd250d93bfbb179c771c9a9caf5" 702 | integrity sha512-Mcr9VAMxfS3ltNm3SXnSgP+7uqxx2zYS4xya2t8KvnLGejzSNsODSgjpNHUyfLihoDnfYaeCH7VFewZRKaRT8g== 703 | dependencies: 704 | "@babel/helper-plugin-utils" "7.10.4" 705 | "@mdx-js/util" "^2.0.0-next.8" 706 | 707 | babel-plugin-extract-export-names@^2.0.0-next.8: 708 | version "2.0.0-next.8" 709 | resolved "https://registry.yarnpkg.com/babel-plugin-extract-export-names/-/babel-plugin-extract-export-names-2.0.0-next.8.tgz#96a4d7fc7b4dbaa67e10a0f9d156848b43b1f20f" 710 | integrity sha512-W0DbJHAIlxSlb110h7uVq0aHmxPS985YSiEloTM7irvt8YkOFhxn4WkSAoOfTAJY/+xecRgwhMd8YTAZfoLq5A== 711 | dependencies: 712 | "@babel/helper-plugin-utils" "7.10.4" 713 | 714 | babel-plugin-extract-import-names@^2.0.0-next.8: 715 | version "2.0.0-next.8" 716 | resolved "https://registry.yarnpkg.com/babel-plugin-extract-import-names/-/babel-plugin-extract-import-names-2.0.0-next.8.tgz#80f77e92853e3074c6a1907342ba720de5861366" 717 | integrity sha512-jdk6h7FaArjwMKqlF0hdozMwum5JDzLse99D5wWVbZWe0P7w/ghXDpE0VbooqJ/jyYwei5a6tHeTTU59Ds4WXg== 718 | dependencies: 719 | "@babel/helper-plugin-utils" "7.10.4" 720 | 721 | babel-plugin-macros@^2.6.1: 722 | version "2.8.0" 723 | resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138" 724 | integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg== 725 | dependencies: 726 | "@babel/runtime" "^7.7.2" 727 | cosmiconfig "^6.0.0" 728 | resolve "^1.12.0" 729 | 730 | bail@^1.0.0: 731 | version "1.0.4" 732 | resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.4.tgz#7181b66d508aa3055d3f6c13f0a0c720641dde9b" 733 | integrity sha512-S8vuDB4w6YpRhICUDET3guPlQpaJl7od94tpZ0Fvnyp+MKW/HyDTcRDck+29C9g+d/qQHnddRH3+94kZdrW0Ww== 734 | 735 | callsites@^3.0.0: 736 | version "3.1.0" 737 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 738 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 739 | 740 | camelcase-css@2.0.1: 741 | version "2.0.1" 742 | resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" 743 | integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== 744 | 745 | caniuse-lite@^1.0.30001283: 746 | version "1.0.30001591" 747 | resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001591.tgz" 748 | integrity sha512-PCzRMei/vXjJyL5mJtzNiUCKP59dm8Apqc3PH8gJkMnMXZGox93RbE76jHsmLwmIo6/3nsYIpJtx0O7u5PqFuQ== 749 | 750 | ccount@^1.0.0: 751 | version "1.0.4" 752 | resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.0.4.tgz#9cf2de494ca84060a2a8d2854edd6dfb0445f386" 753 | integrity sha512-fpZ81yYfzentuieinmGnphk0pLkOTMm6MZdVqwd77ROvhko6iujLNGrHH5E7utq3ygWklwfmwuG+A7P+NpqT6w== 754 | 755 | chalk@^2.0.0: 756 | version "2.4.2" 757 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 758 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 759 | dependencies: 760 | ansi-styles "^3.2.1" 761 | escape-string-regexp "^1.0.5" 762 | supports-color "^5.3.0" 763 | 764 | character-entities-html4@^1.0.0: 765 | version "1.1.4" 766 | resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-1.1.4.tgz#0e64b0a3753ddbf1fdc044c5fd01d0199a02e125" 767 | integrity sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g== 768 | 769 | character-entities-legacy@^1.0.0: 770 | version "1.1.3" 771 | resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.3.tgz#3c729991d9293da0ede6dddcaf1f2ce1009ee8b4" 772 | integrity sha512-YAxUpPoPwxYFsslbdKkhrGnXAtXoHNgYjlBM3WMXkWGTl5RsY3QmOyhwAgL8Nxm9l5LBThXGawxKPn68y6/fww== 773 | 774 | character-entities@^1.0.0: 775 | version "1.2.3" 776 | resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.3.tgz#bbed4a52fe7ef98cc713c6d80d9faa26916d54e6" 777 | integrity sha512-yB4oYSAa9yLcGyTbB4ItFwHw43QHdH129IJ5R+WvxOkWlyFnR5FAaBNnUq4mcxsTVZGh28bHoeTHMKXH1wZf3w== 778 | 779 | character-reference-invalid@^1.0.0: 780 | version "1.1.3" 781 | resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.3.tgz#1647f4f726638d3ea4a750cf5d1975c1c7919a85" 782 | integrity sha512-VOq6PRzQBam/8Jm6XBGk2fNEnHXAdGd6go0rtd4weAGECBamHDwwCQSOT12TACIYUZegUXnV6xBXqUssijtxIg== 783 | 784 | chroma-js@^1.3.4: 785 | version "1.4.1" 786 | resolved "https://registry.yarnpkg.com/chroma-js/-/chroma-js-1.4.1.tgz#eb2d9c4d1ff24616be84b35119f4d26f8205f134" 787 | integrity sha512-jTwQiT859RTFN/vIf7s+Vl/Z2LcMrvMv3WUFmd/4u76AdlFC0NTNgqEEFPcRiHmAswPsMiQEDZLM8vX8qXpZNQ== 788 | 789 | collapse-white-space@^1.0.0: 790 | version "1.0.6" 791 | resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287" 792 | integrity sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ== 793 | 794 | collapse-white-space@^1.0.2: 795 | version "1.0.5" 796 | resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.5.tgz#c2495b699ab1ed380d29a1091e01063e75dbbe3a" 797 | integrity sha512-703bOOmytCYAX9cXYqoikYIx6twmFCXsnzRQheBcTG3nzKYBR4P/+wkYeH+Mvj7qUz8zZDtdyzbxfnEi/kYzRQ== 798 | 799 | color-convert@^1.9.0: 800 | version "1.9.3" 801 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 802 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 803 | dependencies: 804 | color-name "1.1.3" 805 | 806 | color-name@1.1.3: 807 | version "1.1.3" 808 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 809 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 810 | 811 | color-namer@^1.4.0: 812 | version "1.4.0" 813 | resolved "https://registry.yarnpkg.com/color-namer/-/color-namer-1.4.0.tgz#5290cb0e1618d6066c4a3591fb9d270a0cc70d35" 814 | integrity sha512-3mQMY9MJyfdV2uhe+xjQWcKHtYnPtl5svGjt89V2WWT2MlaLAd7C02886Wq7H1MTjjIIEa/NJLYPNF/Lhxhq2A== 815 | dependencies: 816 | chroma-js "^1.3.4" 817 | es6-weak-map "^2.0.3" 818 | 819 | colorjs.io@^0.5.0: 820 | version "0.5.0" 821 | resolved "https://registry.yarnpkg.com/colorjs.io/-/colorjs.io-0.5.0.tgz#b1034184b4812b54e28c5082029fbd8ca53aa532" 822 | integrity sha512-qekjTiBLM3F/sXKks/ih5aWaHIGu+Ftel0yKEvmpbKvmxpNOhojKgha5uiWEUOqEpRjC1Tq3nJRT7WgdBOxIGg== 823 | 824 | colorparsley@^0.1.8: 825 | version "0.1.8" 826 | resolved "https://registry.yarnpkg.com/colorparsley/-/colorparsley-0.1.8.tgz#fd5c1b3d2befbc08c4ab73dc5c2c88f72f743132" 827 | integrity sha512-rObESTTTE6G5qO5WFwFxWPggpw4KfpxnLC6Ssl8bITBnNVRhDsyCeTRAUxWQNVTx2pRknKlO2nddYTxjkdNFaw== 828 | 829 | comma-separated-tokens@^1.0.0: 830 | version "1.0.7" 831 | resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.7.tgz#419cd7fb3258b1ed838dc0953167a25e152f5b59" 832 | integrity sha512-Jrx3xsP4pPv4AwJUDWY9wOXGtwPXARej6Xd99h4TUGotmf8APuquKMpK+dnD3UgyxK7OEWaisjZz+3b5jtL6xQ== 833 | 834 | convert-source-map@^1.5.0, convert-source-map@^1.7.0: 835 | version "1.7.0" 836 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 837 | integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== 838 | dependencies: 839 | safe-buffer "~5.1.1" 840 | 841 | cosmiconfig@^6.0.0: 842 | version "6.0.0" 843 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" 844 | integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== 845 | dependencies: 846 | "@types/parse-json" "^4.0.0" 847 | import-fresh "^3.1.0" 848 | parse-json "^5.0.0" 849 | path-type "^4.0.0" 850 | yaml "^1.7.2" 851 | 852 | css-color-list@0.0.1: 853 | version "0.0.1" 854 | resolved "https://registry.yarnpkg.com/css-color-list/-/css-color-list-0.0.1.tgz#8718e8695ae7a2cc8787be8715f1c008a7f28b15" 855 | integrity sha1-hxjoaVrnosyHh76HFfHACKfyixU= 856 | dependencies: 857 | css-color-names "0.0.1" 858 | 859 | css-color-names@0.0.1: 860 | version "0.0.1" 861 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.1.tgz#5d0548fa256456ede4a9a0c2ac7ab19d3eb1ad81" 862 | integrity sha1-XQVI+iVkVu3kqaDCrHqxnT6xrYE= 863 | 864 | css-color-names@1.0.1: 865 | version "1.0.1" 866 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-1.0.1.tgz#6ff7ee81a823ad46e020fa2fd6ab40a887e2ba67" 867 | integrity sha512-/loXYOch1qU1biStIFsHH8SxTmOseh1IJqFvy8IujXOm1h+QjUdDhkzOrR5HG8K8mlxREj0yfi8ewCHx0eMxzA== 868 | 869 | csstype@^3.0.2, csstype@^3.0.5: 870 | version "3.0.5" 871 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.5.tgz#7fdec6a28a67ae18647c51668a9ff95bb2fa7bb8" 872 | integrity sha512-uVDi8LpBUKQj6sdxNaTetL6FpeCqTjOvAQuQUa/qAqq8oOd4ivkbhgnqayl0dnPal8Tb/yB1tF+gOvCBiicaiQ== 873 | 874 | d@1, d@^1.0.1: 875 | version "1.0.1" 876 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a" 877 | integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA== 878 | dependencies: 879 | es5-ext "^0.10.50" 880 | type "^1.0.1" 881 | 882 | debug@^4.1.0: 883 | version "4.1.1" 884 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 885 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== 886 | dependencies: 887 | ms "^2.1.1" 888 | 889 | deepmerge@^4.2.2: 890 | version "4.2.2" 891 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 892 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 893 | 894 | detab@2.0.3: 895 | version "2.0.3" 896 | resolved "https://registry.yarnpkg.com/detab/-/detab-2.0.3.tgz#33e5dd74d230501bd69985a0d2b9a3382699a130" 897 | integrity sha512-Up8P0clUVwq0FnFjDclzZsy9PadzRn5FFxrr47tQQvMHqyiFYVbpH8oXDzWtF0Q7pYy3l+RPmtBl+BsFF6wH0A== 898 | dependencies: 899 | repeat-string "^1.5.4" 900 | 901 | detab@^2.0.0: 902 | version "2.0.4" 903 | resolved "https://registry.yarnpkg.com/detab/-/detab-2.0.4.tgz#b927892069aff405fbb9a186fe97a44a92a94b43" 904 | integrity sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g== 905 | dependencies: 906 | repeat-string "^1.5.4" 907 | 908 | error-ex@^1.3.1: 909 | version "1.3.2" 910 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 911 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 912 | dependencies: 913 | is-arrayish "^0.2.1" 914 | 915 | es5-ext@^0.10.35, es5-ext@^0.10.46, es5-ext@^0.10.50: 916 | version "0.10.53" 917 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.53.tgz#93c5a3acfdbef275220ad72644ad02ee18368de1" 918 | integrity sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q== 919 | dependencies: 920 | es6-iterator "~2.0.3" 921 | es6-symbol "~3.1.3" 922 | next-tick "~1.0.0" 923 | 924 | es6-iterator@^2.0.3, es6-iterator@~2.0.3: 925 | version "2.0.3" 926 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 927 | integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c= 928 | dependencies: 929 | d "1" 930 | es5-ext "^0.10.35" 931 | es6-symbol "^3.1.1" 932 | 933 | es6-symbol@^3.1.1, es6-symbol@~3.1.3: 934 | version "3.1.3" 935 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" 936 | integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA== 937 | dependencies: 938 | d "^1.0.1" 939 | ext "^1.1.2" 940 | 941 | es6-weak-map@^2.0.3: 942 | version "2.0.3" 943 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.3.tgz#b6da1f16cc2cc0d9be43e6bdbfc5e7dfcdf31d53" 944 | integrity sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA== 945 | dependencies: 946 | d "1" 947 | es5-ext "^0.10.46" 948 | es6-iterator "^2.0.3" 949 | es6-symbol "^3.1.1" 950 | 951 | escape-string-regexp@^1.0.5: 952 | version "1.0.5" 953 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 954 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 955 | 956 | escape-string-regexp@^4.0.0: 957 | version "4.0.0" 958 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 959 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 960 | 961 | esm@^3.0.84: 962 | version "3.2.25" 963 | resolved "https://registry.yarnpkg.com/esm/-/esm-3.2.25.tgz#342c18c29d56157688ba5ce31f8431fbb795cc10" 964 | integrity sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA== 965 | 966 | ext@^1.1.2: 967 | version "1.4.0" 968 | resolved "https://registry.yarnpkg.com/ext/-/ext-1.4.0.tgz#89ae7a07158f79d35517882904324077e4379244" 969 | integrity sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A== 970 | dependencies: 971 | type "^2.0.0" 972 | 973 | extend@^3.0.0: 974 | version "3.0.2" 975 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 976 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 977 | 978 | find-root@^1.1.0: 979 | version "1.1.0" 980 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" 981 | integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== 982 | 983 | function-bind@^1.1.1: 984 | version "1.1.1" 985 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 986 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 987 | 988 | gensync@^1.0.0-beta.1: 989 | version "1.0.0-beta.2" 990 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 991 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 992 | 993 | get-contrast@^3.0.0: 994 | version "3.0.0" 995 | resolved "https://registry.yarnpkg.com/get-contrast/-/get-contrast-3.0.0.tgz#d7a5f03512f8cf4c5cf51f17ccd87683afe2f6e7" 996 | integrity sha512-B3uK3WpKz/4bHMCMSmi4UfZ/Gk8qqVHQXMk6ayhx/x5cCjK3hl5kvX4POTauVQK5kdzWNfbyd5QjwOxERSwKlQ== 997 | dependencies: 998 | css-color-names "1.0.1" 999 | is-blank "2.1.0" 1000 | is-named-css-color "1.0.0" 1001 | rgb "^0.1.0" 1002 | wcag-contrast "3.0.0" 1003 | 1004 | globals@^11.1.0: 1005 | version "11.12.0" 1006 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1007 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1008 | 1009 | has-flag@^3.0.0: 1010 | version "3.0.0" 1011 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1012 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1013 | 1014 | has@^1.0.3: 1015 | version "1.0.3" 1016 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1017 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1018 | dependencies: 1019 | function-bind "^1.1.1" 1020 | 1021 | hast-to-hyperscript@9.0.0: 1022 | version "9.0.0" 1023 | resolved "https://registry.yarnpkg.com/hast-to-hyperscript/-/hast-to-hyperscript-9.0.0.tgz#768fb557765fe28749169c885056417342d71e83" 1024 | integrity sha512-NJvMYU3GlMLs7hN3CRbsNlMzusVNkYBogVWDGybsuuVQ336gFLiD+q9qtFZT2meSHzln3pNISZWTASWothMSMg== 1025 | dependencies: 1026 | "@types/unist" "^2.0.3" 1027 | comma-separated-tokens "^1.0.0" 1028 | property-information "^5.3.0" 1029 | space-separated-tokens "^1.0.0" 1030 | style-to-object "^0.3.0" 1031 | unist-util-is "^4.0.0" 1032 | web-namespaces "^1.0.0" 1033 | 1034 | hast-to-hyperscript@^9.0.0: 1035 | version "9.0.1" 1036 | resolved "https://registry.yarnpkg.com/hast-to-hyperscript/-/hast-to-hyperscript-9.0.1.tgz#9b67fd188e4c81e8ad66f803855334173920218d" 1037 | integrity sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA== 1038 | dependencies: 1039 | "@types/unist" "^2.0.3" 1040 | comma-separated-tokens "^1.0.0" 1041 | property-information "^5.3.0" 1042 | space-separated-tokens "^1.0.0" 1043 | style-to-object "^0.3.0" 1044 | unist-util-is "^4.0.0" 1045 | web-namespaces "^1.0.0" 1046 | 1047 | hast-util-from-parse5@^6.0.0: 1048 | version "6.0.1" 1049 | resolved "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-6.0.1.tgz#554e34abdeea25ac76f5bd950a1f0180e0b3bc2a" 1050 | integrity sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA== 1051 | dependencies: 1052 | "@types/parse5" "^5.0.0" 1053 | hastscript "^6.0.0" 1054 | property-information "^5.0.0" 1055 | vfile "^4.0.0" 1056 | vfile-location "^3.2.0" 1057 | web-namespaces "^1.0.0" 1058 | 1059 | hast-util-parse-selector@^2.0.0: 1060 | version "2.2.5" 1061 | resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz#d57c23f4da16ae3c63b3b6ca4616683313499c3a" 1062 | integrity sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ== 1063 | 1064 | hast-util-raw@6.0.0: 1065 | version "6.0.0" 1066 | resolved "https://registry.yarnpkg.com/hast-util-raw/-/hast-util-raw-6.0.0.tgz#49a38f5107d483f83a139709f2f705f22e7e7d32" 1067 | integrity sha512-IQo6tv3bMMKxk53DljswliucCJOQxaZFCuKEJ7X80249dmJ1nA9LtOnnylsLlqTG98NjQ+iGcoLAYo9q5FRhRg== 1068 | dependencies: 1069 | "@types/hast" "^2.0.0" 1070 | hast-util-from-parse5 "^6.0.0" 1071 | hast-util-to-parse5 "^6.0.0" 1072 | html-void-elements "^1.0.0" 1073 | parse5 "^6.0.0" 1074 | unist-util-position "^3.0.0" 1075 | vfile "^4.0.0" 1076 | web-namespaces "^1.0.0" 1077 | xtend "^4.0.0" 1078 | zwitch "^1.0.0" 1079 | 1080 | hast-util-to-parse5@^6.0.0: 1081 | version "6.0.0" 1082 | resolved "https://registry.yarnpkg.com/hast-util-to-parse5/-/hast-util-to-parse5-6.0.0.tgz#1ec44650b631d72952066cea9b1445df699f8479" 1083 | integrity sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ== 1084 | dependencies: 1085 | hast-to-hyperscript "^9.0.0" 1086 | property-information "^5.0.0" 1087 | web-namespaces "^1.0.0" 1088 | xtend "^4.0.0" 1089 | zwitch "^1.0.0" 1090 | 1091 | hastscript@^6.0.0: 1092 | version "6.0.0" 1093 | resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-6.0.0.tgz#e8768d7eac56c3fdeac8a92830d58e811e5bf640" 1094 | integrity sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w== 1095 | dependencies: 1096 | "@types/hast" "^2.0.0" 1097 | comma-separated-tokens "^1.0.0" 1098 | hast-util-parse-selector "^2.0.0" 1099 | property-information "^5.0.0" 1100 | space-separated-tokens "^1.0.0" 1101 | 1102 | hoist-non-react-statics@^3.3.1: 1103 | version "3.3.2" 1104 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" 1105 | integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== 1106 | dependencies: 1107 | react-is "^16.7.0" 1108 | 1109 | html-void-elements@^1.0.0: 1110 | version "1.0.5" 1111 | resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-1.0.5.tgz#ce9159494e86d95e45795b166c2021c2cfca4483" 1112 | integrity sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w== 1113 | 1114 | import-fresh@^3.1.0: 1115 | version "3.2.2" 1116 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.2.tgz#fc129c160c5d68235507f4331a6baad186bdbc3e" 1117 | integrity sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw== 1118 | dependencies: 1119 | parent-module "^1.0.0" 1120 | resolve-from "^4.0.0" 1121 | 1122 | inherits@^2.0.1: 1123 | version "2.0.4" 1124 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1125 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1126 | 1127 | inline-style-parser@0.1.1: 1128 | version "0.1.1" 1129 | resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1" 1130 | integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q== 1131 | 1132 | is-alphabetical@^1.0.0: 1133 | version "1.0.3" 1134 | resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.3.tgz#eb04cc47219a8895d8450ace4715abff2258a1f8" 1135 | integrity sha512-eEMa6MKpHFzw38eKm56iNNi6GJ7lf6aLLio7Kr23sJPAECscgRtZvOBYybejWDQ2bM949Y++61PY+udzj5QMLA== 1136 | 1137 | is-alphanumeric@^1.0.0: 1138 | version "1.0.0" 1139 | resolved "https://registry.yarnpkg.com/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz#4a9cef71daf4c001c1d81d63d140cf53fd6889f4" 1140 | integrity sha1-Spzvcdr0wAHB2B1j0UDPU/1oifQ= 1141 | 1142 | is-alphanumerical@^1.0.0: 1143 | version "1.0.3" 1144 | resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.3.tgz#57ae21c374277b3defe0274c640a5704b8f6657c" 1145 | integrity sha512-A1IGAPO5AW9vSh7omxIlOGwIqEvpW/TA+DksVOPM5ODuxKlZS09+TEM1E3275lJqO2oJ38vDpeAL3DCIiHE6eA== 1146 | dependencies: 1147 | is-alphabetical "^1.0.0" 1148 | is-decimal "^1.0.0" 1149 | 1150 | is-arrayish@^0.2.1: 1151 | version "0.2.1" 1152 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1153 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1154 | 1155 | is-blank@2.1.0: 1156 | version "2.1.0" 1157 | resolved "https://registry.yarnpkg.com/is-blank/-/is-blank-2.1.0.tgz#69a73d3c0d4f417dfffb207a2795c0f0e576de04" 1158 | integrity sha1-aac9PA1PQX3/+yB6J5XA8OV23gQ= 1159 | dependencies: 1160 | is-empty latest 1161 | is-whitespace latest 1162 | 1163 | is-buffer@^2.0.0: 1164 | version "2.0.3" 1165 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.3.tgz#4ecf3fcf749cbd1e472689e109ac66261a25e725" 1166 | integrity sha512-U15Q7MXTuZlrbymiz95PJpZxu8IlipAp4dtS3wOdgPXx3mqBnslrWU14kxfHB+Py/+2PVKSr37dMAgM2A4uArw== 1167 | 1168 | is-core-module@^2.1.0: 1169 | version "2.2.0" 1170 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a" 1171 | integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ== 1172 | dependencies: 1173 | has "^1.0.3" 1174 | 1175 | is-decimal@^1.0.0: 1176 | version "1.0.3" 1177 | resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.3.tgz#381068759b9dc807d8c0dc0bfbae2b68e1da48b7" 1178 | integrity sha512-bvLSwoDg2q6Gf+E2LEPiklHZxxiSi3XAh4Mav65mKqTfCO1HM3uBs24TjEH8iJX3bbDdLXKJXBTmGzuTUuAEjQ== 1179 | 1180 | is-empty@latest: 1181 | version "1.2.0" 1182 | resolved "https://registry.yarnpkg.com/is-empty/-/is-empty-1.2.0.tgz#de9bb5b278738a05a0b09a57e1fb4d4a341a9f6b" 1183 | integrity sha1-3pu1snhzigWgsJpX4ftNSjQan2s= 1184 | 1185 | is-hexadecimal@^1.0.0: 1186 | version "1.0.3" 1187 | resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.3.tgz#e8a426a69b6d31470d3a33a47bb825cda02506ee" 1188 | integrity sha512-zxQ9//Q3D/34poZf8fiy3m3XVpbQc7ren15iKqrTtLPwkPD/t3Scy9Imp63FujULGxuK0ZlCwoo5xNpktFgbOA== 1189 | 1190 | is-named-css-color@1.0.0: 1191 | version "1.0.0" 1192 | resolved "https://registry.yarnpkg.com/is-named-css-color/-/is-named-css-color-1.0.0.tgz#3b5f89bdc4a515ff4ed25714ffc64129a25599b7" 1193 | integrity sha1-O1+JvcSlFf9O0lcU/8ZBKaJVmbc= 1194 | dependencies: 1195 | css-color-list "0.0.1" 1196 | 1197 | is-plain-obj@^2.0.0: 1198 | version "2.0.0" 1199 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.0.0.tgz#7fd1a7f1b69e160cde9181d2313f445c68aa2679" 1200 | integrity sha512-EYisGhpgSCwspmIuRHGjROWTon2Xp8Z7U03Wubk/bTL5TTRC5R1rGVgyjzBrk9+ULdH6cRD06KRcw/xfqhVYKQ== 1201 | 1202 | is-whitespace-character@^1.0.0: 1203 | version "1.0.3" 1204 | resolved "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.3.tgz#b3ad9546d916d7d3ffa78204bca0c26b56257fac" 1205 | integrity sha512-SNPgMLz9JzPccD3nPctcj8sZlX9DAMJSKH8bP7Z6bohCwuNgX8xbWr1eTAYXX9Vpi/aSn8Y1akL9WgM3t43YNQ== 1206 | 1207 | is-whitespace@latest: 1208 | version "0.3.0" 1209 | resolved "https://registry.yarnpkg.com/is-whitespace/-/is-whitespace-0.3.0.tgz#1639ecb1be036aec69a54cbb401cfbed7114ab7f" 1210 | integrity sha1-Fjnssb4DauxppUy7QBz77XEUq38= 1211 | 1212 | is-word-character@^1.0.0: 1213 | version "1.0.3" 1214 | resolved "https://registry.yarnpkg.com/is-word-character/-/is-word-character-1.0.3.tgz#264d15541cbad0ba833d3992c34e6b40873b08aa" 1215 | integrity sha512-0wfcrFgOOOBdgRNT9H33xe6Zi6yhX/uoc4U8NBZGeQQB0ctU1dnlNTyL9JM2646bHDTpsDm1Brb3VPoCIMrd/A== 1216 | 1217 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1218 | version "4.0.0" 1219 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1220 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1221 | 1222 | jsesc@^2.5.1: 1223 | version "2.5.2" 1224 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1225 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1226 | 1227 | json-parse-even-better-errors@^2.3.0: 1228 | version "2.3.1" 1229 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 1230 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 1231 | 1232 | json5@^2.1.2: 1233 | version "2.2.3" 1234 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" 1235 | integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== 1236 | 1237 | lines-and-columns@^1.1.6: 1238 | version "1.1.6" 1239 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 1240 | integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 1241 | 1242 | lodash.uniq@4.5.0: 1243 | version "4.5.0" 1244 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 1245 | integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= 1246 | 1247 | lodash@^4.17.19: 1248 | version "4.17.21" 1249 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1250 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1251 | 1252 | longest-streak@^2.0.1: 1253 | version "2.0.4" 1254 | resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4" 1255 | integrity sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg== 1256 | 1257 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1258 | version "1.4.0" 1259 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1260 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1261 | dependencies: 1262 | js-tokens "^3.0.0 || ^4.0.0" 1263 | 1264 | markdown-escapes@^1.0.0: 1265 | version "1.0.3" 1266 | resolved "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.3.tgz#6155e10416efaafab665d466ce598216375195f5" 1267 | integrity sha512-XUi5HJhhV5R74k8/0H2oCbCiYf/u4cO/rX8tnGkRvrqhsr5BRNU6Mg0yt/8UIx1iIS8220BNJsDb7XnILhLepw== 1268 | 1269 | markdown-table@^2.0.0: 1270 | version "2.0.0" 1271 | resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-2.0.0.tgz#194a90ced26d31fe753d8b9434430214c011865b" 1272 | integrity sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A== 1273 | dependencies: 1274 | repeat-string "^1.0.0" 1275 | 1276 | mdast-squeeze-paragraphs@^4.0.0: 1277 | version "4.0.0" 1278 | resolved "https://registry.yarnpkg.com/mdast-squeeze-paragraphs/-/mdast-squeeze-paragraphs-4.0.0.tgz#7c4c114679c3bee27ef10b58e2e015be79f1ef97" 1279 | integrity sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ== 1280 | dependencies: 1281 | unist-util-remove "^2.0.0" 1282 | 1283 | mdast-util-compact@^2.0.0: 1284 | version "2.0.1" 1285 | resolved "https://registry.yarnpkg.com/mdast-util-compact/-/mdast-util-compact-2.0.1.tgz#cabc69a2f43103628326f35b1acf735d55c99490" 1286 | integrity sha512-7GlnT24gEwDrdAwEHrU4Vv5lLWrEer4KOkAiKT9nYstsTad7Oc1TwqT2zIMKRdZF7cTuaf+GA1E4Kv7jJh8mPA== 1287 | dependencies: 1288 | unist-util-visit "^2.0.0" 1289 | 1290 | mdast-util-definitions@^3.0.0: 1291 | version "3.0.1" 1292 | resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-3.0.1.tgz#06af6c49865fc63d6d7d30125569e2f7ae3d0a86" 1293 | integrity sha512-BAv2iUm/e6IK/b2/t+Fx69EL/AGcq/IG2S+HxHjDJGfLJtd6i9SZUS76aC9cig+IEucsqxKTR0ot3m933R3iuA== 1294 | dependencies: 1295 | unist-util-visit "^2.0.0" 1296 | 1297 | mdast-util-to-hast@9.1.0: 1298 | version "9.1.0" 1299 | resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-9.1.0.tgz#6ef121dd3cd3b006bf8650b1b9454da0faf79ffe" 1300 | integrity sha512-Akl2Vi9y9cSdr19/Dfu58PVwifPXuFt1IrHe7l+Crme1KvgUT+5z+cHLVcQVGCiNTZZcdqjnuv9vPkGsqWytWA== 1301 | dependencies: 1302 | "@types/mdast" "^3.0.0" 1303 | "@types/unist" "^2.0.3" 1304 | collapse-white-space "^1.0.0" 1305 | detab "^2.0.0" 1306 | mdast-util-definitions "^3.0.0" 1307 | mdurl "^1.0.0" 1308 | trim-lines "^1.0.0" 1309 | unist-builder "^2.0.0" 1310 | unist-util-generated "^1.0.0" 1311 | unist-util-position "^3.0.0" 1312 | unist-util-visit "^2.0.0" 1313 | 1314 | mdurl@^1.0.0: 1315 | version "1.0.1" 1316 | resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" 1317 | integrity sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4= 1318 | 1319 | min-indent@^1.0.0: 1320 | version "1.0.1" 1321 | resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" 1322 | integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== 1323 | 1324 | ms@^2.1.1: 1325 | version "2.1.2" 1326 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1327 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1328 | 1329 | nanoid@^3.1.30: 1330 | version "3.3.1" 1331 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.1.tgz#6347a18cac88af88f58af0b3594b723d5e99bb35" 1332 | integrity sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw== 1333 | 1334 | next-tick@~1.0.0: 1335 | version "1.0.0" 1336 | resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" 1337 | integrity sha1-yobR/ogoFpsBICCOPchCS524NCw= 1338 | 1339 | next@^12.1.0: 1340 | version "12.1.0" 1341 | resolved "https://registry.yarnpkg.com/next/-/next-12.1.0.tgz#c33d753b644be92fc58e06e5a214f143da61dd5d" 1342 | integrity sha512-s885kWvnIlxsUFHq9UGyIyLiuD0G3BUC/xrH0CEnH5lHEWkwQcHOORgbDF0hbrW9vr/7am4ETfX4A7M6DjrE7Q== 1343 | dependencies: 1344 | "@next/env" "12.1.0" 1345 | caniuse-lite "^1.0.30001283" 1346 | postcss "8.4.5" 1347 | styled-jsx "5.0.0" 1348 | use-subscription "1.5.1" 1349 | optionalDependencies: 1350 | "@next/swc-android-arm64" "12.1.0" 1351 | "@next/swc-darwin-arm64" "12.1.0" 1352 | "@next/swc-darwin-x64" "12.1.0" 1353 | "@next/swc-linux-arm-gnueabihf" "12.1.0" 1354 | "@next/swc-linux-arm64-gnu" "12.1.0" 1355 | "@next/swc-linux-arm64-musl" "12.1.0" 1356 | "@next/swc-linux-x64-gnu" "12.1.0" 1357 | "@next/swc-linux-x64-musl" "12.1.0" 1358 | "@next/swc-win32-arm64-msvc" "12.1.0" 1359 | "@next/swc-win32-ia32-msvc" "12.1.0" 1360 | "@next/swc-win32-x64-msvc" "12.1.0" 1361 | 1362 | object-assign@^4.1.1: 1363 | version "4.1.1" 1364 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1365 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1366 | 1367 | parent-module@^1.0.0: 1368 | version "1.0.1" 1369 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1370 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1371 | dependencies: 1372 | callsites "^3.0.0" 1373 | 1374 | parse-entities@^2.0.0: 1375 | version "2.0.0" 1376 | resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz#53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8" 1377 | integrity sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ== 1378 | dependencies: 1379 | character-entities "^1.0.0" 1380 | character-entities-legacy "^1.0.0" 1381 | character-reference-invalid "^1.0.0" 1382 | is-alphanumerical "^1.0.0" 1383 | is-decimal "^1.0.0" 1384 | is-hexadecimal "^1.0.0" 1385 | 1386 | parse-json@^5.0.0: 1387 | version "5.1.0" 1388 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646" 1389 | integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ== 1390 | dependencies: 1391 | "@babel/code-frame" "^7.0.0" 1392 | error-ex "^1.3.1" 1393 | json-parse-even-better-errors "^2.3.0" 1394 | lines-and-columns "^1.1.6" 1395 | 1396 | parse5@^6.0.0: 1397 | version "6.0.1" 1398 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" 1399 | integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== 1400 | 1401 | path-parse@^1.0.6: 1402 | version "1.0.7" 1403 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1404 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1405 | 1406 | path-type@^4.0.0: 1407 | version "4.0.0" 1408 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1409 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1410 | 1411 | picocolors@^1.0.0: 1412 | version "1.0.0" 1413 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1414 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1415 | 1416 | postcss@8.4.5: 1417 | version "8.4.5" 1418 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.5.tgz#bae665764dfd4c6fcc24dc0fdf7e7aa00cc77f95" 1419 | integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg== 1420 | dependencies: 1421 | nanoid "^3.1.30" 1422 | picocolors "^1.0.0" 1423 | source-map-js "^1.0.1" 1424 | 1425 | prop-types@^15.7.2: 1426 | version "15.8.1" 1427 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" 1428 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 1429 | dependencies: 1430 | loose-envify "^1.4.0" 1431 | object-assign "^4.1.1" 1432 | react-is "^16.13.1" 1433 | 1434 | property-information@^5.0.0: 1435 | version "5.2.2" 1436 | resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.2.2.tgz#20555eafd2296278a682e5a51d5123e7878ecc30" 1437 | integrity sha512-N2moasZmjn2mjVGIWpaqz5qnz6QyeQSGgGvMtl81gA9cPTWa6wpesRSe/quNnOjUHpvSH1oZx0pdz0EEckLFnA== 1438 | dependencies: 1439 | xtend "^4.0.1" 1440 | 1441 | property-information@^5.3.0: 1442 | version "5.6.0" 1443 | resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.6.0.tgz#61675545fb23002f245c6540ec46077d4da3ed69" 1444 | integrity sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA== 1445 | dependencies: 1446 | xtend "^4.0.0" 1447 | 1448 | random-hex-color@^1.0.1: 1449 | version "1.0.1" 1450 | resolved "https://registry.yarnpkg.com/random-hex-color/-/random-hex-color-1.0.1.tgz#3518cbccf1ddd43cd6a9c054d6787a3c978b4751" 1451 | integrity sha1-NRjLzPHd1DzWqcBU1nh6PJeLR1E= 1452 | 1453 | react-dom@^17.0.2: 1454 | version "17.0.2" 1455 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23" 1456 | integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA== 1457 | dependencies: 1458 | loose-envify "^1.1.0" 1459 | object-assign "^4.1.1" 1460 | scheduler "^0.20.2" 1461 | 1462 | react-feather@^2.0.10: 1463 | version "2.0.10" 1464 | resolved "https://registry.yarnpkg.com/react-feather/-/react-feather-2.0.10.tgz#0e9abf05a66754f7b7bb71757ac4da7fb6be3b68" 1465 | integrity sha512-BLhukwJ+Z92Nmdcs+EMw6dy1Z/VLiJTzEQACDUEnWMClhYnFykJCGWQx+NmwP/qQHGX/5CzQ+TGi8ofg2+HzVQ== 1466 | dependencies: 1467 | prop-types "^15.7.2" 1468 | 1469 | react-is@^16.13.1, react-is@^16.7.0: 1470 | version "16.13.1" 1471 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 1472 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 1473 | 1474 | react@^17.0.2: 1475 | version "17.0.2" 1476 | resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037" 1477 | integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== 1478 | dependencies: 1479 | loose-envify "^1.1.0" 1480 | object-assign "^4.1.1" 1481 | 1482 | regenerator-runtime@^0.13.4: 1483 | version "0.13.7" 1484 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" 1485 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== 1486 | 1487 | relative-luminance@^2.0.0: 1488 | version "2.0.1" 1489 | resolved "https://registry.yarnpkg.com/relative-luminance/-/relative-luminance-2.0.1.tgz#2babddf3a5a59673227d6f02e0f68e13989e3d13" 1490 | integrity sha512-wFuITNthJilFPwkK7gNJcULxXBcfFZvZORsvdvxeOdO44wCeZnuQkf3nFFzOR/dpJNxYsdRZJLsepWbyKhnMww== 1491 | dependencies: 1492 | esm "^3.0.84" 1493 | 1494 | remark-footnotes@1.0.0: 1495 | version "1.0.0" 1496 | resolved "https://registry.yarnpkg.com/remark-footnotes/-/remark-footnotes-1.0.0.tgz#9c7a97f9a89397858a50033373020b1ea2aad011" 1497 | integrity sha512-X9Ncj4cj3/CIvLI2Z9IobHtVi8FVdUrdJkCNaL9kdX8ohfsi18DXHsCVd/A7ssARBdccdDb5ODnt62WuEWaM/g== 1498 | 1499 | remark-mdx@^2.0.0-next.8: 1500 | version "2.0.0-next.8" 1501 | resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-2.0.0-next.8.tgz#db1c3cbc606ea0d01526242199bb134d99020363" 1502 | integrity sha512-mjP0yo6BgjYrx5a+gKWYRFWbGnRiWi4Fdf17xGCr9VkSMnG4Dyo06spqbaLfHwl0KkQ/RQZlR2sn1mKnYduJdw== 1503 | dependencies: 1504 | parse-entities "^2.0.0" 1505 | remark-stringify "^8.1.0" 1506 | stringify-entities "^3.0.1" 1507 | strip-indent "^3.0.0" 1508 | unist-util-stringify-position "^2.0.3" 1509 | 1510 | remark-mdxjs@^2.0.0-next.8: 1511 | version "2.0.0-next.8" 1512 | resolved "https://registry.yarnpkg.com/remark-mdxjs/-/remark-mdxjs-2.0.0-next.8.tgz#ff603ebfcb17f19503ee3fab78447445eaa08783" 1513 | integrity sha512-Z/+0eWc7pBEABwg3a5ptL+vCTWHYMFnYzpLoJxTm2muBSk8XyB/CL+tEJ6SV3Q/fScHX2dtG4JRcGSpbZFLazQ== 1514 | dependencies: 1515 | "@babel/core" "7.10.5" 1516 | "@babel/helper-plugin-utils" "7.10.4" 1517 | "@babel/plugin-proposal-object-rest-spread" "7.10.4" 1518 | "@babel/plugin-syntax-jsx" "7.10.4" 1519 | "@mdx-js/util" "^2.0.0-next.8" 1520 | 1521 | remark-parse@8.0.2: 1522 | version "8.0.2" 1523 | resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-8.0.2.tgz#5999bc0b9c2e3edc038800a64ff103d0890b318b" 1524 | integrity sha512-eMI6kMRjsAGpMXXBAywJwiwAse+KNpmt+BK55Oofy4KvBZEqUDj6mWbGLJZrujoPIPPxDXzn3T9baRlpsm2jnQ== 1525 | dependencies: 1526 | ccount "^1.0.0" 1527 | collapse-white-space "^1.0.2" 1528 | is-alphabetical "^1.0.0" 1529 | is-decimal "^1.0.0" 1530 | is-whitespace-character "^1.0.0" 1531 | is-word-character "^1.0.0" 1532 | markdown-escapes "^1.0.0" 1533 | parse-entities "^2.0.0" 1534 | repeat-string "^1.5.4" 1535 | state-toggle "^1.0.0" 1536 | trim "0.0.1" 1537 | trim-trailing-lines "^1.0.0" 1538 | unherit "^1.0.4" 1539 | unist-util-remove-position "^2.0.0" 1540 | vfile-location "^3.0.0" 1541 | xtend "^4.0.1" 1542 | 1543 | remark-squeeze-paragraphs@4.0.0: 1544 | version "4.0.0" 1545 | resolved "https://registry.yarnpkg.com/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz#76eb0e085295131c84748c8e43810159c5653ead" 1546 | integrity sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw== 1547 | dependencies: 1548 | mdast-squeeze-paragraphs "^4.0.0" 1549 | 1550 | remark-stringify@^8.1.0: 1551 | version "8.1.1" 1552 | resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-8.1.1.tgz#e2a9dc7a7bf44e46a155ec78996db896780d8ce5" 1553 | integrity sha512-q4EyPZT3PcA3Eq7vPpT6bIdokXzFGp9i85igjmhRyXWmPs0Y6/d2FYwUNotKAWyLch7g0ASZJn/KHHcHZQ163A== 1554 | dependencies: 1555 | ccount "^1.0.0" 1556 | is-alphanumeric "^1.0.0" 1557 | is-decimal "^1.0.0" 1558 | is-whitespace-character "^1.0.0" 1559 | longest-streak "^2.0.1" 1560 | markdown-escapes "^1.0.0" 1561 | markdown-table "^2.0.0" 1562 | mdast-util-compact "^2.0.0" 1563 | parse-entities "^2.0.0" 1564 | repeat-string "^1.5.4" 1565 | state-toggle "^1.0.0" 1566 | stringify-entities "^3.0.0" 1567 | unherit "^1.0.4" 1568 | xtend "^4.0.1" 1569 | 1570 | repeat-string@^1.0.0, repeat-string@^1.5.4: 1571 | version "1.6.1" 1572 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1573 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= 1574 | 1575 | replace-ext@1.0.0: 1576 | version "1.0.0" 1577 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" 1578 | integrity sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs= 1579 | 1580 | resolve-from@^4.0.0: 1581 | version "4.0.0" 1582 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1583 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1584 | 1585 | resolve@^1.12.0: 1586 | version "1.19.0" 1587 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c" 1588 | integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg== 1589 | dependencies: 1590 | is-core-module "^2.1.0" 1591 | path-parse "^1.0.6" 1592 | 1593 | resolve@^1.3.2: 1594 | version "1.12.0" 1595 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6" 1596 | integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w== 1597 | dependencies: 1598 | path-parse "^1.0.6" 1599 | 1600 | rgb@^0.1.0: 1601 | version "0.1.0" 1602 | resolved "https://registry.yarnpkg.com/rgb/-/rgb-0.1.0.tgz#be27b291e8feffeac1bd99729721bfa40fc037b5" 1603 | integrity sha1-vieykej+/+rBvZlylyG/pA/AN7U= 1604 | 1605 | safe-buffer@~5.1.1: 1606 | version "5.1.2" 1607 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1608 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1609 | 1610 | scheduler@^0.20.2: 1611 | version "0.20.2" 1612 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91" 1613 | integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ== 1614 | dependencies: 1615 | loose-envify "^1.1.0" 1616 | object-assign "^4.1.1" 1617 | 1618 | semver@^5.4.1: 1619 | version "5.7.1" 1620 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1621 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1622 | 1623 | source-map-js@^1.0.1: 1624 | version "1.0.2" 1625 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" 1626 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 1627 | 1628 | source-map@^0.5.0, source-map@^0.5.7: 1629 | version "0.5.7" 1630 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1631 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 1632 | 1633 | space-separated-tokens@^1.0.0: 1634 | version "1.1.4" 1635 | resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.4.tgz#27910835ae00d0adfcdbd0ad7e611fb9544351fa" 1636 | integrity sha512-UyhMSmeIqZrQn2UdjYpxEkwY9JUrn8pP+7L4f91zRzOQuI8MF1FGLfYU9DKCYeLdo7LXMxwrX5zKFy7eeeVHuA== 1637 | 1638 | state-toggle@^1.0.0: 1639 | version "1.0.2" 1640 | resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.2.tgz#75e93a61944116b4959d665c8db2d243631d6ddc" 1641 | integrity sha512-8LpelPGR0qQM4PnfLiplOQNJcIN1/r2Gy0xKB2zKnIW2YzPMt2sR4I/+gtPjhN7Svh9kw+zqEg2SFwpBO9iNiw== 1642 | 1643 | stringify-entities@^3.0.0, stringify-entities@^3.0.1: 1644 | version "3.1.0" 1645 | resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-3.1.0.tgz#b8d3feac256d9ffcc9fa1fefdcf3ca70576ee903" 1646 | integrity sha512-3FP+jGMmMV/ffZs86MoghGqAoqXAdxLrJP4GUdrDN1aIScYih5tuIO3eF4To5AJZ79KDZ8Fpdy7QJnK8SsL1Vg== 1647 | dependencies: 1648 | character-entities-html4 "^1.0.0" 1649 | character-entities-legacy "^1.0.0" 1650 | xtend "^4.0.0" 1651 | 1652 | strip-indent@^3.0.0: 1653 | version "3.0.0" 1654 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" 1655 | integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== 1656 | dependencies: 1657 | min-indent "^1.0.0" 1658 | 1659 | style-to-object@^0.3.0: 1660 | version "0.3.0" 1661 | resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.3.0.tgz#b1b790d205991cc783801967214979ee19a76e46" 1662 | integrity sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA== 1663 | dependencies: 1664 | inline-style-parser "0.1.1" 1665 | 1666 | styled-jsx@5.0.0: 1667 | version "5.0.0" 1668 | resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.0.tgz#816b4b92e07b1786c6b7111821750e0ba4d26e77" 1669 | integrity sha512-qUqsWoBquEdERe10EW8vLp3jT25s/ssG1/qX5gZ4wu15OZpmSMFI2v+fWlRhLfykA5rFtlJ1ME8A8pm/peV4WA== 1670 | 1671 | styled-system@^5.1.5: 1672 | version "5.1.5" 1673 | resolved "https://registry.yarnpkg.com/styled-system/-/styled-system-5.1.5.tgz#e362d73e1dbb5641a2fd749a6eba1263dc85075e" 1674 | integrity sha512-7VoD0o2R3RKzOzPK0jYrVnS8iJdfkKsQJNiLRDjikOpQVqQHns/DXWaPZOH4tIKkhAT7I6wIsy9FWTWh2X3q+A== 1675 | dependencies: 1676 | "@styled-system/background" "^5.1.2" 1677 | "@styled-system/border" "^5.1.5" 1678 | "@styled-system/color" "^5.1.2" 1679 | "@styled-system/core" "^5.1.2" 1680 | "@styled-system/flexbox" "^5.1.2" 1681 | "@styled-system/grid" "^5.1.2" 1682 | "@styled-system/layout" "^5.1.2" 1683 | "@styled-system/position" "^5.1.2" 1684 | "@styled-system/shadow" "^5.1.2" 1685 | "@styled-system/space" "^5.1.2" 1686 | "@styled-system/typography" "^5.1.2" 1687 | "@styled-system/variant" "^5.1.5" 1688 | object-assign "^4.1.1" 1689 | 1690 | stylis@^4.0.3: 1691 | version "4.0.6" 1692 | resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.0.6.tgz#0d8b97b6bc4748bea46f68602b6df27641b3c548" 1693 | integrity sha512-1igcUEmYFBEO14uQHAJhCUelTR5jPztfdVKrYxRnDa5D5Dn3w0NxXupJNPr/VV/yRfZYEAco8sTIRZzH3sRYKg== 1694 | 1695 | supports-color@^5.3.0: 1696 | version "5.5.0" 1697 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1698 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1699 | dependencies: 1700 | has-flag "^3.0.0" 1701 | 1702 | tachyons@^5.0.0-0: 1703 | version "5.0.0-0" 1704 | resolved "https://registry.yarnpkg.com/tachyons/-/tachyons-5.0.0-0.tgz#7668eaddd59dc75959de00490736ca89b0fe9119" 1705 | integrity sha512-d5bTjmgBSd8y5umE5Fh33Sig1ksSMx+cjRrob72lw9yt2GNDcmrXDPYRxxMT3wrSbfUs7dtJ+QkZCr12Y1+ptg== 1706 | 1707 | theme-ui@^0.10.0: 1708 | version "0.10.0" 1709 | resolved "https://registry.yarnpkg.com/theme-ui/-/theme-ui-0.10.0.tgz#4fce8fbe7ad008ec07b383eaf5f468b0317fcfa1" 1710 | integrity sha512-6uj9/4n6gZrlhrfQKt+QoLdtVc46ETJZv42iqedCatXaaTA5tHN1j7TJDmvYD9ooD/CT0+hsvOrx2d2etb/kYg== 1711 | dependencies: 1712 | "@theme-ui/color-modes" "0.10.0" 1713 | "@theme-ui/components" "0.10.0" 1714 | "@theme-ui/core" "0.10.0" 1715 | "@theme-ui/css" "0.10.0" 1716 | "@theme-ui/mdx" "0.10.0" 1717 | "@theme-ui/theme-provider" "0.10.0" 1718 | 1719 | to-fast-properties@^2.0.0: 1720 | version "2.0.0" 1721 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 1722 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 1723 | 1724 | trim-lines@^1.0.0: 1725 | version "1.1.3" 1726 | resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-1.1.3.tgz#839514be82428fd9e7ec89e35081afe8f6f93115" 1727 | integrity sha512-E0ZosSWYK2mkSu+KEtQ9/KqarVjA9HztOSX+9FDdNacRAq29RRV6ZQNgob3iuW8Htar9vAfEa6yyt5qBAHZDBA== 1728 | 1729 | trim-trailing-lines@^1.0.0: 1730 | version "1.1.2" 1731 | resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.2.tgz#d2f1e153161152e9f02fabc670fb40bec2ea2e3a" 1732 | integrity sha512-MUjYItdrqqj2zpcHFTkMa9WAv4JHTI6gnRQGPFLrt5L9a6tRMiDnIqYl8JBvu2d2Tc3lWJKQwlGCp0K8AvCM+Q== 1733 | 1734 | trim@0.0.1: 1735 | version "0.0.1" 1736 | resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" 1737 | integrity sha1-WFhUf2spB1fulczMZm+1AITEYN0= 1738 | 1739 | trough@^1.0.0: 1740 | version "1.0.4" 1741 | resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.4.tgz#3b52b1f13924f460c3fbfd0df69b587dbcbc762e" 1742 | integrity sha512-tdzBRDGWcI1OpPVmChbdSKhvSVurznZ8X36AYURAcl+0o2ldlCY2XPzyXNNxwJwwyIU+rIglTCG4kxtNKBQH7Q== 1743 | 1744 | type@^1.0.1: 1745 | version "1.2.0" 1746 | resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0" 1747 | integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== 1748 | 1749 | type@^2.0.0: 1750 | version "2.1.0" 1751 | resolved "https://registry.yarnpkg.com/type/-/type-2.1.0.tgz#9bdc22c648cf8cf86dd23d32336a41cfb6475e3f" 1752 | integrity sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA== 1753 | 1754 | unherit@^1.0.4: 1755 | version "1.1.2" 1756 | resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.2.tgz#14f1f397253ee4ec95cec167762e77df83678449" 1757 | integrity sha512-W3tMnpaMG7ZY6xe/moK04U9fBhi6wEiCYHUW5Mop/wQHf12+79EQGwxYejNdhEz2mkqkBlGwm7pxmgBKMVUj0w== 1758 | dependencies: 1759 | inherits "^2.0.1" 1760 | xtend "^4.0.1" 1761 | 1762 | unified@9.0.0: 1763 | version "9.0.0" 1764 | resolved "https://registry.yarnpkg.com/unified/-/unified-9.0.0.tgz#12b099f97ee8b36792dbad13d278ee2f696eed1d" 1765 | integrity sha512-ssFo33gljU3PdlWLjNp15Inqb77d6JnJSfyplGJPT/a+fNRNyCBeveBAYJdO5khKdF6WVHa/yYCC7Xl6BDwZUQ== 1766 | dependencies: 1767 | bail "^1.0.0" 1768 | extend "^3.0.0" 1769 | is-buffer "^2.0.0" 1770 | is-plain-obj "^2.0.0" 1771 | trough "^1.0.0" 1772 | vfile "^4.0.0" 1773 | 1774 | unist-builder@2.0.3, unist-builder@^2.0.0: 1775 | version "2.0.3" 1776 | resolved "https://registry.yarnpkg.com/unist-builder/-/unist-builder-2.0.3.tgz#77648711b5d86af0942f334397a33c5e91516436" 1777 | integrity sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw== 1778 | 1779 | unist-util-generated@^1.0.0: 1780 | version "1.1.6" 1781 | resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-1.1.6.tgz#5ab51f689e2992a472beb1b35f2ce7ff2f324d4b" 1782 | integrity sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg== 1783 | 1784 | unist-util-is@^4.0.0: 1785 | version "4.0.0" 1786 | resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.0.0.tgz#85672993f0d88a8bffb45137aba003ee8da11a38" 1787 | integrity sha512-E5JLUKRQlAYiJmN2PVBdSz01R3rUKRSM00X+0DB/yLqxdLu6wZZkRdTIsxDp9X+bkxh8Eq+O2YYRbZvLZtQT1A== 1788 | 1789 | unist-util-position@^3.0.0: 1790 | version "3.0.3" 1791 | resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-3.0.3.tgz#fff942b879538b242096c148153826664b1ca373" 1792 | integrity sha512-28EpCBYFvnMeq9y/4w6pbnFmCUfzlsc41NJui5c51hOFjBA1fejcwc+5W4z2+0ECVbScG3dURS3JTVqwenzqZw== 1793 | 1794 | unist-util-remove-position@^2.0.0: 1795 | version "2.0.1" 1796 | resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz#5d19ca79fdba712301999b2b73553ca8f3b352cc" 1797 | integrity sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA== 1798 | dependencies: 1799 | unist-util-visit "^2.0.0" 1800 | 1801 | unist-util-remove@^2.0.0: 1802 | version "2.0.1" 1803 | resolved "https://registry.yarnpkg.com/unist-util-remove/-/unist-util-remove-2.0.1.tgz#fa13c424ff8e964f3aa20d1098b9a690c6bfaa39" 1804 | integrity sha512-YtuetK6o16CMfG+0u4nndsWpujgsHDHHLyE0yGpJLLn5xSjKeyGyzEBOI2XbmoUHCYabmNgX52uxlWoQhcvR7Q== 1805 | dependencies: 1806 | unist-util-is "^4.0.0" 1807 | 1808 | unist-util-stringify-position@^2.0.0: 1809 | version "2.0.1" 1810 | resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.1.tgz#de2a2bc8d3febfa606652673a91455b6a36fb9f3" 1811 | integrity sha512-Zqlf6+FRI39Bah8Q6ZnNGrEHUhwJOkHde2MHVk96lLyftfJJckaPslKgzhVcviXj8KcE9UJM9F+a4JEiBUTYgA== 1812 | dependencies: 1813 | "@types/unist" "^2.0.2" 1814 | 1815 | unist-util-stringify-position@^2.0.3: 1816 | version "2.0.3" 1817 | resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz#cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da" 1818 | integrity sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g== 1819 | dependencies: 1820 | "@types/unist" "^2.0.2" 1821 | 1822 | unist-util-visit-parents@^3.0.0: 1823 | version "3.0.0" 1824 | resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.0.0.tgz#dd4cdcd86d505ec7a81bdc01bc790f9def742bee" 1825 | integrity sha512-H3K8d81S4V3XVXVwLvrLGk+R5VILryfUotD06/R/rLsTsPLGjkn6gIP8qEEVITcuIySNYj0ocJLsePjm9F/Vcg== 1826 | dependencies: 1827 | "@types/unist" "^2.0.3" 1828 | unist-util-is "^4.0.0" 1829 | 1830 | unist-util-visit@2.0.3, unist-util-visit@^2.0.0: 1831 | version "2.0.3" 1832 | resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-2.0.3.tgz#c3703893146df47203bb8a9795af47d7b971208c" 1833 | integrity sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q== 1834 | dependencies: 1835 | "@types/unist" "^2.0.0" 1836 | unist-util-is "^4.0.0" 1837 | unist-util-visit-parents "^3.0.0" 1838 | 1839 | use-subscription@1.5.1: 1840 | version "1.5.1" 1841 | resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.5.1.tgz#73501107f02fad84c6dd57965beb0b75c68c42d1" 1842 | integrity sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA== 1843 | dependencies: 1844 | object-assign "^4.1.1" 1845 | 1846 | vfile-location@^3.0.0, vfile-location@^3.2.0: 1847 | version "3.2.0" 1848 | resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-3.2.0.tgz#d8e41fbcbd406063669ebf6c33d56ae8721d0f3c" 1849 | integrity sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA== 1850 | 1851 | vfile-message@^2.0.0: 1852 | version "2.0.1" 1853 | resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-2.0.1.tgz#951881861c22fc1eb39f873c0b93e336a64e8f6d" 1854 | integrity sha512-KtasSV+uVU7RWhUn4Lw+wW1Zl/nW8JWx7JCPps10Y9JRRIDeDXf8wfBLoOSsJLyo27DqMyAi54C6Jf/d6Kr2Bw== 1855 | dependencies: 1856 | "@types/unist" "^2.0.2" 1857 | unist-util-stringify-position "^2.0.0" 1858 | 1859 | vfile@^4.0.0: 1860 | version "4.0.1" 1861 | resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.0.1.tgz#fc3d43a1c71916034216bf65926d5ee3c64ed60c" 1862 | integrity sha512-lRHFCuC4SQBFr7Uq91oJDJxlnftoTLQ7eKIpMdubhYcVMho4781a8MWXLy3qZrZ0/STD1kRiKc0cQOHm4OkPeA== 1863 | dependencies: 1864 | "@types/unist" "^2.0.0" 1865 | is-buffer "^2.0.0" 1866 | replace-ext "1.0.0" 1867 | unist-util-stringify-position "^2.0.0" 1868 | vfile-message "^2.0.0" 1869 | 1870 | wcag-contrast@3.0.0: 1871 | version "3.0.0" 1872 | resolved "https://registry.yarnpkg.com/wcag-contrast/-/wcag-contrast-3.0.0.tgz#51c2df43f15162993006454b3362844205889efb" 1873 | integrity sha512-RWbpg/S7FOXDCwqC2oFhN/vh8dHzj0OS6dpyOSDHyQFSmqmR+lAUStV/ziTT1GzDqL9wol+nZQB4vCi5yEak+w== 1874 | dependencies: 1875 | relative-luminance "^2.0.0" 1876 | 1877 | web-namespaces@^1.0.0: 1878 | version "1.1.3" 1879 | resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-1.1.3.tgz#9bbf5c99ff0908d2da031f1d732492a96571a83f" 1880 | integrity sha512-r8sAtNmgR0WKOKOxzuSgk09JsHlpKlB+uHi937qypOu3PZ17UxPrierFKDye/uNHjNTTEshu5PId8rojIPj/tA== 1881 | 1882 | xtend@^4.0.0, xtend@^4.0.1: 1883 | version "4.0.2" 1884 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 1885 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 1886 | 1887 | yaml@^1.7.2: 1888 | version "1.10.0" 1889 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" 1890 | integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== 1891 | 1892 | zwitch@^1.0.0: 1893 | version "1.0.4" 1894 | resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-1.0.4.tgz#93b1b993b13c8926753a41afaf8f27bbfac6be8b" 1895 | integrity sha512-YO803/X+13GNaZB7fVopjvHH0uWQKgJkgKnU1YCjxShjKGVuN9PPHHW8g+uFDpkHpSTNi3rCMKMewIcbC1BAYg== 1896 | --------------------------------------------------------------------------------