未验证 提交 e529448f 编写于 作者: P Peter Pan 提交者: GitHub

Millisecond (#783)

* fix: incorrect locale redirect

* chore: use millisecond
上级 0cc548ae
...@@ -220,7 +220,7 @@ const SampleChart: FunctionComponent<SampleChartProps> = ({run, tag, running, ty ...@@ -220,7 +220,7 @@ const SampleChart: FunctionComponent<SampleChartProps> = ({run, tag, running, ty
<span>{run.label}</span> <span>{run.label}</span>
</Title> </Title>
<StepSlider value={step} steps={steps} onChange={setStep} onChangeComplete={cacheSrc}> <StepSlider value={step} steps={steps} onChange={setStep} onChangeComplete={cacheSrc}>
{formatTime(wallTime * 1000, i18n.language)} {formatTime(wallTime, i18n.language)}
</StepSlider> </StepSlider>
<Container ref={container}>{Content}</Container> <Container ref={container}>{Content}</Container>
<Footer> <Footer>
......
...@@ -83,8 +83,8 @@ const PRCurve: NextI18NextPage = () => { ...@@ -83,8 +83,8 @@ const PRCurve: NextI18NextPage = () => {
...run, ...run,
index: indexes[run.label] ?? (stepInfo?.[i].length ?? 1) - 1, index: indexes[run.label] ?? (stepInfo?.[i].length ?? 1) - 1,
steps: stepInfo?.[i].map(j => j[1]) ?? [], steps: stepInfo?.[i].map(j => j[1]) ?? [],
wallTimes: stepInfo?.[i].map(j => Math.floor(j[0] * 1000)) ?? [], wallTimes: stepInfo?.[i].map(j => Math.floor(j[0])) ?? [],
relatives: stepInfo?.[i].map(j => (j[0] - stepInfo[i][0][0]) * 1000) ?? [] relatives: stepInfo?.[i].map(j => j[0] - stepInfo[i][0][0]) ?? []
})), })),
[runsInTags, stepInfo, indexes] [runsInTags, stepInfo, indexes]
); );
......
...@@ -17,8 +17,7 @@ export const transform = ({datasets, smoothing}: {datasets: ScalarDataset[]; smo ...@@ -17,8 +17,7 @@ export const transform = ({datasets, smoothing}: {datasets: ScalarDataset[]; smo
const bigSmoothing = new BigNumber(smoothing); const bigSmoothing = new BigNumber(smoothing);
data.forEach((d, i) => { data.forEach((d, i) => {
const nextVal = new BigNumber(d[2]); const nextVal = new BigNumber(d[2]);
// second to millisecond. const millisecond = (d[0] = Math.floor(d[0]));
const millisecond = (d[0] = Math.floor(d[0] * 1000));
if (i === 0) { if (i === 0) {
startValue = millisecond; startValue = millisecond;
} }
......
export default [ export default [
{ {
wallTime: 1512549785.061623, wallTime: 1512549785061.623,
step: 60 step: 60
}, },
{ {
wallTime: 1512886109.672786, wallTime: 1512886109672.786,
step: 60 step: 60
}, },
{ {
wallTime: 1512886124.266915, wallTime: 1512886124266.915,
step: 210 step: 210
}, },
{ {
wallTime: 1512886138.898628, wallTime: 1512886138898.628,
step: 330 step: 330
}, },
{ {
wallTime: 1512886139.883663, wallTime: 1512886139883.663,
step: 340 step: 340
}, },
{ {
wallTime: 1512886147.195567, wallTime: 1512886147195.567,
step: 410 step: 410
}, },
{ {
wallTime: 1512886156.47856, wallTime: 1512886156478.56,
step: 500 step: 500
}, },
{ {
wallTime: 1512886187.82793, wallTime: 1512886187827.93,
step: 810 step: 810
}, },
{ {
wallTime: 1512886200.386198, wallTime: 1512886200386.198,
step: 950 step: 950
}, },
{ {
wallTime: 1512886204.224405, wallTime: 1512886204224.405,
step: 990 step: 990
} }
]; ];
export default [ export default [
[ [
1515224840.945252, 1515224840945.252,
0, 0,
[ [
[-4.826786994934082, -5.099814079160488, 0.0], [-4.826786994934082, -5.099814079160488, 0.0],
...@@ -62,7 +62,7 @@ export default [ ...@@ -62,7 +62,7 @@ export default [
] ]
], ],
[ [
1515224846.83122, 1515224846831.22,
70, 70,
[ [
[-5.609264373779297, -5.609795487076537, 0.0], [-5.609264373779297, -5.609795487076537, 0.0],
...@@ -108,7 +108,7 @@ export default [ ...@@ -108,7 +108,7 @@ export default [
] ]
], ],
[ [
1515224850.414384, 1515224850414.384,
100, 100,
[ [
[-5.622415065765381, -6.1707750357841915, 0.0], [-5.622415065765381, -6.1707750357841915, 0.0],
...@@ -166,7 +166,7 @@ export default [ ...@@ -166,7 +166,7 @@ export default [
] ]
], ],
[ [
1515224852.17382, 1515224852173.82,
120, 120,
[ [
[-5.641714572906494, -6.1707750357841915, 0.0], [-5.641714572906494, -6.1707750357841915, 0.0],
......
export default [ export default [
{ {
wallTime: 1512549785.061623, wallTime: 1512549785061.623,
step: 60 step: 60
}, },
{ {
wallTime: 1512886109.672786, wallTime: 1512886109672.786,
step: 60 step: 60
}, },
{ {
wallTime: 1512886124.266915, wallTime: 1512886124266.915,
step: 210 step: 210
}, },
{ {
wallTime: 1512886138.898628, wallTime: 1512886138898.628,
step: 330 step: 330
}, },
{ {
wallTime: 1512886139.883663, wallTime: 1512886139883.663,
step: 340 step: 340
}, },
{ {
wallTime: 1512886147.195567, wallTime: 1512886147195.567,
step: 410 step: 410
}, },
{ {
wallTime: 1512886156.47856, wallTime: 1512886156478.56,
step: 500 step: 500
}, },
{ {
wallTime: 1512886187.82793, wallTime: 1512886187827.93,
step: 810 step: 810
}, },
{ {
wallTime: 1512886200.386198, wallTime: 1512886200386.198,
step: 950 step: 950
}, },
{ {
wallTime: 1512886204.224405, wallTime: 1512886204224.405,
step: 990 step: 990
} }
]; ];
...@@ -4,7 +4,7 @@ export default (request: Request) => { ...@@ -4,7 +4,7 @@ export default (request: Request) => {
if (request.query.run === 'train') { if (request.query.run === 'train') {
return [ return [
[ [
1593069993.786464, 1593069993786.464,
0, 0,
[ [
0.3333333432674408, 0.3333333432674408,
...@@ -309,7 +309,7 @@ export default (request: Request) => { ...@@ -309,7 +309,7 @@ export default (request: Request) => {
] ]
], ],
[ [
1593069993.787353, 1593069993787.353,
1, 1,
[ [
0.3333333432674408, 0.3333333432674408,
...@@ -628,7 +628,7 @@ export default (request: Request) => { ...@@ -628,7 +628,7 @@ export default (request: Request) => {
] ]
], ],
[ [
1593069993.7881448, 1593069993788.1448,
2, 2,
[ [
0.3333333432674408, 0.3333333432674408,
...@@ -933,7 +933,7 @@ export default (request: Request) => { ...@@ -933,7 +933,7 @@ export default (request: Request) => {
] ]
], ],
[ [
1593069993.788836, 1593069993788.836,
3, 3,
[ [
0.3333333432674408, 0.3333333432674408,
...@@ -1266,7 +1266,7 @@ export default (request: Request) => { ...@@ -1266,7 +1266,7 @@ export default (request: Request) => {
] ]
], ],
[ [
1593069993.7894, 1593069993789.4,
4, 4,
[ [
0.3333333432674408, 0.3333333432674408,
...@@ -1557,7 +1557,7 @@ export default (request: Request) => { ...@@ -1557,7 +1557,7 @@ export default (request: Request) => {
] ]
], ],
[ [
1593069993.790076, 1593069993790.076,
5, 5,
[ [
0.3333333432674408, 0.3333333432674408,
...@@ -1862,7 +1862,7 @@ export default (request: Request) => { ...@@ -1862,7 +1862,7 @@ export default (request: Request) => {
] ]
], ],
[ [
1593069993.790763, 1593069993790.763,
6, 6,
[ [
0.3333333432674408, 0.3333333432674408,
...@@ -2195,7 +2195,7 @@ export default (request: Request) => { ...@@ -2195,7 +2195,7 @@ export default (request: Request) => {
] ]
], ],
[ [
1593069993.791473, 1593069993791.473,
7, 7,
[ [
0.3333333432674408, 0.3333333432674408,
...@@ -2521,7 +2521,7 @@ export default (request: Request) => { ...@@ -2521,7 +2521,7 @@ export default (request: Request) => {
] ]
], ],
[ [
1593069993.792149, 1593069993792.149,
8, 8,
[ [
0.3333333432674408, 0.3333333432674408,
...@@ -2840,7 +2840,7 @@ export default (request: Request) => { ...@@ -2840,7 +2840,7 @@ export default (request: Request) => {
] ]
], ],
[ [
1593069993.792763, 1593069993792.763,
9, 9,
[ [
0.3333333432674408, 0.3333333432674408,
...@@ -3148,7 +3148,7 @@ export default (request: Request) => { ...@@ -3148,7 +3148,7 @@ export default (request: Request) => {
} }
return [ return [
[ [
1593069993.5386739, 1593069993538.6739,
0, 0,
[ [
0.3333333432674408, 0.3333333432674408,
...@@ -3488,7 +3488,7 @@ export default (request: Request) => { ...@@ -3488,7 +3488,7 @@ export default (request: Request) => {
] ]
], ],
[ [
1593069993.539396, 1593069993539.396,
1, 1,
[ [
0.3333333432674408, 0.3333333432674408,
...@@ -3807,7 +3807,7 @@ export default (request: Request) => { ...@@ -3807,7 +3807,7 @@ export default (request: Request) => {
] ]
], ],
[ [
1593069993.540066, 1593069993540.066,
2, 2,
[ [
0.3333333432674408, 0.3333333432674408,
...@@ -4112,7 +4112,7 @@ export default (request: Request) => { ...@@ -4112,7 +4112,7 @@ export default (request: Request) => {
] ]
], ],
[ [
1593069993.540662, 1593069993540.662,
3, 3,
[ [
0.3333333432674408, 0.3333333432674408,
...@@ -4452,7 +4452,7 @@ export default (request: Request) => { ...@@ -4452,7 +4452,7 @@ export default (request: Request) => {
] ]
], ],
[ [
1593069993.541333, 1593069993541.333,
4, 4,
[ [
0.3333333432674408, 0.3333333432674408,
...@@ -4771,7 +4771,7 @@ export default (request: Request) => { ...@@ -4771,7 +4771,7 @@ export default (request: Request) => {
] ]
], ],
[ [
1593069993.542078, 1593069993542.078,
5, 5,
[ [
0.3333333432674408, 0.3333333432674408,
...@@ -5097,7 +5097,7 @@ export default (request: Request) => { ...@@ -5097,7 +5097,7 @@ export default (request: Request) => {
] ]
], ],
[ [
1593069993.5431821, 1593069993543.1821,
6, 6,
[ [
0.3333333432674408, 0.3333333432674408,
...@@ -5430,7 +5430,7 @@ export default (request: Request) => { ...@@ -5430,7 +5430,7 @@ export default (request: Request) => {
] ]
], ],
[ [
1593069993.543998, 1593069993543.998,
7, 7,
[ [
0.3333333432674408, 0.3333333432674408,
...@@ -5756,7 +5756,7 @@ export default (request: Request) => { ...@@ -5756,7 +5756,7 @@ export default (request: Request) => {
] ]
], ],
[ [
1593069993.5449128, 1593069993544.9128,
8, 8,
[ [
0.3333333432674408, 0.3333333432674408,
...@@ -6075,7 +6075,7 @@ export default (request: Request) => { ...@@ -6075,7 +6075,7 @@ export default (request: Request) => {
] ]
], ],
[ [
1593069993.54562, 1593069993545.62,
9, 9,
[ [
0.3333333432674408, 0.3333333432674408,
......
...@@ -3,28 +3,28 @@ import {Request} from 'express'; ...@@ -3,28 +3,28 @@ import {Request} from 'express';
export default (request: Request) => { export default (request: Request) => {
if (request.query.run === 'train') { if (request.query.run === 'train') {
return [ return [
[1593069993.786464, 0], [1593069993786.464, 0],
[1593069993.787353, 1], [1593069993787.353, 1],
[1593069993.7881448, 2], [1593069993788.1448, 2],
[1593069993.788836, 3], [1593069993788.836, 3],
[1593069993.7894, 4], [1593069993789.4, 4],
[1593069993.790076, 5], [1593069993790.076, 5],
[1593069993.790763, 6], [1593069993790.763, 6],
[1593069993.791473, 7], [1593069993791.473, 7],
[1593069993.792149, 8], [1593069993792.149, 8],
[1593069993.792763, 9] [1593069993792.763, 9]
]; ];
} }
return [ return [
[1593069993.5386739, 0], [1593069993538.6739, 0],
[1593069993.539396, 1], [1593069993539.396, 1],
[1593069993.540066, 2], [1593069993540.066, 2],
[1593069993.540662, 3], [1593069993540.662, 3],
[1593069993.541333, 4], [1593069993541.333, 4],
[1593069993.542078, 5], [1593069993542.078, 5],
[1593069993.5431821, 6], [1593069993543.1821, 6],
[1593069993.543998, 7], [1593069993543.998, 7],
[1593069993.5449128, 8], [1593069993544.9128, 8],
[1593069993.54562, 9] [1593069993545.62, 9]
]; ];
}; };
...@@ -3,1008 +3,1008 @@ import {Request} from 'express'; ...@@ -3,1008 +3,1008 @@ import {Request} from 'express';
export default (request: Request) => { export default (request: Request) => {
if (request.query.run === 'train') { if (request.query.run === 'train') {
return [ return [
[1511842145.705075, 1, 0.05000000074505806], [1511842145705.075, 1, 0.05000000074505806],
[1511842145.7388, 2, 0.12999999523162842], [1511842145738.8, 2, 0.12999999523162842],
[1511842145.774563, 3, 0.27000001072883606], [1511842145774.563, 3, 0.27000001072883606],
[1511842145.806828, 4, 0.4399999976158142], [1511842145806.828, 4, 0.4399999976158142],
[1511842145.838082, 5, 0.47999998927116394], [1511842145838.082, 5, 0.47999998927116394],
[1511842145.868955, 6, 0.5899999737739563], [1511842145868.955, 6, 0.5899999737739563],
[1511842145.899323, 7, 0.6100000143051147], [1511842145899.323, 7, 0.6100000143051147],
[1511842145.930518, 8, 0.699999988079071], [1511842145930.518, 8, 0.699999988079071],
[1511842145.96089, 9, 0.6700000166893005], [1511842145960.89, 9, 0.6700000166893005],
[1511842146.460557, 11, 0.6499999761581421], [1511842146460.557, 11, 0.6499999761581421],
[1511842146.4952, 12, 0.7300000190734863], [1511842146495.2, 12, 0.7300000190734863],
[1511842146.525936, 13, 0.6899999976158142], [1511842146525.936, 13, 0.6899999976158142],
[1511842146.556059, 14, 0.75], [1511842146556.059, 14, 0.75],
[1511842146.648703, 15, 0.7099999785423279], [1511842146648.703, 15, 0.7099999785423279],
[1511842146.683295, 16, 0.7900000214576721], [1511842146683.295, 16, 0.7900000214576721],
[1511842146.719782, 17, 0.8299999833106995], [1511842146719.782, 17, 0.8299999833106995],
[1511842146.752392, 18, 0.7900000214576721], [1511842146752.392, 18, 0.7900000214576721],
[1511842146.786562, 19, 0.8299999833106995], [1511842146786.562, 19, 0.8299999833106995],
[1511842147.296362, 21, 0.8199999928474426], [1511842147296.362, 21, 0.8199999928474426],
[1511842147.329616, 22, 0.75], [1511842147329.616, 22, 0.75],
[1511842147.36413, 23, 0.800000011920929], [1511842147364.13, 23, 0.800000011920929],
[1511842147.394166, 24, 0.8700000047683716], [1511842147394.166, 24, 0.8700000047683716],
[1511842147.426248, 25, 0.8500000238418579], [1511842147426.248, 25, 0.8500000238418579],
[1511842147.455792, 26, 0.8799999952316284], [1511842147455.792, 26, 0.8799999952316284],
[1511842147.486918, 27, 0.8600000143051147], [1511842147486.918, 27, 0.8600000143051147],
[1511842147.516537, 28, 0.8399999737739563], [1511842147516.537, 28, 0.8399999737739563],
[1511842147.545978, 29, 0.8999999761581421], [1511842147545.978, 29, 0.8999999761581421],
[1511842148.059008, 31, 0.8299999833106995], [1511842148059.008, 31, 0.8299999833106995],
[1511842148.093655, 32, 0.8500000238418579], [1511842148093.655, 32, 0.8500000238418579],
[1511842148.126041, 33, 0.8799999952316284], [1511842148126.041, 33, 0.8799999952316284],
[1511842148.156253, 34, 0.9100000262260437], [1511842148156.253, 34, 0.9100000262260437],
[1511842148.189653, 35, 0.8700000047683716], [1511842148189.653, 35, 0.8700000047683716],
[1511842148.221602, 36, 0.800000011920929], [1511842148221.602, 36, 0.800000011920929],
[1511842148.251149, 37, 0.7900000214576721], [1511842148251.149, 37, 0.7900000214576721],
[1511842148.281332, 38, 0.8700000047683716], [1511842148281.332, 38, 0.8700000047683716],
[1511842148.312354, 39, 0.8500000238418579], [1511842148312.354, 39, 0.8500000238418579],
[1511842148.828949, 41, 0.8700000047683716], [1511842148828.949, 41, 0.8700000047683716],
[1511842148.865255, 42, 0.8600000143051147], [1511842148865.255, 42, 0.8600000143051147],
[1511842148.898558, 43, 0.8999999761581421], [1511842148898.558, 43, 0.8999999761581421],
[1511842148.93859, 44, 0.8799999952316284], [1511842148938.59, 44, 0.8799999952316284],
[1511842148.97468, 45, 0.8799999952316284], [1511842148974.68, 45, 0.8799999952316284],
[1511842149.013585, 46, 0.8299999833106995], [1511842149013.585, 46, 0.8299999833106995],
[1511842149.044709, 47, 0.8500000238418579], [1511842149044.709, 47, 0.8500000238418579],
[1511842149.077821, 48, 0.8700000047683716], [1511842149077.821, 48, 0.8700000047683716],
[1511842149.107665, 49, 0.8899999856948853], [1511842149107.665, 49, 0.8899999856948853],
[1511842149.647978, 51, 0.8600000143051147], [1511842149647.978, 51, 0.8600000143051147],
[1511842149.686268, 52, 0.8999999761581421], [1511842149686.268, 52, 0.8999999761581421],
[1511842149.722652, 53, 0.8700000047683716], [1511842149722.652, 53, 0.8700000047683716],
[1511842149.758858, 54, 0.8700000047683716], [1511842149758.858, 54, 0.8700000047683716],
[1511842149.795508, 55, 0.8999999761581421], [1511842149795.508, 55, 0.8999999761581421],
[1511842149.830682, 56, 0.8700000047683716], [1511842149830.682, 56, 0.8700000047683716],
[1511842149.874498, 57, 0.8600000143051147], [1511842149874.498, 57, 0.8600000143051147],
[1511842149.916357, 58, 0.8399999737739563], [1511842149916.357, 58, 0.8399999737739563],
[1511842149.951223, 59, 0.8600000143051147], [1511842149951.223, 59, 0.8600000143051147],
[1511842150.470112, 61, 0.8500000238418579], [1511842150470.112, 61, 0.8500000238418579],
[1511842150.505811, 62, 0.9399999976158142], [1511842150505.811, 62, 0.9399999976158142],
[1511842150.542528, 63, 0.8399999737739563], [1511842150542.528, 63, 0.8399999737739563],
[1511842150.579082, 64, 0.8999999761581421], [1511842150579.082, 64, 0.8999999761581421],
[1511842150.611267, 65, 0.8799999952316284], [1511842150611.267, 65, 0.8799999952316284],
[1511842150.642279, 66, 0.8500000238418579], [1511842150642.279, 66, 0.8500000238418579],
[1511842150.679586, 67, 0.9399999976158142], [1511842150679.586, 67, 0.9399999976158142],
[1511842150.709423, 68, 0.8999999761581421], [1511842150709.423, 68, 0.8999999761581421],
[1511842150.742542, 69, 0.9200000166893005], [1511842150742.542, 69, 0.9200000166893005],
[1511842151.287115, 71, 0.8700000047683716], [1511842151287.115, 71, 0.8700000047683716],
[1511842151.320888, 72, 0.9200000166893005], [1511842151320.888, 72, 0.9200000166893005],
[1511842151.352388, 73, 0.8600000143051147], [1511842151352.388, 73, 0.8600000143051147],
[1511842151.385154, 74, 0.8600000143051147], [1511842151385.154, 74, 0.8600000143051147],
[1511842151.421342, 75, 0.8399999737739563], [1511842151421.342, 75, 0.8399999737739563],
[1511842151.458697, 76, 0.8999999761581421], [1511842151458.697, 76, 0.8999999761581421],
[1511842151.492929, 77, 0.8399999737739563], [1511842151492.929, 77, 0.8399999737739563],
[1511842151.524682, 78, 0.9200000166893005], [1511842151524.682, 78, 0.9200000166893005],
[1511842151.55707, 79, 0.8799999952316284], [1511842151557.07, 79, 0.8799999952316284],
[1511842152.071344, 81, 0.8500000238418579], [1511842152071.344, 81, 0.8500000238418579],
[1511842152.101479, 82, 0.949999988079071], [1511842152101.479, 82, 0.949999988079071],
[1511842152.132134, 83, 0.8999999761581421], [1511842152132.134, 83, 0.8999999761581421],
[1511842152.165848, 84, 0.8799999952316284], [1511842152165.848, 84, 0.8799999952316284],
[1511842152.195162, 85, 0.8899999856948853], [1511842152195.162, 85, 0.8899999856948853],
[1511842152.224646, 86, 0.9399999976158142], [1511842152224.646, 86, 0.9399999976158142],
[1511842152.255385, 87, 0.9300000071525574], [1511842152255.385, 87, 0.9300000071525574],
[1511842152.28573, 88, 0.9100000262260437], [1511842152285.73, 88, 0.9100000262260437],
[1511842152.315899, 89, 0.8999999761581421], [1511842152315.899, 89, 0.8999999761581421],
[1511842152.834572, 91, 0.8899999856948853], [1511842152834.572, 91, 0.8899999856948853],
[1511842152.872045, 92, 0.949999988079071], [1511842152872.045, 92, 0.949999988079071],
[1511842152.904879, 93, 0.9800000190734863], [1511842152904.879, 93, 0.9800000190734863],
[1511842152.940016, 94, 0.8700000047683716], [1511842152940.016, 94, 0.8700000047683716],
[1511842152.976859, 95, 0.8500000238418579], [1511842152976.859, 95, 0.8500000238418579],
[1511842153.012571, 96, 0.8999999761581421], [1511842153012.571, 96, 0.8999999761581421],
[1511842153.043776, 97, 0.8199999928474426], [1511842153043.776, 97, 0.8199999928474426],
[1511842153.081662, 98, 0.8799999952316284], [1511842153081.662, 98, 0.8799999952316284],
[1511842153.190446, 99, 0.8700000047683716], [1511842153190.446, 99, 0.8700000047683716],
[1511842153.698591, 101, 0.9200000166893005], [1511842153698.591, 101, 0.9200000166893005],
[1511842153.732005, 102, 0.9300000071525574], [1511842153732.005, 102, 0.9300000071525574],
[1511842153.765796, 103, 0.8500000238418579], [1511842153765.796, 103, 0.8500000238418579],
[1511842153.797352, 104, 0.9700000286102295], [1511842153797.352, 104, 0.9700000286102295],
[1511842153.831314, 105, 0.9599999785423279], [1511842153831.314, 105, 0.9599999785423279],
[1511842153.866427, 106, 0.9300000071525574], [1511842153866.427, 106, 0.9300000071525574],
[1511842153.896475, 107, 0.8999999761581421], [1511842153896.475, 107, 0.8999999761581421],
[1511842153.929657, 108, 0.9200000166893005], [1511842153929.657, 108, 0.9200000166893005],
[1511842153.965421, 109, 0.949999988079071], [1511842153965.421, 109, 0.949999988079071],
[1511842154.485552, 111, 0.949999988079071], [1511842154485.552, 111, 0.949999988079071],
[1511842154.516489, 112, 0.9100000262260437], [1511842154516.489, 112, 0.9100000262260437],
[1511842154.548223, 113, 0.8799999952316284], [1511842154548.223, 113, 0.8799999952316284],
[1511842154.580801, 114, 0.9200000166893005], [1511842154580.801, 114, 0.9200000166893005],
[1511842154.611307, 115, 0.9200000166893005], [1511842154611.307, 115, 0.9200000166893005],
[1511842154.642873, 116, 0.9200000166893005], [1511842154642.873, 116, 0.9200000166893005],
[1511842154.6751, 117, 0.9300000071525574], [1511842154675.1, 117, 0.9300000071525574],
[1511842154.707684, 118, 0.8999999761581421], [1511842154707.684, 118, 0.8999999761581421],
[1511842154.744283, 119, 0.9300000071525574], [1511842154744.283, 119, 0.9300000071525574],
[1511842155.255668, 121, 0.9200000166893005], [1511842155255.668, 121, 0.9200000166893005],
[1511842155.288454, 122, 0.8899999856948853], [1511842155288.454, 122, 0.8899999856948853],
[1511842155.320779, 123, 0.9599999785423279], [1511842155320.779, 123, 0.9599999785423279],
[1511842155.353925, 124, 0.9200000166893005], [1511842155353.925, 124, 0.9200000166893005],
[1511842155.389438, 125, 0.8899999856948853], [1511842155389.438, 125, 0.8899999856948853],
[1511842155.424823, 126, 0.9399999976158142], [1511842155424.823, 126, 0.9399999976158142],
[1511842155.454526, 127, 0.9300000071525574], [1511842155454.526, 127, 0.9300000071525574],
[1511842155.489204, 128, 0.9399999976158142], [1511842155489.204, 128, 0.9399999976158142],
[1511842155.521019, 129, 0.9399999976158142], [1511842155521.019, 129, 0.9399999976158142],
[1511842156.033606, 131, 0.8999999761581421], [1511842156033.606, 131, 0.8999999761581421],
[1511842156.071066, 132, 0.9100000262260437], [1511842156071.066, 132, 0.9100000262260437],
[1511842156.100447, 133, 0.8899999856948853], [1511842156100.447, 133, 0.8899999856948853],
[1511842156.132395, 134, 0.9200000166893005], [1511842156132.395, 134, 0.9200000166893005],
[1511842156.165163, 135, 0.8700000047683716], [1511842156165.163, 135, 0.8700000047683716],
[1511842156.203128, 136, 0.8999999761581421], [1511842156203.128, 136, 0.8999999761581421],
[1511842156.239275, 137, 0.8399999737739563], [1511842156239.275, 137, 0.8399999737739563],
[1511842156.270908, 138, 0.9200000166893005], [1511842156270.908, 138, 0.9200000166893005],
[1511842156.303224, 139, 0.9200000166893005], [1511842156303.224, 139, 0.9200000166893005],
[1511842156.823475, 141, 0.9300000071525574], [1511842156823.475, 141, 0.9300000071525574],
[1511842156.860178, 142, 0.8999999761581421], [1511842156860.178, 142, 0.8999999761581421],
[1511842156.89245, 143, 0.8500000238418579], [1511842156892.45, 143, 0.8500000238418579],
[1511842156.932155, 144, 0.9300000071525574], [1511842156932.155, 144, 0.9300000071525574],
[1511842156.966936, 145, 0.8999999761581421], [1511842156966.936, 145, 0.8999999761581421],
[1511842157.002507, 146, 0.9100000262260437], [1511842157002.507, 146, 0.9100000262260437],
[1511842157.04046, 147, 0.949999988079071], [1511842157040.46, 147, 0.949999988079071],
[1511842157.075624, 148, 0.8799999952316284], [1511842157075.624, 148, 0.8799999952316284],
[1511842157.113062, 149, 0.9100000262260437], [1511842157113.062, 149, 0.9100000262260437],
[1511842157.610962, 151, 0.9200000166893005], [1511842157610.962, 151, 0.9200000166893005],
[1511842157.644282, 152, 0.8899999856948853], [1511842157644.282, 152, 0.8899999856948853],
[1511842157.674532, 153, 0.9399999976158142], [1511842157674.532, 153, 0.9399999976158142],
[1511842157.704223, 154, 0.9700000286102295], [1511842157704.223, 154, 0.9700000286102295],
[1511842157.734917, 155, 0.9100000262260437], [1511842157734.917, 155, 0.9100000262260437],
[1511842157.766545, 156, 0.949999988079071], [1511842157766.545, 156, 0.949999988079071],
[1511842157.803228, 157, 0.9300000071525574], [1511842157803.228, 157, 0.9300000071525574],
[1511842157.833582, 158, 0.9399999976158142], [1511842157833.582, 158, 0.9399999976158142],
[1511842157.863983, 159, 0.9599999785423279], [1511842157863.983, 159, 0.9599999785423279],
[1511842158.365138, 161, 0.9399999976158142], [1511842158365.138, 161, 0.9399999976158142],
[1511842158.402051, 162, 0.8999999761581421], [1511842158402.051, 162, 0.8999999761581421],
[1511842158.432824, 163, 0.9100000262260437], [1511842158432.824, 163, 0.9100000262260437],
[1511842158.468544, 164, 0.9399999976158142], [1511842158468.544, 164, 0.9399999976158142],
[1511842158.501693, 165, 0.9200000166893005], [1511842158501.693, 165, 0.9200000166893005],
[1511842158.536712, 166, 0.9200000166893005], [1511842158536.712, 166, 0.9200000166893005],
[1511842158.576052, 167, 0.9100000262260437], [1511842158576.052, 167, 0.9100000262260437],
[1511842158.608077, 168, 0.9300000071525574], [1511842158608.077, 168, 0.9300000071525574],
[1511842158.639638, 169, 0.9399999976158142], [1511842158639.638, 169, 0.9399999976158142],
[1511842159.144704, 171, 0.949999988079071], [1511842159144.704, 171, 0.949999988079071],
[1511842159.175508, 172, 0.9200000166893005], [1511842159175.508, 172, 0.9200000166893005],
[1511842159.206246, 173, 0.9399999976158142], [1511842159206.246, 173, 0.9399999976158142],
[1511842159.236448, 174, 0.949999988079071], [1511842159236.448, 174, 0.949999988079071],
[1511842159.268592, 175, 0.8999999761581421], [1511842159268.592, 175, 0.8999999761581421],
[1511842159.298385, 176, 0.8999999761581421], [1511842159298.385, 176, 0.8999999761581421],
[1511842159.330691, 177, 0.9200000166893005], [1511842159330.691, 177, 0.9200000166893005],
[1511842159.362888, 178, 0.949999988079071], [1511842159362.888, 178, 0.949999988079071],
[1511842159.394601, 179, 0.8899999856948853], [1511842159394.601, 179, 0.8899999856948853],
[1511842159.917987, 181, 0.8500000238418579], [1511842159917.987, 181, 0.8500000238418579],
[1511842159.949645, 182, 0.9800000190734863], [1511842159949.645, 182, 0.9800000190734863],
[1511842159.980383, 183, 0.9399999976158142], [1511842159980.383, 183, 0.9399999976158142],
[1511842160.011846, 184, 0.8999999761581421], [1511842160011.846, 184, 0.8999999761581421],
[1511842160.043909, 185, 0.8999999761581421], [1511842160043.909, 185, 0.8999999761581421],
[1511842160.082747, 186, 0.8999999761581421], [1511842160082.747, 186, 0.8999999761581421],
[1511842160.116125, 187, 0.949999988079071], [1511842160116.125, 187, 0.949999988079071],
[1511842160.147119, 188, 0.9100000262260437], [1511842160147.119, 188, 0.9100000262260437],
[1511842160.182338, 189, 0.9599999785423279], [1511842160182.338, 189, 0.9599999785423279],
[1511842160.69661, 191, 0.9300000071525574], [1511842160696.61, 191, 0.9300000071525574],
[1511842160.72888, 192, 0.8899999856948853], [1511842160728.88, 192, 0.8899999856948853],
[1511842160.762084, 193, 0.9300000071525574], [1511842160762.084, 193, 0.9300000071525574],
[1511842160.792814, 194, 0.9599999785423279], [1511842160792.814, 194, 0.9599999785423279],
[1511842160.823444, 195, 0.9100000262260437], [1511842160823.444, 195, 0.9100000262260437],
[1511842160.852744, 196, 0.9399999976158142], [1511842160852.744, 196, 0.9399999976158142],
[1511842160.885255, 197, 0.9599999785423279], [1511842160885.255, 197, 0.9599999785423279],
[1511842160.917985, 198, 0.8999999761581421], [1511842160917.985, 198, 0.8999999761581421],
[1511842161.028077, 199, 0.949999988079071], [1511842161028.077, 199, 0.949999988079071],
[1511842161.548108, 201, 0.9300000071525574], [1511842161548.108, 201, 0.9300000071525574],
[1511842161.580669, 202, 0.9100000262260437], [1511842161580.669, 202, 0.9100000262260437],
[1511842161.613862, 203, 0.949999988079071], [1511842161613.862, 203, 0.949999988079071],
[1511842161.653309, 204, 0.8899999856948853], [1511842161653.309, 204, 0.8899999856948853],
[1511842161.691085, 205, 0.9599999785423279], [1511842161691.085, 205, 0.9599999785423279],
[1511842161.72533, 206, 0.9200000166893005], [1511842161725.33, 206, 0.9200000166893005],
[1511842161.754774, 207, 0.9300000071525574], [1511842161754.774, 207, 0.9300000071525574],
[1511842161.786702, 208, 0.9300000071525574], [1511842161786.702, 208, 0.9300000071525574],
[1511842161.820508, 209, 0.8999999761581421], [1511842161820.508, 209, 0.8999999761581421],
[1511842162.336378, 211, 0.949999988079071], [1511842162336.378, 211, 0.949999988079071],
[1511842162.373533, 212, 0.949999988079071], [1511842162373.533, 212, 0.949999988079071],
[1511842162.411207, 213, 0.8899999856948853], [1511842162411.207, 213, 0.8899999856948853],
[1511842162.4438, 214, 0.9300000071525574], [1511842162443.8, 214, 0.9300000071525574],
[1511842162.477444, 215, 0.949999988079071], [1511842162477.444, 215, 0.949999988079071],
[1511842162.509545, 216, 0.9399999976158142], [1511842162509.545, 216, 0.9399999976158142],
[1511842162.543586, 217, 0.949999988079071], [1511842162543.586, 217, 0.949999988079071],
[1511842162.574829, 218, 0.9300000071525574], [1511842162574.829, 218, 0.9300000071525574],
[1511842162.612825, 219, 0.9399999976158142], [1511842162612.825, 219, 0.9399999976158142],
[1511842163.134331, 221, 0.9700000286102295], [1511842163134.331, 221, 0.9700000286102295],
[1511842163.169464, 222, 0.9200000166893005], [1511842163169.464, 222, 0.9200000166893005],
[1511842163.203311, 223, 0.9700000286102295], [1511842163203.311, 223, 0.9700000286102295],
[1511842163.240668, 224, 0.9300000071525574], [1511842163240.668, 224, 0.9300000071525574],
[1511842163.278642, 225, 0.9100000262260437], [1511842163278.642, 225, 0.9100000262260437],
[1511842163.318872, 226, 0.9300000071525574], [1511842163318.872, 226, 0.9300000071525574],
[1511842163.361079, 227, 0.9300000071525574], [1511842163361.079, 227, 0.9300000071525574],
[1511842163.397876, 228, 0.9800000190734863], [1511842163397.876, 228, 0.9800000190734863],
[1511842163.430826, 229, 0.9599999785423279], [1511842163430.826, 229, 0.9599999785423279],
[1511842163.953991, 231, 0.9300000071525574], [1511842163953.991, 231, 0.9300000071525574],
[1511842163.988582, 232, 0.9399999976158142], [1511842163988.582, 232, 0.9399999976158142],
[1511842164.021841, 233, 0.949999988079071], [1511842164021.841, 233, 0.949999988079071],
[1511842164.052817, 234, 0.9300000071525574], [1511842164052.817, 234, 0.9300000071525574],
[1511842164.090031, 235, 0.9399999976158142], [1511842164090.031, 235, 0.9399999976158142],
[1511842164.121797, 236, 0.9100000262260437], [1511842164121.797, 236, 0.9100000262260437],
[1511842164.158074, 237, 0.949999988079071], [1511842164158.074, 237, 0.949999988079071],
[1511842164.189932, 238, 0.9300000071525574], [1511842164189.932, 238, 0.9300000071525574],
[1511842164.225797, 239, 0.9200000166893005], [1511842164225.797, 239, 0.9200000166893005],
[1511842164.742692, 241, 0.949999988079071], [1511842164742.692, 241, 0.949999988079071],
[1511842164.773757, 242, 0.9800000190734863], [1511842164773.757, 242, 0.9800000190734863],
[1511842164.810333, 243, 0.9300000071525574], [1511842164810.333, 243, 0.9300000071525574],
[1511842164.840904, 244, 0.949999988079071], [1511842164840.904, 244, 0.949999988079071],
[1511842164.875269, 245, 0.949999988079071], [1511842164875.269, 245, 0.949999988079071],
[1511842164.907458, 246, 0.9700000286102295], [1511842164907.458, 246, 0.9700000286102295],
[1511842164.940818, 247, 0.9200000166893005], [1511842164940.818, 247, 0.9200000166893005],
[1511842165.032471, 248, 0.9399999976158142], [1511842165032.471, 248, 0.9399999976158142],
[1511842165.06494, 249, 0.9399999976158142], [1511842165064.94, 249, 0.9399999976158142],
[1511842165.711591, 251, 0.9200000166893005], [1511842165711.591, 251, 0.9200000166893005],
[1511842165.742034, 252, 0.9399999976158142], [1511842165742.034, 252, 0.9399999976158142],
[1511842165.776186, 253, 0.9100000262260437], [1511842165776.186, 253, 0.9100000262260437],
[1511842165.80631, 254, 0.9300000071525574], [1511842165806.31, 254, 0.9300000071525574],
[1511842165.841813, 255, 0.9700000286102295], [1511842165841.813, 255, 0.9700000286102295],
[1511842165.88272, 256, 0.9100000262260437], [1511842165882.72, 256, 0.9100000262260437],
[1511842165.914834, 257, 0.9399999976158142], [1511842165914.834, 257, 0.9399999976158142],
[1511842165.944832, 258, 0.8999999761581421], [1511842165944.832, 258, 0.8999999761581421],
[1511842165.977476, 259, 0.8999999761581421], [1511842165977.476, 259, 0.8999999761581421],
[1511842166.49414, 261, 0.9300000071525574], [1511842166494.14, 261, 0.9300000071525574],
[1511842166.530139, 262, 0.9300000071525574], [1511842166530.139, 262, 0.9300000071525574],
[1511842166.582532, 263, 0.9200000166893005], [1511842166582.532, 263, 0.9200000166893005],
[1511842166.624934, 264, 0.9399999976158142], [1511842166624.934, 264, 0.9399999976158142],
[1511842166.65914, 265, 0.9200000166893005], [1511842166659.14, 265, 0.9200000166893005],
[1511842166.708159, 266, 0.949999988079071], [1511842166708.159, 266, 0.949999988079071],
[1511842166.738785, 267, 0.8899999856948853], [1511842166738.785, 267, 0.8899999856948853],
[1511842166.789074, 268, 0.9599999785423279], [1511842166789.074, 268, 0.9599999785423279],
[1511842166.821725, 269, 0.949999988079071], [1511842166821.725, 269, 0.949999988079071],
[1511842167.351619, 271, 0.8899999856948853], [1511842167351.619, 271, 0.8899999856948853],
[1511842167.383981, 272, 0.949999988079071], [1511842167383.981, 272, 0.949999988079071],
[1511842167.415674, 273, 0.9300000071525574], [1511842167415.674, 273, 0.9300000071525574],
[1511842167.453889, 274, 0.9300000071525574], [1511842167453.889, 274, 0.9300000071525574],
[1511842167.487546, 275, 0.9800000190734863], [1511842167487.546, 275, 0.9800000190734863],
[1511842167.520855, 276, 0.8999999761581421], [1511842167520.855, 276, 0.8999999761581421],
[1511842167.553859, 277, 0.949999988079071], [1511842167553.859, 277, 0.949999988079071],
[1511842167.591104, 278, 0.9800000190734863], [1511842167591.104, 278, 0.9800000190734863],
[1511842167.627239, 279, 0.9100000262260437], [1511842167627.239, 279, 0.9100000262260437],
[1511842168.151087, 281, 0.9599999785423279], [1511842168151.087, 281, 0.9599999785423279],
[1511842168.185722, 282, 0.9300000071525574], [1511842168185.722, 282, 0.9300000071525574],
[1511842168.225793, 283, 0.9399999976158142], [1511842168225.793, 283, 0.9399999976158142],
[1511842168.265352, 284, 0.9200000166893005], [1511842168265.352, 284, 0.9200000166893005],
[1511842168.297638, 285, 0.9599999785423279], [1511842168297.638, 285, 0.9599999785423279],
[1511842168.331366, 286, 0.8899999856948853], [1511842168331.366, 286, 0.8899999856948853],
[1511842168.367654, 287, 0.949999988079071], [1511842168367.654, 287, 0.949999988079071],
[1511842168.404366, 288, 0.9200000166893005], [1511842168404.366, 288, 0.9200000166893005],
[1511842168.437306, 289, 0.9599999785423279], [1511842168437.306, 289, 0.9599999785423279],
[1511842168.977181, 291, 0.9700000286102295], [1511842168977.181, 291, 0.9700000286102295],
[1511842169.008927, 292, 0.8999999761581421], [1511842169008.927, 292, 0.8999999761581421],
[1511842169.043079, 293, 0.8999999761581421], [1511842169043.079, 293, 0.8999999761581421],
[1511842169.079313, 294, 0.9599999785423279], [1511842169079.313, 294, 0.9599999785423279],
[1511842169.111267, 295, 0.8899999856948853], [1511842169111.267, 295, 0.8899999856948853],
[1511842169.141979, 296, 0.9700000286102295], [1511842169141.979, 296, 0.9700000286102295],
[1511842169.173568, 297, 0.9399999976158142], [1511842169173.568, 297, 0.9399999976158142],
[1511842169.206784, 298, 0.9399999976158142], [1511842169206.784, 298, 0.9399999976158142],
[1511842169.318883, 299, 0.9100000262260437], [1511842169318.883, 299, 0.9100000262260437],
[1511842169.836233, 301, 0.949999988079071], [1511842169836.233, 301, 0.949999988079071],
[1511842169.869173, 302, 0.9300000071525574], [1511842169869.173, 302, 0.9300000071525574],
[1511842169.899444, 303, 0.9599999785423279], [1511842169899.444, 303, 0.9599999785423279],
[1511842169.93236, 304, 0.9399999976158142], [1511842169932.36, 304, 0.9399999976158142],
[1511842169.964287, 305, 0.9200000166893005], [1511842169964.287, 305, 0.9200000166893005],
[1511842169.999156, 306, 0.9399999976158142], [1511842169999.156, 306, 0.9399999976158142],
[1511842170.04658, 307, 0.949999988079071], [1511842170046.58, 307, 0.949999988079071],
[1511842170.079765, 308, 0.9399999976158142], [1511842170079.765, 308, 0.9399999976158142],
[1511842170.116286, 309, 0.9100000262260437], [1511842170116.286, 309, 0.9100000262260437],
[1511842170.626257, 311, 0.9599999785423279], [1511842170626.257, 311, 0.9599999785423279],
[1511842170.660356, 312, 0.9399999976158142], [1511842170660.356, 312, 0.9399999976158142],
[1511842170.69418, 313, 0.9200000166893005], [1511842170694.18, 313, 0.9200000166893005],
[1511842170.72758, 314, 0.8999999761581421], [1511842170727.58, 314, 0.8999999761581421],
[1511842170.761281, 315, 0.9399999976158142], [1511842170761.281, 315, 0.9399999976158142],
[1511842170.795563, 316, 0.9399999976158142], [1511842170795.563, 316, 0.9399999976158142],
[1511842170.831212, 317, 0.949999988079071], [1511842170831.212, 317, 0.949999988079071],
[1511842170.865901, 318, 0.9200000166893005], [1511842170865.901, 318, 0.9200000166893005],
[1511842170.900623, 319, 0.9100000262260437], [1511842170900.623, 319, 0.9100000262260437],
[1511842171.442059, 321, 0.9200000166893005], [1511842171442.059, 321, 0.9200000166893005],
[1511842171.474961, 322, 0.8999999761581421], [1511842171474.961, 322, 0.8999999761581421],
[1511842171.506307, 323, 0.9399999976158142], [1511842171506.307, 323, 0.9399999976158142],
[1511842171.539442, 324, 0.949999988079071], [1511842171539.442, 324, 0.949999988079071],
[1511842171.570183, 325, 0.9700000286102295], [1511842171570.183, 325, 0.9700000286102295],
[1511842171.600969, 326, 0.9300000071525574], [1511842171600.969, 326, 0.9300000071525574],
[1511842171.6316, 327, 0.949999988079071], [1511842171631.6, 327, 0.949999988079071],
[1511842171.665024, 328, 0.9399999976158142], [1511842171665.024, 328, 0.9399999976158142],
[1511842171.697585, 329, 0.9399999976158142], [1511842171697.585, 329, 0.9399999976158142],
[1511842172.226505, 331, 0.9300000071525574], [1511842172226.505, 331, 0.9300000071525574],
[1511842172.261344, 332, 0.949999988079071], [1511842172261.344, 332, 0.949999988079071],
[1511842172.296245, 333, 0.9300000071525574], [1511842172296.245, 333, 0.9300000071525574],
[1511842172.326279, 334, 0.9700000286102295], [1511842172326.279, 334, 0.9700000286102295],
[1511842172.358168, 335, 0.9100000262260437], [1511842172358.168, 335, 0.9100000262260437],
[1511842172.392341, 336, 0.9399999976158142], [1511842172392.341, 336, 0.9399999976158142],
[1511842172.422466, 337, 0.9399999976158142], [1511842172422.466, 337, 0.9399999976158142],
[1511842172.459868, 338, 0.9599999785423279], [1511842172459.868, 338, 0.9599999785423279],
[1511842172.493555, 339, 0.949999988079071], [1511842172493.555, 339, 0.949999988079071],
[1511842173.033582, 341, 0.949999988079071], [1511842173033.582, 341, 0.949999988079071],
[1511842173.073034, 342, 0.9300000071525574], [1511842173073.034, 342, 0.9300000071525574],
[1511842173.104858, 343, 0.9599999785423279], [1511842173104.858, 343, 0.9599999785423279],
[1511842173.140056, 344, 0.8899999856948853], [1511842173140.056, 344, 0.8899999856948853],
[1511842173.178958, 345, 0.9399999976158142], [1511842173178.958, 345, 0.9399999976158142],
[1511842173.21675, 346, 0.9300000071525574], [1511842173216.75, 346, 0.9300000071525574],
[1511842173.246909, 347, 0.9700000286102295], [1511842173246.909, 347, 0.9700000286102295],
[1511842173.282099, 348, 0.9100000262260437], [1511842173282.099, 348, 0.9100000262260437],
[1511842173.317242, 349, 0.9599999785423279], [1511842173317.242, 349, 0.9599999785423279],
[1511842173.847353, 351, 0.9599999785423279], [1511842173847.353, 351, 0.9599999785423279],
[1511842173.885366, 352, 0.9599999785423279], [1511842173885.366, 352, 0.9599999785423279],
[1511842173.921206, 353, 0.8999999761581421], [1511842173921.206, 353, 0.8999999761581421],
[1511842173.953769, 354, 0.9399999976158142], [1511842173953.769, 354, 0.9399999976158142],
[1511842173.991128, 355, 0.9599999785423279], [1511842173991.128, 355, 0.9599999785423279],
[1511842174.02312, 356, 0.8700000047683716], [1511842174023.12, 356, 0.8700000047683716],
[1511842174.056031, 357, 0.9399999976158142], [1511842174056.031, 357, 0.9399999976158142],
[1511842174.08923, 358, 0.9599999785423279], [1511842174089.23, 358, 0.9599999785423279],
[1511842174.127158, 359, 0.9800000190734863], [1511842174127.158, 359, 0.9800000190734863],
[1511842174.652944, 361, 0.9200000166893005], [1511842174652.944, 361, 0.9200000166893005],
[1511842174.687431, 362, 0.9900000095367432], [1511842174687.431, 362, 0.9900000095367432],
[1511842174.71948, 363, 0.9399999976158142], [1511842174719.48, 363, 0.9399999976158142],
[1511842174.753943, 364, 0.9599999785423279], [1511842174753.943, 364, 0.9599999785423279],
[1511842174.78847, 365, 0.9700000286102295], [1511842174788.47, 365, 0.9700000286102295],
[1511842174.823361, 366, 0.8799999952316284], [1511842174823.361, 366, 0.8799999952316284],
[1511842174.856826, 367, 0.9300000071525574], [1511842174856.826, 367, 0.9300000071525574],
[1511842174.891638, 368, 0.8999999761581421], [1511842174891.638, 368, 0.8999999761581421],
[1511842174.925622, 369, 0.9599999785423279], [1511842174925.622, 369, 0.9599999785423279],
[1511842175.439573, 371, 0.9700000286102295], [1511842175439.573, 371, 0.9700000286102295],
[1511842175.474021, 372, 0.9300000071525574], [1511842175474.021, 372, 0.9300000071525574],
[1511842175.504075, 373, 0.9599999785423279], [1511842175504.075, 373, 0.9599999785423279],
[1511842175.540268, 374, 0.9599999785423279], [1511842175540.268, 374, 0.9599999785423279],
[1511842175.574921, 375, 0.9800000190734863], [1511842175574.921, 375, 0.9800000190734863],
[1511842175.608212, 376, 0.949999988079071], [1511842175608.212, 376, 0.949999988079071],
[1511842175.64061, 377, 0.949999988079071], [1511842175640.61, 377, 0.949999988079071],
[1511842175.671253, 378, 0.9399999976158142], [1511842175671.253, 378, 0.9399999976158142],
[1511842175.702623, 379, 0.949999988079071], [1511842175702.623, 379, 0.949999988079071],
[1511842176.214339, 381, 0.949999988079071], [1511842176214.339, 381, 0.949999988079071],
[1511842176.248076, 382, 0.8999999761581421], [1511842176248.076, 382, 0.8999999761581421],
[1511842176.286246, 383, 0.949999988079071], [1511842176286.246, 383, 0.949999988079071],
[1511842176.319941, 384, 0.9300000071525574], [1511842176319.941, 384, 0.9300000071525574],
[1511842176.357204, 385, 0.9100000262260437], [1511842176357.204, 385, 0.9100000262260437],
[1511842176.388956, 386, 0.949999988079071], [1511842176388.956, 386, 0.949999988079071],
[1511842176.419332, 387, 0.9300000071525574], [1511842176419.332, 387, 0.9300000071525574],
[1511842176.451727, 388, 0.9599999785423279], [1511842176451.727, 388, 0.9599999785423279],
[1511842176.484456, 389, 0.9399999976158142], [1511842176484.456, 389, 0.9399999976158142],
[1511842177.034638, 391, 0.9800000190734863], [1511842177034.638, 391, 0.9800000190734863],
[1511842177.067667, 392, 0.9200000166893005], [1511842177067.667, 392, 0.9200000166893005],
[1511842177.101138, 393, 0.9200000166893005], [1511842177101.138, 393, 0.9200000166893005],
[1511842177.135038, 394, 0.9700000286102295], [1511842177135.038, 394, 0.9700000286102295],
[1511842177.170068, 395, 0.9399999976158142], [1511842177170.068, 395, 0.9399999976158142],
[1511842177.200651, 396, 0.949999988079071], [1511842177200.651, 396, 0.949999988079071],
[1511842177.23465, 397, 0.9599999785423279], [1511842177234.65, 397, 0.9599999785423279],
[1511842177.269173, 398, 0.9700000286102295], [1511842177269.173, 398, 0.9700000286102295],
[1511842177.379705, 399, 0.9300000071525574], [1511842177379.705, 399, 0.9300000071525574],
[1511842177.930872, 401, 0.9700000286102295], [1511842177930.872, 401, 0.9700000286102295],
[1511842177.964943, 402, 0.9200000166893005], [1511842177964.943, 402, 0.9200000166893005],
[1511842177.999324, 403, 0.949999988079071], [1511842177999.324, 403, 0.949999988079071],
[1511842178.033477, 404, 0.9900000095367432], [1511842178033.477, 404, 0.9900000095367432],
[1511842178.071781, 405, 0.949999988079071], [1511842178071.781, 405, 0.949999988079071],
[1511842178.105857, 406, 0.949999988079071], [1511842178105.857, 406, 0.949999988079071],
[1511842178.135511, 407, 0.9300000071525574], [1511842178135.511, 407, 0.9300000071525574],
[1511842178.167634, 408, 0.9300000071525574], [1511842178167.634, 408, 0.9300000071525574],
[1511842178.199537, 409, 0.9200000166893005], [1511842178199.537, 409, 0.9200000166893005],
[1511842178.717725, 411, 0.9399999976158142], [1511842178717.725, 411, 0.9399999976158142],
[1511842178.74796, 412, 0.9399999976158142], [1511842178747.96, 412, 0.9399999976158142],
[1511842178.780912, 413, 0.949999988079071], [1511842178780.912, 413, 0.949999988079071],
[1511842178.811067, 414, 0.949999988079071], [1511842178811.067, 414, 0.949999988079071],
[1511842178.84161, 415, 0.9399999976158142], [1511842178841.61, 415, 0.9399999976158142],
[1511842178.878333, 416, 0.949999988079071], [1511842178878.333, 416, 0.949999988079071],
[1511842178.914753, 417, 0.9100000262260437], [1511842178914.753, 417, 0.9100000262260437],
[1511842178.947455, 418, 0.9800000190734863], [1511842178947.455, 418, 0.9800000190734863],
[1511842178.979425, 419, 0.9700000286102295], [1511842178979.425, 419, 0.9700000286102295],
[1511842179.503057, 421, 0.9200000166893005], [1511842179503.057, 421, 0.9200000166893005],
[1511842179.540604, 422, 0.9300000071525574], [1511842179540.604, 422, 0.9300000071525574],
[1511842179.573449, 423, 0.9300000071525574], [1511842179573.449, 423, 0.9300000071525574],
[1511842179.608729, 424, 0.949999988079071], [1511842179608.729, 424, 0.949999988079071],
[1511842179.645117, 425, 0.949999988079071], [1511842179645.117, 425, 0.949999988079071],
[1511842179.678533, 426, 0.9599999785423279], [1511842179678.533, 426, 0.9599999785423279],
[1511842179.725027, 427, 0.9100000262260437], [1511842179725.027, 427, 0.9100000262260437],
[1511842179.758991, 428, 0.9700000286102295], [1511842179758.991, 428, 0.9700000286102295],
[1511842179.78958, 429, 0.9300000071525574], [1511842179789.58, 429, 0.9300000071525574],
[1511842180.311945, 431, 0.9700000286102295], [1511842180311.945, 431, 0.9700000286102295],
[1511842180.342856, 432, 0.9800000190734863], [1511842180342.856, 432, 0.9800000190734863],
[1511842180.372838, 433, 0.949999988079071], [1511842180372.838, 433, 0.949999988079071],
[1511842180.402146, 434, 0.9100000262260437], [1511842180402.146, 434, 0.9100000262260437],
[1511842180.43488, 435, 0.9200000166893005], [1511842180434.88, 435, 0.9200000166893005],
[1511842180.467817, 436, 0.8999999761581421], [1511842180467.817, 436, 0.8999999761581421],
[1511842180.497947, 437, 0.9599999785423279], [1511842180497.947, 437, 0.9599999785423279],
[1511842180.529357, 438, 0.9399999976158142], [1511842180529.357, 438, 0.9399999976158142],
[1511842180.561293, 439, 0.949999988079071], [1511842180561.293, 439, 0.949999988079071],
[1511842181.077772, 441, 0.9399999976158142], [1511842181077.772, 441, 0.9399999976158142],
[1511842181.108623, 442, 0.949999988079071], [1511842181108.623, 442, 0.949999988079071],
[1511842181.140136, 443, 0.9900000095367432], [1511842181140.136, 443, 0.9900000095367432],
[1511842181.174364, 444, 0.9700000286102295], [1511842181174.364, 444, 0.9700000286102295],
[1511842181.20535, 445, 0.9300000071525574], [1511842181205.35, 445, 0.9300000071525574],
[1511842181.23487, 446, 0.9700000286102295], [1511842181234.87, 446, 0.9700000286102295],
[1511842181.267768, 447, 0.9200000166893005], [1511842181267.768, 447, 0.9200000166893005],
[1511842181.296881, 448, 0.9599999785423279], [1511842181296.881, 448, 0.9599999785423279],
[1511842181.331577, 449, 0.9599999785423279], [1511842181331.577, 449, 0.9599999785423279],
[1511842181.84731, 451, 0.9700000286102295], [1511842181847.31, 451, 0.9700000286102295],
[1511842181.877643, 452, 0.949999988079071], [1511842181877.643, 452, 0.949999988079071],
[1511842181.90728, 453, 0.9200000166893005], [1511842181907.28, 453, 0.9200000166893005],
[1511842181.937846, 454, 0.9599999785423279], [1511842181937.846, 454, 0.9599999785423279],
[1511842181.971116, 455, 0.949999988079071], [1511842181971.116, 455, 0.949999988079071],
[1511842182.000763, 456, 0.949999988079071], [1511842182000.763, 456, 0.949999988079071],
[1511842182.037276, 457, 0.9399999976158142], [1511842182037.276, 457, 0.9399999976158142],
[1511842182.06702, 458, 0.9399999976158142], [1511842182067.02, 458, 0.9399999976158142],
[1511842182.096206, 459, 0.9300000071525574], [1511842182096.206, 459, 0.9300000071525574],
[1511842182.611312, 461, 0.949999988079071], [1511842182611.312, 461, 0.949999988079071],
[1511842182.64513, 462, 0.9599999785423279], [1511842182645.13, 462, 0.9599999785423279],
[1511842182.674909, 463, 0.9300000071525574], [1511842182674.909, 463, 0.9300000071525574],
[1511842182.705437, 464, 0.9300000071525574], [1511842182705.437, 464, 0.9300000071525574],
[1511842182.735784, 465, 1.0], [1511842182735.784, 465, 1.0],
[1511842182.767558, 466, 0.949999988079071], [1511842182767.558, 466, 0.949999988079071],
[1511842182.796914, 467, 0.949999988079071], [1511842182796.914, 467, 0.949999988079071],
[1511842182.826817, 468, 0.8999999761581421], [1511842182826.817, 468, 0.8999999761581421],
[1511842182.857851, 469, 0.9800000190734863], [1511842182857.851, 469, 0.9800000190734863],
[1511842183.352468, 471, 0.9800000190734863], [1511842183352.468, 471, 0.9800000190734863],
[1511842183.384449, 472, 0.8799999952316284], [1511842183384.449, 472, 0.8799999952316284],
[1511842183.420997, 473, 0.9300000071525574], [1511842183420.997, 473, 0.9300000071525574],
[1511842183.452375, 474, 0.9399999976158142], [1511842183452.375, 474, 0.9399999976158142],
[1511842183.483695, 475, 0.949999988079071], [1511842183483.695, 475, 0.949999988079071],
[1511842183.514538, 476, 0.949999988079071], [1511842183514.538, 476, 0.949999988079071],
[1511842183.547066, 477, 0.9599999785423279], [1511842183547.066, 477, 0.9599999785423279],
[1511842183.577378, 478, 0.9399999976158142], [1511842183577.378, 478, 0.9399999976158142],
[1511842183.613494, 479, 0.949999988079071], [1511842183613.494, 479, 0.949999988079071],
[1511842184.166345, 481, 0.9599999785423279], [1511842184166.345, 481, 0.9599999785423279],
[1511842184.198856, 482, 0.9300000071525574], [1511842184198.856, 482, 0.9300000071525574],
[1511842184.231571, 483, 0.9399999976158142], [1511842184231.571, 483, 0.9399999976158142],
[1511842184.261741, 484, 0.949999988079071], [1511842184261.741, 484, 0.949999988079071],
[1511842184.291412, 485, 0.9599999785423279], [1511842184291.412, 485, 0.9599999785423279],
[1511842184.321249, 486, 0.9900000095367432], [1511842184321.249, 486, 0.9900000095367432],
[1511842184.351878, 487, 0.9300000071525574], [1511842184351.878, 487, 0.9300000071525574],
[1511842184.381002, 488, 0.9399999976158142], [1511842184381.002, 488, 0.9399999976158142],
[1511842184.410772, 489, 0.9700000286102295], [1511842184410.772, 489, 0.9700000286102295],
[1511842184.908431, 491, 0.949999988079071], [1511842184908.431, 491, 0.949999988079071],
[1511842184.941166, 492, 0.949999988079071], [1511842184941.166, 492, 0.949999988079071],
[1511842184.978217, 493, 0.9700000286102295], [1511842184978.217, 493, 0.9700000286102295],
[1511842185.008197, 494, 0.9399999976158142], [1511842185008.197, 494, 0.9399999976158142],
[1511842185.039879, 495, 0.9800000190734863], [1511842185039.879, 495, 0.9800000190734863],
[1511842185.070592, 496, 0.9599999785423279], [1511842185070.592, 496, 0.9599999785423279],
[1511842185.10259, 497, 0.9599999785423279], [1511842185102.59, 497, 0.9599999785423279],
[1511842185.133795, 498, 0.9900000095367432], [1511842185133.795, 498, 0.9900000095367432],
[1511842185.243204, 499, 0.9599999785423279], [1511842185243.204, 499, 0.9599999785423279],
[1511842185.856761, 501, 0.949999988079071], [1511842185856.761, 501, 0.949999988079071],
[1511842185.896018, 502, 0.9700000286102295], [1511842185896.018, 502, 0.9700000286102295],
[1511842185.943021, 503, 0.949999988079071], [1511842185943.021, 503, 0.949999988079071],
[1511842185.981642, 504, 0.949999988079071], [1511842185981.642, 504, 0.949999988079071],
[1511842186.023147, 505, 0.9800000190734863], [1511842186023.147, 505, 0.9800000190734863],
[1511842186.058391, 506, 0.949999988079071], [1511842186058.391, 506, 0.949999988079071],
[1511842186.092093, 507, 0.9599999785423279], [1511842186092.093, 507, 0.9599999785423279],
[1511842186.134389, 508, 0.9200000166893005], [1511842186134.389, 508, 0.9200000166893005],
[1511842186.168454, 509, 0.9300000071525574], [1511842186168.454, 509, 0.9300000071525574],
[1511842186.73473, 511, 0.9399999976158142], [1511842186734.73, 511, 0.9399999976158142],
[1511842186.765813, 512, 0.9399999976158142], [1511842186765.813, 512, 0.9399999976158142],
[1511842186.798392, 513, 0.9599999785423279], [1511842186798.392, 513, 0.9599999785423279],
[1511842186.832886, 514, 0.9700000286102295], [1511842186832.886, 514, 0.9700000286102295],
[1511842186.869, 515, 0.9399999976158142], [1511842186869, 515, 0.9399999976158142],
[1511842186.899931, 516, 0.9399999976158142], [1511842186899.931, 516, 0.9399999976158142],
[1511842186.92933, 517, 0.9700000286102295], [1511842186929.33, 517, 0.9700000286102295],
[1511842186.961637, 518, 0.949999988079071], [1511842186961.637, 518, 0.949999988079071],
[1511842186.993339, 519, 0.949999988079071], [1511842186993.339, 519, 0.949999988079071],
[1511842187.51295, 521, 0.949999988079071], [1511842187512.95, 521, 0.949999988079071],
[1511842187.542084, 522, 0.9300000071525574], [1511842187542.084, 522, 0.9300000071525574],
[1511842187.571555, 523, 0.9800000190734863], [1511842187571.555, 523, 0.9800000190734863],
[1511842187.600865, 524, 0.949999988079071], [1511842187600.865, 524, 0.949999988079071],
[1511842187.630905, 525, 0.9700000286102295], [1511842187630.905, 525, 0.9700000286102295],
[1511842187.66434, 526, 0.9599999785423279], [1511842187664.34, 526, 0.9599999785423279],
[1511842187.695883, 527, 0.9399999976158142], [1511842187695.883, 527, 0.9399999976158142],
[1511842187.734118, 528, 0.949999988079071], [1511842187734.118, 528, 0.949999988079071],
[1511842187.768383, 529, 0.9399999976158142], [1511842187768.383, 529, 0.9399999976158142],
[1511842188.2609, 531, 0.9599999785423279], [1511842188260.9, 531, 0.9599999785423279],
[1511842188.291538, 532, 0.949999988079071], [1511842188291.538, 532, 0.949999988079071],
[1511842188.324743, 533, 0.949999988079071], [1511842188324.743, 533, 0.949999988079071],
[1511842188.359286, 534, 0.9399999976158142], [1511842188359.286, 534, 0.9399999976158142],
[1511842188.392047, 535, 0.9300000071525574], [1511842188392.047, 535, 0.9300000071525574],
[1511842188.421359, 536, 0.9399999976158142], [1511842188421.359, 536, 0.9399999976158142],
[1511842188.454753, 537, 0.949999988079071], [1511842188454.753, 537, 0.949999988079071],
[1511842188.48794, 538, 0.9900000095367432], [1511842188487.94, 538, 0.9900000095367432],
[1511842188.524741, 539, 0.9599999785423279], [1511842188524.741, 539, 0.9599999785423279],
[1511842189.0112, 541, 0.949999988079071], [1511842189011.2, 541, 0.949999988079071],
[1511842189.043185, 542, 0.9300000071525574], [1511842189043.185, 542, 0.9300000071525574],
[1511842189.074307, 543, 0.9700000286102295], [1511842189074.307, 543, 0.9700000286102295],
[1511842189.106053, 544, 0.9399999976158142], [1511842189106.053, 544, 0.9399999976158142],
[1511842189.135565, 545, 0.9700000286102295], [1511842189135.565, 545, 0.9700000286102295],
[1511842189.168538, 546, 0.9599999785423279], [1511842189168.538, 546, 0.9599999785423279],
[1511842189.201185, 547, 0.9399999976158142], [1511842189201.185, 547, 0.9399999976158142],
[1511842189.235236, 548, 0.9900000095367432], [1511842189235.236, 548, 0.9900000095367432],
[1511842189.26819, 549, 0.949999988079071], [1511842189268.19, 549, 0.949999988079071],
[1511842189.760432, 551, 0.9300000071525574], [1511842189760.432, 551, 0.9300000071525574],
[1511842189.789696, 552, 0.9599999785423279], [1511842189789.696, 552, 0.9599999785423279],
[1511842189.818744, 553, 0.9200000166893005], [1511842189818.744, 553, 0.9200000166893005],
[1511842189.848042, 554, 0.949999988079071], [1511842189848.042, 554, 0.949999988079071],
[1511842189.877089, 555, 0.9399999976158142], [1511842189877.089, 555, 0.9399999976158142],
[1511842189.907031, 556, 0.949999988079071], [1511842189907.031, 556, 0.949999988079071],
[1511842189.936881, 557, 0.9800000190734863], [1511842189936.881, 557, 0.9800000190734863],
[1511842189.966071, 558, 0.9399999976158142], [1511842189966.071, 558, 0.9399999976158142],
[1511842189.995653, 559, 0.9900000095367432], [1511842189995.653, 559, 0.9900000095367432],
[1511842190.508212, 561, 0.9200000166893005], [1511842190508.212, 561, 0.9200000166893005],
[1511842190.540299, 562, 0.9800000190734863], [1511842190540.299, 562, 0.9800000190734863],
[1511842190.578574, 563, 0.9300000071525574], [1511842190578.574, 563, 0.9300000071525574],
[1511842190.610377, 564, 0.949999988079071], [1511842190610.377, 564, 0.949999988079071],
[1511842190.643136, 565, 0.9399999976158142], [1511842190643.136, 565, 0.9399999976158142],
[1511842190.672663, 566, 1.0], [1511842190672.663, 566, 1.0],
[1511842190.707029, 567, 0.9900000095367432], [1511842190707.029, 567, 0.9900000095367432],
[1511842190.739414, 568, 0.949999988079071], [1511842190739.414, 568, 0.949999988079071],
[1511842190.77237, 569, 0.9599999785423279], [1511842190772.37, 569, 0.9599999785423279],
[1511842191.31564, 571, 0.9300000071525574], [1511842191315.64, 571, 0.9300000071525574],
[1511842191.348465, 572, 0.9900000095367432], [1511842191348.465, 572, 0.9900000095367432],
[1511842191.382138, 573, 0.949999988079071], [1511842191382.138, 573, 0.949999988079071],
[1511842191.412707, 574, 0.9399999976158142], [1511842191412.707, 574, 0.9399999976158142],
[1511842191.443585, 575, 0.9599999785423279], [1511842191443.585, 575, 0.9599999785423279],
[1511842191.477383, 576, 0.9700000286102295], [1511842191477.383, 576, 0.9700000286102295],
[1511842191.510109, 577, 0.9399999976158142], [1511842191510.109, 577, 0.9399999976158142],
[1511842191.540084, 578, 0.9399999976158142], [1511842191540.084, 578, 0.9399999976158142],
[1511842191.569611, 579, 0.9599999785423279], [1511842191569.611, 579, 0.9599999785423279],
[1511842192.080061, 581, 0.949999988079071], [1511842192080.061, 581, 0.949999988079071],
[1511842192.114685, 582, 0.949999988079071], [1511842192114.685, 582, 0.949999988079071],
[1511842192.146026, 583, 0.9599999785423279], [1511842192146.026, 583, 0.9599999785423279],
[1511842192.179577, 584, 0.9300000071525574], [1511842192179.577, 584, 0.9300000071525574],
[1511842192.213491, 585, 0.949999988079071], [1511842192213.491, 585, 0.949999988079071],
[1511842192.247531, 586, 0.949999988079071], [1511842192247.531, 586, 0.949999988079071],
[1511842192.279046, 587, 0.9700000286102295], [1511842192279.046, 587, 0.9700000286102295],
[1511842192.3092, 588, 0.9300000071525574], [1511842192309.2, 588, 0.9300000071525574],
[1511842192.343594, 589, 0.9700000286102295], [1511842192343.594, 589, 0.9700000286102295],
[1511842192.842748, 591, 0.9599999785423279], [1511842192842.748, 591, 0.9599999785423279],
[1511842192.872712, 592, 0.9700000286102295], [1511842192872.712, 592, 0.9700000286102295],
[1511842192.903806, 593, 0.9700000286102295], [1511842192903.806, 593, 0.9700000286102295],
[1511842192.935047, 594, 0.949999988079071], [1511842192935.047, 594, 0.949999988079071],
[1511842192.966689, 595, 0.9300000071525574], [1511842192966.689, 595, 0.9300000071525574],
[1511842192.996178, 596, 1.0], [1511842192996.178, 596, 1.0],
[1511842193.025323, 597, 0.9300000071525574], [1511842193025.323, 597, 0.9300000071525574],
[1511842193.059378, 598, 0.949999988079071], [1511842193059.378, 598, 0.949999988079071],
[1511842193.161189, 599, 0.9599999785423279], [1511842193161.189, 599, 0.9599999785423279],
[1511842193.658418, 601, 0.9900000095367432], [1511842193658.418, 601, 0.9900000095367432],
[1511842193.688131, 602, 0.9399999976158142], [1511842193688.131, 602, 0.9399999976158142],
[1511842193.720422, 603, 0.9800000190734863], [1511842193720.422, 603, 0.9800000190734863],
[1511842193.752308, 604, 0.9599999785423279], [1511842193752.308, 604, 0.9599999785423279],
[1511842193.782545, 605, 0.949999988079071], [1511842193782.545, 605, 0.949999988079071],
[1511842193.814567, 606, 0.9599999785423279], [1511842193814.567, 606, 0.9599999785423279],
[1511842193.848188, 607, 0.9399999976158142], [1511842193848.188, 607, 0.9399999976158142],
[1511842193.879656, 608, 0.9700000286102295], [1511842193879.656, 608, 0.9700000286102295],
[1511842193.910992, 609, 0.9900000095367432], [1511842193910.992, 609, 0.9900000095367432],
[1511842194.408775, 611, 0.949999988079071], [1511842194408.775, 611, 0.949999988079071],
[1511842194.557519, 612, 0.9900000095367432], [1511842194557.519, 612, 0.9900000095367432],
[1511842194.59024, 613, 0.9700000286102295], [1511842194590.24, 613, 0.9700000286102295],
[1511842194.62302, 614, 0.9399999976158142], [1511842194623.02, 614, 0.9399999976158142],
[1511842194.656742, 615, 0.9599999785423279], [1511842194656.742, 615, 0.9599999785423279],
[1511842194.68816, 616, 0.9900000095367432], [1511842194688.16, 616, 0.9900000095367432],
[1511842194.720722, 617, 0.9300000071525574], [1511842194720.722, 617, 0.9300000071525574],
[1511842194.752064, 618, 0.9800000190734863], [1511842194752.064, 618, 0.9800000190734863],
[1511842194.784808, 619, 0.9100000262260437], [1511842194784.808, 619, 0.9100000262260437],
[1511842195.290169, 621, 0.949999988079071], [1511842195290.169, 621, 0.949999988079071],
[1511842195.323044, 622, 0.9700000286102295], [1511842195323.044, 622, 0.9700000286102295],
[1511842195.353092, 623, 0.9900000095367432], [1511842195353.092, 623, 0.9900000095367432],
[1511842195.386405, 624, 0.949999988079071], [1511842195386.405, 624, 0.949999988079071],
[1511842195.417719, 625, 0.9700000286102295], [1511842195417.719, 625, 0.9700000286102295],
[1511842195.471398, 626, 0.9800000190734863], [1511842195471.398, 626, 0.9800000190734863],
[1511842195.508423, 627, 0.9599999785423279], [1511842195508.423, 627, 0.9599999785423279],
[1511842195.543529, 628, 0.9700000286102295], [1511842195543.529, 628, 0.9700000286102295],
[1511842195.582063, 629, 0.9700000286102295], [1511842195582.063, 629, 0.9700000286102295],
[1511842196.143761, 631, 0.9700000286102295], [1511842196143.761, 631, 0.9700000286102295],
[1511842196.182851, 632, 0.9700000286102295], [1511842196182.851, 632, 0.9700000286102295],
[1511842196.214629, 633, 0.9700000286102295], [1511842196214.629, 633, 0.9700000286102295],
[1511842196.253051, 634, 0.9700000286102295], [1511842196253.051, 634, 0.9700000286102295],
[1511842196.287821, 635, 0.949999988079071], [1511842196287.821, 635, 0.949999988079071],
[1511842196.319766, 636, 0.9399999976158142], [1511842196319.766, 636, 0.9399999976158142],
[1511842196.354184, 637, 0.9399999976158142], [1511842196354.184, 637, 0.9399999976158142],
[1511842196.38808, 638, 0.9599999785423279], [1511842196388.08, 638, 0.9599999785423279],
[1511842196.421604, 639, 0.949999988079071], [1511842196421.604, 639, 0.949999988079071],
[1511842196.947931, 641, 1.0], [1511842196947.931, 641, 1.0],
[1511842196.977982, 642, 0.949999988079071], [1511842196977.982, 642, 0.949999988079071],
[1511842197.013177, 643, 0.9599999785423279], [1511842197013.177, 643, 0.9599999785423279],
[1511842197.053432, 644, 0.9599999785423279], [1511842197053.432, 644, 0.9599999785423279],
[1511842197.089024, 645, 0.9700000286102295], [1511842197089.024, 645, 0.9700000286102295],
[1511842197.120129, 646, 0.9599999785423279], [1511842197120.129, 646, 0.9599999785423279],
[1511842197.150194, 647, 0.9300000071525574], [1511842197150.194, 647, 0.9300000071525574],
[1511842197.18433, 648, 0.9700000286102295], [1511842197184.33, 648, 0.9700000286102295],
[1511842197.214245, 649, 0.9599999785423279], [1511842197214.245, 649, 0.9599999785423279],
[1511842197.734399, 651, 0.9599999785423279], [1511842197734.399, 651, 0.9599999785423279],
[1511842197.765878, 652, 0.949999988079071], [1511842197765.878, 652, 0.949999988079071],
[1511842197.795536, 653, 0.9300000071525574], [1511842197795.536, 653, 0.9300000071525574],
[1511842197.828955, 654, 0.949999988079071], [1511842197828.955, 654, 0.949999988079071],
[1511842197.858018, 655, 0.949999988079071], [1511842197858.018, 655, 0.949999988079071],
[1511842197.88918, 656, 0.9300000071525574], [1511842197889.18, 656, 0.9300000071525574],
[1511842197.921247, 657, 0.9599999785423279], [1511842197921.247, 657, 0.9599999785423279],
[1511842197.961132, 658, 0.9599999785423279], [1511842197961.132, 658, 0.9599999785423279],
[1511842197.990723, 659, 0.949999988079071], [1511842197990.723, 659, 0.949999988079071],
[1511842198.489996, 661, 0.9700000286102295], [1511842198489.996, 661, 0.9700000286102295],
[1511842198.520217, 662, 0.9900000095367432], [1511842198520.217, 662, 0.9900000095367432],
[1511842198.550925, 663, 1.0], [1511842198550.925, 663, 1.0],
[1511842198.582604, 664, 0.9700000286102295], [1511842198582.604, 664, 0.9700000286102295],
[1511842198.612304, 665, 0.9700000286102295], [1511842198612.304, 665, 0.9700000286102295],
[1511842198.648211, 666, 0.9300000071525574], [1511842198648.211, 666, 0.9300000071525574],
[1511842198.686078, 667, 0.9599999785423279], [1511842198686.078, 667, 0.9599999785423279],
[1511842198.717921, 668, 0.949999988079071], [1511842198717.921, 668, 0.949999988079071],
[1511842198.750968, 669, 0.9599999785423279], [1511842198750.968, 669, 0.9599999785423279],
[1511842199.258821, 671, 0.9399999976158142], [1511842199258.821, 671, 0.9399999976158142],
[1511842199.291037, 672, 0.9800000190734863], [1511842199291.037, 672, 0.9800000190734863],
[1511842199.320875, 673, 0.9700000286102295], [1511842199320.875, 673, 0.9700000286102295],
[1511842199.352976, 674, 0.949999988079071], [1511842199352.976, 674, 0.949999988079071],
[1511842199.382681, 675, 0.9800000190734863], [1511842199382.681, 675, 0.9800000190734863],
[1511842199.411833, 676, 0.949999988079071], [1511842199411.833, 676, 0.949999988079071],
[1511842199.443132, 677, 0.9700000286102295], [1511842199443.132, 677, 0.9700000286102295],
[1511842199.475117, 678, 0.9700000286102295], [1511842199475.117, 678, 0.9700000286102295],
[1511842199.505664, 679, 0.949999988079071], [1511842199505.664, 679, 0.949999988079071],
[1511842200.00445, 681, 0.949999988079071], [1511842200004.45, 681, 0.949999988079071],
[1511842200.037647, 682, 0.9900000095367432], [1511842200037.647, 682, 0.9900000095367432],
[1511842200.073666, 683, 0.9200000166893005], [1511842200073.666, 683, 0.9200000166893005],
[1511842200.104847, 684, 0.9200000166893005], [1511842200104.847, 684, 0.9200000166893005],
[1511842200.137768, 685, 0.9300000071525574], [1511842200137.768, 685, 0.9300000071525574],
[1511842200.170784, 686, 0.9800000190734863], [1511842200170.784, 686, 0.9800000190734863],
[1511842200.204724, 687, 0.9800000190734863], [1511842200204.724, 687, 0.9800000190734863],
[1511842200.240477, 688, 0.9800000190734863], [1511842200240.477, 688, 0.9800000190734863],
[1511842200.275783, 689, 0.9900000095367432], [1511842200275.783, 689, 0.9900000095367432],
[1511842200.81989, 691, 0.9700000286102295], [1511842200819.89, 691, 0.9700000286102295],
[1511842200.858525, 692, 0.9300000071525574], [1511842200858.525, 692, 0.9300000071525574],
[1511842200.890363, 693, 0.949999988079071], [1511842200890.363, 693, 0.949999988079071],
[1511842200.932829, 694, 0.9599999785423279], [1511842200932.829, 694, 0.9599999785423279],
[1511842200.962743, 695, 0.9800000190734863], [1511842200962.743, 695, 0.9800000190734863],
[1511842200.994843, 696, 0.9200000166893005], [1511842200994.843, 696, 0.9200000166893005],
[1511842201.03947, 697, 0.9800000190734863], [1511842201039.47, 697, 0.9800000190734863],
[1511842201.070836, 698, 0.9399999976158142], [1511842201070.836, 698, 0.9399999976158142],
[1511842201.246026, 699, 0.9100000262260437], [1511842201246.026, 699, 0.9100000262260437],
[1511842201.786404, 701, 0.9300000071525574], [1511842201786.404, 701, 0.9300000071525574],
[1511842201.819202, 702, 0.9800000190734863], [1511842201819.202, 702, 0.9800000190734863],
[1511842201.856957, 703, 0.9200000166893005], [1511842201856.957, 703, 0.9200000166893005],
[1511842201.888767, 704, 1.0], [1511842201888.767, 704, 1.0],
[1511842201.92143, 705, 0.9399999976158142], [1511842201921.43, 705, 0.9399999976158142],
[1511842201.961242, 706, 0.9700000286102295], [1511842201961.242, 706, 0.9700000286102295],
[1511842201.996298, 707, 0.9200000166893005], [1511842201996.298, 707, 0.9200000166893005],
[1511842202.032258, 708, 0.9800000190734863], [1511842202032.258, 708, 0.9800000190734863],
[1511842202.069833, 709, 0.9300000071525574], [1511842202069.833, 709, 0.9300000071525574],
[1511842202.5957, 711, 0.9800000190734863], [1511842202595.7, 711, 0.9800000190734863],
[1511842202.632072, 712, 0.9800000190734863], [1511842202632.072, 712, 0.9800000190734863],
[1511842202.664469, 713, 0.9700000286102295], [1511842202664.469, 713, 0.9700000286102295],
[1511842202.696135, 714, 0.9300000071525574], [1511842202696.135, 714, 0.9300000071525574],
[1511842202.72853, 715, 0.9700000286102295], [1511842202728.53, 715, 0.9700000286102295],
[1511842202.759628, 716, 0.9800000190734863], [1511842202759.628, 716, 0.9800000190734863],
[1511842202.794048, 717, 0.9800000190734863], [1511842202794.048, 717, 0.9800000190734863],
[1511842202.827036, 718, 0.949999988079071], [1511842202827.036, 718, 0.949999988079071],
[1511842202.858473, 719, 0.9700000286102295], [1511842202858.473, 719, 0.9700000286102295],
[1511842203.391985, 721, 0.9599999785423279], [1511842203391.985, 721, 0.9599999785423279],
[1511842203.4215, 722, 0.9399999976158142], [1511842203421.5, 722, 0.9399999976158142],
[1511842203.453421, 723, 0.9800000190734863], [1511842203453.421, 723, 0.9800000190734863],
[1511842203.484233, 724, 0.9700000286102295], [1511842203484.233, 724, 0.9700000286102295],
[1511842203.516743, 725, 0.9900000095367432], [1511842203516.743, 725, 0.9900000095367432],
[1511842203.550632, 726, 0.9800000190734863], [1511842203550.632, 726, 0.9800000190734863],
[1511842203.584461, 727, 0.9800000190734863], [1511842203584.461, 727, 0.9800000190734863],
[1511842203.617915, 728, 0.9599999785423279], [1511842203617.915, 728, 0.9599999785423279],
[1511842203.652398, 729, 0.9700000286102295], [1511842203652.398, 729, 0.9700000286102295],
[1511842204.185468, 731, 0.9800000190734863], [1511842204185.468, 731, 0.9800000190734863],
[1511842204.217265, 732, 0.9800000190734863], [1511842204217.265, 732, 0.9800000190734863],
[1511842204.249281, 733, 1.0], [1511842204249.281, 733, 1.0],
[1511842204.282808, 734, 0.9700000286102295], [1511842204282.808, 734, 0.9700000286102295],
[1511842204.314277, 735, 0.9700000286102295], [1511842204314.277, 735, 0.9700000286102295],
[1511842204.345353, 736, 0.949999988079071], [1511842204345.353, 736, 0.949999988079071],
[1511842204.375898, 737, 0.9599999785423279], [1511842204375.898, 737, 0.9599999785423279],
[1511842204.411013, 738, 0.9100000262260437], [1511842204411.013, 738, 0.9100000262260437],
[1511842204.441207, 739, 0.9700000286102295], [1511842204441.207, 739, 0.9700000286102295],
[1511842204.967109, 741, 0.9399999976158142], [1511842204967.109, 741, 0.9399999976158142],
[1511842204.999614, 742, 0.9900000095367432], [1511842204999.614, 742, 0.9900000095367432],
[1511842205.037706, 743, 0.9599999785423279], [1511842205037.706, 743, 0.9599999785423279],
[1511842205.071398, 744, 0.9700000286102295], [1511842205071.398, 744, 0.9700000286102295],
[1511842205.109827, 745, 0.9800000190734863], [1511842205109.827, 745, 0.9800000190734863],
[1511842205.150377, 746, 0.9700000286102295], [1511842205150.377, 746, 0.9700000286102295],
[1511842205.196859, 747, 0.9399999976158142], [1511842205196.859, 747, 0.9399999976158142],
[1511842205.238587, 748, 0.9900000095367432], [1511842205238.587, 748, 0.9900000095367432],
[1511842205.284592, 749, 0.9700000286102295], [1511842205284.592, 749, 0.9700000286102295],
[1511842205.913203, 751, 0.9599999785423279], [1511842205913.203, 751, 0.9599999785423279],
[1511842205.977628, 752, 0.9800000190734863], [1511842205977.628, 752, 0.9800000190734863],
[1511842206.049908, 753, 0.9399999976158142], [1511842206049.908, 753, 0.9399999976158142],
[1511842206.088929, 754, 0.9599999785423279], [1511842206088.929, 754, 0.9599999785423279],
[1511842206.12656, 755, 0.9700000286102295], [1511842206126.56, 755, 0.9700000286102295],
[1511842206.171609, 756, 0.9700000286102295], [1511842206171.609, 756, 0.9700000286102295],
[1511842206.207161, 757, 0.9599999785423279], [1511842206207.161, 757, 0.9599999785423279],
[1511842206.259537, 758, 0.9900000095367432], [1511842206259.537, 758, 0.9900000095367432],
[1511842206.299124, 759, 0.9800000190734863], [1511842206299.124, 759, 0.9800000190734863],
[1511842206.839902, 761, 0.9399999976158142], [1511842206839.902, 761, 0.9399999976158142],
[1511842206.869605, 762, 0.9800000190734863], [1511842206869.605, 762, 0.9800000190734863],
[1511842206.901015, 763, 0.9599999785423279], [1511842206901.015, 763, 0.9599999785423279],
[1511842206.931029, 764, 0.9700000286102295], [1511842206931.029, 764, 0.9700000286102295],
[1511842206.961387, 765, 0.9300000071525574], [1511842206961.387, 765, 0.9300000071525574],
[1511842206.992158, 766, 0.9599999785423279], [1511842206992.158, 766, 0.9599999785423279],
[1511842207.02291, 767, 0.9700000286102295], [1511842207022.91, 767, 0.9700000286102295],
[1511842207.055302, 768, 0.9599999785423279], [1511842207055.302, 768, 0.9599999785423279],
[1511842207.089098, 769, 0.9399999976158142], [1511842207089.098, 769, 0.9399999976158142],
[1511842207.593272, 771, 0.9800000190734863], [1511842207593.272, 771, 0.9800000190734863],
[1511842207.624582, 772, 0.949999988079071], [1511842207624.582, 772, 0.949999988079071],
[1511842207.654845, 773, 0.9599999785423279], [1511842207654.845, 773, 0.9599999785423279],
[1511842207.688258, 774, 0.9800000190734863], [1511842207688.258, 774, 0.9800000190734863],
[1511842207.718489, 775, 0.9700000286102295], [1511842207718.489, 775, 0.9700000286102295],
[1511842207.747767, 776, 0.949999988079071], [1511842207747.767, 776, 0.949999988079071],
[1511842207.778593, 777, 0.9700000286102295], [1511842207778.593, 777, 0.9700000286102295],
[1511842207.808232, 778, 0.9599999785423279], [1511842207808.232, 778, 0.9599999785423279],
[1511842207.838551, 779, 0.9599999785423279], [1511842207838.551, 779, 0.9599999785423279],
[1511842208.397092, 781, 0.9700000286102295], [1511842208397.092, 781, 0.9700000286102295],
[1511842208.427281, 782, 0.949999988079071], [1511842208427.281, 782, 0.949999988079071],
[1511842208.458664, 783, 0.9800000190734863], [1511842208458.664, 783, 0.9800000190734863],
[1511842208.488235, 784, 0.9599999785423279], [1511842208488.235, 784, 0.9599999785423279],
[1511842208.519785, 785, 0.9599999785423279], [1511842208519.785, 785, 0.9599999785423279],
[1511842208.554034, 786, 0.9800000190734863], [1511842208554.034, 786, 0.9800000190734863],
[1511842208.586204, 787, 0.9800000190734863], [1511842208586.204, 787, 0.9800000190734863],
[1511842208.619628, 788, 0.9700000286102295], [1511842208619.628, 788, 0.9700000286102295],
[1511842208.654394, 789, 0.9800000190734863], [1511842208654.394, 789, 0.9800000190734863],
[1511842209.194778, 791, 0.9800000190734863], [1511842209194.778, 791, 0.9800000190734863],
[1511842209.226194, 792, 0.9599999785423279], [1511842209226.194, 792, 0.9599999785423279],
[1511842209.266281, 793, 0.9599999785423279], [1511842209266.281, 793, 0.9599999785423279],
[1511842209.295469, 794, 0.9800000190734863], [1511842209295.469, 794, 0.9800000190734863],
[1511842209.327287, 795, 0.9800000190734863], [1511842209327.287, 795, 0.9800000190734863],
[1511842209.364207, 796, 0.9599999785423279], [1511842209364.207, 796, 0.9599999785423279],
[1511842209.395033, 797, 0.9599999785423279], [1511842209395.033, 797, 0.9599999785423279],
[1511842209.429895, 798, 0.949999988079071], [1511842209429.895, 798, 0.949999988079071],
[1511842209.556844, 799, 0.949999988079071], [1511842209556.844, 799, 0.949999988079071],
[1511842210.130269, 801, 0.9700000286102295], [1511842210130.269, 801, 0.9700000286102295],
[1511842210.160287, 802, 0.9700000286102295], [1511842210160.287, 802, 0.9700000286102295],
[1511842210.193199, 803, 0.9700000286102295], [1511842210193.199, 803, 0.9700000286102295],
[1511842210.22632, 804, 0.9399999976158142], [1511842210226.32, 804, 0.9399999976158142],
[1511842210.26311, 805, 0.9800000190734863], [1511842210263.11, 805, 0.9800000190734863],
[1511842210.309019, 806, 0.9599999785423279], [1511842210309.019, 806, 0.9599999785423279],
[1511842210.347609, 807, 0.9800000190734863], [1511842210347.609, 807, 0.9800000190734863],
[1511842210.390996, 808, 0.9900000095367432], [1511842210390.996, 808, 0.9900000095367432],
[1511842210.439887, 809, 0.9200000166893005], [1511842210439.887, 809, 0.9200000166893005],
[1511842211.003122, 811, 0.9599999785423279], [1511842211003.122, 811, 0.9599999785423279],
[1511842211.037074, 812, 0.9599999785423279], [1511842211037.074, 812, 0.9599999785423279],
[1511842211.067644, 813, 0.9399999976158142], [1511842211067.644, 813, 0.9399999976158142],
[1511842211.101507, 814, 0.9599999785423279], [1511842211101.507, 814, 0.9599999785423279],
[1511842211.140325, 815, 0.9599999785423279], [1511842211140.325, 815, 0.9599999785423279],
[1511842211.174903, 816, 0.949999988079071], [1511842211174.903, 816, 0.949999988079071],
[1511842211.224003, 817, 0.9700000286102295], [1511842211224.003, 817, 0.9700000286102295],
[1511842211.286801, 818, 0.9900000095367432], [1511842211286.801, 818, 0.9900000095367432],
[1511842211.327776, 819, 0.9800000190734863], [1511842211327.776, 819, 0.9800000190734863],
[1511842211.985095, 821, 0.9200000166893005], [1511842211985.095, 821, 0.9200000166893005],
[1511842212.030882, 822, 0.9700000286102295], [1511842212030.882, 822, 0.9700000286102295],
[1511842212.070569, 823, 0.9399999976158142], [1511842212070.569, 823, 0.9399999976158142],
[1511842212.118181, 824, 0.9800000190734863], [1511842212118.181, 824, 0.9800000190734863],
[1511842212.157094, 825, 0.9599999785423279], [1511842212157.094, 825, 0.9599999785423279],
[1511842212.226286, 826, 0.9599999785423279], [1511842212226.286, 826, 0.9599999785423279],
[1511842212.277023, 827, 0.9900000095367432], [1511842212277.023, 827, 0.9900000095367432],
[1511842212.311592, 828, 1.0], [1511842212311.592, 828, 1.0],
[1511842212.348642, 829, 0.9599999785423279], [1511842212348.642, 829, 0.9599999785423279],
[1511842212.91796, 831, 0.9900000095367432], [1511842212917.96, 831, 0.9900000095367432],
[1511842212.950586, 832, 0.9800000190734863], [1511842212950.586, 832, 0.9800000190734863],
[1511842212.996488, 833, 0.9599999785423279], [1511842212996.488, 833, 0.9599999785423279],
[1511842213.027555, 834, 0.9800000190734863], [1511842213027.555, 834, 0.9800000190734863],
[1511842213.058825, 835, 0.9800000190734863], [1511842213058.825, 835, 0.9800000190734863],
[1511842213.091046, 836, 0.9599999785423279], [1511842213091.046, 836, 0.9599999785423279],
[1511842213.125024, 837, 0.9599999785423279], [1511842213125.024, 837, 0.9599999785423279],
[1511842213.160207, 838, 0.9399999976158142], [1511842213160.207, 838, 0.9399999976158142],
[1511842213.191536, 839, 0.9700000286102295], [1511842213191.536, 839, 0.9700000286102295],
[1511842213.728065, 841, 0.9700000286102295], [1511842213728.065, 841, 0.9700000286102295],
[1511842213.762401, 842, 0.9700000286102295], [1511842213762.401, 842, 0.9700000286102295],
[1511842213.799732, 843, 0.9700000286102295], [1511842213799.732, 843, 0.9700000286102295],
[1511842213.833657, 844, 0.9800000190734863], [1511842213833.657, 844, 0.9800000190734863],
[1511842213.866312, 845, 0.9800000190734863], [1511842213866.312, 845, 0.9800000190734863],
[1511842213.902647, 846, 0.9599999785423279], [1511842213902.647, 846, 0.9599999785423279],
[1511842213.942028, 847, 0.9700000286102295], [1511842213942.028, 847, 0.9700000286102295],
[1511842213.983694, 848, 0.9599999785423279], [1511842213983.694, 848, 0.9599999785423279],
[1511842214.017235, 849, 0.949999988079071], [1511842214017.235, 849, 0.949999988079071],
[1511842214.539192, 851, 0.9800000190734863], [1511842214539.192, 851, 0.9800000190734863],
[1511842214.570802, 852, 0.9599999785423279], [1511842214570.802, 852, 0.9599999785423279],
[1511842214.602371, 853, 0.9800000190734863], [1511842214602.371, 853, 0.9800000190734863],
[1511842214.63469, 854, 0.9599999785423279], [1511842214634.69, 854, 0.9599999785423279],
[1511842214.666527, 855, 0.9700000286102295], [1511842214666.527, 855, 0.9700000286102295],
[1511842214.7013, 856, 0.949999988079071], [1511842214701.3, 856, 0.949999988079071],
[1511842214.736796, 857, 0.9700000286102295], [1511842214736.796, 857, 0.9700000286102295],
[1511842214.773076, 858, 0.9900000095367432], [1511842214773.076, 858, 0.9900000095367432],
[1511842214.804659, 859, 0.9900000095367432], [1511842214804.659, 859, 0.9900000095367432],
[1511842215.333667, 861, 0.9700000286102295], [1511842215333.667, 861, 0.9700000286102295],
[1511842215.36866, 862, 0.9800000190734863], [1511842215368.66, 862, 0.9800000190734863],
[1511842215.408818, 863, 0.9800000190734863], [1511842215408.818, 863, 0.9800000190734863],
[1511842215.446431, 864, 0.9900000095367432], [1511842215446.431, 864, 0.9900000095367432],
[1511842215.484602, 865, 0.9399999976158142], [1511842215484.602, 865, 0.9399999976158142],
[1511842215.520258, 866, 0.9800000190734863], [1511842215520.258, 866, 0.9800000190734863],
[1511842215.555225, 867, 0.9800000190734863], [1511842215555.225, 867, 0.9800000190734863],
[1511842215.592115, 868, 0.9599999785423279], [1511842215592.115, 868, 0.9599999785423279],
[1511842215.630665, 869, 0.9700000286102295], [1511842215630.665, 869, 0.9700000286102295],
[1511842216.128021, 871, 1.0], [1511842216128.021, 871, 1.0],
[1511842216.159525, 872, 0.9200000166893005], [1511842216159.525, 872, 0.9200000166893005],
[1511842216.191044, 873, 0.9800000190734863], [1511842216191.044, 873, 0.9800000190734863],
[1511842216.22625, 874, 0.949999988079071], [1511842216226.25, 874, 0.949999988079071],
[1511842216.264204, 875, 1.0], [1511842216264.204, 875, 1.0],
[1511842216.301708, 876, 0.9300000071525574], [1511842216301.708, 876, 0.9300000071525574],
[1511842216.346822, 877, 0.949999988079071], [1511842216346.822, 877, 0.949999988079071],
[1511842216.387908, 878, 0.9900000095367432], [1511842216387.908, 878, 0.9900000095367432],
[1511842216.431012, 879, 0.9399999976158142], [1511842216431.012, 879, 0.9399999976158142],
[1511842216.948288, 881, 0.9800000190734863], [1511842216948.288, 881, 0.9800000190734863],
[1511842216.980613, 882, 0.9599999785423279], [1511842216980.613, 882, 0.9599999785423279],
[1511842217.01133, 883, 0.9700000286102295], [1511842217011.33, 883, 0.9700000286102295],
[1511842217.042047, 884, 0.9900000095367432], [1511842217042.047, 884, 0.9900000095367432],
[1511842217.073482, 885, 0.9300000071525574], [1511842217073.482, 885, 0.9300000071525574],
[1511842217.108726, 886, 0.9599999785423279], [1511842217108.726, 886, 0.9599999785423279],
[1511842217.14001, 887, 0.9800000190734863], [1511842217140.01, 887, 0.9800000190734863],
[1511842217.171317, 888, 0.9599999785423279], [1511842217171.317, 888, 0.9599999785423279],
[1511842217.203606, 889, 0.9800000190734863], [1511842217203.606, 889, 0.9800000190734863],
[1511842217.753845, 891, 0.9399999976158142], [1511842217753.845, 891, 0.9399999976158142],
[1511842217.789057, 892, 0.9599999785423279], [1511842217789.057, 892, 0.9599999785423279],
[1511842217.830139, 893, 0.9800000190734863], [1511842217830.139, 893, 0.9800000190734863],
[1511842217.864796, 894, 0.949999988079071], [1511842217864.796, 894, 0.949999988079071],
[1511842217.897203, 895, 0.9800000190734863], [1511842217897.203, 895, 0.9800000190734863],
[1511842217.929849, 896, 0.949999988079071], [1511842217929.849, 896, 0.949999988079071],
[1511842217.963099, 897, 0.9800000190734863], [1511842217963.099, 897, 0.9800000190734863],
[1511842217.996219, 898, 0.9599999785423279], [1511842217996.219, 898, 0.9599999785423279],
[1511842218.111479, 899, 0.9599999785423279], [1511842218111.479, 899, 0.9599999785423279],
[1511842218.683541, 901, 0.9700000286102295], [1511842218683.541, 901, 0.9700000286102295],
[1511842218.714867, 902, 0.9900000095367432], [1511842218714.867, 902, 0.9900000095367432],
[1511842218.745403, 903, 0.949999988079071], [1511842218745.403, 903, 0.949999988079071],
[1511842218.775027, 904, 0.9599999785423279], [1511842218775.027, 904, 0.9599999785423279],
[1511842218.804858, 905, 0.9700000286102295], [1511842218804.858, 905, 0.9700000286102295],
[1511842218.834642, 906, 0.9599999785423279], [1511842218834.642, 906, 0.9599999785423279],
[1511842218.865326, 907, 0.9900000095367432], [1511842218865.326, 907, 0.9900000095367432],
[1511842218.896291, 908, 0.9700000286102295], [1511842218896.291, 908, 0.9700000286102295],
[1511842218.926799, 909, 0.9800000190734863], [1511842218926.799, 909, 0.9800000190734863],
[1511842219.457638, 911, 0.949999988079071], [1511842219457.638, 911, 0.949999988079071],
[1511842219.489308, 912, 0.9700000286102295], [1511842219489.308, 912, 0.9700000286102295],
[1511842219.524922, 913, 0.9100000262260437], [1511842219524.922, 913, 0.9100000262260437],
[1511842219.55795, 914, 0.9900000095367432], [1511842219557.95, 914, 0.9900000095367432],
[1511842219.595283, 915, 0.9900000095367432], [1511842219595.283, 915, 0.9900000095367432],
[1511842219.687366, 916, 0.9900000095367432], [1511842219687.366, 916, 0.9900000095367432],
[1511842219.727115, 917, 0.9800000190734863], [1511842219727.115, 917, 0.9800000190734863],
[1511842219.768945, 918, 0.9599999785423279], [1511842219768.945, 918, 0.9599999785423279],
[1511842219.801816, 919, 0.9800000190734863], [1511842219801.816, 919, 0.9800000190734863],
[1511842220.390596, 921, 0.9900000095367432], [1511842220390.596, 921, 0.9900000095367432],
[1511842220.43033, 922, 0.9700000286102295], [1511842220430.33, 922, 0.9700000286102295],
[1511842220.469885, 923, 0.9700000286102295], [1511842220469.885, 923, 0.9700000286102295],
[1511842220.501432, 924, 0.949999988079071], [1511842220501.432, 924, 0.949999988079071],
[1511842220.534336, 925, 0.949999988079071], [1511842220534.336, 925, 0.949999988079071],
[1511842220.577459, 926, 0.9800000190734863], [1511842220577.459, 926, 0.9800000190734863],
[1511842220.634076, 927, 0.9700000286102295], [1511842220634.076, 927, 0.9700000286102295],
[1511842220.668908, 928, 0.9599999785423279], [1511842220668.908, 928, 0.9599999785423279],
[1511842220.7005, 929, 0.9900000095367432], [1511842220700.5, 929, 0.9900000095367432],
[1511842221.287896, 931, 0.9800000190734863], [1511842221287.896, 931, 0.9800000190734863],
[1511842221.319684, 932, 0.9599999785423279], [1511842221319.684, 932, 0.9599999785423279],
[1511842221.355376, 933, 0.949999988079071], [1511842221355.376, 933, 0.949999988079071],
[1511842221.390386, 934, 0.9700000286102295], [1511842221390.386, 934, 0.9700000286102295],
[1511842221.424849, 935, 0.9599999785423279], [1511842221424.849, 935, 0.9599999785423279],
[1511842221.455576, 936, 0.9800000190734863], [1511842221455.576, 936, 0.9800000190734863],
[1511842221.488522, 937, 0.9700000286102295], [1511842221488.522, 937, 0.9700000286102295],
[1511842221.523331, 938, 0.949999988079071], [1511842221523.331, 938, 0.949999988079071],
[1511842221.562103, 939, 0.9800000190734863], [1511842221562.103, 939, 0.9800000190734863],
[1511842222.11082, 941, 0.9399999976158142], [1511842222110.82, 941, 0.9399999976158142],
[1511842222.144042, 942, 1.0], [1511842222144.042, 942, 1.0],
[1511842222.180893, 943, 0.9599999785423279], [1511842222180.893, 943, 0.9599999785423279],
[1511842222.214718, 944, 0.9599999785423279], [1511842222214.718, 944, 0.9599999785423279],
[1511842222.250779, 945, 0.9399999976158142], [1511842222250.779, 945, 0.9399999976158142],
[1511842222.283768, 946, 0.9599999785423279], [1511842222283.768, 946, 0.9599999785423279],
[1511842222.318964, 947, 0.949999988079071], [1511842222318.964, 947, 0.949999988079071],
[1511842222.351751, 948, 0.9599999785423279], [1511842222351.751, 948, 0.9599999785423279],
[1511842222.382504, 949, 0.9800000190734863], [1511842222382.504, 949, 0.9800000190734863],
[1511842222.889534, 951, 0.9800000190734863], [1511842222889.534, 951, 0.9800000190734863],
[1511842222.921617, 952, 0.949999988079071], [1511842222921.617, 952, 0.949999988079071],
[1511842222.953747, 953, 0.9399999976158142], [1511842222953.747, 953, 0.9399999976158142],
[1511842222.989928, 954, 0.9399999976158142], [1511842222989.928, 954, 0.9399999976158142],
[1511842223.023551, 955, 0.9700000286102295], [1511842223023.551, 955, 0.9700000286102295],
[1511842223.060438, 956, 0.9800000190734863], [1511842223060.438, 956, 0.9800000190734863],
[1511842223.097254, 957, 0.9599999785423279], [1511842223097.254, 957, 0.9599999785423279],
[1511842223.138771, 958, 0.9800000190734863], [1511842223138.771, 958, 0.9800000190734863],
[1511842223.174054, 959, 0.9399999976158142], [1511842223174.054, 959, 0.9399999976158142],
[1511842223.693137, 961, 0.949999988079071], [1511842223693.137, 961, 0.949999988079071],
[1511842223.723562, 962, 0.9800000190734863], [1511842223723.562, 962, 0.9800000190734863],
[1511842223.755989, 963, 0.9700000286102295], [1511842223755.989, 963, 0.9700000286102295],
[1511842223.790843, 964, 0.9900000095367432], [1511842223790.843, 964, 0.9900000095367432],
[1511842223.822565, 965, 0.9800000190734863], [1511842223822.565, 965, 0.9800000190734863],
[1511842223.853841, 966, 0.9900000095367432], [1511842223853.841, 966, 0.9900000095367432],
[1511842223.892184, 967, 0.9399999976158142], [1511842223892.184, 967, 0.9399999976158142],
[1511842223.928116, 968, 0.9800000190734863], [1511842223928.116, 968, 0.9800000190734863],
[1511842223.961467, 969, 0.9700000286102295], [1511842223961.467, 969, 0.9700000286102295],
[1511842224.536617, 971, 0.9900000095367432], [1511842224536.617, 971, 0.9900000095367432],
[1511842224.577399, 972, 0.9599999785423279], [1511842224577.399, 972, 0.9599999785423279],
[1511842224.617609, 973, 0.9700000286102295], [1511842224617.609, 973, 0.9700000286102295],
[1511842224.655355, 974, 0.9599999785423279], [1511842224655.355, 974, 0.9599999785423279],
[1511842224.689069, 975, 0.949999988079071], [1511842224689.069, 975, 0.949999988079071],
[1511842224.72824, 976, 0.9700000286102295], [1511842224728.24, 976, 0.9700000286102295],
[1511842224.759455, 977, 0.949999988079071], [1511842224759.455, 977, 0.949999988079071],
[1511842224.793144, 978, 0.9599999785423279], [1511842224793.144, 978, 0.9599999785423279],
[1511842224.824675, 979, 0.9700000286102295], [1511842224824.675, 979, 0.9700000286102295],
[1511842225.342267, 981, 0.9599999785423279], [1511842225342.267, 981, 0.9599999785423279],
[1511842225.374886, 982, 0.9700000286102295], [1511842225374.886, 982, 0.9700000286102295],
[1511842225.407038, 983, 0.9800000190734863], [1511842225407.038, 983, 0.9800000190734863],
[1511842225.438013, 984, 1.0], [1511842225438.013, 984, 1.0],
[1511842225.468219, 985, 0.9800000190734863], [1511842225468.219, 985, 0.9800000190734863],
[1511842225.499246, 986, 0.9800000190734863], [1511842225499.246, 986, 0.9800000190734863],
[1511842225.528987, 987, 0.949999988079071], [1511842225528.987, 987, 0.949999988079071],
[1511842225.56184, 988, 0.9599999785423279], [1511842225561.84, 988, 0.9599999785423279],
[1511842225.596399, 989, 0.949999988079071], [1511842225596.399, 989, 0.949999988079071],
[1511842226.096082, 991, 0.9399999976158142], [1511842226096.082, 991, 0.9399999976158142],
[1511842226.125964, 992, 0.9800000190734863], [1511842226125.964, 992, 0.9800000190734863],
[1511842226.156644, 993, 0.9599999785423279], [1511842226156.644, 993, 0.9599999785423279],
[1511842226.187556, 994, 0.9599999785423279], [1511842226187.556, 994, 0.9599999785423279],
[1511842226.218394, 995, 0.9900000095367432], [1511842226218.394, 995, 0.9900000095367432],
[1511842226.250693, 996, 0.9599999785423279], [1511842226250.693, 996, 0.9599999785423279],
[1511842226.284415, 997, 0.9800000190734863], [1511842226284.415, 997, 0.9800000190734863],
[1511842226.316085, 998, 0.9700000286102295], [1511842226316.085, 998, 0.9700000286102295],
[1511842226.42392, 999, 0.9599999785423279] [1511842226423.92, 999, 0.9599999785423279]
]; ];
} }
return [ return [
[1511842145.514333, 0, 0.094200000166893], [1511842145514.333, 0, 0.094200000166893],
[1511842146.427384, 10, 0.7394000291824341], [1511842146427.384, 10, 0.7394000291824341],
[1511842147.260405, 20, 0.8302000164985657], [1511842147260.405, 20, 0.8302000164985657],
[1511842148.019018, 30, 0.8662999868392944], [1511842148019.018, 30, 0.8662999868392944],
[1511842148.793569, 40, 0.8877999782562256], [1511842148793.569, 40, 0.8877999782562256],
[1511842149.610228, 50, 0.8952000141143799], [1511842149610.228, 50, 0.8952000141143799],
[1511842150.437095, 60, 0.9031000137329102], [1511842150437.095, 60, 0.9031000137329102],
[1511842151.254679, 70, 0.9004999995231628], [1511842151254.679, 70, 0.9004999995231628],
[1511842152.039353, 80, 0.9110000133514404], [1511842152039.353, 80, 0.9110000133514404],
[1511842152.800043, 90, 0.9143000245094299], [1511842152800.043, 90, 0.9143000245094299],
[1511842153.668115, 100, 0.9175000190734863], [1511842153668.115, 100, 0.9175000190734863],
[1511842154.453025, 110, 0.9190000295639038], [1511842154453.025, 110, 0.9190000295639038],
[1511842155.224028, 120, 0.9214000105857849], [1511842155224.028, 120, 0.9214000105857849],
[1511842156.001674, 130, 0.9204999804496765], [1511842156001.674, 130, 0.9204999804496765],
[1511842156.788682, 140, 0.9297999739646912], [1511842156788.682, 140, 0.9297999739646912],
[1511842157.580495, 150, 0.9289000034332275], [1511842157580.495, 150, 0.9289000034332275],
[1511842158.331122, 160, 0.9283999800682068], [1511842158331.122, 160, 0.9283999800682068],
[1511842159.112936, 170, 0.9298999905586243], [1511842159112.936, 170, 0.9298999905586243],
[1511842159.881351, 180, 0.9301000237464905], [1511842159881.351, 180, 0.9301000237464905],
[1511842160.659058, 190, 0.9330999851226807], [1511842160659.058, 190, 0.9330999851226807],
[1511842161.515267, 200, 0.9345999956130981], [1511842161515.267, 200, 0.9345999956130981],
[1511842162.301136, 210, 0.9351000189781189], [1511842162301.136, 210, 0.9351000189781189],
[1511842163.092769, 220, 0.9343000054359436], [1511842163092.769, 220, 0.9343000054359436],
[1511842163.920516, 230, 0.9372000098228455], [1511842163920.516, 230, 0.9372000098228455],
[1511842164.705352, 240, 0.9351999759674072], [1511842164705.352, 240, 0.9351999759674072],
[1511842165.674882, 250, 0.9369999766349792], [1511842165674.882, 250, 0.9369999766349792],
[1511842166.462909, 260, 0.9444000124931335], [1511842166462.909, 260, 0.9444000124931335],
[1511842167.319383, 270, 0.9437000155448914], [1511842167319.383, 270, 0.9437000155448914],
[1511842168.114944, 280, 0.9441999793052673], [1511842168114.944, 280, 0.9441999793052673],
[1511842168.942822, 290, 0.9441999793052673], [1511842168942.822, 290, 0.9441999793052673],
[1511842169.801691, 300, 0.9453999996185303], [1511842169801.691, 300, 0.9453999996185303],
[1511842170.594651, 310, 0.9419000148773193], [1511842170594.651, 310, 0.9419000148773193],
[1511842171.406169, 320, 0.9437000155448914], [1511842171406.169, 320, 0.9437000155448914],
[1511842172.190729, 330, 0.9488999843597412], [1511842172190.729, 330, 0.9488999843597412],
[1511842172.997593, 340, 0.9483000040054321], [1511842172997.593, 340, 0.9483000040054321],
[1511842173.815758, 350, 0.9453999996185303], [1511842173815.758, 350, 0.9453999996185303],
[1511842174.613314, 360, 0.9480000138282776], [1511842174613.314, 360, 0.9480000138282776],
[1511842175.402401, 370, 0.9513999819755554], [1511842175402.401, 370, 0.9513999819755554],
[1511842176.180888, 380, 0.9480999708175659], [1511842176180.888, 380, 0.9480999708175659],
[1511842176.999133, 390, 0.9520000219345093], [1511842176999.133, 390, 0.9520000219345093],
[1511842177.900425, 400, 0.954200029373169], [1511842177900.425, 400, 0.954200029373169],
[1511842178.682129, 410, 0.9490000009536743], [1511842178682.129, 410, 0.9490000009536743],
[1511842179.471428, 420, 0.9534000158309937], [1511842179471.428, 420, 0.9534000158309937],
[1511842180.272808, 430, 0.9549999833106995], [1511842180272.808, 430, 0.9549999833106995],
[1511842181.044304, 440, 0.9545999765396118], [1511842181044.304, 440, 0.9545999765396118],
[1511842181.814283, 450, 0.951200008392334], [1511842181814.283, 450, 0.951200008392334],
[1511842182.576814, 460, 0.9560999870300293], [1511842182576.814, 460, 0.9560999870300293],
[1511842183.319649, 470, 0.9588000178337097], [1511842183319.649, 470, 0.9588000178337097],
[1511842184.080669, 480, 0.9555000066757202], [1511842184080.669, 480, 0.9555000066757202],
[1511842184.877782, 490, 0.955299973487854], [1511842184877.782, 490, 0.955299973487854],
[1511842185.816123, 500, 0.9545000195503235], [1511842185816.123, 500, 0.9545000195503235],
[1511842186.704832, 510, 0.9559999704360962], [1511842186704.832, 510, 0.9559999704360962],
[1511842187.475836, 520, 0.9563999772071838], [1511842187475.836, 520, 0.9563999772071838],
[1511842188.231245, 530, 0.9596999883651733], [1511842188231.245, 530, 0.9596999883651733],
[1511842188.981693, 540, 0.9562000036239624], [1511842188981.693, 540, 0.9562000036239624],
[1511842189.72966, 550, 0.9553999900817871], [1511842189729.66, 550, 0.9553999900817871],
[1511842190.468321, 560, 0.9580000042915344], [1511842190468.321, 560, 0.9580000042915344],
[1511842191.281197, 570, 0.9575999975204468], [1511842191281.197, 570, 0.9575999975204468],
[1511842192.046349, 580, 0.9589999914169312], [1511842192046.349, 580, 0.9589999914169312],
[1511842192.808289, 590, 0.9599999785423279], [1511842192808.289, 590, 0.9599999785423279],
[1511842193.623127, 600, 0.9603999853134155], [1511842193623.127, 600, 0.9603999853134155],
[1511842194.371868, 610, 0.9605000019073486], [1511842194371.868, 610, 0.9605000019073486],
[1511842195.257612, 620, 0.9606000185012817], [1511842195257.612, 620, 0.9606000185012817],
[1511842196.113539, 630, 0.9559999704360962], [1511842196113.539, 630, 0.9559999704360962],
[1511842196.914175, 640, 0.9610000252723694], [1511842196914.175, 640, 0.9610000252723694],
[1511842197.701817, 650, 0.9621999859809875], [1511842197701.817, 650, 0.9621999859809875],
[1511842198.457409, 660, 0.9599000215530396], [1511842198457.409, 660, 0.9599000215530396],
[1511842199.228452, 670, 0.9620000123977661], [1511842199228.452, 670, 0.9620000123977661],
[1511842199.973789, 680, 0.9628000259399414], [1511842199973.789, 680, 0.9628000259399414],
[1511842200.786072, 690, 0.963699996471405], [1511842200786.072, 690, 0.963699996471405],
[1511842201.752806, 700, 0.963100016117096], [1511842201752.806, 700, 0.963100016117096],
[1511842202.55644, 710, 0.9632999897003174], [1511842202556.44, 710, 0.9632999897003174],
[1511842203.355084, 720, 0.964900016784668], [1511842203355.084, 720, 0.964900016784668],
[1511842204.150081, 730, 0.9638000130653381], [1511842204150.081, 730, 0.9638000130653381],
[1511842204.931775, 740, 0.9660000205039978], [1511842204931.775, 740, 0.9660000205039978],
[1511842205.878417, 750, 0.9628000259399414], [1511842205878.417, 750, 0.9628000259399414],
[1511842206.808438, 760, 0.9613000154495239], [1511842206808.438, 760, 0.9613000154495239],
[1511842207.560386, 770, 0.9656000137329102], [1511842207560.386, 770, 0.9656000137329102],
[1511842208.364481, 780, 0.9664000272750854], [1511842208364.481, 780, 0.9664000272750854],
[1511842209.154627, 790, 0.9628000259399414], [1511842209154.627, 790, 0.9628000259399414],
[1511842210.098208, 800, 0.9627000093460083], [1511842210098.208, 800, 0.9627000093460083],
[1511842210.969653, 810, 0.9656999707221985], [1511842210969.653, 810, 0.9656999707221985],
[1511842211.929992, 820, 0.9657999873161316], [1511842211929.992, 820, 0.9657999873161316],
[1511842212.882522, 830, 0.9656000137329102], [1511842212882.522, 830, 0.9656000137329102],
[1511842213.690861, 840, 0.9682000279426575], [1511842213690.861, 840, 0.9682000279426575],
[1511842214.508996, 850, 0.9678999781608582], [1511842214508.996, 850, 0.9678999781608582],
[1511842215.295672, 860, 0.968999981880188], [1511842215295.672, 860, 0.968999981880188],
[1511842216.096151, 870, 0.9682999849319458], [1511842216096.151, 870, 0.9682999849319458],
[1511842216.910752, 880, 0.9661999940872192], [1511842216910.752, 880, 0.9661999940872192],
[1511842217.718586, 890, 0.9648000001907349], [1511842217718.586, 890, 0.9648000001907349],
[1511842218.653347, 900, 0.9678000211715698], [1511842218653.347, 900, 0.9678000211715698],
[1511842219.421863, 910, 0.96670001745224], [1511842219421.863, 910, 0.96670001745224],
[1511842220.34967, 920, 0.9674000144004822], [1511842220349.67, 920, 0.9674000144004822],
[1511842221.234565, 930, 0.9684000015258789], [1511842221234.565, 930, 0.9684000015258789],
[1511842222.075741, 940, 0.9682000279426575], [1511842222075.741, 940, 0.9682000279426575],
[1511842222.854794, 950, 0.9663000106811523], [1511842222854.794, 950, 0.9663000106811523],
[1511842223.658847, 960, 0.9681000113487244], [1511842223658.847, 960, 0.9681000113487244],
[1511842224.500655, 970, 0.9692999720573425], [1511842224500.655, 970, 0.9692999720573425],
[1511842225.308939, 980, 0.9692000150680542], [1511842225308.939, 980, 0.9692000150680542],
[1511842226.065685, 990, 0.9692000150680542] [1511842226065.685, 990, 0.9692000150680542]
]; ];
}; };
...@@ -47,7 +47,7 @@ pub fn transform(datasets: &Vec<Vec<Dataset>>, smoothing: f64) -> Vec<Vec<Smooth ...@@ -47,7 +47,7 @@ pub fn transform(datasets: &Vec<Vec<Dataset>>, smoothing: f64) -> Vec<Vec<Smooth
let mut r: Smoothed = Smoothed(0, d.1, d.2, 0.0, 0.0); let mut r: Smoothed = Smoothed(0, d.1, d.2, 0.0, 0.0);
let next_val: f64 = d.2; let next_val: f64 = d.2;
// second to millisecond. // second to millisecond.
let millisecond: i64 = ((d.0 as f64) * 1000_f64).floor() as i64; let millisecond: i64 = d.0.floor() as i64;
r.0 = millisecond; r.0 = millisecond;
if i == 0 { if i == 0 {
start_value = millisecond; start_value = millisecond;
......
...@@ -2,13 +2,13 @@ ...@@ -2,13 +2,13 @@
# yarn lockfile v1 # yarn lockfile v1
"@ampproject/toolbox-core@^2.4.0-alpha.1", "@ampproject/toolbox-core@^2.5.4": "@ampproject/toolbox-core@^2.4.0-alpha.1", "@ampproject/toolbox-core@^2.6.0":
version "2.5.4" version "2.6.0"
resolved "https://registry.yarnpkg.com/@ampproject/toolbox-core/-/toolbox-core-2.5.4.tgz#8554c5398b6d65d240085a6b0abb94f9a3276dce" resolved "https://registry.yarnpkg.com/@ampproject/toolbox-core/-/toolbox-core-2.6.0.tgz#9824d5f133d82106a9bf0774920843c69fa5c869"
integrity sha512-KjHyR0XpQyloTu59IaatU2NCGT5zOhWJtVXQ4Uj/NUaRriN6LlJlzHBxtXmPIb0YHETdD63ITtDvqZizZPYFag== integrity sha512-sDMnHj8WaX3tqJS5VsIHkeW98nq5WQ0C9RoFc1PPS3rmYIlS0vhAfHbrjJw6wtuxBTQFxccje+Ew+2OJ2D15kA==
dependencies: dependencies:
cross-fetch "3.0.5" cross-fetch "3.0.5"
lru-cache "5.1.1" lru-cache "6.0.0"
"@ampproject/toolbox-optimizer@2.4.0": "@ampproject/toolbox-optimizer@2.4.0":
version "2.4.0" version "2.4.0"
...@@ -29,11 +29,11 @@ ...@@ -29,11 +29,11 @@
terser "4.6.13" terser "4.6.13"
"@ampproject/toolbox-runtime-version@^2.4.0-alpha.1": "@ampproject/toolbox-runtime-version@^2.4.0-alpha.1":
version "2.5.4" version "2.6.0"
resolved "https://registry.yarnpkg.com/@ampproject/toolbox-runtime-version/-/toolbox-runtime-version-2.5.4.tgz#ed6e77df3832f551337bca3706b5a4e2f36d66f9" resolved "https://registry.yarnpkg.com/@ampproject/toolbox-runtime-version/-/toolbox-runtime-version-2.6.0.tgz#c2a310840a6c60a7f5046d2ccaf45646a761bd4f"
integrity sha512-7vi/F91Zb+h1CwR8/on/JxZhp3Hhz6xJOOHxRA025aUFEFHV5c35B4QbTdt2MObWZrysogXFOT8M95dgU/hsKw== integrity sha512-wT+Ehsoq2PRXqpgjebygHD01BpSlaAE4HfDEVxgPVT8oAsLzE4ywZgzI2VQZfaCdb8qLyO5+WXrLSoJXxDBo2Q==
dependencies: dependencies:
"@ampproject/toolbox-core" "^2.5.4" "@ampproject/toolbox-core" "^2.6.0"
"@ampproject/toolbox-script-csp@^2.3.0": "@ampproject/toolbox-script-csp@^2.3.0":
version "2.5.4" version "2.5.4"
...@@ -62,9 +62,9 @@ ...@@ -62,9 +62,9 @@
"@babel/highlight" "^7.10.4" "@babel/highlight" "^7.10.4"
"@babel/compat-data@^7.10.4", "@babel/compat-data@^7.9.6": "@babel/compat-data@^7.10.4", "@babel/compat-data@^7.9.6":
version "7.10.5" version "7.11.0"
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.10.5.tgz#d38425e67ea96b1480a3f50404d1bf85676301a6" resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.11.0.tgz#e9f73efe09af1355b723a7f39b11bad637d7c99c"
integrity sha512-mPVoWNzIpYJHbWje0if7Ck36bpbtTvIxOi9+6WSK9wjGEXearAqlwBoTQvVjsAY2VIwgcs8V940geY3okzRCEw== integrity sha512-TPSvJfv73ng0pfnEOh17bYMPQbI95+nGWc71Ss4vZdRBHTDqmM9Z8ZV4rYz8Ks7sfzc95n30k6ODIq5UGnXcYQ==
dependencies: dependencies:
browserslist "^4.12.0" browserslist "^4.12.0"
invariant "^2.2.4" invariant "^2.2.4"
...@@ -113,18 +113,18 @@ ...@@ -113,18 +113,18 @@
source-map "^0.5.0" source-map "^0.5.0"
"@babel/core@^7.1.0", "@babel/core@^7.7.5": "@babel/core@^7.1.0", "@babel/core@^7.7.5":
version "7.10.5" version "7.11.5"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.10.5.tgz#1f15e2cca8ad9a1d78a38ddba612f5e7cdbbd330" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.5.tgz#6ad96e2f71899ea3f9b651f0a911e85205d1ff6d"
integrity sha512-O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w== integrity sha512-fsEANVOcZHzrsV6dMVWqpSeXClq3lNbYrfFGme6DE25FQWe7pyeYpXyx9guqUnpy466JLzZ8z4uwSr2iv60V5Q==
dependencies: dependencies:
"@babel/code-frame" "^7.10.4" "@babel/code-frame" "^7.10.4"
"@babel/generator" "^7.10.5" "@babel/generator" "^7.11.5"
"@babel/helper-module-transforms" "^7.10.5" "@babel/helper-module-transforms" "^7.11.0"
"@babel/helpers" "^7.10.4" "@babel/helpers" "^7.10.4"
"@babel/parser" "^7.10.5" "@babel/parser" "^7.11.5"
"@babel/template" "^7.10.4" "@babel/template" "^7.10.4"
"@babel/traverse" "^7.10.5" "@babel/traverse" "^7.11.5"
"@babel/types" "^7.10.5" "@babel/types" "^7.11.5"
convert-source-map "^1.7.0" convert-source-map "^1.7.0"
debug "^4.1.0" debug "^4.1.0"
gensync "^1.0.0-beta.1" gensync "^1.0.0-beta.1"
...@@ -132,25 +132,16 @@ ...@@ -132,25 +132,16 @@
lodash "^4.17.19" lodash "^4.17.19"
resolve "^1.3.2" resolve "^1.3.2"
semver "^5.4.1" semver "^5.4.1"
source-map "^0.5.0" source-map "^0.6.1"
"@babel/generator@^7.10.5", "@babel/generator@^7.7.7":
version "7.10.5"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.5.tgz#1b903554bc8c583ee8d25f1e8969732e6b829a69"
integrity sha512-3vXxr3FEW7E7lJZiWQ3bM4+v/Vyr9C+hpolQ8BGFr9Y8Ri2tFLWTixmwKBafDujO1WVah4fhZBeU1bieKdghig==
dependencies:
"@babel/types" "^7.10.5"
jsesc "^2.5.1"
source-map "^0.5.0"
"@babel/generator@^7.11.0": "@babel/generator@^7.11.0", "@babel/generator@^7.11.5", "@babel/generator@^7.7.7":
version "7.11.0" version "7.11.5"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.0.tgz#4b90c78d8c12825024568cbe83ee6c9af193585c" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.5.tgz#a5582773425a468e4ba269d9a1f701fbca6a7a82"
integrity sha512-fEm3Uzw7Mc9Xi//qU20cBKatTfs2aOtKqmvy/Vm7RkJEGFQ4xc9myCfbXxqK//ZS8MR/ciOHw6meGASJuKmDfQ== integrity sha512-9UqHWJ4IwRTy4l0o8gq2ef8ws8UPzvtMkVKjTLAiRmza9p9V6Z+OfuNd9fB1j5Q67F+dVJtPC2sZXI8NM9br4g==
dependencies: dependencies:
"@babel/types" "^7.11.0" "@babel/types" "^7.11.5"
jsesc "^2.5.1" jsesc "^2.5.1"
source-map "^0.5.0" source-map "^0.6.1"
"@babel/helper-annotate-as-pure@^7.0.0", "@babel/helper-annotate-as-pure@^7.10.4": "@babel/helper-annotate-as-pure@^7.0.0", "@babel/helper-annotate-as-pure@^7.10.4":
version "7.10.4" version "7.10.4"
...@@ -167,14 +158,14 @@ ...@@ -167,14 +158,14 @@
"@babel/helper-explode-assignable-expression" "^7.10.4" "@babel/helper-explode-assignable-expression" "^7.10.4"
"@babel/types" "^7.10.4" "@babel/types" "^7.10.4"
"@babel/helper-builder-react-jsx-experimental@^7.10.4": "@babel/helper-builder-react-jsx-experimental@^7.10.4", "@babel/helper-builder-react-jsx-experimental@^7.11.5":
version "7.10.5" version "7.11.5"
resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.10.5.tgz#f35e956a19955ff08c1258e44a515a6d6248646b" resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.11.5.tgz#4ea43dd63857b0a35cd1f1b161dc29b43414e79f"
integrity sha512-Buewnx6M4ttG+NLkKyt7baQn7ScC/Td+e99G914fRU8fGIUivDDgVIQeDHFa5e4CRSJQt58WpNHhsAZgtzVhsg== integrity sha512-Vc4aPJnRZKWfzeCBsqTBnzulVNjABVdahSPhtdMD3Vs80ykx4a87jTHtF/VR+alSrDmNvat7l13yrRHauGcHVw==
dependencies: dependencies:
"@babel/helper-annotate-as-pure" "^7.10.4" "@babel/helper-annotate-as-pure" "^7.10.4"
"@babel/helper-module-imports" "^7.10.4" "@babel/helper-module-imports" "^7.10.4"
"@babel/types" "^7.10.5" "@babel/types" "^7.11.5"
"@babel/helper-builder-react-jsx@^7.10.4": "@babel/helper-builder-react-jsx@^7.10.4":
version "7.10.4" version "7.10.4"
...@@ -226,11 +217,10 @@ ...@@ -226,11 +217,10 @@
lodash "^4.17.19" lodash "^4.17.19"
"@babel/helper-explode-assignable-expression@^7.10.4": "@babel/helper-explode-assignable-expression@^7.10.4":
version "7.10.4" version "7.11.4"
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.4.tgz#40a1cd917bff1288f699a94a75b37a1a2dbd8c7c" resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.11.4.tgz#2d8e3470252cc17aba917ede7803d4a7a276a41b"
integrity sha512-4K71RyRQNPRrR85sr5QY4X3VwG4wtVoXZB9+L3r1Gp38DhELyHCtovqydRi7c1Ovb17eRGiQ/FD5s8JdU0Uy5A== integrity sha512-ux9hm3zR4WV1Y3xXxXkdG/0gxF9nvI0YVmKVhvK9AfMoaQkemL3sJpXw+Xbz65azo8qJiEz2XVDUpK3KYhH3ZQ==
dependencies: dependencies:
"@babel/traverse" "^7.10.4"
"@babel/types" "^7.10.4" "@babel/types" "^7.10.4"
"@babel/helper-function-name@^7.10.4": "@babel/helper-function-name@^7.10.4":
...@@ -257,11 +247,11 @@ ...@@ -257,11 +247,11 @@
"@babel/types" "^7.10.4" "@babel/types" "^7.10.4"
"@babel/helper-member-expression-to-functions@^7.10.4", "@babel/helper-member-expression-to-functions@^7.10.5": "@babel/helper-member-expression-to-functions@^7.10.4", "@babel/helper-member-expression-to-functions@^7.10.5":
version "7.10.5" version "7.11.0"
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.5.tgz#172f56e7a63e78112f3a04055f24365af702e7ee" resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz#ae69c83d84ee82f4b42f96e2a09410935a8f26df"
integrity sha512-HiqJpYD5+WopCXIAbQDG0zye5XYVvcO9w/DHp5GsaGkRUaamLj2bEtu6i8rnGGprAhHM3qidCMgp71HF4endhA== integrity sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q==
dependencies: dependencies:
"@babel/types" "^7.10.5" "@babel/types" "^7.11.0"
"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.8.3": "@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.8.3":
version "7.10.4" version "7.10.4"
...@@ -270,20 +260,7 @@ ...@@ -270,20 +260,7 @@
dependencies: dependencies:
"@babel/types" "^7.10.4" "@babel/types" "^7.10.4"
"@babel/helper-module-transforms@^7.10.4", "@babel/helper-module-transforms@^7.10.5", "@babel/helper-module-transforms@^7.9.0": "@babel/helper-module-transforms@^7.10.4", "@babel/helper-module-transforms@^7.10.5", "@babel/helper-module-transforms@^7.11.0", "@babel/helper-module-transforms@^7.9.0":
version "7.10.5"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.10.5.tgz#120c271c0b3353673fcdfd8c053db3c544a260d6"
integrity sha512-4P+CWMJ6/j1W915ITJaUkadLObmCRRSC234uctJfn/vHrsLNxsR8dwlcXv9ZhJWzl77awf+mWXSZEKt5t0OnlA==
dependencies:
"@babel/helper-module-imports" "^7.10.4"
"@babel/helper-replace-supers" "^7.10.4"
"@babel/helper-simple-access" "^7.10.4"
"@babel/helper-split-export-declaration" "^7.10.4"
"@babel/template" "^7.10.4"
"@babel/types" "^7.10.5"
lodash "^4.17.19"
"@babel/helper-module-transforms@^7.11.0":
version "7.11.0" version "7.11.0"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz#b16f250229e47211abdd84b34b64737c2ab2d359" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz#b16f250229e47211abdd84b34b64737c2ab2d359"
integrity sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg== integrity sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg==
...@@ -316,14 +293,13 @@ ...@@ -316,14 +293,13 @@
lodash "^4.17.19" lodash "^4.17.19"
"@babel/helper-remap-async-to-generator@^7.10.4": "@babel/helper-remap-async-to-generator@^7.10.4":
version "7.10.4" version "7.11.4"
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.4.tgz#fce8bea4e9690bbe923056ded21e54b4e8b68ed5" resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.11.4.tgz#4474ea9f7438f18575e30b0cac784045b402a12d"
integrity sha512-86Lsr6NNw3qTNl+TBcF1oRZMaVzJtbWTyTko+CQL/tvNvcGYEFKbLXDPxtW0HKk3McNOk4KzY55itGWCAGK5tg== integrity sha512-tR5vJ/vBa9wFy3m5LLv2faapJLnDFxNWff2SAYkSE4rLUdbp7CdObYFgI7wK4T/Mj4UzpjPwzR8Pzmr5m7MHGA==
dependencies: dependencies:
"@babel/helper-annotate-as-pure" "^7.10.4" "@babel/helper-annotate-as-pure" "^7.10.4"
"@babel/helper-wrap-function" "^7.10.4" "@babel/helper-wrap-function" "^7.10.4"
"@babel/template" "^7.10.4" "@babel/template" "^7.10.4"
"@babel/traverse" "^7.10.4"
"@babel/types" "^7.10.4" "@babel/types" "^7.10.4"
"@babel/helper-replace-supers@^7.10.4": "@babel/helper-replace-supers@^7.10.4":
...@@ -344,14 +320,14 @@ ...@@ -344,14 +320,14 @@
"@babel/template" "^7.10.4" "@babel/template" "^7.10.4"
"@babel/types" "^7.10.4" "@babel/types" "^7.10.4"
"@babel/helper-split-export-declaration@^7.10.4": "@babel/helper-skip-transparent-expression-wrappers@^7.11.0":
version "7.10.4" version "7.11.0"
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.4.tgz#2c70576eaa3b5609b24cb99db2888cc3fc4251d1" resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz#eec162f112c2f58d3af0af125e3bb57665146729"
integrity sha512-pySBTeoUff56fL5CBU2hWm9TesA4r/rOkI9DyJLvvgz09MB9YtfIYe3iBriVaYNaPe+Alua0vBIOVOLs2buWhg== integrity sha512-0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q==
dependencies: dependencies:
"@babel/types" "^7.10.4" "@babel/types" "^7.11.0"
"@babel/helper-split-export-declaration@^7.11.0": "@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0":
version "7.11.0" version "7.11.0"
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f"
integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==
...@@ -391,15 +367,10 @@ ...@@ -391,15 +367,10 @@
chalk "^2.0.0" chalk "^2.0.0"
js-tokens "^4.0.0" js-tokens "^4.0.0"
"@babel/parser@^7.1.0", "@babel/parser@^7.10.4", "@babel/parser@^7.10.5", "@babel/parser@^7.7.7": "@babel/parser@^7.1.0", "@babel/parser@^7.10.4", "@babel/parser@^7.11.1", "@babel/parser@^7.11.5", "@babel/parser@^7.7.7":
version "7.10.5" version "7.11.5"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.5.tgz#e7c6bf5a7deff957cec9f04b551e2762909d826b" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.5.tgz#c7ff6303df71080ec7a4f5b8c003c58f1cf51037"
integrity sha512-wfryxy4bE1UivvQKSQDU4/X6dr+i8bctjUjj8Zyt3DQy7NtPizJXT8M52nqpNKL+nq2PW8lxk4ZqLj0fD4B4hQ== integrity sha512-X9rD8qqm695vgmeaQ4fvz/o3+Wk4ZzQvSHkDBgpYKxpD4qTAUm88ZKtHkVqIOsYFFbIQ6wQYhC6q7pjqVK0E0Q==
"@babel/parser@^7.11.0", "@babel/parser@^7.11.1":
version "7.11.2"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.2.tgz#0882ab8a455df3065ea2dcb4c753b2460a24bead"
integrity sha512-Vuj/+7vLo6l1Vi7uuO+1ngCDNeVmNbTngcJFKCR/oEtz8tKz0CJxZEGmPt9KcIloZhOZ3Zit6xbpXT2MDlS9Vw==
"@babel/plugin-proposal-async-generator-functions@^7.8.3": "@babel/plugin-proposal-async-generator-functions@^7.8.3":
version "7.10.5" version "7.10.5"
...@@ -476,9 +447,9 @@ ...@@ -476,9 +447,9 @@
"@babel/plugin-transform-parameters" "^7.9.5" "@babel/plugin-transform-parameters" "^7.9.5"
"@babel/plugin-proposal-object-rest-spread@^7.9.6": "@babel/plugin-proposal-object-rest-spread@^7.9.6":
version "7.10.4" version "7.11.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.10.4.tgz#50129ac216b9a6a55b3853fdd923e74bf553a4c0" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz#bd81f95a1f746760ea43b6c2d3d62b11790ad0af"
integrity sha512-6vh4SqRuLLarjgeOf4EaROJAHjvu9Gl+/346PbDH9yWbJyfnJ/ah3jmYKYtswEyCoWZiidvVHjHshd4WgjB9BA== integrity sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA==
dependencies: dependencies:
"@babel/helper-plugin-utils" "^7.10.4" "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-object-rest-spread" "^7.8.0" "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
...@@ -501,11 +472,12 @@ ...@@ -501,11 +472,12 @@
"@babel/plugin-syntax-optional-chaining" "^7.8.0" "@babel/plugin-syntax-optional-chaining" "^7.8.0"
"@babel/plugin-proposal-optional-chaining@^7.9.0": "@babel/plugin-proposal-optional-chaining@^7.9.0":
version "7.10.4" version "7.11.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.10.4.tgz#750f1255e930a1f82d8cdde45031f81a0d0adff7" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz#de5866d0646f6afdaab8a566382fe3a221755076"
integrity sha512-ZIhQIEeavTgouyMSdZRap4VPPHqJJ3NEs2cuHs5p0erH+iz6khB0qfgU8g7UuJkG88+fBMy23ZiU+nuHvekJeQ== integrity sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA==
dependencies: dependencies:
"@babel/helper-plugin-utils" "^7.10.4" "@babel/helper-plugin-utils" "^7.10.4"
"@babel/helper-skip-transparent-expression-wrappers" "^7.11.0"
"@babel/plugin-syntax-optional-chaining" "^7.8.0" "@babel/plugin-syntax-optional-chaining" "^7.8.0"
"@babel/plugin-proposal-unicode-property-regex@^7.4.4", "@babel/plugin-proposal-unicode-property-regex@^7.8.3": "@babel/plugin-proposal-unicode-property-regex@^7.4.4", "@babel/plugin-proposal-unicode-property-regex@^7.8.3":
...@@ -645,9 +617,9 @@ ...@@ -645,9 +617,9 @@
"@babel/helper-plugin-utils" "^7.10.4" "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-block-scoping@^7.8.3": "@babel/plugin-transform-block-scoping@^7.8.3":
version "7.10.5" version "7.11.1"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.5.tgz#b81b8aafefbfe68f0f65f7ef397b9ece68a6037d" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz#5b7efe98852bef8d652c0b28144cd93a9e4b5215"
integrity sha512-6Ycw3hjpQti0qssQcA6AMSFDHeNJ++R6dIMnpRqUjFeBBTmTDPa8zgF90OVfTvAo11mXZTlVUViY1g8ffrURLg== integrity sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew==
dependencies: dependencies:
"@babel/helper-plugin-utils" "^7.10.4" "@babel/helper-plugin-utils" "^7.10.4"
...@@ -823,11 +795,11 @@ ...@@ -823,11 +795,11 @@
"@babel/helper-plugin-utils" "^7.10.4" "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-react-jsx-development@^7.9.0": "@babel/plugin-transform-react-jsx-development@^7.9.0":
version "7.10.4" version "7.11.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.10.4.tgz#6ec90f244394604623880e15ebc3c34c356258ba" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.11.5.tgz#e1439e6a57ee3d43e9f54ace363fb29cefe5d7b6"
integrity sha512-RM3ZAd1sU1iQ7rI2dhrZRZGv0aqzNQMbkIUCS1txYpi9wHQ2ZHNjo5TwX+UD6pvFW4AbWqLVYvKy5qJSAyRGjQ== integrity sha512-cImAmIlKJ84sDmpQzm4/0q/2xrXlDezQoixy3qoz1NJeZL/8PRon6xZtluvr4H4FzwlDGI5tCcFupMnXGtr+qw==
dependencies: dependencies:
"@babel/helper-builder-react-jsx-experimental" "^7.10.4" "@babel/helper-builder-react-jsx-experimental" "^7.11.5"
"@babel/helper-plugin-utils" "^7.10.4" "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-jsx" "^7.10.4" "@babel/plugin-syntax-jsx" "^7.10.4"
...@@ -889,11 +861,12 @@ ...@@ -889,11 +861,12 @@
"@babel/helper-plugin-utils" "^7.10.4" "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-spread@^7.8.3": "@babel/plugin-transform-spread@^7.8.3":
version "7.10.4" version "7.11.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.10.4.tgz#4e2c85ea0d6abaee1b24dcfbbae426fe8d674cff" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz#fa84d300f5e4f57752fe41a6d1b3c554f13f17cc"
integrity sha512-1e/51G/Ni+7uH5gktbWv+eCED9pP8ZpRhZB3jOaI3mmzfvJTWHkuyYTv0Z5PYtyM+Tr2Ccr9kUdQxn60fI5WuQ== integrity sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw==
dependencies: dependencies:
"@babel/helper-plugin-utils" "^7.10.4" "@babel/helper-plugin-utils" "^7.10.4"
"@babel/helper-skip-transparent-expression-wrappers" "^7.11.0"
"@babel/plugin-transform-sticky-regex@^7.8.3": "@babel/plugin-transform-sticky-regex@^7.8.3":
version "7.10.4" version "7.10.4"
...@@ -919,9 +892,9 @@ ...@@ -919,9 +892,9 @@
"@babel/helper-plugin-utils" "^7.10.4" "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-transform-typescript@^7.9.0": "@babel/plugin-transform-typescript@^7.9.0":
version "7.10.5" version "7.11.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.10.5.tgz#edf353944e979f40d8ff9fe4e9975d0a465037c5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.11.0.tgz#2b4879676af37342ebb278216dd090ac67f13abb"
integrity sha512-YCyYsFrrRMZ3qR7wRwtSSJovPG5vGyG4ZdcSAivGwTfoasMp3VOB/AKhohu3dFtmB4cCDcsndCSxGtrdliCsZQ== integrity sha512-edJsNzTtvb3MaXQwj8403B7mZoGu9ElDJQZOKjGUnvilquxBA3IQoEIOvkX/1O8xfAsnHS/oQhe2w/IXrr+w0w==
dependencies: dependencies:
"@babel/helper-create-class-features-plugin" "^7.10.5" "@babel/helper-create-class-features-plugin" "^7.10.5"
"@babel/helper-plugin-utils" "^7.10.4" "@babel/helper-plugin-utils" "^7.10.4"
...@@ -1001,7 +974,7 @@ ...@@ -1001,7 +974,7 @@
levenary "^1.1.1" levenary "^1.1.1"
semver "^5.5.0" semver "^5.5.0"
"@babel/preset-modules@0.1.3", "@babel/preset-modules@^0.1.3": "@babel/preset-modules@0.1.3":
version "0.1.3" version "0.1.3"
resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72" resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72"
integrity sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg== integrity sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg==
...@@ -1012,6 +985,17 @@ ...@@ -1012,6 +985,17 @@
"@babel/types" "^7.4.4" "@babel/types" "^7.4.4"
esutils "^2.0.2" esutils "^2.0.2"
"@babel/preset-modules@^0.1.3":
version "0.1.4"
resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e"
integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
"@babel/plugin-transform-dotall-regex" "^7.4.4"
"@babel/types" "^7.4.4"
esutils "^2.0.2"
"@babel/preset-react@7.9.4": "@babel/preset-react@7.9.4":
version "7.9.4" version "7.9.4"
resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.9.4.tgz#c6c97693ac65b6b9c0b4f25b948a8f665463014d" resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.9.4.tgz#c6c97693ac65b6b9c0b4f25b948a8f665463014d"
...@@ -1040,9 +1024,9 @@ ...@@ -1040,9 +1024,9 @@
regenerator-runtime "^0.13.4" regenerator-runtime "^0.13.4"
"@babel/runtime@^7.10.1", "@babel/runtime@^7.3.1", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": "@babel/runtime@^7.10.1", "@babel/runtime@^7.3.1", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2":
version "7.10.5" version "7.11.2"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.5.tgz#303d8bd440ecd5a491eae6117fd3367698674c5c" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.11.2.tgz#f549c13c754cc40b87644b9fa9f09a6a95fe0736"
integrity sha512-otddXKhdNn7d0ptoFRHtMLa8LqDxLYwTjB4nYgM1yy5N6gU/MUf8zqyyLltCH3yAVitBzmwK4us+DD0l/MauAg== integrity sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw==
dependencies: dependencies:
regenerator-runtime "^0.13.4" regenerator-runtime "^0.13.4"
...@@ -1055,32 +1039,17 @@ ...@@ -1055,32 +1039,17 @@
"@babel/parser" "^7.10.4" "@babel/parser" "^7.10.4"
"@babel/types" "^7.10.4" "@babel/types" "^7.10.4"
"@babel/traverse@^7.1.0", "@babel/traverse@^7.10.4", "@babel/traverse@^7.10.5", "@babel/traverse@^7.4.5", "@babel/traverse@^7.7.4": "@babel/traverse@^7.1.0", "@babel/traverse@^7.10.4", "@babel/traverse@^7.11.0", "@babel/traverse@^7.11.5", "@babel/traverse@^7.4.5", "@babel/traverse@^7.7.4":
version "7.10.5" version "7.11.5"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.5.tgz#77ce464f5b258be265af618d8fddf0536f20b564" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.5.tgz#be777b93b518eb6d76ee2e1ea1d143daa11e61c3"
integrity sha512-yc/fyv2gUjPqzTz0WHeRJH2pv7jA9kA7mBX2tXl/x5iOE81uaVPuGPtaYk7wmkx4b67mQ7NqI8rmT2pF47KYKQ== integrity sha512-EjiPXt+r7LiCZXEfRpSJd+jUMnBd4/9OUv7Nx3+0u9+eimMwJmG0Q98lw4/289JCoxSE8OolDMNZaaF/JZ69WQ==
dependencies: dependencies:
"@babel/code-frame" "^7.10.4" "@babel/code-frame" "^7.10.4"
"@babel/generator" "^7.10.5" "@babel/generator" "^7.11.5"
"@babel/helper-function-name" "^7.10.4"
"@babel/helper-split-export-declaration" "^7.10.4"
"@babel/parser" "^7.10.5"
"@babel/types" "^7.10.5"
debug "^4.1.0"
globals "^11.1.0"
lodash "^4.17.19"
"@babel/traverse@^7.11.0":
version "7.11.0"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.0.tgz#9b996ce1b98f53f7c3e4175115605d56ed07dd24"
integrity sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg==
dependencies:
"@babel/code-frame" "^7.10.4"
"@babel/generator" "^7.11.0"
"@babel/helper-function-name" "^7.10.4" "@babel/helper-function-name" "^7.10.4"
"@babel/helper-split-export-declaration" "^7.11.0" "@babel/helper-split-export-declaration" "^7.11.0"
"@babel/parser" "^7.11.0" "@babel/parser" "^7.11.5"
"@babel/types" "^7.11.0" "@babel/types" "^7.11.5"
debug "^4.1.0" debug "^4.1.0"
globals "^11.1.0" globals "^11.1.0"
lodash "^4.17.19" lodash "^4.17.19"
...@@ -1103,19 +1072,10 @@ ...@@ -1103,19 +1072,10 @@
lodash "^4.17.13" lodash "^4.17.13"
to-fast-properties "^2.0.0" to-fast-properties "^2.0.0"
"@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.4", "@babel/types@^7.9.6": "@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.11.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.4", "@babel/types@^7.9.6":
version "7.10.5" version "7.11.5"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.5.tgz#d88ae7e2fde86bfbfe851d4d81afa70a997b5d15" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.5.tgz#d9de577d01252d77c6800cee039ee64faf75662d"
integrity sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q== integrity sha512-bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q==
dependencies:
"@babel/helper-validator-identifier" "^7.10.4"
lodash "^4.17.19"
to-fast-properties "^2.0.0"
"@babel/types@^7.11.0":
version "7.11.0"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.0.tgz#2ae6bf1ba9ae8c3c43824e5861269871b206e90d"
integrity sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==
dependencies: dependencies:
"@babel/helper-validator-identifier" "^7.10.4" "@babel/helper-validator-identifier" "^7.10.4"
lodash "^4.17.19" lodash "^4.17.19"
...@@ -1145,9 +1105,9 @@ ...@@ -1145,9 +1105,9 @@
"@emotion/weak-memoize" "0.2.5" "@emotion/weak-memoize" "0.2.5"
"@emotion/core@^10.0.15": "@emotion/core@^10.0.15":
version "10.0.28" version "10.0.35"
resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.0.28.tgz#bb65af7262a234593a9e952c041d0f1c9b9bef3d" resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.0.35.tgz#513fcf2e22cd4dfe9d3894ed138c9d7a859af9b3"
integrity sha512-pH8UueKYO5jgg0Iq+AmCLxBsvuGtvlmiDCOuv8fGNYn3cowFpLN98L8zO56U0H1PjDIyAlXymgL3Wu7u7v6hbA== integrity sha512-sH++vJCdk025fBlRZSAhkRlSUoqSqgCzYf5fMOmqqi3bM6how+sQpg3hkgJonj8GxXM4WbD7dRO+4tegDB9fUw==
dependencies: dependencies:
"@babel/runtime" "^7.5.5" "@babel/runtime" "^7.5.5"
"@emotion/cache" "^10.0.27" "@emotion/cache" "^10.0.27"
...@@ -1308,93 +1268,93 @@ ...@@ -1308,93 +1268,93 @@
resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.2.tgz#26520bf09abe4a5644cd5414e37125a8954241dd" resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.2.tgz#26520bf09abe4a5644cd5414e37125a8954241dd"
integrity sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw== integrity sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==
"@jest/console@^26.2.0": "@jest/console@^26.3.0":
version "26.2.0" version "26.3.0"
resolved "https://registry.yarnpkg.com/@jest/console/-/console-26.2.0.tgz#d18f2659b90930e7ec3925fb7209f1ba2cf463f0" resolved "https://registry.yarnpkg.com/@jest/console/-/console-26.3.0.tgz#ed04063efb280c88ba87388b6f16427c0a85c856"
integrity sha512-mXQfx3nSLwiHm1i7jbu+uvi+vvpVjNGzIQYLCfsat9rapC+MJkS4zBseNrgJE0vU921b3P67bQzhduphjY3Tig== integrity sha512-/5Pn6sJev0nPUcAdpJHMVIsA8sKizL2ZkcKPE5+dJrCccks7tcM7c9wbgHudBJbxXLoTbqsHkG1Dofoem4F09w==
dependencies: dependencies:
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
"@types/node" "*" "@types/node" "*"
chalk "^4.0.0" chalk "^4.0.0"
jest-message-util "^26.2.0" jest-message-util "^26.3.0"
jest-util "^26.2.0" jest-util "^26.3.0"
slash "^3.0.0" slash "^3.0.0"
"@jest/core@^26.2.2": "@jest/core@^26.2.2", "@jest/core@^26.4.2":
version "26.2.2" version "26.4.2"
resolved "https://registry.yarnpkg.com/@jest/core/-/core-26.2.2.tgz#63de01ffce967618003dd7a0164b05c8041b81a9" resolved "https://registry.yarnpkg.com/@jest/core/-/core-26.4.2.tgz#85d0894f31ac29b5bab07aa86806d03dd3d33edc"
integrity sha512-UwA8gNI8aeV4FHGfGAUfO/DHjrFVvlBravF1Tm9Kt6qFE+6YHR47kFhgdepOFpADEKstyO+MVdPvkV6/dyt9sA== integrity sha512-sDva7YkeNprxJfepOctzS8cAk9TOekldh+5FhVuXS40+94SHbiicRO1VV2tSoRtgIo+POs/Cdyf8p76vPTd6dg==
dependencies: dependencies:
"@jest/console" "^26.2.0" "@jest/console" "^26.3.0"
"@jest/reporters" "^26.2.2" "@jest/reporters" "^26.4.1"
"@jest/test-result" "^26.2.0" "@jest/test-result" "^26.3.0"
"@jest/transform" "^26.2.2" "@jest/transform" "^26.3.0"
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
"@types/node" "*" "@types/node" "*"
ansi-escapes "^4.2.1" ansi-escapes "^4.2.1"
chalk "^4.0.0" chalk "^4.0.0"
exit "^0.1.2" exit "^0.1.2"
graceful-fs "^4.2.4" graceful-fs "^4.2.4"
jest-changed-files "^26.2.0" jest-changed-files "^26.3.0"
jest-config "^26.2.2" jest-config "^26.4.2"
jest-haste-map "^26.2.2" jest-haste-map "^26.3.0"
jest-message-util "^26.2.0" jest-message-util "^26.3.0"
jest-regex-util "^26.0.0" jest-regex-util "^26.0.0"
jest-resolve "^26.2.2" jest-resolve "^26.4.0"
jest-resolve-dependencies "^26.2.2" jest-resolve-dependencies "^26.4.2"
jest-runner "^26.2.2" jest-runner "^26.4.2"
jest-runtime "^26.2.2" jest-runtime "^26.4.2"
jest-snapshot "^26.2.2" jest-snapshot "^26.4.2"
jest-util "^26.2.0" jest-util "^26.3.0"
jest-validate "^26.2.0" jest-validate "^26.4.2"
jest-watcher "^26.2.0" jest-watcher "^26.3.0"
micromatch "^4.0.2" micromatch "^4.0.2"
p-each-series "^2.1.0" p-each-series "^2.1.0"
rimraf "^3.0.0" rimraf "^3.0.0"
slash "^3.0.0" slash "^3.0.0"
strip-ansi "^6.0.0" strip-ansi "^6.0.0"
"@jest/environment@^26.2.0": "@jest/environment@^26.3.0":
version "26.2.0" version "26.3.0"
resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-26.2.0.tgz#f6faee1630fcc2fad208953164bccb31dbe0e45f" resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-26.3.0.tgz#e6953ab711ae3e44754a025f838bde1a7fd236a0"
integrity sha512-oCgp9NmEiJ5rbq9VI/v/yYLDpladAAVvFxZgNsnJxOETuzPZ0ZcKKHYjKYwCtPOP1WCrM5nmyuOhMStXFGHn+g== integrity sha512-EW+MFEo0DGHahf83RAaiqQx688qpXgl99wdb8Fy67ybyzHwR1a58LHcO376xQJHfmoXTu89M09dH3J509cx2AA==
dependencies: dependencies:
"@jest/fake-timers" "^26.2.0" "@jest/fake-timers" "^26.3.0"
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
"@types/node" "*" "@types/node" "*"
jest-mock "^26.2.0" jest-mock "^26.3.0"
"@jest/fake-timers@^26.2.0": "@jest/fake-timers@^26.3.0":
version "26.2.0" version "26.3.0"
resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-26.2.0.tgz#b485c57dc4c74d61406a339807a9af4bac74b75a" resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-26.3.0.tgz#f515d4667a6770f60ae06ae050f4e001126c666a"
integrity sha512-45Gfe7YzYTKqTayBrEdAF0qYyAsNRBzfkV0IyVUm3cx7AsCWlnjilBM4T40w7IXT5VspOgMPikQlV0M6gHwy/g== integrity sha512-ZL9ytUiRwVP8ujfRepffokBvD2KbxbqMhrXSBhSdAhISCw3gOkuntisiSFv+A6HN0n0fF4cxzICEKZENLmW+1A==
dependencies: dependencies:
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
"@sinonjs/fake-timers" "^6.0.1" "@sinonjs/fake-timers" "^6.0.1"
"@types/node" "*" "@types/node" "*"
jest-message-util "^26.2.0" jest-message-util "^26.3.0"
jest-mock "^26.2.0" jest-mock "^26.3.0"
jest-util "^26.2.0" jest-util "^26.3.0"
"@jest/globals@^26.2.0": "@jest/globals@^26.4.2":
version "26.2.0" version "26.4.2"
resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-26.2.0.tgz#ad78f1104f250c1a4bf5184a2ba51facc59b23f6" resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-26.4.2.tgz#73c2a862ac691d998889a241beb3dc9cada40d4a"
integrity sha512-Hoc6ScEIPaym7RNytIL2ILSUWIGKlwEv+JNFof9dGYOdvPjb2evEURSslvCMkNuNg1ECEClTE8PH7ULlMJntYA== integrity sha512-Ot5ouAlehhHLRhc+sDz2/9bmNv9p5ZWZ9LE1pXGGTCXBasmi5jnYjlgYcYt03FBwLmZXCZ7GrL29c33/XRQiow==
dependencies: dependencies:
"@jest/environment" "^26.2.0" "@jest/environment" "^26.3.0"
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
expect "^26.2.0" expect "^26.4.2"
"@jest/reporters@^26.2.2": "@jest/reporters@^26.4.1":
version "26.2.2" version "26.4.1"
resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-26.2.2.tgz#5a8632ab410f4fc57782bc05dcf115e91818e869" resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-26.4.1.tgz#3b4d6faf28650f3965f8b97bc3d114077fb71795"
integrity sha512-7854GPbdFTAorWVh+RNHyPO9waRIN6TcvCezKVxI1khvFq9YjINTW7J3WU+tbR038Ynn6WjYred6vtT0YmIWVQ== integrity sha512-aROTkCLU8++yiRGVxLsuDmZsQEKO6LprlrxtAuzvtpbIFl3eIjgIf3EUxDKgomkS25R9ZzwGEdB5weCcBZlrpQ==
dependencies: dependencies:
"@bcoe/v8-coverage" "^0.2.3" "@bcoe/v8-coverage" "^0.2.3"
"@jest/console" "^26.2.0" "@jest/console" "^26.3.0"
"@jest/test-result" "^26.2.0" "@jest/test-result" "^26.3.0"
"@jest/transform" "^26.2.2" "@jest/transform" "^26.3.0"
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
chalk "^4.0.0" chalk "^4.0.0"
collect-v8-coverage "^1.0.0" collect-v8-coverage "^1.0.0"
exit "^0.1.2" exit "^0.1.2"
...@@ -1405,63 +1365,63 @@ ...@@ -1405,63 +1365,63 @@
istanbul-lib-report "^3.0.0" istanbul-lib-report "^3.0.0"
istanbul-lib-source-maps "^4.0.0" istanbul-lib-source-maps "^4.0.0"
istanbul-reports "^3.0.2" istanbul-reports "^3.0.2"
jest-haste-map "^26.2.2" jest-haste-map "^26.3.0"
jest-resolve "^26.2.2" jest-resolve "^26.4.0"
jest-util "^26.2.0" jest-util "^26.3.0"
jest-worker "^26.2.1" jest-worker "^26.3.0"
slash "^3.0.0" slash "^3.0.0"
source-map "^0.6.0" source-map "^0.6.0"
string-length "^4.0.1" string-length "^4.0.1"
terminal-link "^2.0.0" terminal-link "^2.0.0"
v8-to-istanbul "^4.1.3" v8-to-istanbul "^5.0.1"
optionalDependencies: optionalDependencies:
node-notifier "^7.0.0" node-notifier "^8.0.0"
"@jest/source-map@^26.1.0": "@jest/source-map@^26.3.0":
version "26.1.0" version "26.3.0"
resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-26.1.0.tgz#a6a020d00e7d9478f4b690167c5e8b77e63adb26" resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-26.3.0.tgz#0e646e519883c14c551f7b5ae4ff5f1bfe4fc3d9"
integrity sha512-XYRPYx4eEVX15cMT9mstnO7hkHP3krNtKfxUYd8L7gbtia8JvZZ6bMzSwa6IQJENbudTwKMw5R1BePRD+bkEmA== integrity sha512-hWX5IHmMDWe1kyrKl7IhFwqOuAreIwHhbe44+XH2ZRHjrKIh0LO5eLQ/vxHFeAfRwJapmxuqlGAEYLadDq6ZGQ==
dependencies: dependencies:
callsites "^3.0.0" callsites "^3.0.0"
graceful-fs "^4.2.4" graceful-fs "^4.2.4"
source-map "^0.6.0" source-map "^0.6.0"
"@jest/test-result@^26.2.0": "@jest/test-result@^26.3.0":
version "26.2.0" version "26.3.0"
resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-26.2.0.tgz#51c9b165c8851cfcf7a3466019114785e154f76b" resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-26.3.0.tgz#46cde01fa10c0aaeb7431bf71e4a20d885bc7fdb"
integrity sha512-kgPlmcVafpmfyQEu36HClK+CWI6wIaAWDHNxfQtGuKsgoa2uQAYdlxjMDBEa3CvI40+2U3v36gQF6oZBkoKatw== integrity sha512-a8rbLqzW/q7HWheFVMtghXV79Xk+GWwOK1FrtimpI5n1la2SY0qHri3/b0/1F0Ve0/yJmV8pEhxDfVwiUBGtgg==
dependencies: dependencies:
"@jest/console" "^26.2.0" "@jest/console" "^26.3.0"
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
"@types/istanbul-lib-coverage" "^2.0.0" "@types/istanbul-lib-coverage" "^2.0.0"
collect-v8-coverage "^1.0.0" collect-v8-coverage "^1.0.0"
"@jest/test-sequencer@^26.2.2": "@jest/test-sequencer@^26.4.2":
version "26.2.2" version "26.4.2"
resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-26.2.2.tgz#5e8091f2e6c61fdf242af566cb820a4eadc6c4af" resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-26.4.2.tgz#58a3760a61eec758a2ce6080201424580d97cbba"
integrity sha512-SliZWon5LNqV/lVXkeowSU6L8++FGOu3f43T01L1Gv6wnFDP00ER0utV9jyK9dVNdXqfMNCN66sfcyar/o7BNw== integrity sha512-83DRD8N3M0tOhz9h0bn6Kl6dSp+US6DazuVF8J9m21WAp5x7CqSMaNycMP0aemC/SH/pDQQddbsfHRTBXVUgog==
dependencies: dependencies:
"@jest/test-result" "^26.2.0" "@jest/test-result" "^26.3.0"
graceful-fs "^4.2.4" graceful-fs "^4.2.4"
jest-haste-map "^26.2.2" jest-haste-map "^26.3.0"
jest-runner "^26.2.2" jest-runner "^26.4.2"
jest-runtime "^26.2.2" jest-runtime "^26.4.2"
"@jest/transform@^26.2.2": "@jest/transform@^26.3.0":
version "26.2.2" version "26.3.0"
resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-26.2.2.tgz#86c005c8d5d749ac54d8df53ea58675fffe7a97e" resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-26.3.0.tgz#c393e0e01459da8a8bfc6d2a7c2ece1a13e8ba55"
integrity sha512-c1snhvi5wRVre1XyoO3Eef5SEWpuBCH/cEbntBUd9tI5sNYiBDmO0My/lc5IuuGYKp/HFIHV1eZpSx5yjdkhKw== integrity sha512-Isj6NB68QorGoFWvcOjlUhpkT56PqNIsXKR7XfvoDlCANn/IANlh8DrKAA2l2JKC3yWSMH5wS0GwuQM20w3b2A==
dependencies: dependencies:
"@babel/core" "^7.1.0" "@babel/core" "^7.1.0"
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
babel-plugin-istanbul "^6.0.0" babel-plugin-istanbul "^6.0.0"
chalk "^4.0.0" chalk "^4.0.0"
convert-source-map "^1.4.0" convert-source-map "^1.4.0"
fast-json-stable-stringify "^2.0.0" fast-json-stable-stringify "^2.0.0"
graceful-fs "^4.2.4" graceful-fs "^4.2.4"
jest-haste-map "^26.2.2" jest-haste-map "^26.3.0"
jest-regex-util "^26.0.0" jest-regex-util "^26.0.0"
jest-util "^26.2.0" jest-util "^26.3.0"
micromatch "^4.0.2" micromatch "^4.0.2"
pirates "^4.0.1" pirates "^4.0.1"
slash "^3.0.0" slash "^3.0.0"
...@@ -1478,23 +1438,13 @@ ...@@ -1478,23 +1438,13 @@
"@types/yargs" "^15.0.0" "@types/yargs" "^15.0.0"
chalk "^3.0.0" chalk "^3.0.0"
"@jest/types@^26.1.0": "@jest/types@^26.3.0":
version "26.1.0" version "26.3.0"
resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.1.0.tgz#f8afaaaeeb23b5cad49dd1f7779689941dcb6057" resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.3.0.tgz#97627bf4bdb72c55346eef98e3b3f7ddc4941f71"
integrity sha512-GXigDDsp6ZlNMhXQDeuy/iYCDsRIHJabWtDzvnn36+aqFfG14JmFV0e/iXxY4SP9vbXSiPNOWdehU5MeqrYHBQ== integrity sha512-BDPG23U0qDeAvU4f99haztXwdAg3hz4El95LkAM+tHAqqhiVzRpEGHHU8EDxT/AnxOrA65YjLBwDahdJ9pTLJQ==
dependencies:
"@types/istanbul-lib-coverage" "^2.0.0"
"@types/istanbul-reports" "^1.1.1"
"@types/yargs" "^15.0.0"
chalk "^4.0.0"
"@jest/types@^26.2.0":
version "26.2.0"
resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.2.0.tgz#b28ca1fb517a4eb48c0addea7fcd9edc4ab45721"
integrity sha512-lvm3rJvctxd7+wxKSxxbzpDbr4FXDLaC57WEKdUIZ2cjTYuxYSc0zlyD7Z4Uqr5VdKxRUrtwIkiqBuvgf8uKJA==
dependencies: dependencies:
"@types/istanbul-lib-coverage" "^2.0.0" "@types/istanbul-lib-coverage" "^2.0.0"
"@types/istanbul-reports" "^1.1.1" "@types/istanbul-reports" "^3.0.0"
"@types/node" "*" "@types/node" "*"
"@types/yargs" "^15.0.0" "@types/yargs" "^15.0.0"
chalk "^4.0.0" chalk "^4.0.0"
...@@ -2349,9 +2299,9 @@ ...@@ -2349,9 +2299,9 @@
"@types/node" ">= 8" "@types/node" ">= 8"
"@octokit/types@^5.0.0", "@octokit/types@^5.0.1": "@octokit/types@^5.0.0", "@octokit/types@^5.0.1":
version "5.2.0" version "5.4.1"
resolved "https://registry.yarnpkg.com/@octokit/types/-/types-5.2.0.tgz#d075dc23bf293f540739250b6879e2c1be2fc20c" resolved "https://registry.yarnpkg.com/@octokit/types/-/types-5.4.1.tgz#d5d5f2b70ffc0e3f89467c3db749fa87fc3b7031"
integrity sha512-XjOk9y4m8xTLIKPe1NFxNWBdzA2/z3PFFA/bwf4EoH6oS8hM0Y46mEa4Cb+KCyj/tFDznJFahzQ0Aj3o1FYq4A== integrity sha512-OlMlSySBJoJ6uozkr/i03nO5dlYQyE05vmQNZhAh9MyO4DPBP88QlwsDVLmVjIMFssvIZB6WO0ctIGMRG+xsJQ==
dependencies: dependencies:
"@types/node" ">= 8" "@types/node" ">= 8"
...@@ -2584,9 +2534,9 @@ ...@@ -2584,9 +2534,9 @@
integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==
"@types/express-serve-static-core@*": "@types/express-serve-static-core@*":
version "4.17.9" version "4.17.12"
resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.9.tgz#2d7b34dcfd25ec663c25c85d76608f8b249667f1" resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.12.tgz#9a487da757425e4f267e7d1c5720226af7f89591"
integrity sha512-DG0BYg6yO+ePW+XoDENYz8zhNGC3jDDEpComMYn7WJc4mY1Us8Rw9ax2YhJXxpyk2SF47PQAoQ0YyVT1a0bEkA== integrity sha512-EaEdY+Dty1jEU7U6J4CUWwxL+hyEGMkO5jan5gplfegUgCUsIUWqXxqw47uGjimeT4Qgkz/XUfwoau08+fgvKA==
dependencies: dependencies:
"@types/node" "*" "@types/node" "*"
"@types/qs" "*" "@types/qs" "*"
...@@ -2667,6 +2617,13 @@ ...@@ -2667,6 +2617,13 @@
"@types/istanbul-lib-coverage" "*" "@types/istanbul-lib-coverage" "*"
"@types/istanbul-lib-report" "*" "@types/istanbul-lib-report" "*"
"@types/istanbul-reports@^3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz#508b13aa344fa4976234e75dddcc34925737d821"
integrity sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==
dependencies:
"@types/istanbul-lib-report" "*"
"@types/jest@26.0.8": "@types/jest@26.0.8":
version "26.0.8" version "26.0.8"
resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.8.tgz#f5c5559cf25911ce227f7ce30f1f160f24966369" resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.8.tgz#f5c5559cf25911ce227f7ce30f1f160f24966369"
...@@ -2675,10 +2632,10 @@ ...@@ -2675,10 +2632,10 @@
jest-diff "^25.2.1" jest-diff "^25.2.1"
pretty-format "^25.2.1" pretty-format "^25.2.1"
"@types/json-schema@^7.0.3", "@types/json-schema@^7.0.4": "@types/json-schema@^7.0.3", "@types/json-schema@^7.0.5":
version "7.0.5" version "7.0.6"
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.5.tgz#dcce4430e64b443ba8945f0290fb564ad5bac6dd" resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz#f4c7ec43e81b319a9815115031709f26987891f0"
integrity sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ== integrity sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==
"@types/lodash@4.14.158": "@types/lodash@4.14.158":
version "4.14.158" version "4.14.158"
...@@ -2727,16 +2684,16 @@ ...@@ -2727,16 +2684,16 @@
"@types/node" "*" "@types/node" "*"
form-data "^3.0.0" form-data "^3.0.0"
"@types/node@*", "@types/node@14.0.27": "@types/node@*", "@types/node@>= 8":
version "14.6.3"
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.6.3.tgz#cc4f979548ca4d8e7b90bc0180052ab99ee64224"
integrity sha512-pC/hkcREG6YfDfui1FBmj8e20jFU5Exjw4NYDm8kEdrW+mOh0T1Zve8DWKnS7ZIZvgncrctcNCXF4Q2I+loyww==
"@types/node@14.0.27":
version "14.0.27" version "14.0.27"
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.27.tgz#a151873af5a5e851b51b3b065c9e63390a9e0eb1" resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.27.tgz#a151873af5a5e851b51b3b065c9e63390a9e0eb1"
integrity sha512-kVrqXhbclHNHGu9ztnAwSncIgJv/FaxmzXJvGXNdcCpV1b8u1/Mi6z6m0vwy0LzKeXFTPLH0NzwmoJ3fNCIq0g== integrity sha512-kVrqXhbclHNHGu9ztnAwSncIgJv/FaxmzXJvGXNdcCpV1b8u1/Mi6z6m0vwy0LzKeXFTPLH0NzwmoJ3fNCIq0g==
"@types/node@>= 8":
version "14.0.26"
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.26.tgz#22a3b8a46510da8944b67bfc27df02c34a35331c"
integrity sha512-W+fpe5s91FBGE0pEa0lnqGLL4USgpLgs4nokw16SrBBco/gQxuua7KnArSEOd5iaMqbbSHV10vUDkJYJJqpXKA==
"@types/normalize-package-data@^2.4.0": "@types/normalize-package-data@^2.4.0":
version "2.4.0" version "2.4.0"
resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e" resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e"
...@@ -2753,9 +2710,9 @@ ...@@ -2753,9 +2710,9 @@
integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
"@types/prettier@^2.0.0": "@types/prettier@^2.0.0":
version "2.0.2" version "2.1.0"
resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.0.2.tgz#5bb52ee68d0f8efa9cc0099920e56be6cc4e37f3" resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.1.0.tgz#5f96562c1075ee715a5b138f0b7f591c1f40f6b8"
integrity sha512-IkVfat549ggtkZUthUzEX49562eGikhSYeVGX97SkMFn+sTZrgRewXjQ4tPKFPCykZHkX1Zfd9OoELGqKU2jJA== integrity sha512-hiYA88aHiEIgDmeKlsyVsuQdcFn3Z2VuFd/Xm/HCnGnPD8UFU5BM128uzzRVVGEzKDKYUrRsRH9S2o+NUy/3IA==
"@types/prop-types@*": "@types/prop-types@*":
version "15.7.3" version "15.7.3"
...@@ -2785,9 +2742,9 @@ ...@@ -2785,9 +2742,9 @@
"@types/react" "*" "@types/react" "*"
"@types/react-native@*": "@types/react-native@*":
version "0.63.2" version "0.63.13"
resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.63.2.tgz#428a4d71351ccbc31ab170b5f32477c7ce78dfd7" resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.63.13.tgz#e119c6921c78abdde52a68d0bd7f0effc6191f51"
integrity sha512-oxbp084lUsZvwfdWmWxKjJAuqEraQDRf+cE/JgwmrHQMguSrmgIHZ3xkeoQ5FYnW5NHIPpHudB3BbjL1Zn3vnA== integrity sha512-diqOQUlMB4+l5tldIP38fTkjtPn6pnFMMLfewiMtpUYwB1ID7snQ/ePN98a+3BFG87v8H62Rp/Q1xuudvG4MSg==
dependencies: dependencies:
"@types/react" "*" "@types/react" "*"
...@@ -2799,12 +2756,12 @@ ...@@ -2799,12 +2756,12 @@
"@types/react" "*" "@types/react" "*"
"@types/react@*": "@types/react@*":
version "16.9.43" version "16.9.49"
resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.43.tgz#c287f23f6189666ee3bebc2eb8d0f84bcb6cdb6b" resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.49.tgz#09db021cf8089aba0cdb12a49f8021a69cce4872"
integrity sha512-PxshAFcnJqIWYpJbLPriClH53Z2WlJcVZE+NP2etUtWQs2s7yIMj3/LDKZT/5CHJ/F62iyjVCDu2H3jHEXIxSg== integrity sha512-DtLFjSj0OYAdVLBbyjhuV9CdGVHCkHn2R+xr3XkBvK2rS1Y1tkc14XSGjYgm5Fjjr90AxH9tiSzc1pCFMGO06g==
dependencies: dependencies:
"@types/prop-types" "*" "@types/prop-types" "*"
csstype "^2.2.0" csstype "^3.0.2"
"@types/react@16.9.44": "@types/react@16.9.44":
version "16.9.44" version "16.9.44"
...@@ -2823,11 +2780,9 @@ ...@@ -2823,11 +2780,9 @@
"@types/node" "*" "@types/node" "*"
"@types/semver@^7.1.0": "@types/semver@^7.1.0":
version "7.3.1" version "7.3.3"
resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.1.tgz#7a9a5d595b6d873f338c867dcef64df289468cfa" resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.3.tgz#3ad6ed949e7487e7bda6f886b4a2434a2c3d7b1a"
integrity sha512-ooD/FJ8EuwlDKOI6D9HWxgIgJjMg2cuziXm/42npDC8y4NjxplBUn9loewZiBNCt44450lHAU0OSb51/UqXeag== integrity sha512-jQxClWFzv9IXdLdhSaTf16XI3NYe6zrEbckSpb5xhKfPbWgIyAY0AFyWWWfaiDcBuj3UHmMkCIwSRqpKMTZL2Q==
dependencies:
"@types/node" "*"
"@types/serve-static@*": "@types/serve-static@*":
version "1.13.5" version "1.13.5"
...@@ -3158,9 +3113,9 @@ JSONStream@^1.0.4, JSONStream@^1.3.4: ...@@ -3158,9 +3113,9 @@ JSONStream@^1.0.4, JSONStream@^1.3.4:
through ">=2.2.7 <3" through ">=2.2.7 <3"
abab@^2.0.3: abab@^2.0.3:
version "2.0.3" version "2.0.4"
resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.3.tgz#623e2075e02eb2d3f2475e49f99c91846467907a" resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.4.tgz#6dfa57b417ca06d21b2478f0e638302f99c2405c"
integrity sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg== integrity sha512-Eu9ELJWCz/c1e9gTiCY+FceWxcqzjYEbqMgtndnuSqZSUCOL73TWNK2mHfIj4Cw2E/ongOp+JISVNCmovt2KYQ==
abbrev@1: abbrev@1:
version "1.1.1" version "1.1.1"
...@@ -3198,10 +3153,10 @@ acorn@^6.4.1: ...@@ -3198,10 +3153,10 @@ acorn@^6.4.1:
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474" resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474"
integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==
acorn@^7.1.1, acorn@^7.3.1: acorn@^7.1.1, acorn@^7.4.0:
version "7.3.1" version "7.4.0"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.3.1.tgz#85010754db53c3fbaf3b9ea3e083aa5c5d147ffd" resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.0.tgz#e1ad486e6c54501634c6c397c5c121daa383607c"
integrity sha512-tLc0wSnatxAQHVHUapaHdz72pi9KUyHjq5KyHjGg9Y8Ifdc79pTh2XvI6I1/chZbnM7QtNKzh66ooDogPZSleA== integrity sha512-+G7P8jJmCHr+S+cLfQxygbWhXy+8YTVGzAkpEbcLo2mLoL7tij/VG41QSHACSf5QgYRhMZYHuNc6drJaO0Da+w==
adjust-sourcemap-loader@2.0.0: adjust-sourcemap-loader@2.0.0:
version "2.0.0" version "2.0.0"
...@@ -3236,14 +3191,14 @@ agentkeepalive@^3.4.1: ...@@ -3236,14 +3191,14 @@ agentkeepalive@^3.4.1:
humanize-ms "^1.2.1" humanize-ms "^1.2.1"
aggregate-error@^3.0.0: aggregate-error@^3.0.0:
version "3.0.1" version "3.1.0"
resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0" resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA== integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==
dependencies: dependencies:
clean-stack "^2.0.0" clean-stack "^2.0.0"
indent-string "^4.0.0" indent-string "^4.0.0"
airbnb-prop-types@^2.15.0: airbnb-prop-types@^2.16.0:
version "2.16.0" version "2.16.0"
resolved "https://registry.yarnpkg.com/airbnb-prop-types/-/airbnb-prop-types-2.16.0.tgz#b96274cefa1abb14f623f804173ee97c13971dc2" resolved "https://registry.yarnpkg.com/airbnb-prop-types/-/airbnb-prop-types-2.16.0.tgz#b96274cefa1abb14f623f804173ee97c13971dc2"
integrity sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg== integrity sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg==
...@@ -3263,15 +3218,15 @@ ajv-errors@^1.0.0: ...@@ -3263,15 +3218,15 @@ ajv-errors@^1.0.0:
resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d"
integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
ajv-keywords@^3.1.0, ajv-keywords@^3.4.1: ajv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2:
version "3.5.2" version "3.5.2"
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.0, ajv@^6.12.2, ajv@^6.12.3: ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.0, ajv@^6.12.3, ajv@^6.12.4:
version "6.12.3" version "6.12.4"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.3.tgz#18c5af38a111ddeb4f2697bd78d68abc1cabd706" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.4.tgz#0614facc4522127fa713445c6bfd3ebd376e2234"
integrity sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA== integrity sha512-eienB2c9qVQs2KWexhkrdMLVDoIQCz5KSeLxwg9Lzk4DOfBtIK9PQwwufcsn1jjGuf9WZmqPMbGxOzfcuphJCQ==
dependencies: dependencies:
fast-deep-equal "^3.1.1" fast-deep-equal "^3.1.1"
fast-json-stable-stringify "^2.0.0" fast-json-stable-stringify "^2.0.0"
...@@ -3544,14 +3499,15 @@ asap@^2.0.0: ...@@ -3544,14 +3499,15 @@ asap@^2.0.0:
resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
asn1.js@^4.0.0: asn1.js@^5.2.0:
version "4.10.1" version "5.4.1"
resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07"
integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==
dependencies: dependencies:
bn.js "^4.0.0" bn.js "^4.0.0"
inherits "^2.0.1" inherits "^2.0.1"
minimalistic-assert "^1.0.0" minimalistic-assert "^1.0.0"
safer-buffer "^2.1.0"
asn1@~0.2.3: asn1@~0.2.3:
version "0.2.4" version "0.2.4"
...@@ -3586,9 +3542,11 @@ assign-symbols@^1.0.0: ...@@ -3586,9 +3542,11 @@ assign-symbols@^1.0.0:
integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=
ast-types@0.x.x: ast-types@0.x.x:
version "0.13.3" version "0.14.1"
resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.3.tgz#50da3f28d17bdbc7969a3a2d83a0e4a72ae755a7" resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.14.1.tgz#0b415043770d7a2cbe4b2770271cbd7d2c9f61b9"
integrity sha512-XTZ7xGML849LkQP86sWdQzfhwbt3YwIO6MqbX9mUNYY98VKaaVZP7YNNm70IpwecbkkxmfC5IYAzOQ/2p29zRA== integrity sha512-pfSiukbt23P1qMhNnsozLzhMLBs7EEeXqPyvPmnuZM+RMfwfqwDbSVKYflgGuVI7/VehR4oMks0igzdNAg4VeQ==
dependencies:
tslib "^2.0.1"
astral-regex@^1.0.0: astral-regex@^1.0.0:
version "1.0.0" version "1.0.0"
...@@ -3679,9 +3637,9 @@ aws-sign2@~0.7.0: ...@@ -3679,9 +3637,9 @@ aws-sign2@~0.7.0:
integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
aws4@^1.8.0: aws4@^1.8.0:
version "1.10.0" version "1.10.1"
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.10.0.tgz#a17b3a8ea811060e74d47d306122400ad4497ae2" resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.10.1.tgz#e1e82e4f3e999e2cfd61b161280d16a111f86428"
integrity sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA== integrity sha512-zg7Hz2k5lI8kb7U32998pRRFin7zJlkfezGJjUc2heaD4Pw2wObakCDVzkKztTm/Ln7eiVvYsjqak0Ed4LkMDA==
axios@^0.19.0: axios@^0.19.0:
version "0.19.2" version "0.19.2"
...@@ -3699,16 +3657,16 @@ babel-code-frame@^6.22.0: ...@@ -3699,16 +3657,16 @@ babel-code-frame@^6.22.0:
esutils "^2.0.2" esutils "^2.0.2"
js-tokens "^3.0.2" js-tokens "^3.0.2"
babel-jest@^26.2.2: babel-jest@^26.3.0:
version "26.2.2" version "26.3.0"
resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.2.2.tgz#70f618f2d7016ed71b232241199308985462f812" resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.3.0.tgz#10d0ca4b529ca3e7d1417855ef7d7bd6fc0c3463"
integrity sha512-JmLuePHgA+DSOdOL8lPxCgD2LhPPm+rdw1vnxR73PpIrnmKCS2/aBhtkAcxQWuUcW2hBrH8MJ3LKXE7aWpNZyA== integrity sha512-sxPnQGEyHAOPF8NcUsD0g7hDCnvLL2XyblRBcgrzTWBB/mAIpWow3n1bEL+VghnnZfreLhFSBsFluRoK2tRK4g==
dependencies: dependencies:
"@jest/transform" "^26.2.2" "@jest/transform" "^26.3.0"
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
"@types/babel__core" "^7.1.7" "@types/babel__core" "^7.1.7"
babel-plugin-istanbul "^6.0.0" babel-plugin-istanbul "^6.0.0"
babel-preset-jest "^26.2.0" babel-preset-jest "^26.3.0"
chalk "^4.0.0" chalk "^4.0.0"
graceful-fs "^4.2.4" graceful-fs "^4.2.4"
slash "^3.0.0" slash "^3.0.0"
...@@ -3766,7 +3724,7 @@ babel-plugin-macros@^2.0.0: ...@@ -3766,7 +3724,7 @@ babel-plugin-macros@^2.0.0:
cosmiconfig "^6.0.0" cosmiconfig "^6.0.0"
resolve "^1.12.0" resolve "^1.12.0"
babel-plugin-styled-components@1.11.1: babel-plugin-styled-components@1.11.1, "babel-plugin-styled-components@>= 1":
version "1.11.1" version "1.11.1"
resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-1.11.1.tgz#5296a9e557d736c3186be079fff27c6665d63d76" resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-1.11.1.tgz#5296a9e557d736c3186be079fff27c6665d63d76"
integrity sha512-YwrInHyKUk1PU3avIRdiLyCpM++18Rs1NgyMXEAQC33rIXs/vro0A+stf4sT0Gf22Got+xRWB8Cm0tw+qkRzBA== integrity sha512-YwrInHyKUk1PU3avIRdiLyCpM++18Rs1NgyMXEAQC33rIXs/vro0A+stf4sT0Gf22Got+xRWB8Cm0tw+qkRzBA==
...@@ -3776,16 +3734,6 @@ babel-plugin-styled-components@1.11.1: ...@@ -3776,16 +3734,6 @@ babel-plugin-styled-components@1.11.1:
babel-plugin-syntax-jsx "^6.18.0" babel-plugin-syntax-jsx "^6.18.0"
lodash "^4.17.11" lodash "^4.17.11"
"babel-plugin-styled-components@>= 1":
version "1.10.7"
resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-1.10.7.tgz#3494e77914e9989b33cc2d7b3b29527a949d635c"
integrity sha512-MBMHGcIA22996n9hZRf/UJLVVgkEOITuR2SvjHLb5dSTUyR4ZRGn+ngITapes36FI3WLxZHfRhkA1ffHxihOrg==
dependencies:
"@babel/helper-annotate-as-pure" "^7.0.0"
"@babel/helper-module-imports" "^7.0.0"
babel-plugin-syntax-jsx "^6.18.0"
lodash "^4.17.11"
babel-plugin-syntax-jsx@6.18.0, babel-plugin-syntax-jsx@^6.18.0: babel-plugin-syntax-jsx@6.18.0, babel-plugin-syntax-jsx@^6.18.0:
version "6.18.0" version "6.18.0"
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
...@@ -3814,7 +3762,7 @@ babel-plugin-typescript-to-proptypes@1.4.0: ...@@ -3814,7 +3762,7 @@ babel-plugin-typescript-to-proptypes@1.4.0:
"@babel/plugin-syntax-typescript" "^7.10.4" "@babel/plugin-syntax-typescript" "^7.10.4"
"@babel/types" "^7.10.5" "@babel/types" "^7.10.5"
babel-preset-current-node-syntax@^0.1.2: babel-preset-current-node-syntax@^0.1.3:
version "0.1.3" version "0.1.3"
resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.3.tgz#b4b547acddbf963cba555ba9f9cbbb70bfd044da" resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.3.tgz#b4b547acddbf963cba555ba9f9cbbb70bfd044da"
integrity sha512-uyexu1sVwcdFnyq9o8UQYsXwXflIh8LvrF5+cKrYam93ned1CStffB3+BEcsxGSgagoA3GEyjDqO4a/58hyPYQ== integrity sha512-uyexu1sVwcdFnyq9o8UQYsXwXflIh8LvrF5+cKrYam93ned1CStffB3+BEcsxGSgagoA3GEyjDqO4a/58hyPYQ==
...@@ -3831,13 +3779,13 @@ babel-preset-current-node-syntax@^0.1.2: ...@@ -3831,13 +3779,13 @@ babel-preset-current-node-syntax@^0.1.2:
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
"@babel/plugin-syntax-optional-chaining" "^7.8.3" "@babel/plugin-syntax-optional-chaining" "^7.8.3"
babel-preset-jest@^26.2.0: babel-preset-jest@^26.3.0:
version "26.2.0" version "26.3.0"
resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-26.2.0.tgz#f198201a4e543a43eb40bc481e19736e095fd3e0" resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-26.3.0.tgz#ed6344506225c065fd8a0b53e191986f74890776"
integrity sha512-R1k8kdP3R9phYQugXeNnK/nvCGlBzG4m3EoIIukC80GXb6wCv2XiwPhK6K9MAkQcMszWBYvl2Wm+yigyXFQqXg== integrity sha512-5WPdf7nyYi2/eRxCbVrE1kKCWxgWY4RsPEbdJWFm7QsesFGqjdkyLeu1zRkwM1cxK6EPIlNd6d2AxLk7J+t4pw==
dependencies: dependencies:
babel-plugin-jest-hoist "^26.2.0" babel-plugin-jest-hoist "^26.2.0"
babel-preset-current-node-syntax "^0.1.2" babel-preset-current-node-syntax "^0.1.3"
balanced-match@^1.0.0: balanced-match@^1.0.0:
version "1.0.0" version "1.0.0"
...@@ -3929,9 +3877,9 @@ bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0: ...@@ -3929,9 +3877,9 @@ bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0:
integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==
bn.js@^5.1.1: bn.js@^5.1.1:
version "5.1.2" version "5.1.3"
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.2.tgz#c9686902d3c9a27729f43ab10f9d79c2004da7b0" resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.3.tgz#beca005408f642ebebea80b042b4d18d2ac0ee6b"
integrity sha512-40rZaf3bUNKTVYu9sIeeEGOg7g14Yvnj9kH7b50EiwX0Q7A6umbvfI5tvHaOERH0XigqKkfLkFQxzb4e6CIXnA== integrity sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==
body-parser@1.19.0: body-parser@1.19.0:
version "1.19.0" version "1.19.0"
...@@ -4049,15 +3997,15 @@ browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: ...@@ -4049,15 +3997,15 @@ browserify-rsa@^4.0.0, browserify-rsa@^4.0.1:
randombytes "^2.0.1" randombytes "^2.0.1"
browserify-sign@^4.0.0: browserify-sign@^4.0.0:
version "4.2.0" version "4.2.1"
resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.0.tgz#545d0b1b07e6b2c99211082bf1b12cce7a0b0e11" resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3"
integrity sha512-hEZC1KEeYuoHRqhGhTy6gWrpJA3ZDjFWv0DE61643ZnOXAKJb3u7yWcrU0mMc9SwAqK1n7myPGndkp0dFG7NFA== integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==
dependencies: dependencies:
bn.js "^5.1.1" bn.js "^5.1.1"
browserify-rsa "^4.0.1" browserify-rsa "^4.0.1"
create-hash "^1.2.0" create-hash "^1.2.0"
create-hmac "^1.1.7" create-hmac "^1.1.7"
elliptic "^6.5.2" elliptic "^6.5.3"
inherits "^2.0.4" inherits "^2.0.4"
parse-asn1 "^5.1.5" parse-asn1 "^5.1.5"
readable-stream "^3.6.0" readable-stream "^3.6.0"
...@@ -4081,14 +4029,14 @@ browserslist@4.12.0: ...@@ -4081,14 +4029,14 @@ browserslist@4.12.0:
pkg-up "^2.0.0" pkg-up "^2.0.0"
browserslist@^4.0.0, browserslist@^4.11.1, browserslist@^4.12.0, browserslist@^4.8.5: browserslist@^4.0.0, browserslist@^4.11.1, browserslist@^4.12.0, browserslist@^4.8.5:
version "4.13.0" version "4.14.0"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.13.0.tgz#42556cba011e1b0a2775b611cba6a8eca18e940d" resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.0.tgz#2908951abfe4ec98737b72f34c3bcedc8d43b000"
integrity sha512-MINatJ5ZNrLnQ6blGvePd/QOz9Xtu+Ne+x29iQSCHfkU5BugKVJwZKn/iiL8UbpIpa3JhviKjz+XxMo0m2caFQ== integrity sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==
dependencies: dependencies:
caniuse-lite "^1.0.30001093" caniuse-lite "^1.0.30001111"
electron-to-chromium "^1.3.488" electron-to-chromium "^1.3.523"
escalade "^3.0.1" escalade "^3.0.2"
node-releases "^1.1.58" node-releases "^1.1.60"
bs-logger@0.x: bs-logger@0.x:
version "0.2.6" version "0.2.6"
...@@ -4360,15 +4308,10 @@ caniuse-api@^3.0.0: ...@@ -4360,15 +4308,10 @@ caniuse-api@^3.0.0:
lodash.memoize "^4.1.2" lodash.memoize "^4.1.2"
lodash.uniq "^4.5.0" lodash.uniq "^4.5.0"
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001043, caniuse-lite@^1.0.30001093: caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001043, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001111:
version "1.0.30001107" version "1.0.30001122"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001107.tgz#809360df7a5b3458f627aa46b0f6ed6d5239da9a" resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001122.tgz#2c8ff631330d986a07a7ba7125cce77a1373b475"
integrity sha512-86rCH+G8onCmdN4VZzJet5uPELII59cUzDphko3thQFgAQG1RNa+sVLDoALIhRYmflo5iSIzWY3vu1XTWtNMQQ== integrity sha512-pxjw28CThdrqfz06nJkpAc5SXM404TXB/h5f4UJX+rrXJKE/1bu/KAILc2AY+O6cQIFtRjV9qOR2vaEp9LDGUA==
caniuse-lite@^1.0.30001109:
version "1.0.30001111"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001111.tgz#dd0ce822c70eb6c7c068e4a55c22e19ec1501298"
integrity sha512-xnDje2wchd/8mlJu8sXvWxOGvMgv+uT3iZ3bkIAynKOzToCssWCmkz/ZIkQBs/2pUB4uwnJKVORWQ31UkbVjOg==
capture-exit@^2.0.0: capture-exit@^2.0.0:
version "2.0.0" version "2.0.0"
...@@ -4473,9 +4416,9 @@ chokidar@2.1.8, chokidar@^2.1.8: ...@@ -4473,9 +4416,9 @@ chokidar@2.1.8, chokidar@^2.1.8:
fsevents "^1.2.7" fsevents "^1.2.7"
"chokidar@>=2.0.0 <4.0.0", chokidar@^3.2.2, chokidar@^3.3.0, chokidar@^3.4.1: "chokidar@>=2.0.0 <4.0.0", chokidar@^3.2.2, chokidar@^3.3.0, chokidar@^3.4.1:
version "3.4.1" version "3.4.2"
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.1.tgz#e905bdecf10eaa0a0b1db0c664481cc4cbc22ba1" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.2.tgz#38dc8e658dec3809741eb3ef7bb0a47fe424232d"
integrity sha512-TQTJyr2stihpC4Sya9hs2Xh+O2wf+igjL36Y75xx2WdHuiICcn/XJza46Jwt0eT5hVpQOzo3FpY3cj3RVYLX0g== integrity sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A==
dependencies: dependencies:
anymatch "~3.1.1" anymatch "~3.1.1"
braces "~3.0.2" braces "~3.0.2"
...@@ -4550,9 +4493,9 @@ clean-stack@^2.0.0: ...@@ -4550,9 +4493,9 @@ clean-stack@^2.0.0:
integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
cli-boxes@^2.2.0: cli-boxes@^2.2.0:
version "2.2.0" version "2.2.1"
resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.0.tgz#538ecae8f9c6ca508e3c3c95b453fe93cb4c168d" resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f"
integrity sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w== integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==
cli-cursor@^2.1.0: cli-cursor@^2.1.0:
version "2.1.0" version "2.1.0"
...@@ -4749,13 +4692,13 @@ commondir@^1.0.1: ...@@ -4749,13 +4692,13 @@ commondir@^1.0.1:
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
compare-func@^1.3.1: compare-func@^2.0.0:
version "1.3.4" version "2.0.0"
resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.4.tgz#6b07c4c5e8341119baf44578085bda0f4a823516" resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3"
integrity sha512-sq2sWtrqKPkEXAC8tEJA1+BqAH9GbFkGBtUOqrUX57VSfwp8xyktctk+uLoRy5eccTdxzDcVIztlYDpKs3Jv1Q== integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==
dependencies: dependencies:
array-ify "^1.0.0" array-ify "^1.0.0"
dot-prop "^3.0.0" dot-prop "^5.1.0"
compare-versions@^3.6.0: compare-versions@^3.6.0:
version "3.6.0" version "3.6.0"
...@@ -4855,11 +4798,11 @@ continuation-local-storage@^3.2.1: ...@@ -4855,11 +4798,11 @@ continuation-local-storage@^3.2.1:
emitter-listener "^1.1.1" emitter-listener "^1.1.1"
conventional-changelog-angular@^5.0.3: conventional-changelog-angular@^5.0.3:
version "5.0.10" version "5.0.11"
resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.10.tgz#5cf7b00dd315b6a6a558223c80d5ef24ddb34205" resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.11.tgz#99a3ca16e4a5305e0c2c2fae3ef74fd7631fc3fb"
integrity sha512-k7RPPRs0vp8+BtPsM9uDxRl6KcgqtCJmzRD1wRtgqmhQ96g8ifBGo9O/TZBG23jqlXS/rg8BKRDELxfnQQGiaA== integrity sha512-nSLypht/1yEflhuTogC03i7DX7sOrXGsRn14g131Potqi6cbGbGEE9PSDEHKldabB6N76HiSyw9Ph+kLmC04Qw==
dependencies: dependencies:
compare-func "^1.3.1" compare-func "^2.0.0"
q "^1.5.1" q "^1.5.1"
conventional-changelog-core@^3.1.6: conventional-changelog-core@^3.1.6:
...@@ -4887,11 +4830,11 @@ conventional-changelog-preset-loader@^2.1.1: ...@@ -4887,11 +4830,11 @@ conventional-changelog-preset-loader@^2.1.1:
integrity sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g== integrity sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==
conventional-changelog-writer@^4.0.6: conventional-changelog-writer@^4.0.6:
version "4.0.16" version "4.0.17"
resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-4.0.16.tgz#ca10f2691a8ea6d3c2eb74bd35bcf40aa052dda5" resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-4.0.17.tgz#4753aaa138bf5aa59c0b274cb5937efcd2722e21"
integrity sha512-jmU1sDJDZpm/dkuFxBeRXvyNcJQeKhGtVcFFkwTphUAzyYWcwz2j36Wcv+Mv2hU3tpvLMkysOPXJTLO55AUrYQ== integrity sha512-IKQuK3bib/n032KWaSb8YlBFds+aLmzENtnKtxJy3+HqDq5kohu3g/UdNbIHeJWygfnEbZjnCKFxAW0y7ArZAw==
dependencies: dependencies:
compare-func "^1.3.1" compare-func "^2.0.0"
conventional-commits-filter "^2.0.6" conventional-commits-filter "^2.0.6"
dateformat "^3.0.0" dateformat "^3.0.0"
handlebars "^4.7.6" handlebars "^4.7.6"
...@@ -5066,12 +5009,12 @@ cpy@^8.0.0: ...@@ -5066,12 +5009,12 @@ cpy@^8.0.0:
p-map "^3.0.0" p-map "^3.0.0"
create-ecdh@^4.0.0: create-ecdh@^4.0.0:
version "4.0.3" version "4.0.4"
resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e"
integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw== integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==
dependencies: dependencies:
bn.js "^4.1.0" bn.js "^4.1.0"
elliptic "^6.0.0" elliptic "^6.5.3"
create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0:
version "1.2.0" version "1.2.0"
...@@ -5387,15 +5330,15 @@ cssstyle@^2.2.0: ...@@ -5387,15 +5330,15 @@ cssstyle@^2.2.0:
dependencies: dependencies:
cssom "~0.3.6" cssom "~0.3.6"
csstype@^2.2.0, csstype@^2.5.7, csstype@^2.6.7: csstype@^2.5.7:
version "2.6.11" version "2.6.13"
resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.11.tgz#452f4d024149ecf260a852b025e36562a253ffc5" resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.13.tgz#a6893015b90e84dd6e85d0e3b442a1e84f2dbe0f"
integrity sha512-l8YyEC9NBkSm783PFTvh0FmJy7s5pFKrDp49ZL7zBGX3fWkO+N4EEyan1qqp8cwPLDcD0OSdyY6hAMoxp34JFw== integrity sha512-ul26pfSQTZW8dcOnD2iiJssfXw0gdNVX9IJDH/X3K5DGPfj+fUYe3kB+swUY6BF3oZDxaID3AJt+9/ojSAE05A==
csstype@^3.0.2: csstype@^3.0.2:
version "3.0.2" version "3.0.3"
resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.2.tgz#ee5ff8f208c8cd613b389f7b222c9801ca62b3f7" resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.3.tgz#2b410bbeba38ba9633353aff34b05d9755d065f8"
integrity sha512-ofovWglpqoqbfLNOTBNZLSbMuGrblAf1efvvArGKOZMBrIoJeu5UsAipQolkijtyQx5MtAzT/J9IHj/CEY1mJw== integrity sha512-jPl+wbWPOWJ7SXsWyqGRk3lGecbar0Cb0OvZF/r/ZU011R4YqiRehgkQ9p4eQfo9DSDLqLL3wHwfxeJiuIsNag==
currently-unhandled@^0.4.1: currently-unhandled@^0.4.1:
version "0.4.1" version "0.4.1"
...@@ -5420,9 +5363,9 @@ d3-axis@1: ...@@ -5420,9 +5363,9 @@ d3-axis@1:
integrity sha512-ejINPfPSNdGFKEOAtnBtdkpr24c4d4jsei6Lg98mxf424ivoDP2956/5HDpIAtmHo85lqT4pruy+zEgvRUBqaQ== integrity sha512-ejINPfPSNdGFKEOAtnBtdkpr24c4d4jsei6Lg98mxf424ivoDP2956/5HDpIAtmHo85lqT4pruy+zEgvRUBqaQ==
d3-brush@1: d3-brush@1:
version "1.1.5" version "1.1.6"
resolved "https://registry.yarnpkg.com/d3-brush/-/d3-brush-1.1.5.tgz#066b8e84d17b192986030446c97c0fba7e1bacdc" resolved "https://registry.yarnpkg.com/d3-brush/-/d3-brush-1.1.6.tgz#b0a22c7372cabec128bdddf9bddc058592f89e9b"
integrity sha512-rEaJ5gHlgLxXugWjIkolTA0OyMvw8UWU1imYXy1v642XyyswmI1ybKOv05Ft+ewq+TFmdliD3VuK0pRp1VT/5A== integrity sha512-7RW+w7HfMCPyZLifTz/UnJmI5kdkXtpCbombUSs8xniAyo0vIbrDzDwUJB6eJOgl9u5DQOt2TQlYumxzD1SvYA==
dependencies: dependencies:
d3-dispatch "1" d3-dispatch "1"
d3-drag "1" d3-drag "1"
...@@ -5478,9 +5421,9 @@ d3-dsv@1: ...@@ -5478,9 +5421,9 @@ d3-dsv@1:
rw "1" rw "1"
d3-ease@1: d3-ease@1:
version "1.0.6" version "1.0.7"
resolved "https://registry.yarnpkg.com/d3-ease/-/d3-ease-1.0.6.tgz#ebdb6da22dfac0a22222f2d4da06f66c416a0ec0" resolved "https://registry.yarnpkg.com/d3-ease/-/d3-ease-1.0.7.tgz#9a834890ef8b8ae8c558b2fe55bd57f5993b85e2"
integrity sha512-SZ/lVU7LRXafqp7XtIcBdxnWl8yyLpgOmzAk0mWBI9gXNzLDx5ybZgnRbH9dN/yY5tzVBqCQ9avltSnqVwessQ== integrity sha512-lx14ZPYkhNx0s/2HX5sLFUI3mbasHjSSpwO/KaaNACweVwxUruKyWVcb293wMv1RqTPZyZ8kSZ2NogUZNcLOFQ==
d3-fetch@1: d3-fetch@1:
version "1.2.0" version "1.2.0"
...@@ -5499,7 +5442,12 @@ d3-force@1: ...@@ -5499,7 +5442,12 @@ d3-force@1:
d3-quadtree "1" d3-quadtree "1"
d3-timer "1" d3-timer "1"
d3-format@1, d3-format@1.4.4: d3-format@1:
version "1.4.5"
resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-1.4.5.tgz#374f2ba1320e3717eb74a9356c67daee17a7edb4"
integrity sha512-J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ==
d3-format@1.4.4:
version "1.4.4" version "1.4.4"
resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-1.4.4.tgz#356925f28d0fd7c7983bfad593726fce46844030" resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-1.4.4.tgz#356925f28d0fd7c7983bfad593726fce46844030"
integrity sha512-TWks25e7t8/cqctxCmxpUuzZN11QxIA7YrMbram94zMQ0PXjE4LVIMe/f6a4+xxL8HQ3OsAFULOINQi1pE62Aw== integrity sha512-TWks25e7t8/cqctxCmxpUuzZN11QxIA7YrMbram94zMQ0PXjE4LVIMe/f6a4+xxL8HQ3OsAFULOINQi1pE62Aw==
...@@ -5576,9 +5524,9 @@ d3-shape@1: ...@@ -5576,9 +5524,9 @@ d3-shape@1:
d3-path "1" d3-path "1"
d3-time-format@2: d3-time-format@2:
version "2.2.3" version "2.3.0"
resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-2.2.3.tgz#0c9a12ee28342b2037e5ea1cf0b9eb4dd75f29cb" resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-2.3.0.tgz#107bdc028667788a8924ba040faf1fbccd5a7850"
integrity sha512-RAHNnD8+XvC4Zc4d2A56Uw0yJoM7bsvOlJR33bclxq399Rak/b9bhvu/InjxdWhPtkgU53JJcleJTGkNRnN6IA== integrity sha512-guv6b2H37s2Uq/GefleCDtbe0XZAuy7Wa49VGkPVPMfLL9qObgBST3lEHJBMUp8S7NdLQAGIvr2KXk8Hc98iKQ==
dependencies: dependencies:
d3-time "1" d3-time "1"
...@@ -5714,9 +5662,9 @@ dateformat@^3.0.0: ...@@ -5714,9 +5662,9 @@ dateformat@^3.0.0:
integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==
dayjs@~1.8.24, dayjs@~1.8.25: dayjs@~1.8.24, dayjs@~1.8.25:
version "1.8.30" version "1.8.35"
resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.8.30.tgz#d3b314d3ccdc179015d915fd3c6e14422c026378" resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.8.35.tgz#67118378f15d31623f3ee2992f5244b887606888"
integrity sha512-5s5IGuP5bVvIbOWkEDcfmXsUj24fZW1NMHVVSdSFF/kW8d+alZcI9SpBKC+baEyBe+z3fUp17y75ulstv5swUw== integrity sha512-isAbIEenO4ilm6f8cpqvgjZCsuerDAz2Kb7ri201AiNn58aqXuaLJEnCtfIMdCvERZHNGRY5lDMTr/jdAnKSWQ==
debug@2, debug@2.6.9, debug@^2.2.0, debug@^2.3.3: debug@2, debug@2.6.9, debug@^2.2.0, debug@^2.3.3:
version "2.6.9" version "2.6.9"
...@@ -5917,10 +5865,10 @@ diff-sequences@^25.2.6: ...@@ -5917,10 +5865,10 @@ diff-sequences@^25.2.6:
resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.2.6.tgz#5f467c00edd35352b7bca46d7927d60e687a76dd" resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.2.6.tgz#5f467c00edd35352b7bca46d7927d60e687a76dd"
integrity sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg== integrity sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==
diff-sequences@^26.0.0: diff-sequences@^26.3.0:
version "26.0.0" version "26.3.0"
resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.0.0.tgz#0760059a5c287637b842bd7085311db7060e88a6" resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.3.0.tgz#62a59b1b29ab7fd27cef2a33ae52abe73042d0a2"
integrity sha512-JC/eHYEC3aSS0vZGjuoc4vHA0yAQTzhQQldXMeMF+JlxLGJlCO38Gma82NV9gk1jGFz8mDzUMeaKXvjRRdJ2dg== integrity sha512-5j5vdRcw3CNctePNYN0Wy2e/JbWT6cAYnXv5OuqPhDpyCGc0uLu2TK0zOCJWNB9kOIfYMSpIulRaDgIi4HJ6Ig==
diff@^4.0.1: diff@^4.0.1:
version "4.0.2" version "4.0.2"
...@@ -5977,12 +5925,12 @@ dom-converter@^0.2: ...@@ -5977,12 +5925,12 @@ dom-converter@^0.2:
utila "~0.4" utila "~0.4"
dom-helpers@^5.0.1: dom-helpers@^5.0.1:
version "5.1.4" version "5.2.0"
resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.1.4.tgz#4609680ab5c79a45f2531441f1949b79d6587f4b" resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.0.tgz#57fd054c5f8f34c52a3eeffdb7e7e93cd357d95b"
integrity sha512-TjMyeVUvNEnOnhzs6uAn9Ya47GmMo3qq7m+Lr/3ON0Rs5kHvb8I+SQYjLUSYn7qhEm0QjW0yrBkvz9yOrwwz1A== integrity sha512-Ru5o9+V8CpunKnz5LGgWXkmrH/20cGKwcHwS4m73zIvs54CN9epEmT/HLqFJW3kXpakAFkEdzgy1hzlJe3E4OQ==
dependencies: dependencies:
"@babel/runtime" "^7.8.7" "@babel/runtime" "^7.8.7"
csstype "^2.6.7" csstype "^3.0.2"
dom-serializer@0, dom-serializer@^0.2.1: dom-serializer@0, dom-serializer@^0.2.1:
version "0.2.2" version "0.2.2"
...@@ -5992,6 +5940,15 @@ dom-serializer@0, dom-serializer@^0.2.1: ...@@ -5992,6 +5940,15 @@ dom-serializer@0, dom-serializer@^0.2.1:
domelementtype "^2.0.1" domelementtype "^2.0.1"
entities "^2.0.0" entities "^2.0.0"
dom-serializer@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.0.1.tgz#79695eb49af3cd8abc8d93a73da382deb1ca0795"
integrity sha512-1Aj1Qy3YLbdslkI75QEOfdp9TkQ3o8LRISAzxOibjBs/xWwr1WxZFOQphFkZuepHFGo+kB8e5FVJSS0faAJ4Rw==
dependencies:
domelementtype "^2.0.1"
domhandler "^3.0.0"
entities "^2.0.0"
dom-serializer@~0.1.1: dom-serializer@~0.1.1:
version "0.1.1" version "0.1.1"
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0"
...@@ -6044,7 +6001,7 @@ domutils@1.5.1: ...@@ -6044,7 +6001,7 @@ domutils@1.5.1:
dom-serializer "0" dom-serializer "0"
domelementtype "1" domelementtype "1"
domutils@2.1.0, domutils@^2.0.0: domutils@2.1.0:
version "2.1.0" version "2.1.0"
resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.1.0.tgz#7ade3201af43703fde154952e3a868eb4b635f16" resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.1.0.tgz#7ade3201af43703fde154952e3a868eb4b635f16"
integrity sha512-CD9M0Dm1iaHfQ1R/TI+z3/JWp/pgub0j4jIQKH89ARR4ATAV2nbaOQS5XxU9maJP5jHaPdDDQSEHuE2UmpUTKg== integrity sha512-CD9M0Dm1iaHfQ1R/TI+z3/JWp/pgub0j4jIQKH89ARR4ATAV2nbaOQS5XxU9maJP5jHaPdDDQSEHuE2UmpUTKg==
...@@ -6061,6 +6018,15 @@ domutils@^1.5.1, domutils@^1.7.0: ...@@ -6061,6 +6018,15 @@ domutils@^1.5.1, domutils@^1.7.0:
dom-serializer "0" dom-serializer "0"
domelementtype "1" domelementtype "1"
domutils@^2.0.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.2.0.tgz#f3ce1610af5c30280bde1b71f84b018b958f32cf"
integrity sha512-0haAxVr1PR0SqYwCH7mxMpHZUwjih9oPPedqpR/KufsnxPyZ9dyVw1R5093qnJF3WXSbjBkdzRWLw/knJV/fAg==
dependencies:
dom-serializer "^1.0.1"
domelementtype "^2.0.1"
domhandler "^3.0.0"
dot-case@^3.0.3: dot-case@^3.0.3:
version "3.0.3" version "3.0.3"
resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.3.tgz#21d3b52efaaba2ea5fda875bb1aa8124521cf4aa" resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.3.tgz#21d3b52efaaba2ea5fda875bb1aa8124521cf4aa"
...@@ -6069,21 +6035,14 @@ dot-case@^3.0.3: ...@@ -6069,21 +6035,14 @@ dot-case@^3.0.3:
no-case "^3.0.3" no-case "^3.0.3"
tslib "^1.10.0" tslib "^1.10.0"
dot-prop@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177"
integrity sha1-G3CK8JSknJoOfbyteQq6U52sEXc=
dependencies:
is-obj "^1.0.0"
dot-prop@^4.2.0: dot-prop@^4.2.0:
version "4.2.0" version "4.2.1"
resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.1.tgz#45884194a71fc2cda71cbb4bceb3a4dd2f433ba4"
integrity sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ== integrity sha512-l0p4+mIuJIua0mhxGoh4a+iNL9bmeK5DvnSVQa6T0OhrVmaEa1XScX5Etc673FePCJOArq/4Pa2cLGODUWTPOQ==
dependencies: dependencies:
is-obj "^1.0.0" is-obj "^1.0.0"
dot-prop@^5.2.0: dot-prop@^5.1.0, dot-prop@^5.2.0:
version "5.2.0" version "5.2.0"
resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.2.0.tgz#c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb" resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.2.0.tgz#c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb"
integrity sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A== integrity sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==
...@@ -6096,9 +6055,9 @@ duplexer3@^0.1.4: ...@@ -6096,9 +6055,9 @@ duplexer3@^0.1.4:
integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=
duplexer@^0.1.1: duplexer@^0.1.1:
version "0.1.1" version "0.1.2"
resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6"
integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==
duplexify@^3.4.2, duplexify@^3.6.0: duplexify@^3.4.2, duplexify@^3.6.0:
version "3.7.1" version "3.7.1"
...@@ -6138,10 +6097,10 @@ ee-first@1.1.1: ...@@ -6138,10 +6097,10 @@ ee-first@1.1.1:
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
electron-to-chromium@^1.3.413, electron-to-chromium@^1.3.488: electron-to-chromium@^1.3.413, electron-to-chromium@^1.3.523:
version "1.3.510" version "1.3.558"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.510.tgz#dee781ff8b595c0deb60172b75d50b6889757eda" resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.558.tgz#a329d3139cb33e8652a7e7db4c5ae26e294b9f60"
integrity sha512-sLtGB0znXdmo6lM8hy5wTVo+fLqvIuO8hEpgc0DvPmFZqvBu/WB7AarEwhxVKjf3rVbws/rC8Xf+AlsOb36lJQ== integrity sha512-r6th6b/TU2udqVoUDGWHF/z2ACJVnEei0wvWZf/nt+Qql1Vxh60ZYPhQP46j4D73T/Jou7hl4TqQfxben+qJTg==
electron-updater@4.3.1: electron-updater@4.3.1:
version "4.3.1" version "4.3.1"
...@@ -6156,7 +6115,7 @@ electron-updater@4.3.1: ...@@ -6156,7 +6115,7 @@ electron-updater@4.3.1:
lodash.isequal "^4.5.0" lodash.isequal "^4.5.0"
semver "^7.1.3" semver "^7.1.3"
elliptic@^6.0.0, elliptic@^6.5.2: elliptic@^6.5.3:
version "6.5.3" version "6.5.3"
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6" resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6"
integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw== integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==
...@@ -6259,9 +6218,9 @@ env-paths@^2.2.0: ...@@ -6259,9 +6218,9 @@ env-paths@^2.2.0:
integrity sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA== integrity sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA==
envinfo@^7.3.1: envinfo@^7.3.1:
version "7.7.2" version "7.7.3"
resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.7.2.tgz#098f97a0e902f8141f9150553c92dbb282c4cabe" resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.7.3.tgz#4b2d8622e3e7366afb8091b23ed95569ea0208cc"
integrity sha512-k3Eh5bKuQnZjm49/L7H4cHzs2FlL5QjbTB3JrPxoTI8aJG7hVMe4uKyJxSYH4ahseby2waUwk5OaKX/nAsaYgg== integrity sha512-46+j5QxbPWza0PB1i15nZx0xQ4I/EfQxg9J8Had3b408SV63nEtor2e+oiY63amTo9KTuh2a3XLObNwduxYwwA==
enzyme-adapter-react-16@1.15.2: enzyme-adapter-react-16@1.15.2:
version "1.15.2" version "1.15.2"
...@@ -6279,11 +6238,11 @@ enzyme-adapter-react-16@1.15.2: ...@@ -6279,11 +6238,11 @@ enzyme-adapter-react-16@1.15.2:
semver "^5.7.0" semver "^5.7.0"
enzyme-adapter-utils@^1.13.0: enzyme-adapter-utils@^1.13.0:
version "1.13.0" version "1.13.1"
resolved "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.13.0.tgz#01c885dde2114b4690bf741f8dc94cee3060eb78" resolved "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.13.1.tgz#59c1b734b0927543e3d8dc477299ec957feb312d"
integrity sha512-YuEtfQp76Lj5TG1NvtP2eGJnFKogk/zT70fyYHXK2j3v6CtuHqc8YmgH/vaiBfL8K1SgVVbQXtTcgQZFwzTVyQ== integrity sha512-5A9MXXgmh/Tkvee3bL/9RCAAgleHqFnsurTYCbymecO4ohvtNO5zqIhHxV370t7nJAwaCfkgtffarKpC0GPt0g==
dependencies: dependencies:
airbnb-prop-types "^2.15.0" airbnb-prop-types "^2.16.0"
function.prototype.name "^1.1.2" function.prototype.name "^1.1.2"
object.assign "^4.1.0" object.assign "^4.1.0"
object.fromentries "^2.0.2" object.fromentries "^2.0.2"
...@@ -6291,12 +6250,12 @@ enzyme-adapter-utils@^1.13.0: ...@@ -6291,12 +6250,12 @@ enzyme-adapter-utils@^1.13.0:
semver "^5.7.1" semver "^5.7.1"
enzyme-shallow-equal@^1.0.1: enzyme-shallow-equal@^1.0.1:
version "1.0.1" version "1.0.4"
resolved "https://registry.yarnpkg.com/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.1.tgz#7afe03db3801c9b76de8440694096412a8d9d49e" resolved "https://registry.yarnpkg.com/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.4.tgz#b9256cb25a5f430f9bfe073a84808c1d74fced2e"
integrity sha512-hGA3i1so8OrYOZSM9whlkNmVHOicJpsjgTzC+wn2JMJXhq1oO4kA4bJ5MsfzSIcC71aLDKzJ6gZpIxrqt3QTAQ== integrity sha512-MttIwB8kKxypwHvRynuC3ahyNc+cFbR8mjVIltnmzQ0uKGqmsfO4bfBuLxb0beLNPhjblUEYvEbsg+VSygvF1Q==
dependencies: dependencies:
has "^1.0.3" has "^1.0.3"
object-is "^1.0.2" object-is "^1.1.2"
enzyme-to-json@3.5.0: enzyme-to-json@3.5.0:
version "3.5.0" version "3.5.0"
...@@ -6370,6 +6329,24 @@ es-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstrac ...@@ -6370,6 +6329,24 @@ es-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstrac
string.prototype.trimend "^1.0.1" string.prototype.trimend "^1.0.1"
string.prototype.trimstart "^1.0.1" string.prototype.trimstart "^1.0.1"
es-abstract@^1.18.0-next.0:
version "1.18.0-next.0"
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.0.tgz#b302834927e624d8e5837ed48224291f2c66e6fc"
integrity sha512-elZXTZXKn51hUBdJjSZGYRujuzilgXo8vSPQzjGYXLvSlGiCo8VO8ZGV3kjo9a0WNJJ57hENagwbtlRuHuzkcQ==
dependencies:
es-to-primitive "^1.2.1"
function-bind "^1.1.1"
has "^1.0.3"
has-symbols "^1.0.1"
is-callable "^1.2.0"
is-negative-zero "^2.0.0"
is-regex "^1.1.1"
object-inspect "^1.8.0"
object-keys "^1.1.1"
object.assign "^4.1.0"
string.prototype.trimend "^1.0.1"
string.prototype.trimstart "^1.0.1"
es-to-primitive@^1.2.1: es-to-primitive@^1.2.1:
version "1.2.1" version "1.2.1"
resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
...@@ -6417,7 +6394,7 @@ es6-symbol@^3.1.1, es6-symbol@~3.1.3: ...@@ -6417,7 +6394,7 @@ es6-symbol@^3.1.1, es6-symbol@~3.1.3:
d "^1.0.1" d "^1.0.1"
ext "^1.1.2" ext "^1.1.2"
escalade@^3.0.1: escalade@^3.0.2:
version "3.0.2" version "3.0.2"
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.0.2.tgz#6a580d70edb87880f22b4c91d0d56078df6962c4" resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.0.2.tgz#6a580d70edb87880f22b4c91d0d56078df6962c4"
integrity sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ== integrity sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ==
...@@ -6566,11 +6543,11 @@ eslint@7.6.0: ...@@ -6566,11 +6543,11 @@ eslint@7.6.0:
v8-compile-cache "^2.0.3" v8-compile-cache "^2.0.3"
espree@^7.2.0: espree@^7.2.0:
version "7.2.0" version "7.3.0"
resolved "https://registry.yarnpkg.com/espree/-/espree-7.2.0.tgz#1c263d5b513dbad0ac30c4991b93ac354e948d69" resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.0.tgz#dc30437cf67947cf576121ebd780f15eeac72348"
integrity sha512-H+cQ3+3JYRMEIOl87e7QdHX70ocly5iW4+dttuR8iYSPr/hXKFb+7dBsZ7+u1adC4VrnPlTkv0+OwuPnDop19g== integrity sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw==
dependencies: dependencies:
acorn "^7.3.1" acorn "^7.4.0"
acorn-jsx "^5.2.0" acorn-jsx "^5.2.0"
eslint-visitor-keys "^1.3.0" eslint-visitor-keys "^1.3.0"
...@@ -6592,21 +6569,21 @@ esquery@^1.2.0: ...@@ -6592,21 +6569,21 @@ esquery@^1.2.0:
estraverse "^5.1.0" estraverse "^5.1.0"
esrecurse@^4.1.0: esrecurse@^4.1.0:
version "4.2.1" version "4.3.0"
resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
dependencies: dependencies:
estraverse "^4.1.0" estraverse "^5.2.0"
estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: estraverse@^4.1.1, estraverse@^4.2.0:
version "4.3.0" version "4.3.0"
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
estraverse@^5.1.0: estraverse@^5.1.0, estraverse@^5.2.0:
version "5.1.0" version "5.2.0"
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.1.0.tgz#374309d39fd935ae500e7b92e8a6b4c720e59642" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880"
integrity sha512-FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw== integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==
esutils@^2.0.2: esutils@^2.0.2:
version "2.0.3" version "2.0.3"
...@@ -6633,7 +6610,7 @@ eventemitter2@~0.4.14: ...@@ -6633,7 +6610,7 @@ eventemitter2@~0.4.14:
resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-0.4.14.tgz#8f61b75cde012b2e9eb284d4545583b5643b61ab" resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-0.4.14.tgz#8f61b75cde012b2e9eb284d4545583b5643b61ab"
integrity sha1-j2G3XN4BKy6esoTUVFWDtWQ7Yas= integrity sha1-j2G3XN4BKy6esoTUVFWDtWQ7Yas=
eventemitter3@4.0.4, eventemitter3@^4.0.0: eventemitter3@4.0.4:
version "4.0.4" version "4.0.4"
resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.4.tgz#b5463ace635a083d018bdc7c917b4c5f10a85384" resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.4.tgz#b5463ace635a083d018bdc7c917b4c5f10a85384"
integrity sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ== integrity sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==
...@@ -6643,6 +6620,11 @@ eventemitter3@^3.1.0: ...@@ -6643,6 +6620,11 @@ eventemitter3@^3.1.0:
resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.2.tgz#2d3d48f9c346698fce83a85d7d664e98535df6e7" resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.2.tgz#2d3d48f9c346698fce83a85d7d664e98535df6e7"
integrity sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q== integrity sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==
eventemitter3@^4.0.0:
version "4.0.7"
resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
events@^3.0.0: events@^3.0.0:
version "3.2.0" version "3.2.0"
resolved "https://registry.yarnpkg.com/events/-/events-3.2.0.tgz#93b87c18f8efcd4202a461aec4dfc0556b639379" resolved "https://registry.yarnpkg.com/events/-/events-3.2.0.tgz#93b87c18f8efcd4202a461aec4dfc0556b639379"
...@@ -6714,16 +6696,16 @@ expand-tilde@^2.0.0, expand-tilde@^2.0.2: ...@@ -6714,16 +6696,16 @@ expand-tilde@^2.0.0, expand-tilde@^2.0.2:
dependencies: dependencies:
homedir-polyfill "^1.0.1" homedir-polyfill "^1.0.1"
expect@^26.2.0: expect@^26.4.2:
version "26.2.0" version "26.4.2"
resolved "https://registry.yarnpkg.com/expect/-/expect-26.2.0.tgz#0140dd9cc7376d7833852e9cda88c05414f1efba" resolved "https://registry.yarnpkg.com/expect/-/expect-26.4.2.tgz#36db120928a5a2d7d9736643032de32f24e1b2a1"
integrity sha512-8AMBQ9UVcoUXt0B7v+5/U5H6yiUR87L6eKCfjE3spx7Ya5lF+ebUo37MCFBML2OiLfkX1sxmQOZhIDonyVTkcw== integrity sha512-IlJ3X52Z0lDHm7gjEp+m76uX46ldH5VpqmU0006vqDju/285twh7zaWMRhs67VpQhBwjjMchk+p5aA0VkERCAA==
dependencies: dependencies:
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
ansi-styles "^4.0.0" ansi-styles "^4.0.0"
jest-get-type "^26.0.0" jest-get-type "^26.3.0"
jest-matcher-utils "^26.2.0" jest-matcher-utils "^26.4.2"
jest-message-util "^26.2.0" jest-message-util "^26.3.0"
jest-regex-util "^26.0.0" jest-regex-util "^26.0.0"
express@4.17.1: express@4.17.1:
...@@ -7066,9 +7048,9 @@ follow-redirects@1.5.10: ...@@ -7066,9 +7048,9 @@ follow-redirects@1.5.10:
debug "=3.1.0" debug "=3.1.0"
follow-redirects@^1.0.0: follow-redirects@^1.0.0:
version "1.12.1" version "1.13.0"
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.12.1.tgz#de54a6205311b93d60398ebc01cf7015682312b6" resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.0.tgz#b42e8d93a2a7eea5ed88633676d6597bc8e384db"
integrity sha512-tmRv0AVuR7ZyouUHLeNSiO6pqulF7dYa3s19c6t+wz9LD69/uSzdMxJ2S91nTI9U3rt/IldxpzMOFejp6f0hjg== integrity sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA==
for-in@^1.0.2: for-in@^1.0.2:
version "1.0.2" version "1.0.2"
...@@ -7308,9 +7290,9 @@ get-stream@^4.0.0, get-stream@^4.1.0: ...@@ -7308,9 +7290,9 @@ get-stream@^4.0.0, get-stream@^4.1.0:
pump "^3.0.0" pump "^3.0.0"
get-stream@^5.0.0, get-stream@^5.1.0: get-stream@^5.0.0, get-stream@^5.1.0:
version "5.1.0" version "5.2.0"
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3"
integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw== integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==
dependencies: dependencies:
pump "^3.0.0" pump "^3.0.0"
...@@ -7366,17 +7348,17 @@ git-semver-tags@^2.0.3: ...@@ -7366,17 +7348,17 @@ git-semver-tags@^2.0.3:
semver "^6.0.0" semver "^6.0.0"
git-up@^4.0.0: git-up@^4.0.0:
version "4.0.1" version "4.0.2"
resolved "https://registry.yarnpkg.com/git-up/-/git-up-4.0.1.tgz#cb2ef086653640e721d2042fe3104857d89007c0" resolved "https://registry.yarnpkg.com/git-up/-/git-up-4.0.2.tgz#10c3d731051b366dc19d3df454bfca3f77913a7c"
integrity sha512-LFTZZrBlrCrGCG07/dm1aCjjpL1z9L3+5aEeI9SBhAqSc+kiA9Or1bgZhQFNppJX6h/f5McrvJt1mQXTFm6Qrw== integrity sha512-kbuvus1dWQB2sSW4cbfTeGpCMd8ge9jx9RKnhXhuJ7tnvT+NIrTVfYZxjtflZddQYcmdOTlkAcjmx7bor+15AQ==
dependencies: dependencies:
is-ssh "^1.3.0" is-ssh "^1.3.0"
parse-url "^5.0.0" parse-url "^5.0.0"
git-url-parse@^11.1.2: git-url-parse@^11.1.2:
version "11.1.2" version "11.1.3"
resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-11.1.2.tgz#aff1a897c36cc93699270587bea3dbcbbb95de67" resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-11.1.3.tgz#03625b6fc09905e9ad1da7bb2b84be1bf9123143"
integrity sha512-gZeLVGY8QVKMIkckncX+iCq2/L8PlwncvDFKiWkBn9EtCfYDbliRTTp6qzyQ1VMdITUfq7293zDzfpjdiGASSQ== integrity sha512-GPsfwticcu52WQ+eHp0IYkAyaOASgYdtsQDIt4rUp6GbiNt1P9ddrh3O0kQB0eD4UJZszVqNT3+9Zwcg40fywA==
dependencies: dependencies:
git-up "^4.0.0" git-up "^4.0.0"
...@@ -8307,9 +8289,9 @@ is-directory@^0.3.1: ...@@ -8307,9 +8289,9 @@ is-directory@^0.3.1:
integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=
is-docker@^2.0.0: is-docker@^2.0.0:
version "2.0.0" version "2.1.1"
resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.0.0.tgz#2cb0df0e75e2d064fe1864c37cdeacb7b2dcf25b" resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.1.1.tgz#4125a88e44e450d384e09047ede71adc2d144156"
integrity sha512-pJEdRugimx4fBMra5z2/5iRdZ63OhYV0vr0Dwm5+xtW4D1FvRkB8hamMIhnWfyJeDdyr/aa7BDyNbtG38VxgoQ== integrity sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==
is-extendable@^0.1.0, is-extendable@^0.1.1: is-extendable@^0.1.0, is-extendable@^0.1.1:
version "0.1.1" version "0.1.1"
...@@ -8382,6 +8364,11 @@ is-interactive@^1.0.0: ...@@ -8382,6 +8364,11 @@ is-interactive@^1.0.0:
resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e"
integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==
is-negative-zero@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.0.tgz#9553b121b0fac28869da9ed459e20c7543788461"
integrity sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE=
is-npm@^4.0.0: is-npm@^4.0.0:
version "4.0.0" version "4.0.0"
resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-4.0.0.tgz#c90dd8380696df87a7a6d823c20d0b12bbe3c84d" resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-4.0.0.tgz#c90dd8380696df87a7a6d823c20d0b12bbe3c84d"
...@@ -8441,10 +8428,10 @@ is-potential-custom-element-name@^1.0.0: ...@@ -8441,10 +8428,10 @@ is-potential-custom-element-name@^1.0.0:
resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz#0c52e54bcca391bb2c494b21e8626d7336c6e397" resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz#0c52e54bcca391bb2c494b21e8626d7336c6e397"
integrity sha1-DFLlS8yjkbssSUsh6GJtczbG45c= integrity sha1-DFLlS8yjkbssSUsh6GJtczbG45c=
is-regex@^1.0.5, is-regex@^1.1.0: is-regex@^1.0.5, is-regex@^1.1.0, is-regex@^1.1.1:
version "1.1.0" version "1.1.1"
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.0.tgz#ece38e389e490df0dc21caea2bd596f987f767ff" resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9"
integrity sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw== integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==
dependencies: dependencies:
has-symbols "^1.0.1" has-symbols "^1.0.1"
...@@ -8459,9 +8446,9 @@ is-resolvable@^1.0.0: ...@@ -8459,9 +8446,9 @@ is-resolvable@^1.0.0:
integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==
is-ssh@^1.3.0: is-ssh@^1.3.0:
version "1.3.1" version "1.3.2"
resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.3.1.tgz#f349a8cadd24e65298037a522cf7520f2e81a0f3" resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.3.2.tgz#a4b82ab63d73976fd8263cceee27f99a88bdae2b"
integrity sha512-0eRIASHZt1E68/ixClI8bp2YK2wmBPVWEismTs6M+M099jKgrzl/3E976zIbImSIob48N2/XGe9y7ZiYdImSlg== integrity sha512-elEw0/0c2UscLrNG+OAorbP539E3rhliKPg+hDMWN9VwrDXfYK+4PBEykDPfxlYYtQvl84TascnQyobfQLHEhQ==
dependencies: dependencies:
protocols "^1.1.0" protocols "^1.1.0"
...@@ -8619,57 +8606,57 @@ istanbul-reports@^3.0.2: ...@@ -8619,57 +8606,57 @@ istanbul-reports@^3.0.2:
html-escaper "^2.0.0" html-escaper "^2.0.0"
istanbul-lib-report "^3.0.0" istanbul-lib-report "^3.0.0"
jest-changed-files@^26.2.0: jest-changed-files@^26.3.0:
version "26.2.0" version "26.3.0"
resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-26.2.0.tgz#b4946201defe0c919a2f3d601e9f98cb21dacc15" resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-26.3.0.tgz#68fb2a7eb125f50839dab1f5a17db3607fe195b1"
integrity sha512-+RyJb+F1K/XBLIYiL449vo5D+CvlHv29QveJUWNPXuUicyZcq+tf1wNxmmFeRvAU1+TzhwqczSjxnCCFt7+8iA== integrity sha512-1C4R4nijgPltX6fugKxM4oQ18zimS7LqQ+zTTY8lMCMFPrxqBFb7KJH0Z2fRQJvw2Slbaipsqq7s1mgX5Iot+g==
dependencies: dependencies:
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
execa "^4.0.0" execa "^4.0.0"
throat "^5.0.0" throat "^5.0.0"
jest-cli@^26.2.2: jest-cli@^26.2.2:
version "26.2.2" version "26.4.2"
resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-26.2.2.tgz#4c273e5474baafac1eb15fd25aaafb4703f5ffbc" resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-26.4.2.tgz#24afc6e4dfc25cde4c7ec4226fb7db5f157c21da"
integrity sha512-vVcly0n/ijZvdy6gPQiQt0YANwX2hLTPQZHtW7Vi3gcFdKTtif7YpI85F8R8JYy5DFSWz4x1OW0arnxlziu5Lw== integrity sha512-zb+lGd/SfrPvoRSC/0LWdaWCnscXc1mGYW//NP4/tmBvRPT3VntZ2jtKUONsRi59zc5JqmsSajA9ewJKFYp8Cw==
dependencies: dependencies:
"@jest/core" "^26.2.2" "@jest/core" "^26.4.2"
"@jest/test-result" "^26.2.0" "@jest/test-result" "^26.3.0"
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
chalk "^4.0.0" chalk "^4.0.0"
exit "^0.1.2" exit "^0.1.2"
graceful-fs "^4.2.4" graceful-fs "^4.2.4"
import-local "^3.0.2" import-local "^3.0.2"
is-ci "^2.0.0" is-ci "^2.0.0"
jest-config "^26.2.2" jest-config "^26.4.2"
jest-util "^26.2.0" jest-util "^26.3.0"
jest-validate "^26.2.0" jest-validate "^26.4.2"
prompts "^2.0.1" prompts "^2.0.1"
yargs "^15.3.1" yargs "^15.3.1"
jest-config@^26.2.2: jest-config@^26.4.2:
version "26.2.2" version "26.4.2"
resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-26.2.2.tgz#f3ebc7e2bc3f49de8ed3f8007152f345bb111917" resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-26.4.2.tgz#da0cbb7dc2c131ffe831f0f7f2a36256e6086558"
integrity sha512-2lhxH0y4YFOijMJ65usuf78m7+9/8+hAb1PZQtdRdgnQpAb4zP6KcVDDktpHEkspBKnc2lmFu+RQdHukUUbiTg== integrity sha512-QBf7YGLuToiM8PmTnJEdRxyYy3mHWLh24LJZKVdXZ2PNdizSe1B/E8bVm+HYcjbEzGuVXDv/di+EzdO/6Gq80A==
dependencies: dependencies:
"@babel/core" "^7.1.0" "@babel/core" "^7.1.0"
"@jest/test-sequencer" "^26.2.2" "@jest/test-sequencer" "^26.4.2"
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
babel-jest "^26.2.2" babel-jest "^26.3.0"
chalk "^4.0.0" chalk "^4.0.0"
deepmerge "^4.2.2" deepmerge "^4.2.2"
glob "^7.1.1" glob "^7.1.1"
graceful-fs "^4.2.4" graceful-fs "^4.2.4"
jest-environment-jsdom "^26.2.0" jest-environment-jsdom "^26.3.0"
jest-environment-node "^26.2.0" jest-environment-node "^26.3.0"
jest-get-type "^26.0.0" jest-get-type "^26.3.0"
jest-jasmine2 "^26.2.2" jest-jasmine2 "^26.4.2"
jest-regex-util "^26.0.0" jest-regex-util "^26.0.0"
jest-resolve "^26.2.2" jest-resolve "^26.4.0"
jest-util "^26.2.0" jest-util "^26.3.0"
jest-validate "^26.2.0" jest-validate "^26.4.2"
micromatch "^4.0.2" micromatch "^4.0.2"
pretty-format "^26.2.0" pretty-format "^26.4.2"
jest-diff@^25.2.1: jest-diff@^25.2.1:
version "25.5.0" version "25.5.0"
...@@ -8681,15 +8668,15 @@ jest-diff@^25.2.1: ...@@ -8681,15 +8668,15 @@ jest-diff@^25.2.1:
jest-get-type "^25.2.6" jest-get-type "^25.2.6"
pretty-format "^25.5.0" pretty-format "^25.5.0"
jest-diff@^26.2.0: jest-diff@^26.4.2:
version "26.2.0" version "26.4.2"
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.2.0.tgz#dee62c771adbb23ae585f3f1bd289a6e8ef4f298" resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.4.2.tgz#a1b7b303bcc534aabdb3bd4a7caf594ac059f5aa"
integrity sha512-Wu4Aopi2nzCsHWLBlD48TgRy3Z7OsxlwvHNd1YSnHc7q1NJfrmyCPoUXrTIrydQOG5ApaYpsAsdfnMbJqV1/wQ== integrity sha512-6T1XQY8U28WH0Z5rGpQ+VqZSZz8EN8rZcBtfvXaOkbwxIEeRre6qnuZQlbY1AJ4MKDxQF8EkrCvK+hL/VkyYLQ==
dependencies: dependencies:
chalk "^4.0.0" chalk "^4.0.0"
diff-sequences "^26.0.0" diff-sequences "^26.3.0"
jest-get-type "^26.0.0" jest-get-type "^26.3.0"
pretty-format "^26.2.0" pretty-format "^26.4.2"
jest-docblock@^26.0.0: jest-docblock@^26.0.0:
version "26.0.0" version "26.0.0"
...@@ -8698,122 +8685,122 @@ jest-docblock@^26.0.0: ...@@ -8698,122 +8685,122 @@ jest-docblock@^26.0.0:
dependencies: dependencies:
detect-newline "^3.0.0" detect-newline "^3.0.0"
jest-each@^26.2.0: jest-each@^26.4.2:
version "26.2.0" version "26.4.2"
resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-26.2.0.tgz#aec8efa01d072d7982c900e74940863385fa884e" resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-26.4.2.tgz#bb14f7f4304f2bb2e2b81f783f989449b8b6ffae"
integrity sha512-gHPCaho1twWHB5bpcfnozlc6mrMi+VAewVPNgmwf81x2Gzr6XO4dl+eOrwPWxbkYlgjgrYjWK2xgKnixbzH3Ew== integrity sha512-p15rt8r8cUcRY0Mvo1fpkOGYm7iI8S6ySxgIdfh3oOIv+gHwrHTy5VWCGOecWUhDsit4Nz8avJWdT07WLpbwDA==
dependencies: dependencies:
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
chalk "^4.0.0" chalk "^4.0.0"
jest-get-type "^26.0.0" jest-get-type "^26.3.0"
jest-util "^26.2.0" jest-util "^26.3.0"
pretty-format "^26.2.0" pretty-format "^26.4.2"
jest-environment-jsdom@^26.2.0: jest-environment-jsdom@^26.3.0:
version "26.2.0" version "26.3.0"
resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-26.2.0.tgz#6443a6f3569297dcaa4371dddf93acaf167302dc" resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-26.3.0.tgz#3b749ba0f3a78e92ba2c9ce519e16e5dd515220c"
integrity sha512-sDG24+5M4NuIGzkI3rJW8XUlrpkvIdE9Zz4jhD8OBnVxAw+Y1jUk9X+lAOD48nlfUTlnt3lbAI3k2Ox+WF3S0g== integrity sha512-zra8He2btIMJkAzvLaiZ9QwEPGEetbxqmjEBQwhH3CA+Hhhu0jSiEJxnJMbX28TGUvPLxBt/zyaTLrOPF4yMJA==
dependencies: dependencies:
"@jest/environment" "^26.2.0" "@jest/environment" "^26.3.0"
"@jest/fake-timers" "^26.2.0" "@jest/fake-timers" "^26.3.0"
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
"@types/node" "*" "@types/node" "*"
jest-mock "^26.2.0" jest-mock "^26.3.0"
jest-util "^26.2.0" jest-util "^26.3.0"
jsdom "^16.2.2" jsdom "^16.2.2"
jest-environment-node@^26.2.0: jest-environment-node@^26.3.0:
version "26.2.0" version "26.3.0"
resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-26.2.0.tgz#fee89e06bdd4bed3f75ee2978d73ede9bb57a681" resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-26.3.0.tgz#56c6cfb506d1597f94ee8d717072bda7228df849"
integrity sha512-4M5ExTYkJ19efBzkiXtBi74JqKLDciEk4CEsp5tTjWGYMrlKFQFtwIVG3tW1OGE0AlXhZjuHPwubuRYY4j4uOw== integrity sha512-c9BvYoo+FGcMj5FunbBgtBnbR5qk3uky8PKyRVpSfe2/8+LrNQMiXX53z6q2kY+j15SkjQCOSL/6LHnCPLVHNw==
dependencies: dependencies:
"@jest/environment" "^26.2.0" "@jest/environment" "^26.3.0"
"@jest/fake-timers" "^26.2.0" "@jest/fake-timers" "^26.3.0"
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
"@types/node" "*" "@types/node" "*"
jest-mock "^26.2.0" jest-mock "^26.3.0"
jest-util "^26.2.0" jest-util "^26.3.0"
jest-get-type@^25.2.6: jest-get-type@^25.2.6:
version "25.2.6" version "25.2.6"
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-25.2.6.tgz#0b0a32fab8908b44d508be81681487dbabb8d877" resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-25.2.6.tgz#0b0a32fab8908b44d508be81681487dbabb8d877"
integrity sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig== integrity sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==
jest-get-type@^26.0.0: jest-get-type@^26.3.0:
version "26.0.0" version "26.3.0"
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.0.0.tgz#381e986a718998dbfafcd5ec05934be538db4039" resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0"
integrity sha512-zRc1OAPnnws1EVfykXOj19zo2EMw5Hi6HLbFCSjpuJiXtOWAYIjNsHVSbpQ8bDX7L5BGYGI8m+HmKdjHYFF0kg== integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==
jest-haste-map@^26.2.2: jest-haste-map@^26.3.0:
version "26.2.2" version "26.3.0"
resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.2.2.tgz#6d4267b1903854bfdf6a871419f35a82f03ae71e" resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.3.0.tgz#c51a3b40100d53ab777bfdad382d2e7a00e5c726"
integrity sha512-3sJlMSt+NHnzCB+0KhJ1Ut4zKJBiJOlbrqEYNdRQGlXTv8kqzZWjUKQRY3pkjmlf+7rYjAV++MQ4D6g4DhAyOg== integrity sha512-DHWBpTJgJhLLGwE5Z1ZaqLTYqeODQIZpby0zMBsCU9iRFHYyhklYqP4EiG73j5dkbaAdSZhgB938mL51Q5LeZA==
dependencies: dependencies:
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
"@types/graceful-fs" "^4.1.2" "@types/graceful-fs" "^4.1.2"
"@types/node" "*" "@types/node" "*"
anymatch "^3.0.3" anymatch "^3.0.3"
fb-watchman "^2.0.0" fb-watchman "^2.0.0"
graceful-fs "^4.2.4" graceful-fs "^4.2.4"
jest-regex-util "^26.0.0" jest-regex-util "^26.0.0"
jest-serializer "^26.2.0" jest-serializer "^26.3.0"
jest-util "^26.2.0" jest-util "^26.3.0"
jest-worker "^26.2.1" jest-worker "^26.3.0"
micromatch "^4.0.2" micromatch "^4.0.2"
sane "^4.0.3" sane "^4.0.3"
walker "^1.0.7" walker "^1.0.7"
optionalDependencies: optionalDependencies:
fsevents "^2.1.2" fsevents "^2.1.2"
jest-jasmine2@^26.2.2: jest-jasmine2@^26.4.2:
version "26.2.2" version "26.4.2"
resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-26.2.2.tgz#d82b1721fac2b153a4f8b3f0c95e81e702812de2" resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-26.4.2.tgz#18a9d5bec30904267ac5e9797570932aec1e2257"
integrity sha512-Q8AAHpbiZMVMy4Hz9j1j1bg2yUmPa1W9StBvcHqRaKa9PHaDUMwds8LwaDyzP/2fkybcTQE4+pTMDOG9826tEw== integrity sha512-z7H4EpCldHN1J8fNgsja58QftxBSL+JcwZmaXIvV9WKIM+x49F4GLHu/+BQh2kzRKHAgaN/E82od+8rTOBPyPA==
dependencies: dependencies:
"@babel/traverse" "^7.1.0" "@babel/traverse" "^7.1.0"
"@jest/environment" "^26.2.0" "@jest/environment" "^26.3.0"
"@jest/source-map" "^26.1.0" "@jest/source-map" "^26.3.0"
"@jest/test-result" "^26.2.0" "@jest/test-result" "^26.3.0"
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
"@types/node" "*" "@types/node" "*"
chalk "^4.0.0" chalk "^4.0.0"
co "^4.6.0" co "^4.6.0"
expect "^26.2.0" expect "^26.4.2"
is-generator-fn "^2.0.0" is-generator-fn "^2.0.0"
jest-each "^26.2.0" jest-each "^26.4.2"
jest-matcher-utils "^26.2.0" jest-matcher-utils "^26.4.2"
jest-message-util "^26.2.0" jest-message-util "^26.3.0"
jest-runtime "^26.2.2" jest-runtime "^26.4.2"
jest-snapshot "^26.2.2" jest-snapshot "^26.4.2"
jest-util "^26.2.0" jest-util "^26.3.0"
pretty-format "^26.2.0" pretty-format "^26.4.2"
throat "^5.0.0" throat "^5.0.0"
jest-leak-detector@^26.2.0: jest-leak-detector@^26.4.2:
version "26.2.0" version "26.4.2"
resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-26.2.0.tgz#073ee6d8db7a9af043e7ce99d8eea17a4fb0cc50" resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-26.4.2.tgz#c73e2fa8757bf905f6f66fb9e0070b70fa0f573f"
integrity sha512-aQdzTX1YiufkXA1teXZu5xXOJgy7wZQw6OJ0iH5CtQlOETe6gTSocaYKUNui1SzQ91xmqEUZ/WRavg9FD82rtQ== integrity sha512-akzGcxwxtE+9ZJZRW+M2o+nTNnmQZxrHJxX/HjgDaU5+PLmY1qnQPnMjgADPGCRPhB+Yawe1iij0REe+k/aHoA==
dependencies: dependencies:
jest-get-type "^26.0.0" jest-get-type "^26.3.0"
pretty-format "^26.2.0" pretty-format "^26.4.2"
jest-matcher-utils@^26.2.0: jest-matcher-utils@^26.4.2:
version "26.2.0" version "26.4.2"
resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-26.2.0.tgz#b107af98c2b8c557ffd46c1adf06f794aa52d622" resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-26.4.2.tgz#fa81f3693f7cb67e5fc1537317525ef3b85f4b06"
integrity sha512-2cf/LW2VFb3ayPHrH36ZDjp9+CAeAe/pWBAwsV8t3dKcrINzXPVxq8qMWOxwt5BaeBCx4ZupVGH7VIgB8v66vQ== integrity sha512-KcbNqWfWUG24R7tu9WcAOKKdiXiXCbMvQYT6iodZ9k1f7065k0keUOW6XpJMMvah+hTfqkhJhRXmA3r3zMAg0Q==
dependencies: dependencies:
chalk "^4.0.0" chalk "^4.0.0"
jest-diff "^26.2.0" jest-diff "^26.4.2"
jest-get-type "^26.0.0" jest-get-type "^26.3.0"
pretty-format "^26.2.0" pretty-format "^26.4.2"
jest-message-util@^26.2.0: jest-message-util@^26.3.0:
version "26.2.0" version "26.3.0"
resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-26.2.0.tgz#757fbc1323992297092bb9016a71a2eb12fd22ea" resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-26.3.0.tgz#3bdb538af27bb417f2d4d16557606fd082d5841a"
integrity sha512-g362RhZaJuqeqG108n1sthz5vNpzTNy926eNDszo4ncRbmmcMRIUAZibnd6s5v2XSBCChAxQtCoN25gnzp7JbQ== integrity sha512-xIavRYqr4/otGOiLxLZGj3ieMmjcNE73Ui+LdSW/Y790j5acqCsAdDiLIbzHCZMpN07JOENRWX5DcU+OQ+TjTA==
dependencies: dependencies:
"@babel/code-frame" "^7.0.0" "@babel/code-frame" "^7.0.0"
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
"@types/stack-utils" "^1.0.1" "@types/stack-utils" "^1.0.1"
chalk "^4.0.0" chalk "^4.0.0"
graceful-fs "^4.2.4" graceful-fs "^4.2.4"
...@@ -8821,12 +8808,12 @@ jest-message-util@^26.2.0: ...@@ -8821,12 +8808,12 @@ jest-message-util@^26.2.0:
slash "^3.0.0" slash "^3.0.0"
stack-utils "^2.0.2" stack-utils "^2.0.2"
jest-mock@^26.2.0: jest-mock@^26.3.0:
version "26.2.0" version "26.3.0"
resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-26.2.0.tgz#a1b3303ab38c34aa1dbbc16ab57cdc1a59ed50d1" resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-26.3.0.tgz#ee62207c3c5ebe5f35b760e1267fee19a1cfdeba"
integrity sha512-XeC7yWtWmWByoyVOHSsE7NYsbXJLtJNgmhD7z4MKumKm6ET0si81bsSLbQ64L5saK3TgsHo2B/UqG5KNZ1Sp/Q== integrity sha512-PeaRrg8Dc6mnS35gOo/CbZovoDPKAeB1FICZiuagAgGvbWdNNyjQjkOaGUa/3N3JtpQ/Mh9P4A2D4Fv51NnP8Q==
dependencies: dependencies:
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
"@types/node" "*" "@types/node" "*"
jest-pnp-resolver@^1.2.2: jest-pnp-resolver@^1.2.2:
...@@ -8839,162 +8826,151 @@ jest-regex-util@^26.0.0: ...@@ -8839,162 +8826,151 @@ jest-regex-util@^26.0.0:
resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28" resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28"
integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A== integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==
jest-resolve-dependencies@^26.2.2: jest-resolve-dependencies@^26.4.2:
version "26.2.2" version "26.4.2"
resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-26.2.2.tgz#2ad3cd9281730e9a5c487cd846984c5324e47929" resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-26.4.2.tgz#739bdb027c14befb2fe5aabbd03f7bab355f1dc5"
integrity sha512-S5vufDmVbQXnpP7435gr710xeBGUFcKNpNswke7RmFvDQtmqPjPVU/rCeMlEU0p6vfpnjhwMYeaVjKZAy5QYJA== integrity sha512-ADHaOwqEcVc71uTfySzSowA/RdxUpCxhxa2FNLiin9vWLB1uLPad3we+JSSROq5+SrL9iYPdZZF8bdKM7XABTQ==
dependencies: dependencies:
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
jest-regex-util "^26.0.0" jest-regex-util "^26.0.0"
jest-snapshot "^26.2.2" jest-snapshot "^26.4.2"
jest-resolve@^26.2.2: jest-resolve@^26.4.0:
version "26.2.2" version "26.4.0"
resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-26.2.2.tgz#324a20a516148d61bffa0058ed0c77c510ecfd3e" resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-26.4.0.tgz#6dc0af7fb93e65b73fec0368ca2b76f3eb59a6d7"
integrity sha512-ye9Tj/ILn/0OgFPE/3dGpQPUqt4dHwIocxt5qSBkyzxQD8PbL0bVxBogX2FHxsd3zJA7V2H/cHXnBnNyyT9YoQ== integrity sha512-bn/JoZTEXRSlEx3+SfgZcJAVuTMOksYq9xe9O6s4Ekg84aKBObEaVXKOEilULRqviSLAYJldnoWV9c07kwtiCg==
dependencies: dependencies:
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
chalk "^4.0.0" chalk "^4.0.0"
graceful-fs "^4.2.4" graceful-fs "^4.2.4"
jest-pnp-resolver "^1.2.2" jest-pnp-resolver "^1.2.2"
jest-util "^26.2.0" jest-util "^26.3.0"
read-pkg-up "^7.0.1" read-pkg-up "^7.0.1"
resolve "^1.17.0" resolve "^1.17.0"
slash "^3.0.0" slash "^3.0.0"
jest-runner@^26.2.2: jest-runner@^26.4.2:
version "26.2.2" version "26.4.2"
resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-26.2.2.tgz#6d03d057886e9c782e10b2cf37443f902fe0e39e" resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-26.4.2.tgz#c3ec5482c8edd31973bd3935df5a449a45b5b853"
integrity sha512-/qb6ptgX+KQ+aNMohJf1We695kaAfuu3u3ouh66TWfhTpLd9WbqcF6163d/tMoEY8GqPztXPLuyG0rHRVDLxCA== integrity sha512-FgjDHeVknDjw1gRAYaoUoShe1K3XUuFMkIaXbdhEys+1O4bEJS8Avmn4lBwoMfL8O5oFTdWYKcf3tEJyyYyk8g==
dependencies: dependencies:
"@jest/console" "^26.2.0" "@jest/console" "^26.3.0"
"@jest/environment" "^26.2.0" "@jest/environment" "^26.3.0"
"@jest/test-result" "^26.2.0" "@jest/test-result" "^26.3.0"
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
"@types/node" "*" "@types/node" "*"
chalk "^4.0.0" chalk "^4.0.0"
emittery "^0.7.1" emittery "^0.7.1"
exit "^0.1.2" exit "^0.1.2"
graceful-fs "^4.2.4" graceful-fs "^4.2.4"
jest-config "^26.2.2" jest-config "^26.4.2"
jest-docblock "^26.0.0" jest-docblock "^26.0.0"
jest-haste-map "^26.2.2" jest-haste-map "^26.3.0"
jest-leak-detector "^26.2.0" jest-leak-detector "^26.4.2"
jest-message-util "^26.2.0" jest-message-util "^26.3.0"
jest-resolve "^26.2.2" jest-resolve "^26.4.0"
jest-runtime "^26.2.2" jest-runtime "^26.4.2"
jest-util "^26.2.0" jest-util "^26.3.0"
jest-worker "^26.2.1" jest-worker "^26.3.0"
source-map-support "^0.5.6" source-map-support "^0.5.6"
throat "^5.0.0" throat "^5.0.0"
jest-runtime@^26.2.2: jest-runtime@^26.4.2:
version "26.2.2" version "26.4.2"
resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-26.2.2.tgz#2480ff79320680a643031dd21998d7c63d83ab68" resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-26.4.2.tgz#94ce17890353c92e4206580c73a8f0c024c33c42"
integrity sha512-a8VXM3DxCDnCIdl9+QucWFfQ28KdqmyVFqeKLigHdErtsx56O2ZIdQkhFSuP1XtVrG9nTNHbKxjh5XL1UaFDVQ== integrity sha512-4Pe7Uk5a80FnbHwSOk7ojNCJvz3Ks2CNQWT5Z7MJo4tX0jb3V/LThKvD9tKPNVNyeMH98J/nzGlcwc00R2dSHQ==
dependencies: dependencies:
"@jest/console" "^26.2.0" "@jest/console" "^26.3.0"
"@jest/environment" "^26.2.0" "@jest/environment" "^26.3.0"
"@jest/fake-timers" "^26.2.0" "@jest/fake-timers" "^26.3.0"
"@jest/globals" "^26.2.0" "@jest/globals" "^26.4.2"
"@jest/source-map" "^26.1.0" "@jest/source-map" "^26.3.0"
"@jest/test-result" "^26.2.0" "@jest/test-result" "^26.3.0"
"@jest/transform" "^26.2.2" "@jest/transform" "^26.3.0"
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
"@types/yargs" "^15.0.0" "@types/yargs" "^15.0.0"
chalk "^4.0.0" chalk "^4.0.0"
collect-v8-coverage "^1.0.0" collect-v8-coverage "^1.0.0"
exit "^0.1.2" exit "^0.1.2"
glob "^7.1.3" glob "^7.1.3"
graceful-fs "^4.2.4" graceful-fs "^4.2.4"
jest-config "^26.2.2" jest-config "^26.4.2"
jest-haste-map "^26.2.2" jest-haste-map "^26.3.0"
jest-message-util "^26.2.0" jest-message-util "^26.3.0"
jest-mock "^26.2.0" jest-mock "^26.3.0"
jest-regex-util "^26.0.0" jest-regex-util "^26.0.0"
jest-resolve "^26.2.2" jest-resolve "^26.4.0"
jest-snapshot "^26.2.2" jest-snapshot "^26.4.2"
jest-util "^26.2.0" jest-util "^26.3.0"
jest-validate "^26.2.0" jest-validate "^26.4.2"
slash "^3.0.0" slash "^3.0.0"
strip-bom "^4.0.0" strip-bom "^4.0.0"
yargs "^15.3.1" yargs "^15.3.1"
jest-serializer@^26.2.0: jest-serializer@^26.3.0:
version "26.2.0" version "26.3.0"
resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-26.2.0.tgz#92dcae5666322410f4bf50211dd749274959ddac" resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-26.3.0.tgz#1c9d5e1b74d6e5f7e7f9627080fa205d976c33ef"
integrity sha512-V7snZI9IVmyJEu0Qy0inmuXgnMWDtrsbV2p9CRAcmlmPVwpC2ZM8wXyYpiugDQnwLHx0V4+Pnog9Exb3UO8M6Q== integrity sha512-IDRBQBLPlKa4flg77fqg0n/pH87tcRKwe8zxOVTWISxGpPHYkRZ1dXKyh04JOja7gppc60+soKVZ791mruVdow==
dependencies: dependencies:
"@types/node" "*" "@types/node" "*"
graceful-fs "^4.2.4" graceful-fs "^4.2.4"
jest-snapshot@^26.2.2: jest-snapshot@^26.4.2:
version "26.2.2" version "26.4.2"
resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-26.2.2.tgz#9d2eda083a4a1017b157e351868749bd63211799" resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-26.4.2.tgz#87d3ac2f2bd87ea8003602fbebd8fcb9e94104f6"
integrity sha512-NdjD8aJS7ePu268Wy/n/aR1TUisG0BOY+QOW4f6h46UHEKOgYmmkvJhh2BqdVZQ0BHSxTMt04WpCf9njzx8KtA== integrity sha512-N6Uub8FccKlf5SBFnL2Ri/xofbaA68Cc3MGjP/NuwgnsvWh+9hLIR/DhrxbSiKXMY9vUW5dI6EW1eHaDHqe9sg==
dependencies: dependencies:
"@babel/types" "^7.0.0" "@babel/types" "^7.0.0"
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
"@types/prettier" "^2.0.0" "@types/prettier" "^2.0.0"
chalk "^4.0.0" chalk "^4.0.0"
expect "^26.2.0" expect "^26.4.2"
graceful-fs "^4.2.4" graceful-fs "^4.2.4"
jest-diff "^26.2.0" jest-diff "^26.4.2"
jest-get-type "^26.0.0" jest-get-type "^26.3.0"
jest-haste-map "^26.2.2" jest-haste-map "^26.3.0"
jest-matcher-utils "^26.2.0" jest-matcher-utils "^26.4.2"
jest-message-util "^26.2.0" jest-message-util "^26.3.0"
jest-resolve "^26.2.2" jest-resolve "^26.4.0"
natural-compare "^1.4.0" natural-compare "^1.4.0"
pretty-format "^26.2.0" pretty-format "^26.4.2"
semver "^7.3.2" semver "^7.3.2"
jest-util@26.x: jest-util@26.x, jest-util@^26.3.0:
version "26.1.0" version "26.3.0"
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-26.1.0.tgz#80e85d4ba820decacf41a691c2042d5276e5d8d8" resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-26.3.0.tgz#a8974b191df30e2bf523ebbfdbaeb8efca535b3e"
integrity sha512-rNMOwFQevljfNGvbzNQAxdmXQ+NawW/J72dmddsK0E8vgxXCMtwQ/EH0BiWEIxh0hhMcTsxwAxINt7Lh46Uzbg== integrity sha512-4zpn6bwV0+AMFN0IYhH/wnzIQzRaYVrz1A8sYnRnj4UXDXbOVtWmlaZkO9mipFqZ13okIfN87aDoJWB7VH6hcw==
dependencies: dependencies:
"@jest/types" "^26.1.0" "@jest/types" "^26.3.0"
chalk "^4.0.0"
graceful-fs "^4.2.4"
is-ci "^2.0.0"
micromatch "^4.0.2"
jest-util@^26.2.0:
version "26.2.0"
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-26.2.0.tgz#0597d2a27c559340957609f106c408c17c1d88ac"
integrity sha512-YmDwJxLZ1kFxpxPfhSJ0rIkiZOM0PQbRcfH0TzJOhqCisCAsI1WcmoQqO83My9xeVA2k4n+rzg2UuexVKzPpig==
dependencies:
"@jest/types" "^26.2.0"
"@types/node" "*" "@types/node" "*"
chalk "^4.0.0" chalk "^4.0.0"
graceful-fs "^4.2.4" graceful-fs "^4.2.4"
is-ci "^2.0.0" is-ci "^2.0.0"
micromatch "^4.0.2" micromatch "^4.0.2"
jest-validate@^26.2.0: jest-validate@^26.4.2:
version "26.2.0" version "26.4.2"
resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-26.2.0.tgz#97fedf3e7984b7608854cbf925b9ca6ebcbdb78a" resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-26.4.2.tgz#e871b0dfe97747133014dcf6445ee8018398f39c"
integrity sha512-8XKn3hM6VIVmLNuyzYLCPsRCT83o8jMZYhbieh4dAyKLc4Ypr36rVKC+c8WMpWkfHHpGnEkvWUjjIAyobEIY/Q== integrity sha512-blft+xDX7XXghfhY0mrsBCYhX365n8K5wNDC4XAcNKqqjEzsRUSXP44m6PL0QJEW2crxQFLLztVnJ4j7oPlQrQ==
dependencies: dependencies:
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
camelcase "^6.0.0" camelcase "^6.0.0"
chalk "^4.0.0" chalk "^4.0.0"
jest-get-type "^26.0.0" jest-get-type "^26.3.0"
leven "^3.1.0" leven "^3.1.0"
pretty-format "^26.2.0" pretty-format "^26.4.2"
jest-watcher@^26.2.0: jest-watcher@^26.3.0:
version "26.2.0" version "26.3.0"
resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-26.2.0.tgz#45bdf2fecadd19c0a501f3b071a474dca636825b" resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-26.3.0.tgz#f8ef3068ddb8af160ef868400318dc4a898eed08"
integrity sha512-674Boco4Joe0CzgKPL6K4Z9LgyLx+ZvW2GilbpYb8rFEUkmDGgsZdv1Hv5rxsRpb1HLgKUOL/JfbttRCuFdZXQ== integrity sha512-XnLdKmyCGJ3VoF6G/p5ohbJ04q/vv5aH9ENI+i6BL0uu9WWB6Z7Z2lhQQk0d2AVZcRGp1yW+/TsoToMhBFPRdQ==
dependencies: dependencies:
"@jest/test-result" "^26.2.0" "@jest/test-result" "^26.3.0"
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
"@types/node" "*" "@types/node" "*"
ansi-escapes "^4.2.1" ansi-escapes "^4.2.1"
chalk "^4.0.0" chalk "^4.0.0"
jest-util "^26.2.0" jest-util "^26.3.0"
string-length "^4.0.1" string-length "^4.0.1"
jest-worker@24.9.0: jest-worker@24.9.0:
...@@ -9005,10 +8981,10 @@ jest-worker@24.9.0: ...@@ -9005,10 +8981,10 @@ jest-worker@24.9.0:
merge-stream "^2.0.0" merge-stream "^2.0.0"
supports-color "^6.1.0" supports-color "^6.1.0"
jest-worker@^26.2.1: jest-worker@^26.3.0:
version "26.2.1" version "26.3.0"
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.2.1.tgz#5d630ab93f666b53f911615bc13e662b382bd513" resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.3.0.tgz#7c8a97e4f4364b4f05ed8bca8ca0c24de091871f"
integrity sha512-+XcGMMJDTeEGncRb5M5Zq9P7K4sQ1sirhjdOxsN1462h6lFo9w59bl2LVQmdGEEeU3m+maZCkS2Tcc9SfCHO4A== integrity sha512-Vmpn2F6IASefL+DVBhPzI2J9/GJUsqzomdeN+P+dK8/jKxbh8R3BtFnx3FIta7wYlPU62cpJMJQo4kuOowcMnw==
dependencies: dependencies:
"@types/node" "*" "@types/node" "*"
merge-stream "^2.0.0" merge-stream "^2.0.0"
...@@ -9047,9 +9023,9 @@ jsbn@~0.1.0: ...@@ -9047,9 +9023,9 @@ jsbn@~0.1.0:
integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM=
jsdom@^16.2.2: jsdom@^16.2.2:
version "16.3.0" version "16.4.0"
resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.3.0.tgz#75690b7dac36c67be49c336dcd7219bbbed0810c" resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.4.0.tgz#36005bde2d136f73eee1a830c6d45e55408edddb"
integrity sha512-zggeX5UuEknpdZzv15+MS1dPYG0J/TftiiNunOeNxSl3qr8Z6cIlQpN0IdJa44z9aFxZRIVqRncvEhQ7X5DtZg== integrity sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w==
dependencies: dependencies:
abab "^2.0.3" abab "^2.0.3"
acorn "^7.1.1" acorn "^7.1.1"
...@@ -9098,6 +9074,11 @@ json-parse-better-errors@^1.0.0, json-parse-better-errors@^1.0.1, json-parse-bet ...@@ -9098,6 +9074,11 @@ json-parse-better-errors@^1.0.0, json-parse-better-errors@^1.0.1, json-parse-bet
resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
json-parse-even-better-errors@^2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.0.tgz#371873c5ffa44304a6ba12419bcfa95f404ae081"
integrity sha512-o3aP+RsWDJZayj1SbHNQAI8x0v3T3SKiGoZlNYfbUP1S3omJQ6i9CnqADqkSPaOAxwua4/1YWx5CM7oiChJt2Q==
json-schema-traverse@^0.4.1: json-schema-traverse@^0.4.1:
version "0.4.1" version "0.4.1"
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
...@@ -9313,9 +9294,9 @@ lint-staged@10.2.11: ...@@ -9313,9 +9294,9 @@ lint-staged@10.2.11:
stringify-object "^3.3.0" stringify-object "^3.3.0"
listr2@^2.1.0: listr2@^2.1.0:
version "2.4.0" version "2.6.2"
resolved "https://registry.yarnpkg.com/listr2/-/listr2-2.4.0.tgz#aadb094f1f16a96bb9c4dc9b9c3e1d24b1709803" resolved "https://registry.yarnpkg.com/listr2/-/listr2-2.6.2.tgz#4912eb01e1e2dd72ec37f3895a56bf2622d6f36a"
integrity sha512-Hj2ECZdAxDkuYFtIKE35PgdMSqMp0muIhJRG5EyV5pOWFEUmKUG+fhfFrvIUNGBQvvi7wQ41eKTxDBisfvDjFQ== integrity sha512-6x6pKEMs8DSIpA/tixiYY2m/GcbgMplMVmhQAaLFxEtNSKLeWTGjtmU57xvv6QCm2XcqzyNXL/cTSVf4IChCRA==
dependencies: dependencies:
chalk "^4.1.0" chalk "^4.1.0"
cli-truncate "^2.1.0" cli-truncate "^2.1.0"
...@@ -9323,7 +9304,7 @@ listr2@^2.1.0: ...@@ -9323,7 +9304,7 @@ listr2@^2.1.0:
indent-string "^4.0.0" indent-string "^4.0.0"
log-update "^4.0.0" log-update "^4.0.0"
p-map "^4.0.0" p-map "^4.0.0"
rxjs "^6.6.0" rxjs "^6.6.2"
through "^2.3.8" through "^2.3.8"
load-json-file@^1.0.0: load-json-file@^1.0.0:
...@@ -9483,11 +9464,16 @@ lodash.uniq@^4.5.0: ...@@ -9483,11 +9464,16 @@ lodash.uniq@^4.5.0:
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
lodash@4.17.19, lodash@^4.15.0, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.2.1: lodash@4.17.19:
version "4.17.19" version "4.17.19"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b"
integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ== integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==
lodash@^4.15.0, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.2.1:
version "4.17.20"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52"
integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
log-driver@^1.2.7: log-driver@^1.2.7:
version "1.2.7" version "1.2.7"
resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.7.tgz#63b95021f0702fedfa2c9bb0a24e7797d71871d8" resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.7.tgz#63b95021f0702fedfa2c9bb0a24e7797d71871d8"
...@@ -9518,9 +9504,9 @@ log-update@^4.0.0: ...@@ -9518,9 +9504,9 @@ log-update@^4.0.0:
wrap-ansi "^6.2.0" wrap-ansi "^6.2.0"
loglevel@^1.6.2: loglevel@^1.6.2:
version "1.6.8" version "1.7.0"
resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.8.tgz#8a25fb75d092230ecd4457270d80b54e28011171" resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.7.0.tgz#728166855a740d59d38db01cf46f042caa041bb0"
integrity sha512-bsU7+gc9AJ2SqpzxwU3+1fedl8zAntbtC5XYlt3s2j1hJcn2PsXSmgN8TaLG/J1/2mod4+cE/3vNL70/c1RNCA== integrity sha512-i2sY04nal5jDcagM3FMfG++T69GEEM8CYuOfeOIvmXzOIcwE9a/CJPR0MFM97pYMj/u10lzz7/zd7+qwhrBTqQ==
long@4.0.0: long@4.0.0:
version "4.0.0" version "4.0.0"
...@@ -9566,7 +9552,7 @@ lru-cache@5.1.1, lru-cache@^5.1.1: ...@@ -9566,7 +9552,7 @@ lru-cache@5.1.1, lru-cache@^5.1.1:
dependencies: dependencies:
yallist "^3.0.2" yallist "^3.0.2"
lru-cache@^6.0.0: lru-cache@6.0.0, lru-cache@^6.0.0:
version "6.0.0" version "6.0.0"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
...@@ -9750,17 +9736,15 @@ meow@^6.1.1: ...@@ -9750,17 +9736,15 @@ meow@^6.1.1:
yargs-parser "^18.1.3" yargs-parser "^18.1.3"
meow@^7.0.0: meow@^7.0.0:
version "7.0.1" version "7.1.1"
resolved "https://registry.yarnpkg.com/meow/-/meow-7.0.1.tgz#1ed4a0a50b3844b451369c48362eb0515f04c1dc" resolved "https://registry.yarnpkg.com/meow/-/meow-7.1.1.tgz#7c01595e3d337fcb0ec4e8eed1666ea95903d306"
integrity sha512-tBKIQqVrAHqwit0vfuFPY3LlzJYkEOFyKa3bPgxzNl6q/RtN8KQ+ALYEASYuFayzSAsjlhXj/JZ10rH85Q6TUw== integrity sha512-GWHvA5QOcS412WCo8vwKDlTelGLsCGBVevQB5Kva961rmNfun0PCbv5+xta2kUMFJyR8/oWnn7ddeKdosbAPbA==
dependencies: dependencies:
"@types/minimist" "^1.2.0" "@types/minimist" "^1.2.0"
arrify "^2.0.1"
camelcase "^6.0.0"
camelcase-keys "^6.2.2" camelcase-keys "^6.2.2"
decamelize-keys "^1.1.0" decamelize-keys "^1.1.0"
hard-rejection "^2.1.0" hard-rejection "^2.1.0"
minimist-options "^4.0.2" minimist-options "4.1.0"
normalize-package-data "^2.5.0" normalize-package-data "^2.5.0"
read-pkg-up "^7.0.1" read-pkg-up "^7.0.1"
redent "^3.0.0" redent "^3.0.0"
...@@ -9907,15 +9891,7 @@ minimatch@^3.0.4: ...@@ -9907,15 +9891,7 @@ minimatch@^3.0.4:
dependencies: dependencies:
brace-expansion "^1.1.7" brace-expansion "^1.1.7"
minimist-options@^3.0.1: minimist-options@4.1.0, minimist-options@^4.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954"
integrity sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ==
dependencies:
arrify "^1.0.1"
is-plain-obj "^1.1.0"
minimist-options@^4.0.2:
version "4.1.0" version "4.1.0"
resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619"
integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==
...@@ -9924,6 +9900,14 @@ minimist-options@^4.0.2: ...@@ -9924,6 +9900,14 @@ minimist-options@^4.0.2:
is-plain-obj "^1.1.0" is-plain-obj "^1.1.0"
kind-of "^6.0.3" kind-of "^6.0.3"
minimist-options@^3.0.1:
version "3.0.2"
resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954"
integrity sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ==
dependencies:
arrify "^1.0.1"
is-plain-obj "^1.1.0"
minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5: minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5:
version "1.2.5" version "1.2.5"
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
...@@ -9944,9 +9928,9 @@ minipass-flush@^1.0.5: ...@@ -9944,9 +9928,9 @@ minipass-flush@^1.0.5:
minipass "^3.0.0" minipass "^3.0.0"
minipass-pipeline@^1.2.2: minipass-pipeline@^1.2.2:
version "1.2.3" version "1.2.4"
resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.3.tgz#55f7839307d74859d6e8ada9c3ebe72cec216a34" resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c"
integrity sha512-cFOknTvng5vqnwOpDsZTWhNll6Jf8o2x+/diplafmxpuIymAjzoOolZG0VvQf3V2HgqzJNhnuKHYp2BqDgz8IQ== integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==
dependencies: dependencies:
minipass "^3.0.0" minipass "^3.0.0"
...@@ -9972,10 +9956,10 @@ minizlib@^1.2.1: ...@@ -9972,10 +9956,10 @@ minizlib@^1.2.1:
dependencies: dependencies:
minipass "^2.9.0" minipass "^2.9.0"
minizlib@^2.1.0: minizlib@^2.1.0, minizlib@^2.1.1:
version "2.1.0" version "2.1.2"
resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.0.tgz#fd52c645301ef09a63a2c209697c294c6ce02cf3" resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931"
integrity sha512-EzTZN/fjSvifSX0SlqUERCN39o6T40AMarPbv0MrarSFtIITCBh7bi+dU8nxGFHuqs9jdIAeoYoKuQAAASsPPA== integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==
dependencies: dependencies:
minipass "^3.0.0" minipass "^3.0.0"
yallist "^4.0.0" yallist "^4.0.0"
...@@ -10148,9 +10132,9 @@ natural-compare@^1.4.0: ...@@ -10148,9 +10132,9 @@ natural-compare@^1.4.0:
integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
nearley@^2.7.10: nearley@^2.7.10:
version "2.19.5" version "2.19.6"
resolved "https://registry.yarnpkg.com/nearley/-/nearley-2.19.5.tgz#6be78e4942eeb9a043b17c563413111d4ad849b7" resolved "https://registry.yarnpkg.com/nearley/-/nearley-2.19.6.tgz#22663fd7326eb708b4c18bfdd7e4ce204b7239b0"
integrity sha512-qoh1ZXXl0Kpn40tFhmgvffUAlbpRMcjLUagNVnT1JmliUIsB4tFabmCNhD97+tkf9FZ/SLhhYzNow0V3GitzDg== integrity sha512-OV3Lx+o5iIGWVY38zs+7aiSnBqaHTFAOQiz83VHJje/wOOaSgzE3H0S/xfISxJhFSoPcX611OEDV9sCT8F283g==
dependencies: dependencies:
commander "^2.19.0" commander "^2.19.0"
moo "^0.5.0" moo "^0.5.0"
...@@ -10349,19 +10333,19 @@ node-modules-regexp@^1.0.0: ...@@ -10349,19 +10333,19 @@ node-modules-regexp@^1.0.0:
resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
node-notifier@^7.0.0: node-notifier@^8.0.0:
version "7.0.2" version "8.0.0"
resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-7.0.2.tgz#3a70b1b70aca5e919d0b1b022530697466d9c675" resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-8.0.0.tgz#a7eee2d51da6d0f7ff5094bc7108c911240c1620"
integrity sha512-ux+n4hPVETuTL8+daJXTOC6uKLgMsl1RYfFv7DKRzyvzBapqco0rZZ9g72ZN8VS6V+gvNYHYa/ofcCY8fkJWsA== integrity sha512-46z7DUmcjoYdaWyXouuFNNfUo6eFa94t23c53c+lG/9Cvauk4a98rAUp9672X5dxGdQmLpPzTxzu8f/OeEPaFA==
dependencies: dependencies:
growly "^1.3.0" growly "^1.3.0"
is-wsl "^2.2.0" is-wsl "^2.2.0"
semver "^7.3.2" semver "^7.3.2"
shellwords "^0.1.1" shellwords "^0.1.1"
uuid "^8.2.0" uuid "^8.3.0"
which "^2.0.2" which "^2.0.2"
node-releases@^1.1.53, node-releases@^1.1.58: node-releases@^1.1.53, node-releases@^1.1.60:
version "1.1.60" version "1.1.60"
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.60.tgz#6948bdfce8286f0b5d0e5a88e8384e954dfe7084" resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.60.tgz#6948bdfce8286f0b5d0e5a88e8384e954dfe7084"
integrity sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA== integrity sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==
...@@ -10581,7 +10565,7 @@ object-copy@^0.1.0: ...@@ -10581,7 +10565,7 @@ object-copy@^0.1.0:
define-property "^0.2.5" define-property "^0.2.5"
kind-of "^3.0.3" kind-of "^3.0.3"
object-inspect@^1.7.0: object-inspect@^1.7.0, object-inspect@^1.8.0:
version "1.8.0" version "1.8.0"
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0"
integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==
...@@ -10692,9 +10676,9 @@ onetime@^2.0.0: ...@@ -10692,9 +10676,9 @@ onetime@^2.0.0:
mimic-fn "^1.0.0" mimic-fn "^1.0.0"
onetime@^5.1.0: onetime@^5.1.0:
version "5.1.0" version "5.1.2"
resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5" resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q== integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
dependencies: dependencies:
mimic-fn "^2.1.0" mimic-fn "^2.1.0"
...@@ -10990,13 +10974,12 @@ parent-module@^1.0.0: ...@@ -10990,13 +10974,12 @@ parent-module@^1.0.0:
callsites "^3.0.0" callsites "^3.0.0"
parse-asn1@^5.0.0, parse-asn1@^5.1.5: parse-asn1@^5.0.0, parse-asn1@^5.1.5:
version "5.1.5" version "5.1.6"
resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.5.tgz#003271343da58dc94cace494faef3d2147ecea0e" resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4"
integrity sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ== integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==
dependencies: dependencies:
asn1.js "^4.0.0" asn1.js "^5.2.0"
browserify-aes "^1.0.0" browserify-aes "^1.0.0"
create-hash "^1.1.0"
evp_bytestokey "^1.0.0" evp_bytestokey "^1.0.0"
pbkdf2 "^3.0.3" pbkdf2 "^3.0.3"
safe-buffer "^5.1.1" safe-buffer "^5.1.1"
...@@ -11022,13 +11005,13 @@ parse-json@^4.0.0: ...@@ -11022,13 +11005,13 @@ parse-json@^4.0.0:
json-parse-better-errors "^1.0.1" json-parse-better-errors "^1.0.1"
parse-json@^5.0.0: parse-json@^5.0.0:
version "5.0.1" version "5.1.0"
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.1.tgz#7cfe35c1ccd641bce3981467e6c2ece61b3b3878" resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646"
integrity sha512-ztoZ4/DYeXQq4E21v169sC8qWINGpcosGv9XhTDvg9/hWvx/zrFkc9BiWxR58OJLHGk28j5BL0SDLeV2WmFZlQ== integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ==
dependencies: dependencies:
"@babel/code-frame" "^7.0.0" "@babel/code-frame" "^7.0.0"
error-ex "^1.3.1" error-ex "^1.3.1"
json-parse-better-errors "^1.0.1" json-parse-even-better-errors "^2.3.0"
lines-and-columns "^1.1.6" lines-and-columns "^1.1.6"
parse-passwd@^1.0.0: parse-passwd@^1.0.0:
...@@ -11037,17 +11020,17 @@ parse-passwd@^1.0.0: ...@@ -11037,17 +11020,17 @@ parse-passwd@^1.0.0:
integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=
parse-path@^4.0.0: parse-path@^4.0.0:
version "4.0.1" version "4.0.2"
resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-4.0.1.tgz#0ec769704949778cb3b8eda5e994c32073a1adff" resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-4.0.2.tgz#ef14f0d3d77bae8dd4bc66563a4c151aac9e65aa"
integrity sha512-d7yhga0Oc+PwNXDvQ0Jv1BuWkLVPXcAoQ/WREgd6vNNoKYaW52KI+RdOFjI63wjkmps9yUE8VS4veP+AgpQ/hA== integrity sha512-HSqVz6iuXSiL8C1ku5Gl1Z5cwDd9Wo0q8CoffdAghP6bz8pJa1tcMC+m4N+z6VAS8QdksnIGq1TB6EgR4vPR6w==
dependencies: dependencies:
is-ssh "^1.3.0" is-ssh "^1.3.0"
protocols "^1.4.0" protocols "^1.4.0"
parse-url@^5.0.0: parse-url@^5.0.0:
version "5.0.1" version "5.0.2"
resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-5.0.1.tgz#99c4084fc11be14141efa41b3d117a96fcb9527f" resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-5.0.2.tgz#856a3be1fcdf78dc93fc8b3791f169072d898b59"
integrity sha512-flNUPP27r3vJpROi0/R3/2efgKkyXqnXwyP1KQ2U0SfFRgdizOdWfvrrvJg1LuOoxs7GQhmxJlq23IpQ/BkByg== integrity sha512-Czj+GIit4cdWtxo3ISZCvLiUjErSo0iI3wJ+q9Oi3QuMYTI6OZu+7cewMWZ+C1YAnKhYTk6/TLuhIgCypLthPA==
dependencies: dependencies:
is-ssh "^1.3.0" is-ssh "^1.3.0"
normalize-url "^3.3.0" normalize-url "^3.3.0"
...@@ -11357,9 +11340,9 @@ posix-character-classes@^0.1.0: ...@@ -11357,9 +11340,9 @@ posix-character-classes@^0.1.0:
integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
postcss-calc@^7.0.1: postcss-calc@^7.0.1:
version "7.0.2" version "7.0.4"
resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.2.tgz#504efcd008ca0273120568b0792b16cdcde8aac1" resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.4.tgz#5e177ddb417341e6d4a193c5d9fd8ada79094f8b"
integrity sha512-rofZFHUg6ZIrvRwPeFktv06GdbDYLcGqh9EwiMutZg+a0oePCCw1zHOEiji6LCpyRcjTREtPASuUqeAvYlEVvQ== integrity sha512-0I79VRAd1UTkaHzY9w83P39YGO/M3bG7/tNLrHGEunBolfoGM0hSjrGvjoeaj0JE/zIw5GsI2KZ0UwDJqv5hjw==
dependencies: dependencies:
postcss "^7.0.27" postcss "^7.0.27"
postcss-selector-parser "^6.0.2" postcss-selector-parser "^6.0.2"
...@@ -11766,12 +11749,12 @@ pretty-format@^25.2.1, pretty-format@^25.5.0: ...@@ -11766,12 +11749,12 @@ pretty-format@^25.2.1, pretty-format@^25.5.0:
ansi-styles "^4.0.0" ansi-styles "^4.0.0"
react-is "^16.12.0" react-is "^16.12.0"
pretty-format@^26.2.0: pretty-format@^26.4.2:
version "26.2.0" version "26.4.2"
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.2.0.tgz#83ecc8d7de676ff224225055e72bd64821cec4f1" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.4.2.tgz#d081d032b398e801e2012af2df1214ef75a81237"
integrity sha512-qi/8IuBu2clY9G7qCXgCdD1Bf9w+sXakdHTRToknzMtVy0g7c4MBWaZy7MfB7ndKZovRO6XRwJiAYqq+MC7SDA== integrity sha512-zK6Gd8zDsEiVydOCGLkoBoZuqv8VTiHyAbKznXe/gaph/DAeZOmit9yMfgIz5adIgAMMs5XfoYSwAX3jcCO1tA==
dependencies: dependencies:
"@jest/types" "^26.2.0" "@jest/types" "^26.3.0"
ansi-regex "^5.0.0" ansi-regex "^5.0.0"
ansi-styles "^4.0.0" ansi-styles "^4.0.0"
react-is "^16.12.0" react-is "^16.12.0"
...@@ -11850,9 +11833,9 @@ proto-list@~1.2.1: ...@@ -11850,9 +11833,9 @@ proto-list@~1.2.1:
integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk= integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=
protocols@^1.1.0, protocols@^1.4.0: protocols@^1.1.0, protocols@^1.4.0:
version "1.4.7" version "1.4.8"
resolved "https://registry.yarnpkg.com/protocols/-/protocols-1.4.7.tgz#95f788a4f0e979b291ffefcf5636ad113d037d32" resolved "https://registry.yarnpkg.com/protocols/-/protocols-1.4.8.tgz#48eea2d8f58d9644a4a32caae5d5db290a075ce8"
integrity sha512-Fx65lf9/YDn3hUX08XUc0J8rSux36rEsyiv21ZGUC1mOyeM3lTRpZLcrm8aAolzS4itwVfm7TAPyxC2E5zd6xg== integrity sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==
protoduck@^5.0.1: protoduck@^5.0.1:
version "5.0.1" version "5.0.1"
...@@ -12186,16 +12169,14 @@ read-cmd-shim@^1.0.1: ...@@ -12186,16 +12169,14 @@ read-cmd-shim@^1.0.1:
graceful-fs "^4.1.2" graceful-fs "^4.1.2"
"read-package-json@1 || 2", read-package-json@^2.0.0, read-package-json@^2.0.13: "read-package-json@1 || 2", read-package-json@^2.0.0, read-package-json@^2.0.13:
version "2.1.1" version "2.1.2"
resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-2.1.1.tgz#16aa66c59e7d4dad6288f179dd9295fd59bb98f1" resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-2.1.2.tgz#6992b2b66c7177259feb8eaac73c3acd28b9222a"
integrity sha512-dAiqGtVc/q5doFz6096CcnXhpYk0ZN8dEKVkGLU0CsASt8SrgF6SF7OTKAYubfvFhWaqofl+Y8HK19GR8jwW+A== integrity sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA==
dependencies: dependencies:
glob "^7.1.1" glob "^7.1.1"
json-parse-better-errors "^1.0.1" json-parse-even-better-errors "^2.3.0"
normalize-package-data "^2.0.0" normalize-package-data "^2.0.0"
npm-normalize-package-bin "^1.0.0" npm-normalize-package-bin "^1.0.0"
optionalDependencies:
graceful-fs "^4.1.2"
read-package-tree@^5.1.6: read-package-tree@^5.1.6:
version "5.3.1" version "5.3.1"
...@@ -12752,10 +12733,10 @@ rw@1: ...@@ -12752,10 +12733,10 @@ rw@1:
resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4" resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4"
integrity sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q= integrity sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q=
rxjs@^6.4.0, rxjs@^6.6.0: rxjs@^6.4.0, rxjs@^6.6.2:
version "6.6.0" version "6.6.2"
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.0.tgz#af2901eedf02e3a83ffa7f886240ff9018bbec84" resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.2.tgz#8096a7ac03f2cc4fe5860ef6e572810d9e01c0d2"
integrity sha512-3HMA8z/Oz61DUHe+SdOiQyzIf4tOx5oQHmMir7IZEu6TMqCLHT4LRcmNaUS0NwOz8VLvmmBduMsoaUvMaIiqzg== integrity sha512-BHdBMVoWC2sL26w//BCu3YzKT4s2jip/WhwsGEDmeKYBhKDZeYezVUnHatYB7L85v5xs0BAQmg6BEYJEKxBabg==
dependencies: dependencies:
tslib "^1.9.0" tslib "^1.9.0"
...@@ -12868,13 +12849,13 @@ schema-utils@^1.0.0: ...@@ -12868,13 +12849,13 @@ schema-utils@^1.0.0:
ajv-keywords "^3.1.0" ajv-keywords "^3.1.0"
schema-utils@^2.6.1, schema-utils@^2.6.6, schema-utils@^2.7.0: schema-utils@^2.6.1, schema-utils@^2.6.6, schema-utils@^2.7.0:
version "2.7.0" version "2.7.1"
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.0.tgz#17151f76d8eae67fbbf77960c33c676ad9f4efc7" resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7"
integrity sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A== integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==
dependencies: dependencies:
"@types/json-schema" "^7.0.4" "@types/json-schema" "^7.0.5"
ajv "^6.12.2" ajv "^6.12.4"
ajv-keywords "^3.4.1" ajv-keywords "^3.5.2"
semver-compare@^1.0.0: semver-compare@^1.0.0:
version "1.0.0" version "1.0.0"
...@@ -12937,13 +12918,6 @@ send@0.17.1: ...@@ -12937,13 +12918,6 @@ send@0.17.1:
range-parser "~1.2.1" range-parser "~1.2.1"
statuses "~1.5.0" statuses "~1.5.0"
serialize-javascript@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-3.1.0.tgz#8bf3a9170712664ef2561b44b691eafe399214ea"
integrity sha512-JIJT1DGiWmIKhzRsG91aS6Ze4sFUrYbltlkg2onR5OrnNM02Kl/hnY/T4FN2omvyeBbQmMJv+K4cPOpGzOTFBg==
dependencies:
randombytes "^2.1.0"
serialize-javascript@^4.0.0: serialize-javascript@^4.0.0:
version "4.0.0" version "4.0.0"
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa"
...@@ -13055,12 +13029,12 @@ shimmer@^1.1.0, shimmer@^1.2.0: ...@@ -13055,12 +13029,12 @@ shimmer@^1.1.0, shimmer@^1.2.0:
integrity sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw== integrity sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==
side-channel@^1.0.2: side-channel@^1.0.2:
version "1.0.2" version "1.0.3"
resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.2.tgz#df5d1abadb4e4bf4af1cd8852bf132d2f7876947" resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.3.tgz#cdc46b057550bbab63706210838df5d4c19519c3"
integrity sha512-7rL9YlPHg7Ancea1S96Pa8/QWb4BtXL/TZvS6B8XFetGBeuhAsfmUspK6DokBeZ64+Kj9TCNRD/30pVz1BvQNA== integrity sha512-A6+ByhlLkksFoUepsGxfj5x1gTSrs+OydsRptUxeNCabQpCFUvcwIczgOigI8vhY/OJCnPnyE9rGiwgvr9cS1g==
dependencies: dependencies:
es-abstract "^1.17.0-next.1" es-abstract "^1.18.0-next.0"
object-inspect "^1.7.0" object-inspect "^1.8.0"
signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3: signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3:
version "3.0.3" version "3.0.3"
...@@ -13711,9 +13685,9 @@ supports-color@^6.1.0: ...@@ -13711,9 +13685,9 @@ supports-color@^6.1.0:
has-flag "^3.0.0" has-flag "^3.0.0"
supports-color@^7.0.0, supports-color@^7.1.0: supports-color@^7.0.0, supports-color@^7.1.0:
version "7.1.0" version "7.2.0"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
dependencies: dependencies:
has-flag "^4.0.0" has-flag "^4.0.0"
...@@ -13757,9 +13731,9 @@ symbol-tree@^3.2.4: ...@@ -13757,9 +13731,9 @@ symbol-tree@^3.2.4:
integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
systeminformation@^4.23.3: systeminformation@^4.23.3:
version "4.26.10" version "4.27.3"
resolved "https://registry.yarnpkg.com/systeminformation/-/systeminformation-4.26.10.tgz#2244e7529ca9e7b8ecd6941e19fe7df7e3da9146" resolved "https://registry.yarnpkg.com/systeminformation/-/systeminformation-4.27.3.tgz#3fc00b34425807915294f4ed3e86bbc7c85ee1b8"
integrity sha512-bO4FIzrjESAfh4KHwkUJym3jvKtJ4oJ2PG0BBQGBmKa0pF2oanpkB7CF4ZsSX7vfp3+GKaLzioVwpV/3Tyk+lQ== integrity sha512-0Nc8AYEK818h7FI+bbe/kj7xXsMD5zOHvO9alUqQH/G4MHXu5tHQfWqC/bzWOk4JtoQPhnyLgxMYncDA2eeSBw==
table@^5.2.3: table@^5.2.3:
version "5.4.6" version "5.4.6"
...@@ -13802,14 +13776,14 @@ tar@^5.0.5: ...@@ -13802,14 +13776,14 @@ tar@^5.0.5:
yallist "^4.0.0" yallist "^4.0.0"
tar@^6.0.2: tar@^6.0.2:
version "6.0.2" version "6.0.5"
resolved "https://registry.yarnpkg.com/tar/-/tar-6.0.2.tgz#5df17813468a6264ff14f766886c622b84ae2f39" resolved "https://registry.yarnpkg.com/tar/-/tar-6.0.5.tgz#bde815086e10b39f1dcd298e89d596e1535e200f"
integrity sha512-Glo3jkRtPcvpDlAs/0+hozav78yoXKFr+c4wgw62NNMO3oo4AaJdCo21Uu7lcwr55h39W2XD1LMERc64wtbItg== integrity sha512-0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg==
dependencies: dependencies:
chownr "^2.0.0" chownr "^2.0.0"
fs-minipass "^2.0.0" fs-minipass "^2.0.0"
minipass "^3.0.0" minipass "^3.0.0"
minizlib "^2.1.0" minizlib "^2.1.1"
mkdirp "^1.0.3" mkdirp "^1.0.3"
yallist "^4.0.0" yallist "^4.0.0"
...@@ -13844,15 +13818,15 @@ terminal-link@^2.0.0: ...@@ -13844,15 +13818,15 @@ terminal-link@^2.0.0:
supports-hyperlinks "^2.0.0" supports-hyperlinks "^2.0.0"
terser-webpack-plugin@^1.4.3: terser-webpack-plugin@^1.4.3:
version "1.4.4" version "1.4.5"
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.4.tgz#2c63544347324baafa9a56baaddf1634c8abfc2f" resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz#a217aefaea330e734ffacb6120ec1fa312d6040b"
integrity sha512-U4mACBHIegmfoEe5fdongHESNJWqsGU+W0S/9+BmYGVQDw1+c2Ow05TpMhxjPK1sRb7cuYq1BPl1e5YHJMTCqA== integrity sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==
dependencies: dependencies:
cacache "^12.0.2" cacache "^12.0.2"
find-cache-dir "^2.1.0" find-cache-dir "^2.1.0"
is-wsl "^1.1.0" is-wsl "^1.1.0"
schema-utils "^1.0.0" schema-utils "^1.0.0"
serialize-javascript "^3.1.0" serialize-javascript "^4.0.0"
source-map "^0.6.1" source-map "^0.6.1"
terser "^4.1.2" terser "^4.1.2"
webpack-sources "^1.4.0" webpack-sources "^1.4.0"
...@@ -13961,20 +13935,13 @@ timsort@^0.3.0: ...@@ -13961,20 +13935,13 @@ timsort@^0.3.0:
resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4"
integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q= integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=
tippy.js@6.2.6: tippy.js@6.2.6, tippy.js@^6.2.0:
version "6.2.6" version "6.2.6"
resolved "https://registry.yarnpkg.com/tippy.js/-/tippy.js-6.2.6.tgz#4991bbe8f75e741fb92b5ccfeebcd072d71f8345" resolved "https://registry.yarnpkg.com/tippy.js/-/tippy.js-6.2.6.tgz#4991bbe8f75e741fb92b5ccfeebcd072d71f8345"
integrity sha512-0tTL3WQNT0nWmpslhDryRahoBm6PT9fh1xXyDfOsvZpDzq52by2rF2nvsW0WX2j9nUZP/jSGDqfKJGjCtoGFKg== integrity sha512-0tTL3WQNT0nWmpslhDryRahoBm6PT9fh1xXyDfOsvZpDzq52by2rF2nvsW0WX2j9nUZP/jSGDqfKJGjCtoGFKg==
dependencies: dependencies:
"@popperjs/core" "^2.4.4" "@popperjs/core" "^2.4.4"
tippy.js@^6.2.0:
version "6.2.5"
resolved "https://registry.yarnpkg.com/tippy.js/-/tippy.js-6.2.5.tgz#5335e28228af5e22c524fe5e8a94654514f34b92"
integrity sha512-UIf8G99PMXGmdWPrr36s/DjQBdfxMPwzvPUXsxs3tDFDTZ1SgvKG+Jvt6RJ+aBqYL0oe/STxh3MNkCV3IWAKmw==
dependencies:
"@popperjs/core" "^2.4.4"
tmp@^0.0.33: tmp@^0.0.33:
version "0.0.33" version "0.0.33"
resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
...@@ -14155,6 +14122,11 @@ tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0: ...@@ -14155,6 +14122,11 @@ tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0:
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043"
integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==
tslib@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.1.tgz#410eb0d113e5b6356490eec749603725b021b43e"
integrity sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ==
tsutils@^3.17.1: tsutils@^3.17.1:
version "3.17.1" version "3.17.1"
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759" resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759"
...@@ -14247,9 +14219,9 @@ type@^1.0.1: ...@@ -14247,9 +14219,9 @@ type@^1.0.1:
integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==
type@^2.0.0: type@^2.0.0:
version "2.0.0" version "2.1.0"
resolved "https://registry.yarnpkg.com/type/-/type-2.0.0.tgz#5f16ff6ef2eb44f260494dae271033b29c09a9c3" resolved "https://registry.yarnpkg.com/type/-/type-2.1.0.tgz#9bdc22c648cf8cf86dd23d32336a41cfb6475e3f"
integrity sha512-KBt58xCHry4Cejnc2ISQAF7QY+ORngsWfxezO68+12hKV6lQY8P/psIkcbjeHWn7MqcgciWJyCCevFMJdIXpow== integrity sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA==
typedarray-to-buffer@^3.1.5: typedarray-to-buffer@^3.1.5:
version "3.1.5" version "3.1.5"
...@@ -14269,9 +14241,9 @@ typescript@3.9.7: ...@@ -14269,9 +14241,9 @@ typescript@3.9.7:
integrity sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw== integrity sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==
uglify-js@^3.1.4: uglify-js@^3.1.4:
version "3.10.0" version "3.10.3"
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.10.0.tgz#397a7e6e31ce820bfd1cb55b804ee140c587a9e7" resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.10.3.tgz#f0d2f99736c14de46d2d24649ba328be3e71c3bf"
integrity sha512-Esj5HG5WAyrLIdYU74Z3JdG2PxdIusvj6IWHMtlyESxc7kcDz7zYlYjpnSokn1UbpV0d/QX9fan7gkCNd/9BQA== integrity sha512-Lh00i69Uf6G74mvYpHCI9KVVXLcHW/xu79YTvH7Mkc9zyKUeSPz0owW0dguj0Scavns3ZOh3wY63J0Zb97Za2g==
uid-number@0.0.6: uid-number@0.0.6:
version "0.0.6" version "0.0.6"
...@@ -14422,9 +14394,9 @@ upath@^1.1.1, upath@^1.2.0: ...@@ -14422,9 +14394,9 @@ upath@^1.1.1, upath@^1.2.0:
integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
update-notifier@^4.0.0: update-notifier@^4.0.0:
version "4.1.0" version "4.1.1"
resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-4.1.0.tgz#4866b98c3bc5b5473c020b1250583628f9a328f3" resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-4.1.1.tgz#895fc8562bbe666179500f9f2cebac4f26323746"
integrity sha512-w3doE1qtI0/ZmgeoDoARmI5fjDoT93IfKgEGqm26dGUOh8oNpaSTsGNdYRN/SjOuo10jcJGwkEL3mroKzktkew== integrity sha512-9y+Kds0+LoLG6yN802wVXoIfxYEwh3FlZwzMwpCZp62S2i1/Jzeqb9Eeeju3NSHccGGasfGlK5/vEHbAifYRDg==
dependencies: dependencies:
boxen "^4.2.0" boxen "^4.2.0"
chalk "^3.0.0" chalk "^3.0.0"
...@@ -14441,9 +14413,9 @@ update-notifier@^4.0.0: ...@@ -14441,9 +14413,9 @@ update-notifier@^4.0.0:
xdg-basedir "^4.0.0" xdg-basedir "^4.0.0"
uri-js@^4.2.2: uri-js@^4.2.2:
version "4.2.2" version "4.4.0"
resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602"
integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== integrity sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==
dependencies: dependencies:
punycode "^2.1.0" punycode "^2.1.0"
...@@ -14538,7 +14510,7 @@ uuid@^3.0.0, uuid@^3.0.1, uuid@^3.2.1, uuid@^3.3.2: ...@@ -14538,7 +14510,7 @@ uuid@^3.0.0, uuid@^3.0.1, uuid@^3.2.1, uuid@^3.3.2:
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
uuid@^8.2.0: uuid@^8.3.0:
version "8.3.0" version "8.3.0"
resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.0.tgz#ab738085ca22dc9a8c92725e459b1d507df5d6ea" resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.0.tgz#ab738085ca22dc9a8c92725e459b1d507df5d6ea"
integrity sha512-fX6Z5o4m6XsXBdli9g7DtWgAx+osMsRRZFKma1mIUsLCz6vRvv+pz5VNbyu9UEDzpMWulZfvpgb/cmDXVulYFQ== integrity sha512-fX6Z5o4m6XsXBdli9g7DtWgAx+osMsRRZFKma1mIUsLCz6vRvv+pz5VNbyu9UEDzpMWulZfvpgb/cmDXVulYFQ==
...@@ -14548,10 +14520,10 @@ v8-compile-cache@^2.0.3, v8-compile-cache@^2.1.1: ...@@ -14548,10 +14520,10 @@ v8-compile-cache@^2.0.3, v8-compile-cache@^2.1.1:
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz#54bc3cdd43317bca91e35dcaf305b1a7237de745" resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz#54bc3cdd43317bca91e35dcaf305b1a7237de745"
integrity sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ== integrity sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ==
v8-to-istanbul@^4.1.3: v8-to-istanbul@^5.0.1:
version "4.1.4" version "5.0.1"
resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-4.1.4.tgz#b97936f21c0e2d9996d4985e5c5156e9d4e49cd6" resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-5.0.1.tgz#0608f5b49a481458625edb058488607f25498ba5"
integrity sha512-Rw6vJHj1mbdK8edjR7+zuJrpDtKIgNdAvTSAcpYfgMIw+u2dPDntD3dgN4XQFLU2/fvFQdzj+EeSGfd/jnY5fQ== integrity sha512-mbDNjuDajqYe3TXFk5qxcQy8L1msXNE37WTlLoqqpBfRsimbNcrlhQlDPntmECEcUvdC+AQ8CyMMf6EUx1r74Q==
dependencies: dependencies:
"@types/istanbul-lib-coverage" "^2.0.1" "@types/istanbul-lib-coverage" "^2.0.1"
convert-source-map "^1.6.0" convert-source-map "^1.6.0"
...@@ -14784,13 +14756,13 @@ whatwg-url@^7.0.0: ...@@ -14784,13 +14756,13 @@ whatwg-url@^7.0.0:
webidl-conversions "^4.0.2" webidl-conversions "^4.0.2"
whatwg-url@^8.0.0: whatwg-url@^8.0.0:
version "8.1.0" version "8.2.1"
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.1.0.tgz#c628acdcf45b82274ce7281ee31dd3c839791771" resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.2.1.tgz#ed73417230784b281fb2a32c3c501738b46167c3"
integrity sha512-vEIkwNi9Hqt4TV9RdnaBPNt+E2Sgmo3gePebCRgZ1R7g6d23+53zCTnuB0amKI4AXq6VM8jj2DUAa0S1vjJxkw== integrity sha512-ZmVCr6nfBeaMxEHALLEGy0LszYjpJqf6PVNQUQ1qd9Et+q7Jpygd4rGGDXgHjD8e99yLFseD69msHDM4YwPZ4A==
dependencies: dependencies:
lodash.sortby "^4.7.0" lodash.sortby "^4.7.0"
tr46 "^2.0.2" tr46 "^2.0.2"
webidl-conversions "^5.0.0" webidl-conversions "^6.1.0"
which-module@^2.0.0: which-module@^2.0.0:
version "2.0.0" version "2.0.0"
...@@ -14831,9 +14803,9 @@ widest-line@^3.1.0: ...@@ -14831,9 +14803,9 @@ widest-line@^3.1.0:
string-width "^4.0.0" string-width "^4.0.0"
windows-release@^3.1.0: windows-release@^3.1.0:
version "3.3.1" version "3.3.3"
resolved "https://registry.yarnpkg.com/windows-release/-/windows-release-3.3.1.tgz#cb4e80385f8550f709727287bf71035e209c4ace" resolved "https://registry.yarnpkg.com/windows-release/-/windows-release-3.3.3.tgz#1c10027c7225743eec6b89df160d64c2e0293999"
integrity sha512-Pngk/RDCaI/DkuHPlGTdIkDiTAnAkyMjoQMZqRsxydNl1qGXNIoZrB7RK8g53F2tEgQBMqQJHQdYZuQEEAu54A== integrity sha512-OSOGH1QYiW5yVor9TtmXKQvt2vjQqbYS+DqmsZw+r7xDwLXEeT3JGW0ZppFmHx4diyXmxt238KFR3N9jzevBRg==
dependencies: dependencies:
execa "^1.0.0" execa "^1.0.0"
...@@ -15103,7 +15075,12 @@ yn@3.1.1: ...@@ -15103,7 +15075,12 @@ yn@3.1.1:
resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50"
integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==
zrender@4.3.1, zrender@^4.0.4: zrender@4.3.1:
version "4.3.1" version "4.3.1"
resolved "https://registry.yarnpkg.com/zrender/-/zrender-4.3.1.tgz#baf8aa6dc8187a2f819692d7d5f9bedfa2b90fa3" resolved "https://registry.yarnpkg.com/zrender/-/zrender-4.3.1.tgz#baf8aa6dc8187a2f819692d7d5f9bedfa2b90fa3"
integrity sha512-CeH2TpJeCdG0TAGYoPSAcFX2ogdug1K7LIn9UO/q9HWqQ54gWhrMAlDP9AwWYMUDhrPe4VeazQ4DW3msD96nUQ== integrity sha512-CeH2TpJeCdG0TAGYoPSAcFX2ogdug1K7LIn9UO/q9HWqQ54gWhrMAlDP9AwWYMUDhrPe4VeazQ4DW3msD96nUQ==
zrender@^4.0.4:
version "4.3.2"
resolved "https://registry.yarnpkg.com/zrender/-/zrender-4.3.2.tgz#ec7432f9415c82c73584b6b7b8c47e1b016209c6"
integrity sha512-bIusJLS8c4DkIcdiK+s13HiQ/zjQQVgpNohtd8d94Y2DnJqgM1yjh/jpDb8DoL6hd7r8Awagw8e3qK/oLaWr3g==
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册