From 015e45417f879e3d983263309505db18e0c145ad Mon Sep 17 00:00:00 2001 From: Sean Monahan Date: Wed, 24 Aug 2022 17:24:52 -0700 Subject: [PATCH 01/14] stress-test: add cli application Adds a CLI application for Stress Test that allows test configurations to easily be generated and run. This makes running large test suites as simple as a single command and eliminates the need for most npm scripts that previously existed for this package. --- apps/stress-test/README.md | 6 ++++ .../scripts/commands/buildTestConfig.js | 28 +++++++++++++++ .../scripts/commands/processResults.js | 18 ++++++++++ apps/stress-test/scripts/commands/run.js | 22 ++++++++++++ .../stress-test/scripts/commands/runServer.js | 17 ++++++++++ .../scripts/commands/runTachometer.js | 24 +++++++++++++ apps/stress-test/scripts/stressTest.js | 13 +++++++ .../scripts/utils/configureYargs.js | 34 +++++++++++++++++++ .../scripts/utils/getScenarioConfig.js | 15 ++++++++ .../scripts/utils/processOptions.js | 5 +++ 10 files changed, 182 insertions(+) diff --git a/apps/stress-test/README.md b/apps/stress-test/README.md index 5726399518aa6..8923247fdfa6e 100644 --- a/apps/stress-test/README.md +++ b/apps/stress-test/README.md @@ -46,6 +46,12 @@ $ yarn workspace @fluentui/stress-test stress-test run --scenario simple-stress - **targets**: Different implementation targets. For example: "v8" for Fluent UI v8, "v9" for Fluent UI v9, "wc" for Fluent UI Web Components. - **test cases**: Different test cases to run against a given scenario. For example, you might want to test mounting performance for a scenario. +## Glossary + +- **scenario**: A testing scenario for a specific line of investigation. For example, if you wanted to compare the performance of different `Button` implementations you might create a "button-test" scenario for various targets. +- **targets**: Different implementation targets. For example: "v8" for Fluent UI v8, "v9" for Fluent UI v9, "wc" for Fluent UI Web Components. +- **test cases**: Different test cases to run against a given scenario. For example, you might want to test mounting performance for a scenario. + ## Development ```shell diff --git a/apps/stress-test/scripts/commands/buildTestConfig.js b/apps/stress-test/scripts/commands/buildTestConfig.js index 351669f273e77..c4ad8eda75fcd 100644 --- a/apps/stress-test/scripts/commands/buildTestConfig.js +++ b/apps/stress-test/scripts/commands/buildTestConfig.js @@ -23,11 +23,21 @@ const querystring = require('querystring'); * @property {string} resultsFile - Path to where test results should be written. */ +<<<<<<< HEAD /** * @typedef {Record.} TestOptions */ const command = 'build-test-config'; +======= +const command = 'build-test-config'; +exports.command = command; +exports.describe = 'Builds test configuration files.'; + +exports.builder = yargs => { + configureYargs(command, yargs); +}; +>>>>>>> 76c9e7deb9 (stress-test: add cli application) /** * @function buildTestConfig @@ -73,9 +83,14 @@ const buildTestConfig = options => { * @param {string} testCase * @param {number} sampleSize * @param {string[]} targets +<<<<<<< HEAD * @param {string} size * @param {TestOptions} testOptions * @param {number} port +======= + * @param {string[]} size + * @param {TestOptions} testOptions +>>>>>>> 76c9e7deb9 (stress-test: add cli application) * @returns {string} Stringified JSON */ const makeConfigJson = (scenario, browser, testCase, sampleSize, targets, size, testOptions, port) => { @@ -111,6 +126,7 @@ const makeConfigJson = (scenario, browser, testCase, sampleSize, targets, size, return JSON.stringify(json, null, 4); }; +<<<<<<< HEAD /** @type {import('yargs').CommandModule} */ const api = { command, @@ -132,3 +148,15 @@ module.exports = { ...api, buildTestConfig, }; +======= +/** + * + * @param {CLIBuildTestConfigOptions} argv + */ +exports.handler = argv => { + const options = processOptions(argv); + buildTestConfig(options); +}; + +exports.buildTestConfig = buildTestConfig; +>>>>>>> 76c9e7deb9 (stress-test: add cli application) diff --git a/apps/stress-test/scripts/commands/processResults.js b/apps/stress-test/scripts/commands/processResults.js index d391cddc7a740..573f266361c22 100644 --- a/apps/stress-test/scripts/commands/processResults.js +++ b/apps/stress-test/scripts/commands/processResults.js @@ -9,11 +9,26 @@ const { getResultsDir, readDirJson } = require('../utils/paths'); */ const command = 'process-results'; +<<<<<<< HEAD /** * @param {CLIProcessResultsOptions} argv */ const handler = argv => { +======= +exports.command = command; +exports.describe = 'Processes test results for display with charts and graphs.'; + +exports.builder = yargs => { + configureYargs(command, yargs); +}; + +/** + * + * @param {CLIProcessResultsOptions} argv + */ +exports.handler = argv => { +>>>>>>> 76c9e7deb9 (stress-test: add cli application) const { scenario } = argv; const resultsDir = getResultsDir(scenario); @@ -47,6 +62,7 @@ const handler = argv => { fs.writeFileSync(path.join(resultsDir, 'processed-results.js'), js, { encoding: 'utf8' }); }; +<<<<<<< HEAD /** @type {import('yargs').CommandModule} */ const api = { @@ -59,3 +75,5 @@ const api = { }; module.exports = api; +======= +>>>>>>> 76c9e7deb9 (stress-test: add cli application) diff --git a/apps/stress-test/scripts/commands/run.js b/apps/stress-test/scripts/commands/run.js index 42722cea7a474..0540e992e1f93 100644 --- a/apps/stress-test/scripts/commands/run.js +++ b/apps/stress-test/scripts/commands/run.js @@ -20,8 +20,20 @@ const { buildTestConfig } = require('./buildTestConfig'); */ const command = 'run'; +<<<<<<< HEAD /** +======= +exports.command = command; +exports.describe = 'Builds configs and runs stress testing.'; + +exports.builder = yargs => { + configureYargs(command, yargs); +}; + +/** + * +>>>>>>> 76c9e7deb9 (stress-test: add cli application) * @param {ConfigResult[]} testConfigs * @param {CLIServerOptions} options */ @@ -32,9 +44,16 @@ const run = async (testConfigs, options) => { }; /** +<<<<<<< HEAD * @param {CLIRunOptions} argv */ const handler = argv => { +======= + * + * @param {CLIRunOptions} argv + */ +exports.handler = argv => { +>>>>>>> 76c9e7deb9 (stress-test: add cli application) const options = processOptions(argv); const testConfigs = buildTestConfig(options); @@ -46,6 +65,7 @@ const handler = argv => { } }); }; +<<<<<<< HEAD /** @type {import('yargs').CommandModule} */ const api = { @@ -58,3 +78,5 @@ const api = { }; module.exports = api; +======= +>>>>>>> 76c9e7deb9 (stress-test: add cli application) diff --git a/apps/stress-test/scripts/commands/runServer.js b/apps/stress-test/scripts/commands/runServer.js index ea9c88e3a9655..8ea3710705d9c 100644 --- a/apps/stress-test/scripts/commands/runServer.js +++ b/apps/stress-test/scripts/commands/runServer.js @@ -8,6 +8,7 @@ const { startServer } = require('../utils/server'); */ const command = 'serve'; +<<<<<<< HEAD /** @type {import('yargs').CommandModule} */ const api = { @@ -25,3 +26,19 @@ const api = { }; module.exports = api; +======= +exports.command = command; +exports.describe = 'Runs a test HTTP server.'; + +exports.builder = yargs => { + configureYargs(command, yargs); +}; + +/** + * + * @param {CLIServerOptions} argv + */ +exports.handler = argv => { + startServer(argv); +}; +>>>>>>> 76c9e7deb9 (stress-test: add cli application) diff --git a/apps/stress-test/scripts/commands/runTachometer.js b/apps/stress-test/scripts/commands/runTachometer.js index 31dc7f2167b41..6c7ed30038f19 100644 --- a/apps/stress-test/scripts/commands/runTachometer.js +++ b/apps/stress-test/scripts/commands/runTachometer.js @@ -11,11 +11,30 @@ const runTachometer = require('../utils/tachometer'); */ const command = 'tachometer'; +<<<<<<< HEAD /** * @param {CLITachometerOptions} argv */ const handler = async argv => { +======= +exports.command = command; +exports.describe = 'Runs Tachometer for a provided scenario.'; + +exports.builder = yargs => { + configureYargs(command, yargs); +}; + +const run = async testConfigs => { + await runTachometer(testConfigs); +}; + +/** + * + * @param {CLITachometerOptions} argv + */ +exports.handler = argv => { +>>>>>>> 76c9e7deb9 (stress-test: add cli application) const { scenario } = argv; const configDir = getConfigDir(scenario); @@ -39,6 +58,7 @@ const handler = async argv => { configs.push(configResult); } +<<<<<<< HEAD await runTachometer(configs); console.log('Tachometer run complete!'); }; @@ -54,3 +74,7 @@ const api = { }; module.exports = api; +======= + run(configs).then(() => console.log('Tachometer run complete!')); +}; +>>>>>>> 76c9e7deb9 (stress-test: add cli application) diff --git a/apps/stress-test/scripts/stressTest.js b/apps/stress-test/scripts/stressTest.js index 2fdfb1e4385d7..d3a6afdaaec77 100644 --- a/apps/stress-test/scripts/stressTest.js +++ b/apps/stress-test/scripts/stressTest.js @@ -1,3 +1,16 @@ const yargs = require('yargs'); +<<<<<<< HEAD yargs.usage('Usage: $0 [options]').commandDir('commands').demandCommand().help().parse(); +======= +yargs + .usage('Usage: $0 [options]') + .command(require('./commands/run.js')) + .command(require('./commands/buildTestConfig')) + .command(require('./commands/processResults.js')) + .command(require('./commands/runServer.js')) + .command(require('./commands/runTachometer.js')) + .demandCommand() + .help() + .parse(); +>>>>>>> 76c9e7deb9 (stress-test: add cli application) diff --git a/apps/stress-test/scripts/utils/configureYargs.js b/apps/stress-test/scripts/utils/configureYargs.js index 435b92b53f111..790070d947e69 100644 --- a/apps/stress-test/scripts/utils/configureYargs.js +++ b/apps/stress-test/scripts/utils/configureYargs.js @@ -1,7 +1,14 @@ +<<<<<<< HEAD const { getBrowsers } = require('./getBrowsers'); /** * @typedef {Object.} YargsOptions +======= +const { getBrowsers } = require('../../dist/getBrowsers'); + +/** + * @typedef {Object.>>>>>> 76c9e7deb9 (stress-test: add cli application) */ const cliOptions = { @@ -44,6 +51,7 @@ const cliOptions = { describe: 'Root folder for test server relative to package root.', default: 'dist', }, +<<<<<<< HEAD 'griffel-mode': { describe: 'Optimization mode for Griffel.', default: 'buildtime', @@ -67,6 +75,12 @@ const cliOptions = { }; /** +======= +}; + +/** + * +>>>>>>> 76c9e7deb9 (stress-test: add cli application) * @param {import('yargs').Argv} yargs * @param {YargsOptions} options */ @@ -92,6 +106,7 @@ const configure = (yargs, options) => { case 'use-config': case 'process-results': +<<<<<<< HEAD case 'verbose': case 'build-deps': case 'open': @@ -105,17 +120,25 @@ const configure = (yargs, options) => { case 'mode': y = y.choices(option, ['production', 'development']); break; +======= + y = y.boolean(option); +>>>>>>> 76c9e7deb9 (stress-test: add cli application) } }); }; /** +<<<<<<< HEAD +======= + * +>>>>>>> 76c9e7deb9 (stress-test: add cli application) * @param {string} command * @param {import('yargs').Argv} yargs */ const configureYargs = (command, yargs) => { switch (command) { case 'build-test-config': { +<<<<<<< HEAD const { scenario, 'test-cases': testCases, @@ -136,10 +159,15 @@ const configureYargs = (command, yargs) => { 'use-config': useConfig, port, }); +======= + const { 'process-results': processResults, ...buildTestOptions } = cliOptions; + configure(yargs, buildTestOptions); +>>>>>>> 76c9e7deb9 (stress-test: add cli application) break; } case 'run': { +<<<<<<< HEAD const { scenario, 'test-cases': testCases, @@ -164,6 +192,9 @@ const configureYargs = (command, yargs) => { port, root, }); +======= + configure(yargs, cliOptions); +>>>>>>> 76c9e7deb9 (stress-test: add cli application) break; } @@ -184,6 +215,7 @@ const configureYargs = (command, yargs) => { configure(yargs, { scenario }); break; } +<<<<<<< HEAD case 'build': { const { 'griffel-mode': griffelMode, mode, verbose, 'build-deps': buildDeps } = cliOptions; @@ -197,6 +229,8 @@ const configureYargs = (command, yargs) => { configure(yargs, { mode, open, 'griffel-mode': griffelMode }); break; } +======= +>>>>>>> 76c9e7deb9 (stress-test: add cli application) } }; diff --git a/apps/stress-test/scripts/utils/getScenarioConfig.js b/apps/stress-test/scripts/utils/getScenarioConfig.js index 2b96f4befee3f..bc7305ee2f6a3 100644 --- a/apps/stress-test/scripts/utils/getScenarioConfig.js +++ b/apps/stress-test/scripts/utils/getScenarioConfig.js @@ -5,6 +5,7 @@ const { getScenariosDir } = require('./paths'); /** * @function getScenarioConfig * @param {string} scenarioName +<<<<<<< HEAD * @returns {Object.} */ const getScenarioConfig = scenarioName => { @@ -14,11 +15,25 @@ const getScenarioConfig = scenarioName => { const config = require(`../../scenarios/${scenarioName}.js`); returnConfig = { ...returnConfig, +======= + * @returns {ScenarioConfig} + */ +const getScenarioConfig = scenarioName => { + let scenarioConfig = require('../../scenarios/default.js'); + if (fs.existsSync(path.join(getScenariosDir(), `${scenarioName}.js`))) { + const config = require(`../../scenarios/${scenarioName}.js`); + scenarioConfig = { + ...scenarioConfig, +>>>>>>> 76c9e7deb9 (stress-test: add cli application) ...config, }; } +<<<<<<< HEAD return returnConfig; +======= + return scenarioConfig; +>>>>>>> 76c9e7deb9 (stress-test: add cli application) }; module.exports = getScenarioConfig; diff --git a/apps/stress-test/scripts/utils/processOptions.js b/apps/stress-test/scripts/utils/processOptions.js index 4a982ea01ff03..e8a2092fdded5 100644 --- a/apps/stress-test/scripts/utils/processOptions.js +++ b/apps/stress-test/scripts/utils/processOptions.js @@ -1,8 +1,13 @@ const getScenarioConfig = require('./getScenarioConfig'); /** +<<<<<<< HEAD * @param {Object.} parsedOptions * @returns {Object.} +======= + * @param {import('yargs').Options} parsedOptions + * @returns {import('yargs').Options} +>>>>>>> 76c9e7deb9 (stress-test: add cli application) */ const processOptions = parsedOptions => { if (parsedOptions.useConfig) { From 115905052c6d18110e2c854e49e793718ab2c3f3 Mon Sep 17 00:00:00 2001 From: Sean Monahan Date: Fri, 26 Aug 2022 15:52:58 -0700 Subject: [PATCH 02/14] add missing 'getBrowsers' script. --- .../scripts/utils/configureYargs.js | 34 ------------------- 1 file changed, 34 deletions(-) diff --git a/apps/stress-test/scripts/utils/configureYargs.js b/apps/stress-test/scripts/utils/configureYargs.js index 790070d947e69..435b92b53f111 100644 --- a/apps/stress-test/scripts/utils/configureYargs.js +++ b/apps/stress-test/scripts/utils/configureYargs.js @@ -1,14 +1,7 @@ -<<<<<<< HEAD const { getBrowsers } = require('./getBrowsers'); /** * @typedef {Object.} YargsOptions -======= -const { getBrowsers } = require('../../dist/getBrowsers'); - -/** - * @typedef {Object.>>>>>> 76c9e7deb9 (stress-test: add cli application) */ const cliOptions = { @@ -51,7 +44,6 @@ const cliOptions = { describe: 'Root folder for test server relative to package root.', default: 'dist', }, -<<<<<<< HEAD 'griffel-mode': { describe: 'Optimization mode for Griffel.', default: 'buildtime', @@ -75,12 +67,6 @@ const cliOptions = { }; /** -======= -}; - -/** - * ->>>>>>> 76c9e7deb9 (stress-test: add cli application) * @param {import('yargs').Argv} yargs * @param {YargsOptions} options */ @@ -106,7 +92,6 @@ const configure = (yargs, options) => { case 'use-config': case 'process-results': -<<<<<<< HEAD case 'verbose': case 'build-deps': case 'open': @@ -120,25 +105,17 @@ const configure = (yargs, options) => { case 'mode': y = y.choices(option, ['production', 'development']); break; -======= - y = y.boolean(option); ->>>>>>> 76c9e7deb9 (stress-test: add cli application) } }); }; /** -<<<<<<< HEAD -======= - * ->>>>>>> 76c9e7deb9 (stress-test: add cli application) * @param {string} command * @param {import('yargs').Argv} yargs */ const configureYargs = (command, yargs) => { switch (command) { case 'build-test-config': { -<<<<<<< HEAD const { scenario, 'test-cases': testCases, @@ -159,15 +136,10 @@ const configureYargs = (command, yargs) => { 'use-config': useConfig, port, }); -======= - const { 'process-results': processResults, ...buildTestOptions } = cliOptions; - configure(yargs, buildTestOptions); ->>>>>>> 76c9e7deb9 (stress-test: add cli application) break; } case 'run': { -<<<<<<< HEAD const { scenario, 'test-cases': testCases, @@ -192,9 +164,6 @@ const configureYargs = (command, yargs) => { port, root, }); -======= - configure(yargs, cliOptions); ->>>>>>> 76c9e7deb9 (stress-test: add cli application) break; } @@ -215,7 +184,6 @@ const configureYargs = (command, yargs) => { configure(yargs, { scenario }); break; } -<<<<<<< HEAD case 'build': { const { 'griffel-mode': griffelMode, mode, verbose, 'build-deps': buildDeps } = cliOptions; @@ -229,8 +197,6 @@ const configureYargs = (command, yargs) => { configure(yargs, { mode, open, 'griffel-mode': griffelMode }); break; } -======= ->>>>>>> 76c9e7deb9 (stress-test: add cli application) } }; From c4dd4578c1ea47563eef78fe811cc372a61e87e7 Mon Sep 17 00:00:00 2001 From: Sean Monahan Date: Mon, 29 Aug 2022 15:58:31 -0700 Subject: [PATCH 03/14] stress-test: add build commands This command allows the application to be built via the CLI. It adds: - Support for different Griffel build modes (runtime, build time, extraction) - Building dependencies for Stress Test (e.g., @fluentui/react) - Running Webpack dev server via CLI --- apps/stress-test/package.json | 3 + apps/stress-test/scripts/commands/build.js | 68 ++++++++++++++++++++++ apps/stress-test/scripts/commands/dev.js | 15 +++++ apps/stress-test/scripts/stressTest.js | 4 +- apps/stress-test/webpack/griffelConfig.js | 33 +++++++++++ 5 files changed, 122 insertions(+), 1 deletion(-) diff --git a/apps/stress-test/package.json b/apps/stress-test/package.json index ee464412c3ba4..0bf49adfdf28a 100644 --- a/apps/stress-test/package.json +++ b/apps/stress-test/package.json @@ -16,5 +16,8 @@ "@microsoft/fast-element": "^1.10.4", "react": "17.0.2", "react-dom": "17.0.2" + }, + "devDependencies": { + "@babel/plugin-proposal-decorators": "7.14.5" } } diff --git a/apps/stress-test/scripts/commands/build.js b/apps/stress-test/scripts/commands/build.js index 9f9695819e579..fd7ac4487f1ad 100644 --- a/apps/stress-test/scripts/commands/build.js +++ b/apps/stress-test/scripts/commands/build.js @@ -8,6 +8,7 @@ const execAsync = promisify(exec); /** * @typedef {Object} CLIBuildOptions +<<<<<<< HEAD * @property {import('../../webpack/griffelConfig.js').GriffelMode} griffelMode * @property {('development' | 'production' | 'none')} mode * @property {boolean} verbose @@ -19,6 +20,24 @@ const command = 'build'; /** * @param {CLIBuildOptions} argv * @returns {Promise} +======= + * @property {string} griffelMode + * @property {string} mode + * @property {boolean} verbose + */ + +const command = 'build'; +exports.command = command; +exports.describe = 'Builds the application.'; + +exports.builder = yargs => { + configureYargs(command, yargs); +}; + +/** + * @param {CLIBuildOptions} argv + * @returns {Promise} +>>>>>>> a82206debc (stress-test: add build commands) */ const run = async argv => { if (argv.buildDeps) { @@ -31,6 +50,7 @@ const run = async argv => { } return new Promise((resolve, reject) => { +<<<<<<< HEAD const config = webpackConfig(undefined, { griffelMode: argv.griffelMode, mode: argv.mode }); webpack(config, (err, stats) => { if (err) { @@ -59,10 +79,40 @@ const run = async argv => { warning.stack && console.warn(warning.stack); } }); +======= + const config = webpackConfig(undefined, argv); + webpack(config, (err, stats) => { + if (err) { + console.error(err.stack || err); + if (argv.verbose && err.details) { + console.error(err.details); + } + return reject(); + } else if (stats.hasErrors()) { + const { errors } = stats.toJson(); + errors.forEach(error => { + console.error(error.message); + if (argv.verbose) { + error.details && console.error(error.details); + error.stack && console.error(error.stack); + } + }); + + if (stats.hasWarnings()) { + const { warnings } = stats.toJson(); + warnings.forEach(warning => { + console.warn(warning.message); + if (argv.verbose) { + warning.details && console.warn(warning.details); + warning.stack && console.warn(warning.stack); + } + }); +>>>>>>> a82206debc (stress-test: add build commands) } return reject(); } +<<<<<<< HEAD if (stats) { console.log( stats.toString({ @@ -70,12 +120,20 @@ const run = async argv => { }), ); } +======= + console.log( + stats.toString({ + colors: true, // Shows colors in the console + }), + ); +>>>>>>> a82206debc (stress-test: add build commands) resolve(); }); }); }; +<<<<<<< HEAD /** @type {import('yargs').CommandModule} */ const api = { command, @@ -94,3 +152,13 @@ const api = { }; module.exports = api; +======= +/** + * @param {CLIBuildOptions} argv + */ +exports.handler = argv => { + run(argv).then(() => { + console.log('Build complete!'); + }); +}; +>>>>>>> a82206debc (stress-test: add build commands) diff --git a/apps/stress-test/scripts/commands/dev.js b/apps/stress-test/scripts/commands/dev.js index df670734996a7..a1803fa160008 100644 --- a/apps/stress-test/scripts/commands/dev.js +++ b/apps/stress-test/scripts/commands/dev.js @@ -11,6 +11,15 @@ const webpackConfig = require('../../webpack/webpack.config'); */ const command = 'dev'; +<<<<<<< HEAD +======= +exports.command = command; +exports.describe = 'Run the app in development mode'; + +exports.builder = yargs => { + configureYargs(command, yargs); +}; +>>>>>>> a82206debc (stress-test: add build commands) const shutdownServer = () => { if (server) { @@ -38,6 +47,7 @@ const runServer = async argv => { await server.start(); }; +<<<<<<< HEAD /** @type {import('yargs').CommandModule} */ const api = { command, @@ -51,3 +61,8 @@ const api = { }; module.exports = api; +======= +exports.handler = argv => { + runServer(argv); +}; +>>>>>>> a82206debc (stress-test: add build commands) diff --git a/apps/stress-test/scripts/stressTest.js b/apps/stress-test/scripts/stressTest.js index d3a6afdaaec77..13f76d4391bcf 100644 --- a/apps/stress-test/scripts/stressTest.js +++ b/apps/stress-test/scripts/stressTest.js @@ -6,7 +6,9 @@ yargs.usage('Usage: $0 [options]').commandDir('commands').demandCommand(). yargs .usage('Usage: $0 [options]') .command(require('./commands/run.js')) - .command(require('./commands/buildTestConfig')) + .command(require('./commands/build.js')) + .command(require('./commands/dev.js')) + .command(require('./commands/buildTestConfig.js')) .command(require('./commands/processResults.js')) .command(require('./commands/runServer.js')) .command(require('./commands/runTachometer.js')) diff --git a/apps/stress-test/webpack/griffelConfig.js b/apps/stress-test/webpack/griffelConfig.js index ea07021909427..8d0ac6fb0e98d 100644 --- a/apps/stress-test/webpack/griffelConfig.js +++ b/apps/stress-test/webpack/griffelConfig.js @@ -2,11 +2,29 @@ const { GriffelCSSExtractionPlugin } = require('@griffel/webpack-extraction-plug const MiniCssExtractPlugin = require('mini-css-extract-plugin'); /** +<<<<<<< HEAD * @typedef {('runtime' | 'buildtime' | 'extraction')} GriffelMode */ /** * @type {import('webpack').RuleSetRule} +======= + * Webpack configuration object. + * @typedef {import('webpack').Configuration} WebpackConfig + */ + +/** + * Webpack rules set. + * @typedef {import('webpack').RuleSetRule} WebpackRuleSetRule + */ + +/** + * @typedef {('runtime' | 'buildtime' | 'extrraction')} GriffelMode + */ + +/** + * @type {WebpackRuleSetRule} +>>>>>>> a82206debc (stress-test: add build commands) */ const griffelWebpackLoader = { test: /\.(ts|tsx)$/, @@ -22,7 +40,11 @@ const griffelWebpackLoader = { }; /** +<<<<<<< HEAD * @type {import('webpack').RuleSetRule} +======= + * @type {WebpackRuleSetRule} +>>>>>>> a82206debc (stress-test: add build commands) */ const griffelExtractionLoader = { test: /\.(js|ts|tsx)$/, @@ -44,17 +66,28 @@ const cssLoader = { * * NOTE: this function mutates the `config` object passed in to it. * +<<<<<<< HEAD * @param {import('webpack').Configuration} config - Webpack configuration object to modify. * @param {GriffelMode} griffelMode * @returns {import('webpack').Configuration} Modified Webpack configuration object. +======= + * @param {WebpackConfig} config - Webpack configuration object to modify. + * @param {GriffelMode} griffelMode + * @returns {WebpackConfig} Modified Webpack configuration object. +>>>>>>> a82206debc (stress-test: add build commands) */ const configureGriffel = (config, griffelMode) => { console.log(`Griffel running in ${griffelMode} mode.`); +<<<<<<< HEAD config.module = config.module || {}; let rules = config.module.rules || []; let plugins = config.plugins || []; +======= + let rules = config.module.rules || []; + let plugins = config.module.plugins || []; +>>>>>>> a82206debc (stress-test: add build commands) if (griffelMode === 'extraction') { rules = [griffelExtractionLoader, griffelWebpackLoader, cssLoader, ...rules]; From 04c5fe15ddf8d887080387ec40cd71e60781ba0d Mon Sep 17 00:00:00 2001 From: Sean Monahan Date: Tue, 30 Aug 2022 16:48:33 -0700 Subject: [PATCH 04/14] stress test: add random tree to simulate testing against a real app This commit adds a "random tree" feature that will use a seedable random number generator to generate a tree data structure that is agnostic to any particular UI technology. The generated trees are meant to mirror the DOM and can be plugged into things like React or Web Components to render a DOM tree in the browser. The key features of this tree are: - It's deterministic thanks to the seedable RNG but can easily produce many different trees. This ensures we use the exact same tree when comparing different UI technologies. - It's extensible via a `visit()` callback. This allows users to augment their trees however they want. This commit ships a "selecto tree" that generates CSS selectors to go along side the generated tree. --- apps/stress-test/package.json | 3 +- apps/stress-test/scenarios/stress-tree.js | 80 +++++++ .../src/components/v8/StressContainer.tsx | 2 +- .../src/components/v9/StressContainer.tsx | 2 +- .../src/components/wc/stressContainer.wc.ts | 2 +- .../src/pages/v8/simple-stress/index.html | 2 +- .../src/pages/v8/stress-tree/index.html | 11 + .../src/pages/v8/stress-tree/index.tsx | 18 ++ .../src/pages/v9/stress-tree/index.html | 11 + .../src/pages/v9/stress-tree/index.tsx | 21 ++ apps/stress-test/src/shared/Element.tsx | 35 --- .../stress-test/src/shared/ElementContext.tsx | 14 -- .../src/shared/css/RandomSelector.ts | 137 ++++++++++++ .../src/shared/css/injectStyles.ts | 208 ++++++++++++++++++ apps/stress-test/src/shared/injectStyles.ts | 38 ---- .../src/shared/performanceMeasure.ts | 18 +- apps/stress-test/src/shared/random.ts | 24 ++ .../src/shared/react/ReactSelectorTree.tsx | 93 ++++++++ .../src/shared/react/ReactTree.tsx | 39 ++++ .../src/shared/react/TestChangeNumNodes.tsx | 47 ++++ .../src/shared/react/TestInjectStyles.tsx | 32 +++ .../stress-test/src/shared/react/TestTree.tsx | 22 ++ apps/stress-test/src/shared/react/types.ts | 10 + .../src/shared/requestPostAnimationFrame.ts | 6 + apps/stress-test/src/shared/testParams.ts | 16 +- .../src/shared/tree/RandomSelectorTreeNode.ts | 137 ++++++++++++ .../stress-test/src/shared/tree/RandomTree.ts | 92 ++++++++ yarn.lock | 5 + 28 files changed, 1017 insertions(+), 108 deletions(-) create mode 100644 apps/stress-test/scenarios/stress-tree.js create mode 100644 apps/stress-test/src/pages/v8/stress-tree/index.html create mode 100644 apps/stress-test/src/pages/v8/stress-tree/index.tsx create mode 100644 apps/stress-test/src/pages/v9/stress-tree/index.html create mode 100644 apps/stress-test/src/pages/v9/stress-tree/index.tsx delete mode 100644 apps/stress-test/src/shared/Element.tsx delete mode 100644 apps/stress-test/src/shared/ElementContext.tsx create mode 100644 apps/stress-test/src/shared/css/RandomSelector.ts create mode 100644 apps/stress-test/src/shared/css/injectStyles.ts delete mode 100644 apps/stress-test/src/shared/injectStyles.ts create mode 100644 apps/stress-test/src/shared/random.ts create mode 100644 apps/stress-test/src/shared/react/ReactSelectorTree.tsx create mode 100644 apps/stress-test/src/shared/react/ReactTree.tsx create mode 100644 apps/stress-test/src/shared/react/TestChangeNumNodes.tsx create mode 100644 apps/stress-test/src/shared/react/TestInjectStyles.tsx create mode 100644 apps/stress-test/src/shared/react/TestTree.tsx create mode 100644 apps/stress-test/src/shared/react/types.ts create mode 100644 apps/stress-test/src/shared/requestPostAnimationFrame.ts create mode 100644 apps/stress-test/src/shared/tree/RandomSelectorTreeNode.ts create mode 100644 apps/stress-test/src/shared/tree/RandomTree.ts diff --git a/apps/stress-test/package.json b/apps/stress-test/package.json index 0bf49adfdf28a..fa5bd51b0f3b2 100644 --- a/apps/stress-test/package.json +++ b/apps/stress-test/package.json @@ -15,7 +15,8 @@ "@fluentui/web-components": "^2.5.5", "@microsoft/fast-element": "^1.10.4", "react": "17.0.2", - "react-dom": "17.0.2" + "react-dom": "17.0.2", + "random-seedable": "1.0.8" }, "devDependencies": { "@babel/plugin-proposal-decorators": "7.14.5" diff --git a/apps/stress-test/scenarios/stress-tree.js b/apps/stress-test/scenarios/stress-tree.js new file mode 100644 index 0000000000000..e730b76c550d5 --- /dev/null +++ b/apps/stress-test/scenarios/stress-tree.js @@ -0,0 +1,80 @@ +/** + * @typedef {Object} TestOptions + * @property {number} numStartNodes + * @property {number} numAddNodes + * @property {number} numRemoveNodes + */ + +/** + * @typedef {Object.} SizeMap + */ + +/** + * @typedef {Object} ScenarioConfig + * @property {string[]} [testCases] + * @property {SizeMap} [sizes] + * @property {string[]} [browsers] + * @property {number} [sampleSize] + * @property {string[]} [targets] + */ + +module.exports = { + testCases: ['mount', 'inject-styles', 'prop-update', 'remove-node', 'add-node'], + + sizes: { + xs: { + minBreath: 1, + maxBreadth: 10, + minDepth: 1, + maxDepth: 10, + addBreadth: 10, + addDepth: 10, + removeBreadth: 9, + removeDepth: 9, + }, + + s: { + minBreath: 2, + maxBreadth: 25, + minDepth: 2, + maxDepth: 25, + addBreadth: 25, + addDepth: 25, + removeBreadth: 23, + removeDepth: 23, + }, + + m: { + minBreath: 3, + maxBreadth: 150, + minDepth: 3, + maxDepth: 150, + addBreadth: 150, + addDepth: 150, + removeBreadth: 147, + removeDepth: 147, + }, + + l: { + minBreath: 4, + maxBreadth: 300, + minDepth: 4, + maxDepth: 300, + addBreadth: 300, + addDepth: 300, + removeBreadth: 296, + removeDepth: 296, + }, + + xl: { + minBreath: 100, + maxBreadth: 500, + minDepth: 100, + maxDepth: 500, + addBreadth: 500, + addDepth: 500, + removeBreadth: 101, + removeDepth: 101, + }, + }, +}; diff --git a/apps/stress-test/src/components/v8/StressContainer.tsx b/apps/stress-test/src/components/v8/StressContainer.tsx index 26ef7d3ae0c16..0c1b1a2330eae 100644 --- a/apps/stress-test/src/components/v8/StressContainer.tsx +++ b/apps/stress-test/src/components/v8/StressContainer.tsx @@ -1,6 +1,6 @@ import { mergeStyleSets } from '@fluentui/react'; import * as React from 'react'; -import { injectGlobalCss } from '../../shared/injectStyles'; +import { injectGlobalCss } from '../../shared/css/injectStyles'; import { getTestParams } from '../../shared/testParams'; import { performanceMeasure } from '../../shared/performanceMeasure'; import { StressComponent } from './StressComponent'; diff --git a/apps/stress-test/src/components/v9/StressContainer.tsx b/apps/stress-test/src/components/v9/StressContainer.tsx index 5d5ed9b956fa6..bf45343a2a419 100644 --- a/apps/stress-test/src/components/v9/StressContainer.tsx +++ b/apps/stress-test/src/components/v9/StressContainer.tsx @@ -1,6 +1,6 @@ import { makeStyles, shorthands } from '@fluentui/react-components'; import * as React from 'react'; -import { injectGlobalCss } from '../../shared/injectStyles'; +import { injectGlobalCss } from '../../shared/css/injectStyles'; import { getTestParams } from '../../shared/testParams'; import { performanceMeasure } from '../../shared/performanceMeasure'; import { StressComponent } from './StressComponent'; diff --git a/apps/stress-test/src/components/wc/stressContainer.wc.ts b/apps/stress-test/src/components/wc/stressContainer.wc.ts index 26a3df9100a5d..fa08104880c98 100644 --- a/apps/stress-test/src/components/wc/stressContainer.wc.ts +++ b/apps/stress-test/src/components/wc/stressContainer.wc.ts @@ -1,5 +1,5 @@ import { FASTElement, customElement, html, css } from '@microsoft/fast-element'; -import { injectGlobalCss } from '../../shared/injectStyles'; +import { injectGlobalCss } from '../../shared/css/injectStyles'; import { getTestParams } from '../../shared/testParams'; import { performanceMeasure } from '../../shared/performanceMeasure'; diff --git a/apps/stress-test/src/pages/v8/simple-stress/index.html b/apps/stress-test/src/pages/v8/simple-stress/index.html index fb88d2f33a8b7..9ff4031b96219 100644 --- a/apps/stress-test/src/pages/v8/simple-stress/index.html +++ b/apps/stress-test/src/pages/v8/simple-stress/index.html @@ -3,7 +3,7 @@ - v8: Simple Stress + v8: Stress Tree
diff --git a/apps/stress-test/src/pages/v8/stress-tree/index.html b/apps/stress-test/src/pages/v8/stress-tree/index.html new file mode 100644 index 0000000000000..fb88d2f33a8b7 --- /dev/null +++ b/apps/stress-test/src/pages/v8/stress-tree/index.html @@ -0,0 +1,11 @@ + + + + + + v8: Simple Stress + + +
+ + diff --git a/apps/stress-test/src/pages/v8/stress-tree/index.tsx b/apps/stress-test/src/pages/v8/stress-tree/index.tsx new file mode 100644 index 0000000000000..3fdd630f0cdcb --- /dev/null +++ b/apps/stress-test/src/pages/v8/stress-tree/index.tsx @@ -0,0 +1,18 @@ +import * as React from 'react'; +import * as ReactDOM from 'react-dom'; +import { initializeIcons, DefaultButton, ThemeProvider } from '@fluentui/react'; +import { ReactSelectorTreeComponentRenderer } from '../../../shared/react/ReactSelectorTree'; +import { TestTree } from '../../../shared/react/TestTree'; + +initializeIcons(); + +const componentRenderer: ReactSelectorTreeComponentRenderer = (node, depth, index) => { + return ; +}; + +ReactDOM.render( + + + , + document.getElementById('root'), +); diff --git a/apps/stress-test/src/pages/v9/stress-tree/index.html b/apps/stress-test/src/pages/v9/stress-tree/index.html new file mode 100644 index 0000000000000..5d99e8898db67 --- /dev/null +++ b/apps/stress-test/src/pages/v9/stress-tree/index.html @@ -0,0 +1,11 @@ + + + + + + v9: Stress Tree + + +
+ + diff --git a/apps/stress-test/src/pages/v9/stress-tree/index.tsx b/apps/stress-test/src/pages/v9/stress-tree/index.tsx new file mode 100644 index 0000000000000..9a7e5f16c8136 --- /dev/null +++ b/apps/stress-test/src/pages/v9/stress-tree/index.tsx @@ -0,0 +1,21 @@ +import * as React from 'react'; +import * as ReactDOM from 'react-dom'; + +import { Button, FluentProvider, webLightTheme } from '@fluentui/react-components'; +import { ReactSelectorTreeComponentRenderer } from '../../../shared/react/ReactSelectorTree'; +import { TestTree } from '../../../shared/react/TestTree'; + +const componentRenderer: ReactSelectorTreeComponentRenderer = (node, depth, index) => { + return ( + + ); +}; + +ReactDOM.render( + + + , + document.getElementById('root'), +); diff --git a/apps/stress-test/src/shared/Element.tsx b/apps/stress-test/src/shared/Element.tsx deleted file mode 100644 index 3e308d066dbc1..0000000000000 --- a/apps/stress-test/src/shared/Element.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import * as React from 'react'; -import { useElementContext } from './ElementContext'; - -const alphabet = 'abcdefghijklmnopqrstuvwxyz'.split(''); -const alphabetLength = alphabet.length; - -export type ElementProps = { - as?: React.ReactNode; - depth?: number; - start?: number; - classPrefix?: string; - className?: string; - children?: React.ReactNode; -}; - -export const Element: React.FC = props => { - const { depth: contextDepth } = useElementContext(); - const { as = 'div', children, depth = contextDepth, start = 0, classPrefix = '', className, ...rest } = props; - - const El = as as React.ElementType; - let depthClassName = alphabet[start % alphabetLength]; - depthClassName = classPrefix ? `${classPrefix}-${depthClassName}` : depthClassName; - - const cn = className ? `${className} ${depthClassName}` : depthClassName; - - return depth > 1 ? ( - - - - ) : ( - - {children} - - ); -}; diff --git a/apps/stress-test/src/shared/ElementContext.tsx b/apps/stress-test/src/shared/ElementContext.tsx deleted file mode 100644 index 6f3caa4d6b5a5..0000000000000 --- a/apps/stress-test/src/shared/ElementContext.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import * as React from 'react'; - -export type ElementContextObject = { - depth: number; -}; - -const ElementContext = React.createContext({ - depth: 26, -}); - -export const useElementContext = () => React.useContext(ElementContext); - -const ElementProvider = ElementContext.Provider; -export { ElementProvider }; diff --git a/apps/stress-test/src/shared/css/RandomSelector.ts b/apps/stress-test/src/shared/css/RandomSelector.ts new file mode 100644 index 0000000000000..85357e18f7b8e --- /dev/null +++ b/apps/stress-test/src/shared/css/RandomSelector.ts @@ -0,0 +1,137 @@ +import { random, Random } from '../random'; + +export const defaultSelectorTypes = [ + 'class', + 'tag', + 'nth-child', + 'pseudo-element', + 'not-class', + 'not-attribute', + 'attribute-name', + 'attribute-value', +] as const; + +type SelectorType = typeof defaultSelectorTypes[number]; + +type SelectorParams = { + seed?: number; + selectorTypes?: SelectorType[]; + tags?: string[]; + classNames?: string[]; + attributeNames?: string[]; + attributeValues?: string[]; +}; + +export class RandomSelector { + private rando: Random; + private readonly selectorTypes: SelectorType[]; + private tags: string[]; + private classNames: string[]; + private attributeNames: string[]; + private attributeValues: string[]; + + constructor({ seed, selectorTypes, tags, classNames, attributeNames, attributeValues }: SelectorParams = {}) { + this.rando = random(seed); + this.selectorTypes = selectorTypes ?? ((defaultSelectorTypes as unknown) as SelectorType[]); + this.tags = tags ?? []; + this.classNames = classNames ?? []; + this.attributeNames = attributeNames ?? []; + this.attributeValues = attributeValues ?? []; + } + + public randomSelector = (selectorTypes?: SelectorType[]): string => { + const selectorType = this._randomSelectorType(selectorTypes); + + switch (selectorType) { + case 'class': + return this._classSelector(); + + case 'tag': + return this._tagSelector(); + + case 'nth-child': + return this._nthChildSelector(); + + case 'pseudo-element': + return this._pseudoElement(); + + case 'not-class': + return this._notClass(); + + case 'not-attribute': + return this._notAttribute(); + + case 'attribute-name': + return this._attributeName(); + + case 'attribute-value': + return this._attributeValue(); + } + }; + + private _randomSelectorType = (selectorTypes?: SelectorType[]): SelectorType => { + return this.rando.choice(selectorTypes ?? this.selectorTypes); + }; + + private _classSelector = (): string => { + const selector = this._randomChoice(this.classNames) ?? this._randomString('random-classname'); + return `.${selector}`; + }; + + private _tagSelector = (): string => { + return this._randomChoice(this.tags) ?? this._randomString('random-tag'); + }; + + private _nthChildSelector = (): string => { + const choices = [':first-child', ':last-child', ':nth-child']; + const selector = this.rando.choice(choices); + + if (selector === ':nth-child') { + return `${selector}(${this.rando.range(1, 15)})`; + } + + return selector; + }; + + private _pseudoElement = (): string => { + const choices = ['::after', '::before', /*'::part',*/ '::placeholder', '::slotted']; + const selector = this.rando.choice(choices); + + return selector; + }; + + private _notClass = (): string => { + return `:not(${this._classSelector()})`; + }; + + private _notAttribute = (): string => { + return `:not(${this._attributeName()})`; + }; + + private _attributeName = (): string => { + return `[${this._randomAttributeName()}]`; + }; + + private _attributeValue = (): string => { + const name = this._randomAttributeName(); + const value = this._randomChoice(this.attributeValues) ?? this._randomString('random-attr-value'); + + return `[${name}=${value}]`; + }; + + private _randomChoice = (choices: string[]): string | undefined => { + if (choices.length > 0) { + return this.rando.choice(choices); + } + + return undefined; + }; + + private _randomAttributeName = (): string => { + return this._randomChoice(this.attributeNames) ?? this._randomString('data-random-attr'); + }; + + private _randomString = (prefix: string = 'random-string'): string => { + return `${prefix}-${this.rando.integer().toString(16)}`; + }; +} diff --git a/apps/stress-test/src/shared/css/injectStyles.ts b/apps/stress-test/src/shared/css/injectStyles.ts new file mode 100644 index 0000000000000..f4422a7f7bf6a --- /dev/null +++ b/apps/stress-test/src/shared/css/injectStyles.ts @@ -0,0 +1,208 @@ +// Inspired by: https://github.com/nolanlawson/shadow-selector-benchmark + +import { random } from '../random'; + +const colors = [ + 'aliceblue', + 'antiquewhite', + 'aqua', + 'aquamarine', + 'azure', + 'beige', + 'bisque', + 'black', + 'blanchedalmond', + 'blue', + 'blueviolet', + 'brown', + 'burlywood', + 'cadetblue', + 'chartreuse', + 'chocolate', + 'coral', + 'cornflowerblue', + 'cornsilk', + 'crimson', + 'cyan', + 'darkblue', + 'darkcyan', + 'darkgoldenrod', + 'darkgray', + 'darkgreen', + 'darkgrey', + 'darkkhaki', + 'darkmagenta', + 'darkolivegreen', + 'darkorange', + 'darkorchid', + 'darkred', + 'darksalmon', + 'darkseagreen', + 'darkslateblue', + 'darkslategray', + 'darkslategrey', + 'darkturquoise', + 'darkviolet', + 'deeppink', + 'deepskyblue', + 'dimgray', + 'dimgrey', + 'dodgerblue', + 'firebrick', + 'floralwhite', + 'forestgreen', + 'fuchsia', + 'gainsboro', + 'ghostwhite', + 'goldenrod', + 'gold', + 'gray', + 'green', + 'greenyellow', + 'grey', + 'honeydew', + 'hotpink', + 'indianred', + 'indigo', + 'ivory', + 'khaki', + 'lavenderblush', + 'lavender', + 'lawngreen', + 'lemonchiffon', + 'lightblue', + 'lightcoral', + 'lightcyan', + 'lightgoldenrodyellow', + 'lightgray', + 'lightgreen', + 'lightgrey', + 'lightpink', + 'lightsalmon', + 'lightseagreen', + 'lightskyblue', + 'lightslategray', + 'lightslategrey', + 'lightsteelblue', + 'lightyellow', + 'lime', + 'limegreen', + 'linen', + 'magenta', + 'maroon', + 'mediumaquamarine', + 'mediumblue', + 'mediumorchid', + 'mediumpurple', + 'mediumseagreen', + 'mediumslateblue', + 'mediumspringgreen', + 'mediumturquoise', + 'mediumvioletred', + 'midnightblue', + 'mintcream', + 'mistyrose', + 'moccasin', + 'navajowhite', + 'navy', + 'oldlace', + 'olive', + 'olivedrab', + 'orange', + 'orangered', + 'orchid', + 'palegoldenrod', + 'palegreen', + 'paleturquoise', + 'palevioletred', + 'papayawhip', + 'peachpuff', + 'peru', + 'pink', + 'plum', + 'powderblue', + 'purple', + 'rebeccapurple', + 'red', + 'rosybrown', + 'royalblue', + 'saddlebrown', + 'salmon', + 'sandybrown', + 'seagreen', + 'seashell', + 'sienna', + 'silver', + 'skyblue', + 'slateblue', + 'slategray', + 'slategrey', + 'snow', + 'springgreen', + 'steelblue', + 'tan', + 'teal', + 'thistle', + 'tomato', + 'turquoise', + 'violet', + 'wheat', + 'white', + 'whitesmoke', + 'yellow', + 'yellowgreen', +]; + +export const randomCssFromSelectors = (selectors: string[]): string => { + const { choice } = random(); + + let css = ''; + + selectors.forEach(selector => { + css += `${selector} { background-color: ${choice(colors)}; }\n`; + }); + + return css; +}; + +function createStyleTag(css: string) { + const style = document.createElement('style'); + style.textContent = css; + return style; +} + +export function injectGlobalCss(css?: string) { + performance.mark('fluent-inject-global-css-start'); + css = + css ?? + ` + div { + background-color: yellow; + } + + button { + background-color: hotpink; + } + + hr { + background-color: red; + } + + stress-app { + background-color: yellow; + } + + stress-container { + background-color: green; + } + + stress-component { + background-color: aliceblue; + } + `; + + const style = createStyleTag(css); + document.head.appendChild(style); + performance.measure('fluent-inject-global-css', 'fluent-inject-global-css-start'); + return style; +} diff --git a/apps/stress-test/src/shared/injectStyles.ts b/apps/stress-test/src/shared/injectStyles.ts deleted file mode 100644 index ab918be96ba2b..0000000000000 --- a/apps/stress-test/src/shared/injectStyles.ts +++ /dev/null @@ -1,38 +0,0 @@ -// Inspired by: https://github.com/nolanlawson/shadow-selector-benchmark -function createStyleTag(css: string) { - const style = document.createElement('style'); - style.textContent = css; - return style; -} - -export function injectGlobalCss(css?: string) { - performance.mark('fluent-inject-global-css-start'); - css = ` - div { - background-color: yellow; - } - - button { - background-color: hotpink; - } - - hr { - background-color: red; - } - - stress-app { - background-color: yellow; - } - - stress-container { - background-color: green; - } - - stress-component { - background-color: aliceblue; - } - `; - - document.head.appendChild(createStyleTag(css)); - performance.measure('fluent-inject-global-css', 'fluent-inject-global-css-start'); -} diff --git a/apps/stress-test/src/shared/performanceMeasure.ts b/apps/stress-test/src/shared/performanceMeasure.ts index 5c7ce7021d31e..43d7af07a3fff 100644 --- a/apps/stress-test/src/shared/performanceMeasure.ts +++ b/apps/stress-test/src/shared/performanceMeasure.ts @@ -1,17 +1,11 @@ -export type PerformanceMeasureFn = (measureName: string, startMark: string) => void; +import { requestPostAnimationFrame } from './requestPostAnimationFrame'; -export const performanceMeasure: PerformanceMeasureFn = (measureName, startMark) => { +export type PerformanceMeasureFn = (measureName?: string, startMark?: string) => void; + +export const performanceMeasure: PerformanceMeasureFn = (measureName = 'stress', startMark = 'start') => { performance.mark(startMark); - // requestPostAnimationFrame polyfill - requestAnimationFrame(() => { - addEventListener( - 'message', - () => { - performance.measure(measureName, startMark); - }, - { once: true }, - ); - postMessage('', '*'); + requestPostAnimationFrame(() => { + performance.measure(measureName, startMark); }); }; diff --git a/apps/stress-test/src/shared/random.ts b/apps/stress-test/src/shared/random.ts new file mode 100644 index 0000000000000..b04b3d8d1320c --- /dev/null +++ b/apps/stress-test/src/shared/random.ts @@ -0,0 +1,24 @@ +import { LCG } from 'random-seedable'; + +const defaultSeed = 4212021; + +export type Random = { + coin: (pTrue: number) => boolean; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + choice: (choices: any[]) => any; + range: (min: number, max: number) => number; + integer: () => number; +}; + +export type RandomFn = (seed?: number) => Random; + +export const random: RandomFn = seed => { + const rando: LCG = new LCG(seed ?? defaultSeed); + + return { + coin: (pTrue = 0.5) => rando.coin(pTrue), + choice: choices => rando.choice(choices), + range: (min, max) => rando.randRange(min, max), + integer: () => rando.int(), + }; +}; diff --git a/apps/stress-test/src/shared/react/ReactSelectorTree.tsx b/apps/stress-test/src/shared/react/ReactSelectorTree.tsx new file mode 100644 index 0000000000000..a89cc78cd9b7f --- /dev/null +++ b/apps/stress-test/src/shared/react/ReactSelectorTree.tsx @@ -0,0 +1,93 @@ +import * as React from 'react'; + +import { RandomTree, TreeNode } from '../tree/RandomTree'; +import { ReactTree } from './ReactTree'; +import { selectorTreeCreator, RandomSelectorTreeNode } from '../tree/RandomSelectorTreeNode'; +import { performanceMeasure } from '../performanceMeasure'; +import { injectGlobalCss, randomCssFromSelectors } from '../css/injectStyles'; + +export type ReactSelectorTreeNode = TreeNode; + +export type ReactSelectorTreeComponentRenderer = ( + node: ReactSelectorTreeNode, + depth: number, + index: number, +) => JSX.Element; + +type ReactSelectorTreeProps = Partial<{ + minBreadth: number; + maxBreadth: number; + minDepth: number; + maxDepth: number; + seed: number; + injectStyles: boolean; + styleInjector: (selectors: string[]) => HTMLStyleElement; +}> & { + componentRenderer: ReactSelectorTreeComponentRenderer; +}; + +type ReactSelectorTreeState = { + tree: ReactSelectorTreeNode; + selectors: string[]; +}; + +const buildRenderer = (componentRenderer: ReactSelectorTreeComponentRenderer) => { + const renderer = (node: ReactSelectorTreeNode, depth: number, index: number): JSX.Element => { + const { value } = node; + + const className = value.classNames.map(cn => cn.substring(1)).join(' '); + const attrs = value.attributes.reduce((map, attr) => { + map[attr.key] = attr.value ?? ''; + return map; + }, {} as { [key: string]: string }); + + return ( +
+ {componentRenderer(node, depth, index)} +
+ ); + }; + + return renderer; +}; + +const styleInjector = (selectors: string[]): HTMLStyleElement => { + performanceMeasure(); + return injectGlobalCss(randomCssFromSelectors(selectors)); +}; + +export const ReactSelectorTree: React.FC = ({ + minBreadth, + maxBreadth, + minDepth, + maxDepth, + seed, + injectStyles, + componentRenderer, +}) => { + const [data, setData] = React.useState({} as ReactSelectorTreeState); + const styles = React.useRef(); + + React.useEffect(() => { + const selectors = [] as string[]; + const treeBuilder = new RandomTree({ minBreadth, maxBreadth, minDepth, maxDepth, seed }); + const tree = treeBuilder.build(selectorTreeCreator(selectors)); + const dedupedSelectors = Array.from(new Set(selectors)); + + setData({ + tree, + selectors: dedupedSelectors, + }); + }, [minBreadth, maxBreadth, minDepth, maxDepth, seed]); + + React.useEffect(() => { + if (!injectStyles && styles.current) { + document.head.removeChild(styles.current); + styles.current = undefined; + } else if (injectStyles && !styles.current) { + styles.current = styleInjector(data.selectors); + } + }, [injectStyles]); + + return <>{data.tree ? : null}; +}; diff --git a/apps/stress-test/src/shared/react/ReactTree.tsx b/apps/stress-test/src/shared/react/ReactTree.tsx new file mode 100644 index 0000000000000..a27deb1280257 --- /dev/null +++ b/apps/stress-test/src/shared/react/ReactTree.tsx @@ -0,0 +1,39 @@ +import * as React from 'react'; +import { TreeNode } from '../tree/RandomTree'; + +export type ReactTreeItemRenderer = (node: T, depth: number, index: number) => JSX.Element; + +// eslint-disable-next-line @typescript-eslint/no-explicit-any +export type ReactTreeProps> = { + tree: T; + itemRenderer: ReactTreeItemRenderer; +}; + +// eslint-disable-next-line @typescript-eslint/no-explicit-any +export type ReactTreeNodeProps> = { + root: T; + renderer: ReactTreeItemRenderer; + depth?: number; + index?: number; +}; + +// eslint-disable-next-line @typescript-eslint/no-explicit-any +export const ReactTreeNode = >(props: ReactTreeNodeProps): JSX.Element => { + const { root, renderer, depth = 0, index = 0, ...others } = props; + + return ( +
+ {renderer(root, depth, index)} + {root.children.map((child, i) => { + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore + return ; + })} +
+ ); +}; + +// eslint-disable-next-line @typescript-eslint/no-explicit-any +export const ReactTree = >({ tree, itemRenderer }: ReactTreeProps): JSX.Element => { + return ; +}; diff --git a/apps/stress-test/src/shared/react/TestChangeNumNodes.tsx b/apps/stress-test/src/shared/react/TestChangeNumNodes.tsx new file mode 100644 index 0000000000000..30225a6398e44 --- /dev/null +++ b/apps/stress-test/src/shared/react/TestChangeNumNodes.tsx @@ -0,0 +1,47 @@ +import * as React from 'react'; +import { performanceMeasure } from '../performanceMeasure'; +import { getTestParams } from '../testParams'; +import { ReactSelectorTree } from './ReactSelectorTree'; +import type { TestProps } from './types'; + +export const TestChangeNumNodes: React.FC = ({ + minBreadth, + maxBreadth, + minDepth, + maxDepth, + seed, + componentRenderer, +}) => { + const [treeParams, setTreeParams] = React.useState({ + minBreadth, + maxBreadth, + minDepth, + maxDepth, + seed, + }); + + React.useEffect(() => { + const { test, addBreadth, removeBreadth, addDepth, removeDepth } = getTestParams(); + + let newBreadth: number = 0; + let newDepth: number = 0; + if (test === 'add-node') { + newBreadth = Number(addBreadth); + newDepth = Number(addDepth); + } else if (test === 'remove-node') { + newBreadth = Number(removeBreadth); + newDepth = Number(removeDepth); + } + + setTimeout(() => { + performanceMeasure(); + setTreeParams({ + ...treeParams, + maxBreadth: Number(maxBreadth) + newBreadth, + maxDepth: Number(maxDepth) + newDepth, + }); + }, 2000); + }, []); + + return ; +}; diff --git a/apps/stress-test/src/shared/react/TestInjectStyles.tsx b/apps/stress-test/src/shared/react/TestInjectStyles.tsx new file mode 100644 index 0000000000000..47b355d5a8ee7 --- /dev/null +++ b/apps/stress-test/src/shared/react/TestInjectStyles.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { ReactSelectorTree } from './ReactSelectorTree'; +import type { TestProps } from './types'; + +export const TestInjectStyles: React.FC = ({ + minBreadth, + maxBreadth, + minDepth, + maxDepth, + seed, + componentRenderer, +}) => { + const [injectStyles, setInjectStyles] = React.useState(false); + + React.useEffect(() => { + setTimeout(() => { + setInjectStyles(true); + }, 2000); + }, []); + + return ( + + ); +}; diff --git a/apps/stress-test/src/shared/react/TestTree.tsx b/apps/stress-test/src/shared/react/TestTree.tsx new file mode 100644 index 0000000000000..1f13a61821d0e --- /dev/null +++ b/apps/stress-test/src/shared/react/TestTree.tsx @@ -0,0 +1,22 @@ +import * as React from 'react'; +import { getTestParams } from '../testParams'; +import { ReactSelectorTreeComponentRenderer } from './ReactSelectorTree'; +import { TestChangeNumNodes } from './TestChangeNumNodes'; +import { TestInjectStyles } from './TestInjectStyles'; + +export type TestProps = { + componentRenderer: ReactSelectorTreeComponentRenderer; +}; + +export const TestTree: React.FC = ({ componentRenderer }) => { + const { test, ...testOptions } = getTestParams(); + + return ( + <> + {test === 'inject-styles' && } + {(test === 'add-node' || test === 'remove-node') && ( + + )} + + ); +}; diff --git a/apps/stress-test/src/shared/react/types.ts b/apps/stress-test/src/shared/react/types.ts new file mode 100644 index 0000000000000..252ea0f7fb271 --- /dev/null +++ b/apps/stress-test/src/shared/react/types.ts @@ -0,0 +1,10 @@ +import type { ReactSelectorTreeComponentRenderer } from './ReactSelectorTree'; + +export type TestProps = { + componentRenderer: ReactSelectorTreeComponentRenderer; + minBreadth?: number; + maxBreadth?: number; + minDepth?: number; + maxDepth?: number; + seed?: number; +}; diff --git a/apps/stress-test/src/shared/requestPostAnimationFrame.ts b/apps/stress-test/src/shared/requestPostAnimationFrame.ts new file mode 100644 index 0000000000000..1380db348d6a4 --- /dev/null +++ b/apps/stress-test/src/shared/requestPostAnimationFrame.ts @@ -0,0 +1,6 @@ +export const requestPostAnimationFrame = (callback: Function): void => { + requestAnimationFrame(() => { + addEventListener('message', _ => callback(), { once: true }); + postMessage('', '*'); + }); +}; diff --git a/apps/stress-test/src/shared/testParams.ts b/apps/stress-test/src/shared/testParams.ts index 5effe504fe6f2..50ec13b397429 100644 --- a/apps/stress-test/src/shared/testParams.ts +++ b/apps/stress-test/src/shared/testParams.ts @@ -1,10 +1,9 @@ -const testTypes = ['manual', 'mount', 'inject-styles', 'prop-update', 'remove-node', 'add-node']; - export type TestParams = { - test: typeof testTypes[number]; + test: string; numStartNodes: number; numAddNodes: number; numRemoveNodes: number; + [key: string]: string | number; }; export type GetTestParamsFn = () => TestParams; @@ -23,7 +22,7 @@ export const getTestParams = () => { const searchParams = new URLSearchParams(window.location.search); let test = searchParams.get('test'); - if (!test || !testTypes.includes(test as TestParams['test'])) { + if (!test) { test = 'manual'; } @@ -47,5 +46,14 @@ export const getTestParams = () => { params.numAddNodes = numAddNodes; params.numRemoveNodes = numRemoveNodes; + const ignore = ['numStartNodes', 'numAddNodes', 'numRemoveNodes']; + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore + for (const [key, value] of searchParams.entries()) { + if (!ignore.includes(key)) { + params[key] = value; + } + } + return params; }; diff --git a/apps/stress-test/src/shared/tree/RandomSelectorTreeNode.ts b/apps/stress-test/src/shared/tree/RandomSelectorTreeNode.ts new file mode 100644 index 0000000000000..07db0cbbcb6b4 --- /dev/null +++ b/apps/stress-test/src/shared/tree/RandomSelectorTreeNode.ts @@ -0,0 +1,137 @@ +import { RandomSelector } from '../css/RandomSelector'; +import { TreeNode, TreeNodeCreateCallback } from './RandomTree'; +import { random } from '../random'; + +export type Attribute = { + key: string; + value: string | undefined; + selector: string; +}; + +export type RandomSelectorTreeNode = { + name: string; + classNames: string[]; + attributes: Attribute[]; + siblings: string[]; + pseudos: string[]; +}; + +const { coin, choice } = random(); +const randomSelector = new RandomSelector(); + +const chances: { [key: string]: number } = { + not: 0.05, + addClassName: 0.5, + addAttribute: 0.25, + buildDescendentSelector: 0.75, + addSibling: 0.25, + addPseudo: 0.25, + useDescendantCombinator: 0.2, +}; + +const buildDescendentSelector = ( + node: TreeNode | null, + selector: string = '', +): string => { + if (!node) { + return selector; + } + + selector = ( + maybeNot(choice(getSelectorsFromNode(node))) + + (coin(chances.useDescendantCombinator) ? ' > ' : ' ') + + selector + ).trim(); + + if (coin(chances.buildDescendentSelector)) { + selector = buildDescendentSelector(node.parent, selector); + } + + return selector; +}; + +const getNodeClassNames = () => { + const nodeSelectors = [randomSelector.randomSelector(['class'])]; + if (coin(chances.addClassName)) { + nodeSelectors.push(randomSelector.randomSelector(['class'])); + } + + return nodeSelectors; +}; + +const maybeNot = (selector: string): string => { + if (coin(chances.not)) { + return `:not(${selector})`; + } + + return selector; +}; + +const getAttributes = () => { + const attributes = []; + if (coin(chances.addAttribute)) { + const selector = randomSelector.randomSelector(['attribute-name', 'attribute-value']); + const [key, value] = selector.replace(/(\[|\])/g, '').split('='); + attributes.push({ key, value, selector }); + } + + return attributes; +}; + +const getSiblingSelectors = () => { + const siblings = []; + + if (coin(chances.addSibling)) { + siblings.push(randomSelector.randomSelector(['nth-child'])); + } + + return siblings; +}; + +const getPseudoSelectors = () => { + const pseudo = []; + + if (coin(chances.addPsuedo)) { + pseudo.push(randomSelector.randomSelector(['pseudo-element'])); + } + + return pseudo; +}; + +const getSelectorsFromNode = (node: TreeNode): string[] => { + return [ + ...node.value.classNames, + ...node.value.attributes.map(attr => attr.selector), + ...node.value.siblings, + ...node.value.pseudos, + ]; +}; + +export type RandomSelectorTreeCreator = (selectors: string[]) => TreeNodeCreateCallback; + +export const selectorTreeCreator: RandomSelectorTreeCreator = selectors => { + const createSelectorTree: TreeNodeCreateCallback = (parent, depth, breadth) => { + const node = { + value: { + name: `${depth}-${breadth}`, + classNames: getNodeClassNames(), + attributes: getAttributes(), + siblings: getSiblingSelectors(), + pseudos: getPseudoSelectors(), + }, + children: [], + parent, + }; + + if (coin(chances.buildDescendentSelector)) { + const descendentSelector = buildDescendentSelector(node); + selectors.push(descendentSelector); + } else { + selectors.push(...getSelectorsFromNode(node)); + } + + return node; + }; + + return createSelectorTree; +}; diff --git a/apps/stress-test/src/shared/tree/RandomTree.ts b/apps/stress-test/src/shared/tree/RandomTree.ts new file mode 100644 index 0000000000000..e08db18506941 --- /dev/null +++ b/apps/stress-test/src/shared/tree/RandomTree.ts @@ -0,0 +1,92 @@ +import { random, Random } from '../random'; + +type TreeParams = { + minDepth?: number; + maxDepth?: number; + minBreadth?: number; + maxBreadth?: number; + seed?: number; +}; + +export type TreeNode = { + value: T; + children: TreeNode[]; + parent: TreeNode | null; +}; + +export type TreeNodeCreateCallback = (parent: TreeNode | null, depth: number, breath: number) => TreeNode; +export type TreeNodeVisitCallback = (node: TreeNode) => void; + +/** + * Exponential decay function. + * See: https://www.cuemath.com/exponential-decay-formula/ + * @param a - Initial amount + * @param r - Rate of decay + * @param x - Decay interval + * @returns Current amount after applying decay function. + */ +const decay = (a: number, r: number, x: number): number => { + return a * Math.pow(1 - r, x); +}; + +export class RandomTree { + private numNodes: number; + private minDepth: number; + private maxDepth: number; + private minBreadth: number; + private maxBreadth: number; + + private rando: Random; + + constructor({ minDepth = 1, maxDepth = 15, minBreadth = 1, maxBreadth = 15, seed }: TreeParams = {}) { + this.minDepth = minDepth; + this.maxDepth = maxDepth; + this.minBreadth = minBreadth; + this.maxBreadth = maxBreadth; + + this.rando = random(seed); + this.numNodes = 0; + } + + public build = (createNode: TreeNodeCreateCallback): TreeNode => { + this.numNodes = 1; + const root = createNode(null, 0, 0); + return this._doBuild(createNode, root, 1); + }; + + private _randomDepth = (max?: number): number => { + return this.rando.range(this.minDepth, max ?? this.maxDepth); + }; + + private _randomBreadth = (max?: number): number => { + return this.rando.range(this.minBreadth, max ?? this.maxBreadth); + }; + + private _doBuild = ( + createNode: TreeNodeCreateCallback, + parent: TreeNode, + currentDepth: number, + currentBreadth: number = this.maxBreadth, + ): TreeNode => { + const breadth = this._randomBreadth(currentBreadth); + const depth = this._randomDepth(Math.max(this.maxDepth - currentDepth, this.minDepth)); + + for (let i = 0; i < breadth; i++) { + this.numNodes++; + const node = createNode(parent, currentDepth, breadth); + + parent.children.push(node); + + if (currentDepth < depth) { + this._doBuild( + createNode, + node, + currentDepth + 1, + Math.max(Math.ceil(decay(this.maxBreadth, 0.005, this.numNodes)), this.minBreadth), + ); + } + } + + return parent; + }; +} diff --git a/yarn.lock b/yarn.lock index df23a510368ca..70d9478d5f106 100644 --- a/yarn.lock +++ b/yarn.lock @@ -22573,6 +22573,11 @@ randexp@0.4.6: discontinuous-range "1.0.0" ret "~0.1.10" +random-seedable@1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/random-seedable/-/random-seedable-1.0.8.tgz#d233ce5d49f64a20be398bbc3faa695cc39b8aa8" + integrity sha512-f6gzvNhAnZBht1Prn0e/tpukUNhkANntFF42uIdWDPriyEATYaRpyH8A9bYaGecUB3AL+dXeYtBUggy18fe3rw== + randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" From 06b262cd62c78ab919c387f5558bd06a4146341a Mon Sep 17 00:00:00 2001 From: Sean Monahan Date: Wed, 7 Sep 2022 07:44:00 -0700 Subject: [PATCH 05/14] stress test: more random tree work This builds on the previous commit, focusing on adding Web Component and vanilla DOM implementations of the random trees, adding test cases and making quality of life improvements like adding test fixtures. --- apps/stress-test/package.json | 3 - apps/stress-test/scenarios/default.js | 55 - apps/stress-test/scenarios/stress-tree.js | 80 - apps/stress-test/scripts/commands/build.js | 68 - .../scripts/commands/buildTestConfig.js | 63 +- apps/stress-test/scripts/commands/dev.js | 15 - .../scripts/commands/processResults.js | 18 - apps/stress-test/scripts/commands/run.js | 33 +- .../stress-test/scripts/commands/runServer.js | 17 - .../scripts/commands/runTachometer.js | 24 - apps/stress-test/scripts/stressTest.js | 15 - .../scripts/utils/configureYargs.js | 41 +- .../scripts/utils/getScenarioConfig.js | 39 - .../scripts/utils/processOptions.js | 28 - .../src/components/v8/StressApp.tsx | 12 +- .../src/components/v8/StressContainer.tsx | 6 +- .../src/components/v9/StressApp.tsx | 12 +- .../src/components/v9/StressContainer.tsx | 6 +- .../src/components/wc/stressApp.wc.ts | 10 +- .../src/components/wc/stressContainer.wc.ts | 6 +- apps/stress-test/src/fixtures/l_1.js | 12661 ++++++++++ apps/stress-test/src/fixtures/l_2.js | 12568 ++++++++++ apps/stress-test/src/fixtures/m_1.js | 7665 ++++++ apps/stress-test/src/fixtures/m_2.js | 7589 ++++++ apps/stress-test/src/fixtures/s_1.js | 4316 ++++ apps/stress-test/src/fixtures/s_2.js | 3787 +++ apps/stress-test/src/fixtures/xl_1.js | 19895 ++++++++++++++++ apps/stress-test/src/fixtures/xl_2.js | 18931 +++++++++++++++ apps/stress-test/src/fixtures/xs_1.js | 1027 + apps/stress-test/src/fixtures/xs_2.js | 684 + .../src/pages/v8/simple-stress/index.html | 2 +- .../src/pages/v8/stress-tree/index.html | 2 +- .../src/pages/v8/stress-tree/index.tsx | 12 +- .../src/pages/v9/stress-tree/index.tsx | 16 +- .../src/pages/wc/simple-stress/index.wc.ts | 4 +- .../src/pages/wc/stress-tree/index.html | 11 + .../src/pages/wc/stress-tree/index.wc.ts | 5 + apps/stress-test/src/renderers/v8/button.tsx | 9 + apps/stress-test/src/renderers/v9/button.tsx | 9 + apps/stress-test/src/renderers/wc/button.ts | 13 + .../src/shared/css/RandomSelector.ts | 2 +- .../src/shared/css/injectStyles.ts | 7 +- .../src/shared/react/ReactSelectorTree.tsx | 76 +- .../src/shared/react/ReactTest.tsx | 77 + .../src/shared/react/TestChangeNumNodes.tsx | 47 - .../src/shared/react/TestInjectStyles.tsx | 28 +- .../src/shared/react/TestMount.tsx | 17 + .../src/shared/react/TestReRenderAll.tsx | 32 + .../src/shared/react/TestRemoveAll.tsx | 28 + .../stress-test/src/shared/react/TestTree.tsx | 22 - apps/stress-test/src/shared/react/types.ts | 14 +- .../src/shared/tree/RandomSelectorTreeNode.ts | 4 +- .../stress-test/src/shared/tree/RandomTree.ts | 17 +- .../shared/{ => utils}/performanceMeasure.ts | 0 .../src/shared/{ => utils}/random.ts | 0 .../{ => utils}/requestPostAnimationFrame.ts | 0 .../{testParams.ts => utils/testOptions.ts} | 17 +- .../stress-test/src/shared/utils/testUtils.ts | 28 + .../src/shared/vanilla/TestInjectStyles.ts | 22 + .../src/shared/vanilla/TestMount.ts | 17 + .../src/shared/vanilla/TestReRenderAll.ts | 33 + .../src/shared/vanilla/TestRemoveAll.ts | 29 + .../src/shared/vanilla/VanillaSelectorTree.ts | 33 + .../src/shared/vanilla/VanillaTree.ts | 25 + apps/stress-test/src/shared/vanilla/types.ts | 3 + .../src/shared/wc/TestInjectStyles.ts | 29 + apps/stress-test/src/shared/wc/TestMount.ts | 25 + .../src/shared/wc/TestReRenderAll.ts | 37 + .../src/shared/wc/TestRemoveAll.ts | 33 + .../src/shared/wc/WCSelectorTree.ts | 64 + apps/stress-test/src/shared/wc/WCTest.ts | 55 + apps/stress-test/src/shared/wc/WCTree.ts | 64 + apps/stress-test/src/shared/wc/types.ts | 4 + apps/stress-test/webpack/griffelConfig.js | 33 - 74 files changed, 89979 insertions(+), 700 deletions(-) delete mode 100644 apps/stress-test/scenarios/default.js delete mode 100644 apps/stress-test/scenarios/stress-tree.js delete mode 100644 apps/stress-test/scripts/utils/getScenarioConfig.js delete mode 100644 apps/stress-test/scripts/utils/processOptions.js create mode 100644 apps/stress-test/src/fixtures/l_1.js create mode 100644 apps/stress-test/src/fixtures/l_2.js create mode 100644 apps/stress-test/src/fixtures/m_1.js create mode 100644 apps/stress-test/src/fixtures/m_2.js create mode 100644 apps/stress-test/src/fixtures/s_1.js create mode 100644 apps/stress-test/src/fixtures/s_2.js create mode 100644 apps/stress-test/src/fixtures/xl_1.js create mode 100644 apps/stress-test/src/fixtures/xl_2.js create mode 100644 apps/stress-test/src/fixtures/xs_1.js create mode 100644 apps/stress-test/src/fixtures/xs_2.js create mode 100644 apps/stress-test/src/pages/wc/stress-tree/index.html create mode 100644 apps/stress-test/src/pages/wc/stress-tree/index.wc.ts create mode 100644 apps/stress-test/src/renderers/v8/button.tsx create mode 100644 apps/stress-test/src/renderers/v9/button.tsx create mode 100644 apps/stress-test/src/renderers/wc/button.ts create mode 100644 apps/stress-test/src/shared/react/ReactTest.tsx delete mode 100644 apps/stress-test/src/shared/react/TestChangeNumNodes.tsx create mode 100644 apps/stress-test/src/shared/react/TestMount.tsx create mode 100644 apps/stress-test/src/shared/react/TestReRenderAll.tsx create mode 100644 apps/stress-test/src/shared/react/TestRemoveAll.tsx delete mode 100644 apps/stress-test/src/shared/react/TestTree.tsx rename apps/stress-test/src/shared/{ => utils}/performanceMeasure.ts (100%) rename apps/stress-test/src/shared/{ => utils}/random.ts (100%) rename apps/stress-test/src/shared/{ => utils}/requestPostAnimationFrame.ts (100%) rename apps/stress-test/src/shared/{testParams.ts => utils/testOptions.ts} (80%) create mode 100644 apps/stress-test/src/shared/utils/testUtils.ts create mode 100644 apps/stress-test/src/shared/vanilla/TestInjectStyles.ts create mode 100644 apps/stress-test/src/shared/vanilla/TestMount.ts create mode 100644 apps/stress-test/src/shared/vanilla/TestReRenderAll.ts create mode 100644 apps/stress-test/src/shared/vanilla/TestRemoveAll.ts create mode 100644 apps/stress-test/src/shared/vanilla/VanillaSelectorTree.ts create mode 100644 apps/stress-test/src/shared/vanilla/VanillaTree.ts create mode 100644 apps/stress-test/src/shared/vanilla/types.ts create mode 100644 apps/stress-test/src/shared/wc/TestInjectStyles.ts create mode 100644 apps/stress-test/src/shared/wc/TestMount.ts create mode 100644 apps/stress-test/src/shared/wc/TestReRenderAll.ts create mode 100644 apps/stress-test/src/shared/wc/TestRemoveAll.ts create mode 100644 apps/stress-test/src/shared/wc/WCSelectorTree.ts create mode 100644 apps/stress-test/src/shared/wc/WCTest.ts create mode 100644 apps/stress-test/src/shared/wc/WCTree.ts create mode 100644 apps/stress-test/src/shared/wc/types.ts diff --git a/apps/stress-test/package.json b/apps/stress-test/package.json index fa5bd51b0f3b2..0036740e1af54 100644 --- a/apps/stress-test/package.json +++ b/apps/stress-test/package.json @@ -17,8 +17,5 @@ "react": "17.0.2", "react-dom": "17.0.2", "random-seedable": "1.0.8" - }, - "devDependencies": { - "@babel/plugin-proposal-decorators": "7.14.5" } } diff --git a/apps/stress-test/scenarios/default.js b/apps/stress-test/scenarios/default.js deleted file mode 100644 index d2ac6503704b3..0000000000000 --- a/apps/stress-test/scenarios/default.js +++ /dev/null @@ -1,55 +0,0 @@ -/** - * @typedef {Object} TestOptions - * @property {number} numStartNodes - * @property {number} numAddNodes - * @property {number} numRemoveNodes - */ - -/** - * @typedef {Object.} SizeMap - */ - -/** - * @typedef {Object} ScenarioConfig - * @property {string[]} [testCases] - * @property {SizeMap} [sizes] - * @property {string[]} [browsers] - * @property {number} [sampleSize] - * @property {string[]} [targets] - */ - -module.exports = { - testCases: ['mount', 'inject-styles', 'prop-update', 'remove-node', 'add-node'], - - sizes: { - xs: { - numStartNodes: 100, - numAddNodes: 100, - numRemoveNodes: 99, - }, - - s: { - numStartNodes: 250, - numAddNodes: 250, - numRemoveNodes: 249, - }, - - m: { - numStartNodes: 500, - numAddNodes: 500, - numRemoveNodes: 499, - }, - - l: { - numStartNodes: 750, - numAddNodes: 750, - numRemoveNodes: 749, - }, - - xl: { - numStartNodes: 1000, - numAddNodes: 1000, - numRemoveNodes: 999, - }, - }, -}; diff --git a/apps/stress-test/scenarios/stress-tree.js b/apps/stress-test/scenarios/stress-tree.js deleted file mode 100644 index e730b76c550d5..0000000000000 --- a/apps/stress-test/scenarios/stress-tree.js +++ /dev/null @@ -1,80 +0,0 @@ -/** - * @typedef {Object} TestOptions - * @property {number} numStartNodes - * @property {number} numAddNodes - * @property {number} numRemoveNodes - */ - -/** - * @typedef {Object.} SizeMap - */ - -/** - * @typedef {Object} ScenarioConfig - * @property {string[]} [testCases] - * @property {SizeMap} [sizes] - * @property {string[]} [browsers] - * @property {number} [sampleSize] - * @property {string[]} [targets] - */ - -module.exports = { - testCases: ['mount', 'inject-styles', 'prop-update', 'remove-node', 'add-node'], - - sizes: { - xs: { - minBreath: 1, - maxBreadth: 10, - minDepth: 1, - maxDepth: 10, - addBreadth: 10, - addDepth: 10, - removeBreadth: 9, - removeDepth: 9, - }, - - s: { - minBreath: 2, - maxBreadth: 25, - minDepth: 2, - maxDepth: 25, - addBreadth: 25, - addDepth: 25, - removeBreadth: 23, - removeDepth: 23, - }, - - m: { - minBreath: 3, - maxBreadth: 150, - minDepth: 3, - maxDepth: 150, - addBreadth: 150, - addDepth: 150, - removeBreadth: 147, - removeDepth: 147, - }, - - l: { - minBreath: 4, - maxBreadth: 300, - minDepth: 4, - maxDepth: 300, - addBreadth: 300, - addDepth: 300, - removeBreadth: 296, - removeDepth: 296, - }, - - xl: { - minBreath: 100, - maxBreadth: 500, - minDepth: 100, - maxDepth: 500, - addBreadth: 500, - addDepth: 500, - removeBreadth: 101, - removeDepth: 101, - }, - }, -}; diff --git a/apps/stress-test/scripts/commands/build.js b/apps/stress-test/scripts/commands/build.js index fd7ac4487f1ad..9f9695819e579 100644 --- a/apps/stress-test/scripts/commands/build.js +++ b/apps/stress-test/scripts/commands/build.js @@ -8,7 +8,6 @@ const execAsync = promisify(exec); /** * @typedef {Object} CLIBuildOptions -<<<<<<< HEAD * @property {import('../../webpack/griffelConfig.js').GriffelMode} griffelMode * @property {('development' | 'production' | 'none')} mode * @property {boolean} verbose @@ -20,24 +19,6 @@ const command = 'build'; /** * @param {CLIBuildOptions} argv * @returns {Promise} -======= - * @property {string} griffelMode - * @property {string} mode - * @property {boolean} verbose - */ - -const command = 'build'; -exports.command = command; -exports.describe = 'Builds the application.'; - -exports.builder = yargs => { - configureYargs(command, yargs); -}; - -/** - * @param {CLIBuildOptions} argv - * @returns {Promise} ->>>>>>> a82206debc (stress-test: add build commands) */ const run = async argv => { if (argv.buildDeps) { @@ -50,7 +31,6 @@ const run = async argv => { } return new Promise((resolve, reject) => { -<<<<<<< HEAD const config = webpackConfig(undefined, { griffelMode: argv.griffelMode, mode: argv.mode }); webpack(config, (err, stats) => { if (err) { @@ -79,40 +59,10 @@ const run = async argv => { warning.stack && console.warn(warning.stack); } }); -======= - const config = webpackConfig(undefined, argv); - webpack(config, (err, stats) => { - if (err) { - console.error(err.stack || err); - if (argv.verbose && err.details) { - console.error(err.details); - } - return reject(); - } else if (stats.hasErrors()) { - const { errors } = stats.toJson(); - errors.forEach(error => { - console.error(error.message); - if (argv.verbose) { - error.details && console.error(error.details); - error.stack && console.error(error.stack); - } - }); - - if (stats.hasWarnings()) { - const { warnings } = stats.toJson(); - warnings.forEach(warning => { - console.warn(warning.message); - if (argv.verbose) { - warning.details && console.warn(warning.details); - warning.stack && console.warn(warning.stack); - } - }); ->>>>>>> a82206debc (stress-test: add build commands) } return reject(); } -<<<<<<< HEAD if (stats) { console.log( stats.toString({ @@ -120,20 +70,12 @@ const run = async argv => { }), ); } -======= - console.log( - stats.toString({ - colors: true, // Shows colors in the console - }), - ); ->>>>>>> a82206debc (stress-test: add build commands) resolve(); }); }); }; -<<<<<<< HEAD /** @type {import('yargs').CommandModule} */ const api = { command, @@ -152,13 +94,3 @@ const api = { }; module.exports = api; -======= -/** - * @param {CLIBuildOptions} argv - */ -exports.handler = argv => { - run(argv).then(() => { - console.log('Build complete!'); - }); -}; ->>>>>>> a82206debc (stress-test: add build commands) diff --git a/apps/stress-test/scripts/commands/buildTestConfig.js b/apps/stress-test/scripts/commands/buildTestConfig.js index c4ad8eda75fcd..6aa86a0ff2a59 100644 --- a/apps/stress-test/scripts/commands/buildTestConfig.js +++ b/apps/stress-test/scripts/commands/buildTestConfig.js @@ -2,8 +2,6 @@ const fs = require('fs-extra'); const path = require('path'); const { getConfigDir, getResultsDir, ensureClean } = require('../utils/paths'); const configureYargs = require('../utils/configureYargs'); -const getScenarioConfig = require('../utils/getScenarioConfig'); -const processOptions = require('../utils/processOptions'); const querystring = require('querystring'); /** @@ -15,6 +13,8 @@ const querystring = require('querystring'); * @property {number} sampleSize * @property {string[]} targets * @property {number} port + * @property {TestOptions} testOptions + * @property {string} renderer */ /** @@ -23,21 +23,11 @@ const querystring = require('querystring'); * @property {string} resultsFile - Path to where test results should be written. */ -<<<<<<< HEAD /** * @typedef {Record.} TestOptions */ const command = 'build-test-config'; -======= -const command = 'build-test-config'; -exports.command = command; -exports.describe = 'Builds test configuration files.'; - -exports.builder = yargs => { - configureYargs(command, yargs); -}; ->>>>>>> 76c9e7deb9 (stress-test: add cli application) /** * @function buildTestConfig @@ -45,8 +35,7 @@ exports.builder = yargs => { * @returns {ConfigResult[]} Paths to generated config files */ const buildTestConfig = options => { - const { scenario, browsers, testCases, sampleSize, targets, sizes, port } = options; - const config = getScenarioConfig(scenario); + const { scenario, browsers, testCases, sampleSize, targets, sizes, port, testOptions, renderer } = options; const configDir = getConfigDir(scenario); ensureClean(configDir); @@ -55,7 +44,17 @@ const buildTestConfig = options => { for (const browser of browsers) { for (const testCase of testCases) { for (const size of sizes) { - const json = makeConfigJson(scenario, browser, testCase, sampleSize, targets, size, config.sizes[size], port); + const json = makeConfigJson( + scenario, + browser, + testCase, + sampleSize, + targets, + size, + testOptions, + port, + renderer, + ); const configName = [browser, testCase, size].join('.') + '.json'; const configPath = path.join(configDir, configName); fs.writeFileSync(configPath, json, { encoding: 'utf8' }); @@ -83,17 +82,13 @@ const buildTestConfig = options => { * @param {string} testCase * @param {number} sampleSize * @param {string[]} targets -<<<<<<< HEAD * @param {string} size * @param {TestOptions} testOptions * @param {number} port -======= - * @param {string[]} size - * @param {TestOptions} testOptions ->>>>>>> 76c9e7deb9 (stress-test: add cli application) + * @param {string} renderer * @returns {string} Stringified JSON */ -const makeConfigJson = (scenario, browser, testCase, sampleSize, targets, size, testOptions, port) => { +const makeConfigJson = (scenario, browser, testCase, sampleSize, targets, size, testOptions, port, renderer) => { const baseUrl = `http://localhost:${port}`; const json = { $schema: 'https://raw.githubusercontent.com/Polymer/tachometer/master/config.schema.json', @@ -112,11 +107,16 @@ const makeConfigJson = (scenario, browser, testCase, sampleSize, targets, size, ], expand: targets.map(target => { - const params = querystring.stringify({ test: testCase, ...testOptions }); + const params = querystring.stringify({ + test: testCase, + fixtureName: `${size}_1`, + rendererName: renderer, + ...testOptions, + }); return { name: `${target} - ${testCase} - ${size}`, - url: `${baseUrl}/${target}/${scenario}/?${params}`, + url: `${baseUrl}/${target}/?${params}`, }; }), }, @@ -126,7 +126,6 @@ const makeConfigJson = (scenario, browser, testCase, sampleSize, targets, size, return JSON.stringify(json, null, 4); }; -<<<<<<< HEAD /** @type {import('yargs').CommandModule} */ const api = { command, @@ -138,9 +137,7 @@ const api = { * @param {CLIBuildTestConfigOptions} argv */ handler: argv => { - const options = processOptions(argv); - // @ts-ignore - buildTestConfig(options); + buildTestConfig(argv); }, }; @@ -148,15 +145,3 @@ module.exports = { ...api, buildTestConfig, }; -======= -/** - * - * @param {CLIBuildTestConfigOptions} argv - */ -exports.handler = argv => { - const options = processOptions(argv); - buildTestConfig(options); -}; - -exports.buildTestConfig = buildTestConfig; ->>>>>>> 76c9e7deb9 (stress-test: add cli application) diff --git a/apps/stress-test/scripts/commands/dev.js b/apps/stress-test/scripts/commands/dev.js index a1803fa160008..df670734996a7 100644 --- a/apps/stress-test/scripts/commands/dev.js +++ b/apps/stress-test/scripts/commands/dev.js @@ -11,15 +11,6 @@ const webpackConfig = require('../../webpack/webpack.config'); */ const command = 'dev'; -<<<<<<< HEAD -======= -exports.command = command; -exports.describe = 'Run the app in development mode'; - -exports.builder = yargs => { - configureYargs(command, yargs); -}; ->>>>>>> a82206debc (stress-test: add build commands) const shutdownServer = () => { if (server) { @@ -47,7 +38,6 @@ const runServer = async argv => { await server.start(); }; -<<<<<<< HEAD /** @type {import('yargs').CommandModule} */ const api = { command, @@ -61,8 +51,3 @@ const api = { }; module.exports = api; -======= -exports.handler = argv => { - runServer(argv); -}; ->>>>>>> a82206debc (stress-test: add build commands) diff --git a/apps/stress-test/scripts/commands/processResults.js b/apps/stress-test/scripts/commands/processResults.js index 573f266361c22..d391cddc7a740 100644 --- a/apps/stress-test/scripts/commands/processResults.js +++ b/apps/stress-test/scripts/commands/processResults.js @@ -9,26 +9,11 @@ const { getResultsDir, readDirJson } = require('../utils/paths'); */ const command = 'process-results'; -<<<<<<< HEAD /** * @param {CLIProcessResultsOptions} argv */ const handler = argv => { -======= -exports.command = command; -exports.describe = 'Processes test results for display with charts and graphs.'; - -exports.builder = yargs => { - configureYargs(command, yargs); -}; - -/** - * - * @param {CLIProcessResultsOptions} argv - */ -exports.handler = argv => { ->>>>>>> 76c9e7deb9 (stress-test: add cli application) const { scenario } = argv; const resultsDir = getResultsDir(scenario); @@ -62,7 +47,6 @@ exports.handler = argv => { fs.writeFileSync(path.join(resultsDir, 'processed-results.js'), js, { encoding: 'utf8' }); }; -<<<<<<< HEAD /** @type {import('yargs').CommandModule} */ const api = { @@ -75,5 +59,3 @@ const api = { }; module.exports = api; -======= ->>>>>>> 76c9e7deb9 (stress-test: add cli application) diff --git a/apps/stress-test/scripts/commands/run.js b/apps/stress-test/scripts/commands/run.js index 0540e992e1f93..d0bb4be707a52 100644 --- a/apps/stress-test/scripts/commands/run.js +++ b/apps/stress-test/scripts/commands/run.js @@ -1,4 +1,3 @@ -const processOptions = require('../utils/processOptions'); const configureYargs = require('../utils/configureYargs'); const { startServer, stopServer } = require('../utils/server'); const runTachometer = require('../utils/tachometer'); @@ -20,20 +19,8 @@ const { buildTestConfig } = require('./buildTestConfig'); */ const command = 'run'; -<<<<<<< HEAD /** -======= -exports.command = command; -exports.describe = 'Builds configs and runs stress testing.'; - -exports.builder = yargs => { - configureYargs(command, yargs); -}; - -/** - * ->>>>>>> 76c9e7deb9 (stress-test: add cli application) * @param {ConfigResult[]} testConfigs * @param {CLIServerOptions} options */ @@ -44,28 +31,18 @@ const run = async (testConfigs, options) => { }; /** -<<<<<<< HEAD * @param {CLIRunOptions} argv */ const handler = argv => { -======= - * - * @param {CLIRunOptions} argv - */ -exports.handler = argv => { ->>>>>>> 76c9e7deb9 (stress-test: add cli application) - const options = processOptions(argv); - - const testConfigs = buildTestConfig(options); - run(testConfigs, options).finally(() => { + const testConfigs = buildTestConfig(argv); + run(testConfigs, argv).finally(() => { stopServer(); - if (options.processResults) { - processResults(options); + if (argv.processResults) { + processResults(argv); } }); }; -<<<<<<< HEAD /** @type {import('yargs').CommandModule} */ const api = { @@ -78,5 +55,3 @@ const api = { }; module.exports = api; -======= ->>>>>>> 76c9e7deb9 (stress-test: add cli application) diff --git a/apps/stress-test/scripts/commands/runServer.js b/apps/stress-test/scripts/commands/runServer.js index 8ea3710705d9c..ea9c88e3a9655 100644 --- a/apps/stress-test/scripts/commands/runServer.js +++ b/apps/stress-test/scripts/commands/runServer.js @@ -8,7 +8,6 @@ const { startServer } = require('../utils/server'); */ const command = 'serve'; -<<<<<<< HEAD /** @type {import('yargs').CommandModule} */ const api = { @@ -26,19 +25,3 @@ const api = { }; module.exports = api; -======= -exports.command = command; -exports.describe = 'Runs a test HTTP server.'; - -exports.builder = yargs => { - configureYargs(command, yargs); -}; - -/** - * - * @param {CLIServerOptions} argv - */ -exports.handler = argv => { - startServer(argv); -}; ->>>>>>> 76c9e7deb9 (stress-test: add cli application) diff --git a/apps/stress-test/scripts/commands/runTachometer.js b/apps/stress-test/scripts/commands/runTachometer.js index 6c7ed30038f19..31dc7f2167b41 100644 --- a/apps/stress-test/scripts/commands/runTachometer.js +++ b/apps/stress-test/scripts/commands/runTachometer.js @@ -11,30 +11,11 @@ const runTachometer = require('../utils/tachometer'); */ const command = 'tachometer'; -<<<<<<< HEAD /** * @param {CLITachometerOptions} argv */ const handler = async argv => { -======= -exports.command = command; -exports.describe = 'Runs Tachometer for a provided scenario.'; - -exports.builder = yargs => { - configureYargs(command, yargs); -}; - -const run = async testConfigs => { - await runTachometer(testConfigs); -}; - -/** - * - * @param {CLITachometerOptions} argv - */ -exports.handler = argv => { ->>>>>>> 76c9e7deb9 (stress-test: add cli application) const { scenario } = argv; const configDir = getConfigDir(scenario); @@ -58,7 +39,6 @@ exports.handler = argv => { configs.push(configResult); } -<<<<<<< HEAD await runTachometer(configs); console.log('Tachometer run complete!'); }; @@ -74,7 +54,3 @@ const api = { }; module.exports = api; -======= - run(configs).then(() => console.log('Tachometer run complete!')); -}; ->>>>>>> 76c9e7deb9 (stress-test: add cli application) diff --git a/apps/stress-test/scripts/stressTest.js b/apps/stress-test/scripts/stressTest.js index 13f76d4391bcf..2fdfb1e4385d7 100644 --- a/apps/stress-test/scripts/stressTest.js +++ b/apps/stress-test/scripts/stressTest.js @@ -1,18 +1,3 @@ const yargs = require('yargs'); -<<<<<<< HEAD yargs.usage('Usage: $0 [options]').commandDir('commands').demandCommand().help().parse(); -======= -yargs - .usage('Usage: $0 [options]') - .command(require('./commands/run.js')) - .command(require('./commands/build.js')) - .command(require('./commands/dev.js')) - .command(require('./commands/buildTestConfig.js')) - .command(require('./commands/processResults.js')) - .command(require('./commands/runServer.js')) - .command(require('./commands/runTachometer.js')) - .demandCommand() - .help() - .parse(); ->>>>>>> 76c9e7deb9 (stress-test: add cli application) diff --git a/apps/stress-test/scripts/utils/configureYargs.js b/apps/stress-test/scripts/utils/configureYargs.js index 435b92b53f111..4be69a9af7555 100644 --- a/apps/stress-test/scripts/utils/configureYargs.js +++ b/apps/stress-test/scripts/utils/configureYargs.js @@ -25,12 +25,8 @@ const cliOptions = { default: 25, }, targets: { - describe: 'Libraries to target.', - default: ['v8', 'v9', 'wc'], - }, - 'use-config': { - describe: 'Use options from config, overriding any config values with command line arguments.', - default: true, + describe: 'Tests to target', + demand: true, }, 'process-results': { describe: 'Process the test results for display.', @@ -48,6 +44,26 @@ const cliOptions = { describe: 'Optimization mode for Griffel.', default: 'buildtime', }, + renderer: { + describe: 'Renderer to use for testing. This determines what is actually tested.', + demand: true, + }, + 'test-options': { + describe: 'Options to apply to each test. E.g., option1=value1 option2=value2', + coerce: arg => { + return arg.reduce((map, current) => { + const [key, value] = current.split('='); + if (!key || !value) { + throw new Error(`Invalid test option. Got ${current}. Expected the form "key=value".`); + } + + map[key] = value; + return map; + }, {}); + // return arg; + }, + default: [], + }, mode: { describe: 'Build mode.', default: 'production', @@ -78,6 +94,7 @@ const configure = (yargs, options) => { case 'test-cases': case 'browsers': case 'targets': + case 'test-options': y = y.array(option); break; @@ -123,8 +140,9 @@ const configureYargs = (command, yargs) => { browsers, 'sample-size': sampleSize, targets, - 'use-config': useConfig, + 'test-options': testOptions, port, + renderer, } = cliOptions; configure(yargs, { scenario, @@ -133,8 +151,9 @@ const configureYargs = (command, yargs) => { browsers, 'sample-size': sampleSize, targets, - 'use-config': useConfig, + 'test-options': testOptions, port, + renderer, }); break; } @@ -147,10 +166,11 @@ const configureYargs = (command, yargs) => { browsers, 'sample-size': sampleSize, targets, - 'use-config': useConfig, + 'test-options': testOptions, 'process-results': processResults, port, root, + renderer, } = cliOptions; configure(yargs, { scenario, @@ -159,10 +179,11 @@ const configureYargs = (command, yargs) => { browsers, 'sample-size': sampleSize, targets, - 'use-config': useConfig, + 'test-options': testOptions, 'process-results': processResults, port, root, + renderer, }); break; } diff --git a/apps/stress-test/scripts/utils/getScenarioConfig.js b/apps/stress-test/scripts/utils/getScenarioConfig.js deleted file mode 100644 index bc7305ee2f6a3..0000000000000 --- a/apps/stress-test/scripts/utils/getScenarioConfig.js +++ /dev/null @@ -1,39 +0,0 @@ -const fs = require('fs-extra'); -const path = require('path'); -const { getScenariosDir } = require('./paths'); - -/** - * @function getScenarioConfig - * @param {string} scenarioName -<<<<<<< HEAD - * @returns {Object.} - */ -const getScenarioConfig = scenarioName => { - const scenarioConfig = require('../../scenarios/default.js'); - let returnConfig = { ...scenarioConfig }; - if (fs.existsSync(path.join(getScenariosDir(), `${scenarioName}.js`))) { - const config = require(`../../scenarios/${scenarioName}.js`); - returnConfig = { - ...returnConfig, -======= - * @returns {ScenarioConfig} - */ -const getScenarioConfig = scenarioName => { - let scenarioConfig = require('../../scenarios/default.js'); - if (fs.existsSync(path.join(getScenariosDir(), `${scenarioName}.js`))) { - const config = require(`../../scenarios/${scenarioName}.js`); - scenarioConfig = { - ...scenarioConfig, ->>>>>>> 76c9e7deb9 (stress-test: add cli application) - ...config, - }; - } - -<<<<<<< HEAD - return returnConfig; -======= - return scenarioConfig; ->>>>>>> 76c9e7deb9 (stress-test: add cli application) -}; - -module.exports = getScenarioConfig; diff --git a/apps/stress-test/scripts/utils/processOptions.js b/apps/stress-test/scripts/utils/processOptions.js deleted file mode 100644 index e8a2092fdded5..0000000000000 --- a/apps/stress-test/scripts/utils/processOptions.js +++ /dev/null @@ -1,28 +0,0 @@ -const getScenarioConfig = require('./getScenarioConfig'); - -/** -<<<<<<< HEAD - * @param {Object.} parsedOptions - * @returns {Object.} -======= - * @param {import('yargs').Options} parsedOptions - * @returns {import('yargs').Options} ->>>>>>> 76c9e7deb9 (stress-test: add cli application) - */ -const processOptions = parsedOptions => { - if (parsedOptions.useConfig) { - const scenarioConfig = getScenarioConfig(parsedOptions.scenario); - - const options = { - ...scenarioConfig, - ...parsedOptions, - sizes: !parsedOptions.sizes && scenarioConfig.sizes ? Object.keys(scenarioConfig.sizes) : parsedOptions.sizes, - }; - - return options; - } - - return parsedOptions; -}; - -module.exports = processOptions; diff --git a/apps/stress-test/src/components/v8/StressApp.tsx b/apps/stress-test/src/components/v8/StressApp.tsx index df6eadaf54f5a..6e3da22b363d7 100644 --- a/apps/stress-test/src/components/v8/StressApp.tsx +++ b/apps/stress-test/src/components/v8/StressApp.tsx @@ -1,19 +1,19 @@ import * as React from 'react'; -import { getTestParams } from '../../shared/testParams'; -import { performanceMeasure } from '../../shared/performanceMeasure'; +import { getTestOptions } from '../../shared/utils/testOptions'; +import { performanceMeasure } from '../../shared/utils/performanceMeasure'; import { StressContainer } from './StressContainer'; export const StressApp = () => { - const [numChildren, setNumChildren] = React.useState(getTestParams().numStartNodes); + const [numChildren, setNumChildren] = React.useState(Number(getTestOptions().numStartNodes)); React.useEffect(() => { - const { test, numStartNodes, numAddNodes, numRemoveNodes } = getTestParams(); + const { test, numStartNodes, numAddNodes, numRemoveNodes } = getTestOptions(); if (test === 'add-node') { performanceMeasure('stress', 'start'); - setNumChildren(numStartNodes + numAddNodes); + setNumChildren(Number(numStartNodes) + Number(numAddNodes)); } else if (test === 'removeNode') { performanceMeasure('stress', 'start'); - setNumChildren(numStartNodes - numRemoveNodes); + setNumChildren(Number(numStartNodes) - Number(numRemoveNodes)); } }, []); diff --git a/apps/stress-test/src/components/v8/StressContainer.tsx b/apps/stress-test/src/components/v8/StressContainer.tsx index 0c1b1a2330eae..03d06fda61889 100644 --- a/apps/stress-test/src/components/v8/StressContainer.tsx +++ b/apps/stress-test/src/components/v8/StressContainer.tsx @@ -1,8 +1,8 @@ import { mergeStyleSets } from '@fluentui/react'; import * as React from 'react'; import { injectGlobalCss } from '../../shared/css/injectStyles'; -import { getTestParams } from '../../shared/testParams'; -import { performanceMeasure } from '../../shared/performanceMeasure'; +import { getTestOptions } from '../../shared/utils/testOptions'; +import { performanceMeasure } from '../../shared/utils/performanceMeasure'; import { StressComponent } from './StressComponent'; const styles = mergeStyleSets({ @@ -21,7 +21,7 @@ export const StressContainer: React.FC = ({ numChildren = const [checked, setChecked] = React.useState(false); React.useEffect(() => { - const { test } = getTestParams(); + const { test } = getTestOptions(); if (test === 'mount') { performanceMeasure('stress', 'start'); } else if (test === 'inject-styles') { diff --git a/apps/stress-test/src/components/v9/StressApp.tsx b/apps/stress-test/src/components/v9/StressApp.tsx index 89116b36a7c47..32e02e406e22f 100644 --- a/apps/stress-test/src/components/v9/StressApp.tsx +++ b/apps/stress-test/src/components/v9/StressApp.tsx @@ -1,20 +1,20 @@ import * as React from 'react'; import { FluentProvider, webLightTheme } from '@fluentui/react-components'; -import { getTestParams } from '../../shared/testParams'; -import { performanceMeasure } from '../../shared/performanceMeasure'; +import { getTestOptions } from '../../shared/utils/testOptions'; +import { performanceMeasure } from '../../shared/utils/performanceMeasure'; import { StressContainer } from './StressContainer'; export const StressApp = () => { - const [numChildren, setNumChildren] = React.useState(getTestParams().numStartNodes); + const [numChildren, setNumChildren] = React.useState(Number(getTestOptions().numStartNodes)); React.useEffect(() => { - const { test, numStartNodes, numAddNodes, numRemoveNodes } = getTestParams(); + const { test, numStartNodes, numAddNodes, numRemoveNodes } = getTestOptions(); if (test === 'add-node') { performanceMeasure('stress', 'start'); - setNumChildren(numStartNodes + numAddNodes); + setNumChildren(Number(numStartNodes) + Number(numAddNodes)); } else if (test === 'removeNode') { performanceMeasure('stress', 'start'); - setNumChildren(numStartNodes - numRemoveNodes); + setNumChildren(Number(numStartNodes) - Number(numRemoveNodes)); } }, []); diff --git a/apps/stress-test/src/components/v9/StressContainer.tsx b/apps/stress-test/src/components/v9/StressContainer.tsx index bf45343a2a419..caeb16cd5b744 100644 --- a/apps/stress-test/src/components/v9/StressContainer.tsx +++ b/apps/stress-test/src/components/v9/StressContainer.tsx @@ -1,8 +1,8 @@ import { makeStyles, shorthands } from '@fluentui/react-components'; import * as React from 'react'; import { injectGlobalCss } from '../../shared/css/injectStyles'; -import { getTestParams } from '../../shared/testParams'; -import { performanceMeasure } from '../../shared/performanceMeasure'; +import { getTestOptions } from '../../shared/utils/testOptions'; +import { performanceMeasure } from '../../shared/utils/performanceMeasure'; import { StressComponent } from './StressComponent'; const useStyles = makeStyles({ @@ -21,7 +21,7 @@ export const StressContainer: React.FC = ({ numChildren = const [checked, setChecked] = React.useState(false); React.useEffect(() => { - const { test } = getTestParams(); + const { test } = getTestOptions(); if (test === 'mount') { performanceMeasure('stress', 'start'); } else if (test === 'inject-styles') { diff --git a/apps/stress-test/src/components/wc/stressApp.wc.ts b/apps/stress-test/src/components/wc/stressApp.wc.ts index 30132397f0de0..c4c993d473ae7 100644 --- a/apps/stress-test/src/components/wc/stressApp.wc.ts +++ b/apps/stress-test/src/components/wc/stressApp.wc.ts @@ -1,6 +1,6 @@ import { FASTElement, customElement, attr, html, css, repeat, ValueConverter } from '@microsoft/fast-element'; -import { getTestParams } from '../../shared/testParams'; -import { performanceMeasure } from '../../shared/performanceMeasure'; +import { getTestOptions } from '../../shared/utils/testOptions'; +import { performanceMeasure } from '../../shared/utils/performanceMeasure'; import { StressComponent } from './stressComponent.wc'; const styles = css` @@ -43,7 +43,7 @@ export class StressApp extends FASTElement { public connectedCallback(): void { super.connectedCallback(); - const { test, numStartNodes, numAddNodes, numRemoveNodes } = getTestParams(); + const { test, numStartNodes, numAddNodes, numRemoveNodes } = getTestOptions(); if (test === 'prop-update') { setTimeout(() => { @@ -53,12 +53,12 @@ export class StressApp extends FASTElement { } else if (test === 'add-node') { setTimeout(() => { performanceMeasure('stress', 'start'); - this.numchildren = numStartNodes + numAddNodes; + this.numchildren = Number(numStartNodes) + Number(numAddNodes); }, 2000); } else if (test === 'remove-node') { setTimeout(() => { performanceMeasure('stress', 'start'); - this.numchildren = numStartNodes - numRemoveNodes; + this.numchildren = Number(numStartNodes) - Number(numRemoveNodes); }, 2000); } } diff --git a/apps/stress-test/src/components/wc/stressContainer.wc.ts b/apps/stress-test/src/components/wc/stressContainer.wc.ts index fa08104880c98..49507d8294c14 100644 --- a/apps/stress-test/src/components/wc/stressContainer.wc.ts +++ b/apps/stress-test/src/components/wc/stressContainer.wc.ts @@ -1,7 +1,7 @@ import { FASTElement, customElement, html, css } from '@microsoft/fast-element'; import { injectGlobalCss } from '../../shared/css/injectStyles'; -import { getTestParams } from '../../shared/testParams'; -import { performanceMeasure } from '../../shared/performanceMeasure'; +import { getTestOptions } from '../../shared/utils/testOptions'; +import { performanceMeasure } from '../../shared/utils/performanceMeasure'; const styles = css` :host { @@ -26,7 +26,7 @@ export class StressContainer extends FASTElement { public connectedCallback(): void { super.connectedCallback(); - const { test } = getTestParams(); + const { test } = getTestOptions(); if (test === 'mount') { performance.mark('start'); diff --git a/apps/stress-test/src/fixtures/l_1.js b/apps/stress-test/src/fixtures/l_1.js new file mode 100644 index 0000000000000..5ae122147fe5f --- /dev/null +++ b/apps/stress-test/src/fixtures/l_1.js @@ -0,0 +1,12661 @@ +/* eslint-disable @fluentui/max-len */ +export default { + tree: { + value: { + name: '0-0', + classNames: ['.random-classname-7134e52f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '1-11', + classNames: ['.random-classname-7ef38bd3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-3', + classNames: ['.random-classname-277f4b7d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-7', + classNames: ['.random-classname-d7d1eab7', '.random-classname-fa45e001'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-9', + classNames: ['.random-classname-63271ac5', '.random-classname-57d7a13f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '5-3', + classNames: ['.random-classname-b1643fc9', '.random-classname-6c6280e3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '6-3', + classNames: ['.random-classname-d75c28c7', '.random-classname-5e569891'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-3', + classNames: ['.random-classname-1406fceb'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '8-5', + classNames: ['.random-classname-fc9c0a59'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '9-3', + classNames: ['.random-classname-91c27e9d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-7', + classNames: ['.random-classname-338e2ad7'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-13', + classNames: [ + '.random-classname-b1f0b1e5', + '.random-classname-bc3be55f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-5', + classNames: ['.random-classname-c710b8e9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '13-3', + classNames: [ + '.random-classname-196d4e2d', + '.random-classname-7d68f0e7', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '14-2', + classNames: ['.random-classname-60f9370b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '15-12', + classNames: [ + '.random-classname-e3057375', + '.random-classname-dfff6d6f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '16-13', + classNames: [ + '.random-classname-db8b4b79', + '.random-classname-a6dc7813', + ], + attributes: [ + { + key: 'data-random-attr-a32a41bd', + selector: '[data-random-attr-a32a41bd]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '17-1', + classNames: [ + '.random-classname-ee8f1a41', + '.random-classname-c66fda1b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '18-11', + classNames: [ + '.random-classname-9c70d905', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '19-11', + classNames: [ + '.random-classname-7e5397f', + '.random-classname-db14c209', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '20-12', + classNames: [ + '.random-classname-9eb77d23', + ], + attributes: [ + { + key: + 'data-random-attr-8412594d', + selector: + '[data-random-attr-8412594d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '21-2', + classNames: [ + '.random-classname-f25762d1', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '22-3', + classNames: [ + '.random-classname-d66be295', + ], + attributes: [ + { + key: + 'data-random-attr-8d8e498f', + selector: + '[data-random-attr-8d8e498f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '23-12', + classNames: [ + '.random-classname-ccf61c99', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '24-13', + classNames: [ + '.random-classname-f6b7db17', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '25-13', + classNames: [ + '.random-classname-37740f61', + ], + attributes: [ + { + key: + 'data-random-attr-acad2c3b', + selector: + '[data-random-attr-acad2c3b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-7b6f9025', + '.random-classname-b6db9d9f', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '27-6', + classNames: [ + '.random-classname-7fbf1343', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '28-6', + classNames: [ + '.random-classname-e63fb127', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '29-9', + classNames: [ + '.random-classname-6c8e1ff1', + '.random-classname-a855db4b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-c5ee35af', + '.random-classname-4247db9', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '31-5', + classNames: [ + '.random-classname-de8777fd', + '.random-classname-d8354b37', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '32-7', + classNames: [ + '.random-classname-b4068e5b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-92711bf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '34-7', + classNames: [ + '.random-classname-3564b963', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-9', + classNames: [ + '.random-classname-2c161f8d', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '36-3', + classNames: [ + '.random-classname-39d0456b', + '.random-classname-172870d5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-9', + classNames: [ + '.random-classname-eb2731cf', + ], + attributes: [ + { + key: + 'data-random-attr-185e6ed9', + selector: + '[data-random-attr-185e6ed9]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '38-7', + classNames: [ + '.random-classname-d1adcb57', + '.random-classname-7426a9a1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-2e08ae65', + '.random-classname-2cf95df', + ], + attributes: [ + { + key: + 'data-random-attr-8dfe3d69', + selector: + '[data-random-attr-8dfe3d69]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-3904daad', + '.random-classname-af2b167', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-260e8ff5', + ], + attributes: [ + { + key: + 'data-random-attr-23413def', + selector: + '[data-random-attr-23413def]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-4ebeff9', + '.random-classname-2ec71093', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-87d6ee3d', + ], + attributes: [ + { + key: + 'data-random-attr-ca295b77', + selector: + '[data-random-attr-ca295b77]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-4c844ec1', + ], + attributes: [ + { + key: + 'data-random-attr-e82d829b', + selector: + '[data-random-attr-e82d829b]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-6bdd29ff', + '.random-classname-10308689', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-24aa35a3', + '.random-classname-79c25cd', + ], + attributes: [ + { + key: + 'data-random-attr-1ad2c987', + selector: + '[data-random-attr-1ad2c987]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-100549ab', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-3baf3f15', + '.random-classname-58445a0f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-29150119', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-6f0adeb3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-ecaffb97', + '.random-classname-5fef83e1', + ], + attributes: [ + { + key: + 'data-random-attr-c00b14bb', + selector: + '[data-random-attr-c00b14bb]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-d057ce1f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-6b5a0bc3', + '.random-classname-99a400ed', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-72b8b471', + '.random-classname-3cfe3cb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-92d27e35', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-4821a239', + '.random-classname-9748bcd3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-8d58a47d', + ], + attributes: [ + { + key: + 'data-random-attr-a849abb7', + selector: + '[data-random-attr-a849abb7]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-dab04901', + '.random-classname-f24b6db', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-d01bc8c9', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-5c5a9e08', + '.random-classname-19ad5c7a', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-a446ca4e', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-6dcfbeb0', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-f47c4b62', + '.random-classname-a3e524e4', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-1351174a', + ], + attributes: [ + { + key: + 'data-random-attr-ea67210c', + value: + 'random-attr-value-750268fb', + selector: + '[data-random-attr-ea67210c=random-attr-value-750268fb]', + }, + ], + siblings: [ + ':nth-child(7)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-8290a234', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-9a75ed86', + ], + attributes: [ + { + key: + 'data-random-attr-9fd61ea8', + value: + 'random-attr-value-a8ed71e7', + selector: + '[data-random-attr-9fd61ea8=random-attr-value-a8ed71e7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-906d480b', + '.random-classname-a4c0ac75', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-85140e6f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-78059479', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-1d4c9abd', + '.random-classname-fad63bf7', + ], + attributes: [ + { + key: + 'data-random-attr-2b528341', + selector: + '[data-random-attr-2b528341]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-152c2b1b', + '.random-classname-fbde5205', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-d6a61a7f', + '.random-classname-e1454b09', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-1dfdee23', + '.random-classname-922ef24d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-f990bd1', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-220b6a8f', + '.random-classname-36ce599', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-7', + classNames: [ + '.random-classname-c5256ddd', + '.random-classname-c3d91c17', + ], + attributes: [ + { + key: + 'data-random-attr-cdc3f861', + selector: + '[data-random-attr-cdc3f861]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-9729fd3b', + ], + attributes: [ + { + key: + 'data-random-attr-daf18925', + selector: + '[data-random-attr-daf18925]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-c0056429', + '.random-classname-92d60443', + ], + attributes: [ + { + key: + 'data-random-attr-13c90d6d', + selector: + '[data-random-attr-13c90d6d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-52b53227', + ], + attributes: [ + { + key: + 'data-random-attr-787c48f1', + selector: + '[data-random-attr-787c48f1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-2191ab5', + '.random-classname-ca13d6af', + ], + attributes: [ + { + key: + 'data-random-attr-7ed7c6b9', + selector: + '[data-random-attr-7ed7c6b9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-a5f2d0fd', + '.random-classname-8a0f0c37', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-2683df5b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-218b5045', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-bded0d49', + '.random-classname-508c2a63', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-f5791611', + '.random-classname-32e5d66b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-fe8129d5', + '.random-classname-ff3552cf', + ], + attributes: [ + { + key: + 'data-random-attr-a18e37d9', + selector: + '[data-random-attr-a18e37d9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-877cc41d', + '.random-classname-10800c57', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-bec0989e', + '.random-classname-ffddb180', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-307456b2', + '.random-classname-8355cb4', + ], + attributes: [ + { + key: + 'data-random-attr-533b0c06', + value: + 'random-attr-value-29cef3ad', + selector: + '[data-random-attr-533b0c06=random-attr-value-29cef3ad]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-58d77331', + '.random-classname-f4a8d08b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-777deef', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-86d838f9', + '.random-classname-d5ff4193', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-d58b473d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-5e341c77', + '.random-classname-1cf9b7c1', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-ca400aff', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-20530f89', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-7', + classNames: [ + '.random-classname-15cabecd', + '.random-classname-ae91ca87', + ], + attributes: [], + siblings: [ + ':nth-child(5)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-7', + classNames: [ + '.random-classname-1bac300e', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-3250ea70', + ], + attributes: [ + { + key: + 'data-random-attr-eb7b2d22', + value: + 'random-attr-value-adfdca19', + selector: + '[data-random-attr-eb7b2d22=random-attr-value-adfdca19]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-9fe65a5d', + ], + attributes: [ + { + key: + 'data-random-attr-be333c97', + selector: + '[data-random-attr-be333c97]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-9409e5bb', + '.random-classname-9e5005a5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-9b432f1f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-9832fcc3', + ], + attributes: [ + { + key: + 'data-random-attr-e37719ed', + selector: + '[data-random-attr-e37719ed]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-351972a7', + '.random-classname-8fd8dd71', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-7808b735', + '.random-classname-7d80272f', + ], + attributes: [ + { + key: + 'data-random-attr-fa46eb39', + selector: + '[data-random-attr-fa46eb39]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-7', + classNames: [ + '.random-classname-9a55fd7d', + '.random-classname-bf856cb7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-5c2407db', + '.random-classname-72d40cc5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-c7fb633f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-2b751c9', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-e6b162e3', + ], + attributes: [ + { + key: + 'data-random-attr-589c050d', + selector: + '[data-random-attr-589c050d]', + }, + ], + siblings: [ + ':nth-child(5)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-7e3f274e', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-7', + classNames: [ + '.random-classname-7b13f862', + '.random-classname-d83259e4', + ], + attributes: [ + { + key: + 'data-random-attr-3ebb70b6', + value: + 'random-attr-value-1ca2309d', + selector: + '[data-random-attr-3ebb70b6=random-attr-value-1ca2309d]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-bbe98721', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-c74239fb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-8470a75f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-579ccae9', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-c8b5d903', + '.random-classname-df01802d', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-63e5590b', + '.random-classname-1d1fe575', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-ac6caf6f', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-7', + classNames: [ + '.random-classname-5877a1f8', + '.random-classname-62bf35ea', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-d88702be', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-7', + classNames: [ + '.random-classname-68fd40a0', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-d35b4dd4', + ], + attributes: [ + { + key: + 'data-random-attr-b0eeba26', + value: + 'random-attr-value-846f8b4d', + selector: + '[data-random-attr-b0eeba26=random-attr-value-846f8b4d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-2edacb07', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-d768a32b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-7', + classNames: [ + '.random-classname-7ac7ae99', + '.random-classname-8596833', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-c177e161', + '.random-classname-18aace3b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-7', + classNames: [ + '.random-classname-5c178225', + '.random-classname-50b25f9f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-1d70f543', + '.random-classname-faae266d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-cace71f1', + '.random-classname-ee43fd4b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-c6f0fb9', + '.random-classname-75c00653', + ], + attributes: [ + { + key: + 'data-random-attr-dc8229fd', + selector: + '[data-random-attr-dc8229fd]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-c22b6681', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-1205305b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-7', + classNames: [ + '.random-classname-9c8ed3bf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-5379b63', + '.random-classname-9785518d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-b979ab47', + '.random-classname-4ab7bf11', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-b27de2d5', + '.random-classname-1b8773cf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-8008b473', + '.random-classname-bc109d1d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-60164d57', + '.random-classname-75dc7ba1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-7882a065', + '.random-classname-f04857df', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-286e4f69', + '.random-classname-6aa45183', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-54bd0cad', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-53429c31', + '.random-classname-c022e18b', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-bfa881f9', + '.random-classname-29bb7293', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-7663a03d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-80d320c1', + '.random-classname-b3ae249b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-53e6ebff', + '.random-classname-30599889', + ], + attributes: [ + { + key: + 'data-random-attr-123f17a3', + selector: + '[data-random-attr-123f17a3]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-d01d57cd', + '.random-classname-d614cb87', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-d656b115', + '.random-classname-8dc69c0f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-bbca9319', + '.random-classname-796040b3', + ], + attributes: [ + { + key: + 'data-random-attr-3b43335d', + selector: + '[data-random-attr-3b43335d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-6b5755e1', + '.random-classname-870cb6bb', + ], + attributes: [ + { + key: + 'data-random-attr-c647fea5', + selector: + '[data-random-attr-c647fea5]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-198471a9', + '.random-classname-c48fedc3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-1c34f3a7', + '.random-classname-3b5d0671', + ], + attributes: [ + { + key: + 'data-random-attr-75c205cb', + selector: + '[data-random-attr-75c205cb]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-510bc82f', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-797f1ed3', + '.random-classname-de77567d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-a1b11b01', + '.random-classname-aa2758db', + ], + attributes: [ + { + key: + 'data-random-attr-dc2085c5', + selector: + '[data-random-attr-dc2085c5]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-d936dac9', + '.random-classname-4e1ed3e3', + ], + attributes: [ + { + key: + 'data-random-attr-ac779e0d', + selector: + '[data-random-attr-ac779e0d]', + }, + ], + siblings: [ + ':nth-child(9)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-25b737bc', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-4ee688b0', + '.random-classname-ed1fa562', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-2c138ee4', + '.random-classname-25736db6', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-3262cb0c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-8a20841e', + '.random-classname-bed22900', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-c4018c34', + '.random-classname-92186786', + ], + attributes: [ + { + key: + 'data-random-attr-2df0a8a8', + value: + 'random-attr-value-ed4273e7', + selector: + '[data-random-attr-2df0a8a8=random-attr-value-ed4273e7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-7', + classNames: [ + '.random-classname-eb616a0b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-6609506f', + '.random-classname-8da62679', + ], + attributes: [ + { + key: + 'data-random-attr-c94b0b13', + selector: + '[data-random-attr-c94b0b13]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-42fd4cbd', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-17055541', + '.random-classname-e1b0cd1b', + ], + attributes: [ + { + key: + 'data-random-attr-19a54405', + selector: + '[data-random-attr-19a54405]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-edf3dc7f', + ], + attributes: [ + { + key: + 'data-random-attr-a5525d09', + selector: + '[data-random-attr-a5525d09]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-2d16d023', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-663fcc07', + '.random-classname-f7485dd1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-b8670d95', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-42081933', + '.random-classname-dfdf1fdd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-14679e17', + ], + attributes: [ + { + key: + 'data-random-attr-a28fca61', + selector: + '[data-random-attr-a28fca61]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-8ee17b25', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-904b7629', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-2f8fe643', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-c7b73f6d', + ], + attributes: [], + siblings: [ + ':nth-child(7)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-916fd79c', + ], + attributes: [], + siblings: [ + ':nth-child(4)', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-3cea58b9', + ], + attributes: [ + { + key: + 'data-random-attr-bd5f3753', + selector: + '[data-random-attr-bd5f3753]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-ea0e8e37', + '.random-classname-130fcf81', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-58244245', + ], + attributes: [ + { + key: + 'data-random-attr-3128b4bf', + selector: + '[data-random-attr-3128b4bf]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-63670c63', + '.random-classname-8972ea8d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-4a4fac47', + '.random-classname-85a6811', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-c31e9bd5', + '.random-classname-501d94cf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-f299c9d9', + '.random-classname-59d86573', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-915bd7ca', + '.random-classname-98ae358c', + ], + attributes: [ + { + key: + 'data-random-attr-f82fd29e', + value: + 'random-attr-value-76359965', + selector: + '[data-random-attr-f82fd29e=random-attr-value-76359965]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-a7c5869', + '.random-classname-a9244283', + ], + attributes: [ + { + key: + 'data-random-attr-49cf25ad', + selector: + '[data-random-attr-49cf25ad]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-7', + classNames: [ + '.random-classname-4811c531', + '.random-classname-c7a0f28b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-7eb120ef', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-3f5ccaf9', + '.random-classname-39fba393', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-e959e77', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-81089c1', + '.random-classname-4f4759b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-ddd8085', + ], + attributes: [ + { + key: + 'data-random-attr-18d1ccff', + selector: + '[data-random-attr-18d1ccff]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-e54f88a3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-a15bcc87', + ], + attributes: [ + { + key: + 'data-random-attr-a8f2b251', + selector: + '[data-random-attr-a8f2b251]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-7ca06a15', + ], + attributes: [ + { + key: + 'data-random-attr-4aedbd0f', + selector: + '[data-random-attr-4aedbd0f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-e27b5c19', + ], + attributes: [ + { + key: + 'data-random-attr-8450f1b3', + selector: + '[data-random-attr-8450f1b3]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-2f85be97', + ], + attributes: [ + { + key: + 'data-random-attr-f9213ee1', + selector: + '[data-random-attr-f9213ee1]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-67e3f7a5', + '.random-classname-c8e5f11f', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-70dec3', + '.random-classname-61894bed', + ], + attributes: [ + { + key: + 'data-random-attr-e91474a7', + selector: + '[data-random-attr-e91474a7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-7', + classNames: [ + '.random-classname-26c116cb', + '.random-classname-7a612935', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-ff3d7d39', + '.random-classname-63604fd3', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-248eeb7', + '.random-classname-a8478401', + ], + attributes: [], + siblings: [ + ':nth-child(1)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-210b6160', + '.random-classname-1bd1f192', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-da91a94', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-2ddfe4e6', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-c2b0ed08', + ], + attributes: [], + siblings: [ + ':nth-child(8)', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-2b2c7855', + '.random-classname-b882254f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-1ceb2e59', + '.random-classname-5b1bdf3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-4c11e29d', + '.random-classname-99e72ed7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-85cb5921', + '.random-classname-24cddbfb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-11b5695f', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-ad25b22d', + '.random-classname-2612f4e7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-8d5ed9b1', + '.random-classname-36e17b0b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-c1e9f16f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-26cc6f79', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-9dcd3c13', + '.random-classname-e8ba5bd', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-e5f4be41', + '.random-classname-7f791e1b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-f7febd05', + ], + attributes: [ + { + key: + 'data-random-attr-5680bd7f', + selector: + '[data-random-attr-5680bd7f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-dce94123', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '37-9', + classNames: [ + '.random-classname-555cbd4d', + '.random-classname-4968cd07', + ], + attributes: [ + { + key: + 'data-random-attr-e1b606d1', + selector: + '[data-random-attr-e1b606d1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-f7a5c52b', + '.random-classname-5502c695', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-391acd8f', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-623aca33', + '.random-classname-10f1f8dd', + ], + attributes: [ + { + key: + 'data-random-attr-b7d4df17', + selector: + '[data-random-attr-b7d4df17]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-10bb361', + '.random-classname-20b8703b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-34f7425', + '.random-classname-bf99219f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-d932d743', + '.random-classname-ae4586d', + ], + attributes: [ + { + key: + 'data-random-attr-aaadb527', + selector: + '[data-random-attr-aaadb527]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-14421f4b', + '.random-classname-ff9dc5b5', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-8d826853', + '.random-classname-d70cdbfd', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-9413d25b', + '.random-classname-58e6bb45', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '37-9', + classNames: [ + '.random-classname-d0695bf', + ], + attributes: [], + siblings: [ + ':nth-child(7)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-4967c366', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-ef58cf88', + '.random-classname-d14609fa', + ], + attributes: [ + { + key: + 'data-random-attr-3ed2973c', + value: + 'random-attr-value-1a3e896b', + selector: + '[data-random-attr-3ed2973c=random-attr-value-1a3e896b]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-da7592d9', + '.random-classname-5e2c1673', + ], + attributes: [ + { + key: + 'data-random-attr-88a44f1d', + selector: + '[data-random-attr-88a44f1d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-bd224da1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-198c9265', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-ba6e6169', + '.random-classname-c3283383', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-99053ead', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-6f24b567', + '.random-classname-c744ee31', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-1b23038b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-31b3c1ef', + '.random-classname-95f513f9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-f180523d', + ], + attributes: [ + { + key: + 'data-random-attr-4aec5f77', + selector: + '[data-random-attr-4aec5f77]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-b33ec69b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-8a08f985', + ], + attributes: [ + { + key: + 'data-random-attr-2900adff', + selector: + '[data-random-attr-2900adff]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-9012aa89', + ], + attributes: [ + { + key: + 'data-random-attr-b5e3f9a3', + selector: + '[data-random-attr-b5e3f9a3]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-2066cd87', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '37-9', + classNames: [ + '.random-classname-76a6470e', + '.random-classname-29ae1970', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-5579cba4', + '.random-classname-c1c68876', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-3aa718', + ], + attributes: [ + { + key: + 'data-random-attr-3755180a', + value: + 'random-attr-value-4c4f27e1', + selector: + '[data-random-attr-3755180a=random-attr-value-4c4f27e1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-1323f0a5', + '.random-classname-4b9d521f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-7b7683a9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-b5c864ed', + '.random-classname-abb7f5a7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-7d915871', + '.random-classname-e7c427cb', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-720ec639', + '.random-classname-5dc580d3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-4dd0afb7', + '.random-classname-8641ed01', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-8939fadb', + '.random-classname-41a577c5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '37-9', + classNames: [ + '.random-classname-faaf063f', + ], + attributes: [ + { + key: + 'data-random-attr-b1e1ecc9', + selector: + '[data-random-attr-b1e1ecc9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-449ad00d', + '.random-classname-e2202dc7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-389e591', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-b4c33155', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-7d38f759', + '.random-classname-85476ef3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-97fbb9d', + '.random-classname-99676fd7', + ], + attributes: [ + { + key: + 'data-random-attr-80d24221', + selector: + '[data-random-attr-80d24221]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-c6558ee5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-cc9ce5e9', + '.random-classname-f77bac03', + ], + attributes: [ + { + key: + 'data-random-attr-ff6dcb2d', + selector: + '[data-random-attr-ff6dcb2d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-d8a775e7', + '.random-classname-7c402b1', + ], + attributes: [ + { + key: + 'data-random-attr-56658c0b', + selector: + '[data-random-attr-56658c0b]', + }, + ], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-e85b9d02', + '.random-classname-1ea78784', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-397c0f56', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-e48930f8', + ], + attributes: [], + siblings: [ + ':nth-child(10)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-2456f1b', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-aeb62cd4', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-a6d00348', + ], + attributes: [ + { + key: + 'data-random-attr-579033ba', + value: + 'random-attr-value-3087afd1', + selector: + '[data-random-attr-579033ba=random-attr-value-3087afd1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-a427f95', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-78f17b33', + '.random-classname-6f28d1dd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-18062017', + '.random-classname-6ceb9c61', + ], + attributes: [ + { + key: + 'data-random-attr-c745413b', + selector: + '[data-random-attr-c745413b]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-eef2829f', + '.random-classname-8218829', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-5435716d', + '.random-classname-ae333627', + ], + attributes: [ + { + key: + 'data-random-attr-81cecf1', + selector: + '[data-random-attr-81cecf1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-d411feb5', + '.random-classname-b9525aaf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-f6299953', + ], + attributes: [ + { + key: + 'data-random-attr-bb0834fd', + selector: + '[data-random-attr-bb0834fd]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '37-9', + classNames: [ + '.random-classname-51e1037', + ], + attributes: [ + { + key: + 'data-random-attr-f304a181', + selector: + '[data-random-attr-f304a181]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-4aa1235b', + ], + attributes: [ + { + key: + 'data-random-attr-5d4d3445', + selector: + '[data-random-attr-5d4d3445]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-4f7b3149', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-b47ae47', + ], + attributes: [ + { + key: + 'data-random-attr-fccbba11', + selector: + '[data-random-attr-fccbba11]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-3a4c0dd5', + '.random-classname-4215d6cf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-57355bd9', + '.random-classname-9d03c773', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-53711057', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-f2878b65', + '.random-classname-a9fb7adf', + ], + attributes: [], + siblings: [ + ':nth-child(1)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-781a5528', + ], + attributes: [ + { + key: + 'data-random-attr-400cc09a', + value: + 'random-attr-value-60dc1731', + selector: + '[data-random-attr-400cc09a=random-attr-value-60dc1731]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-caa9148b', + '.random-classname-cfb8acf5', + ], + attributes: [ + { + key: + 'data-random-attr-9efa62ef', + selector: + '[data-random-attr-9efa62ef]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-d0080593', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-ebc4ab3d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-c0b75bc1', + '.random-classname-ce8d179b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-94738eff', + '.random-classname-ffc53389', + ], + attributes: [ + { + key: + 'data-random-attr-93fc6aa3', + selector: + '[data-random-attr-93fc6aa3]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-6335ce87', + '.random-classname-6a960451', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-c69e1eab', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-4b1fdc15', + ], + attributes: [ + { + key: + 'data-random-attr-5a07ff0f', + selector: + '[data-random-attr-5a07ff0f]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-4c31be5d', + '.random-classname-73e84097', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '37-9', + classNames: [ + '.random-classname-ba2d29bb', + '.random-classname-5807e9a5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-2b98b31f', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-e6bec0c3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-d82b7ded', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-741f76a7', + '.random-classname-34418171', + ], + attributes: [ + { + key: + 'data-random-attr-c8cb38cb', + selector: + '[data-random-attr-c8cb38cb]', + }, + ], + siblings: [ + ':nth-child(9)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-ecd15ec2', + '.random-classname-4056f44', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-d497b4b8', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-34a896aa', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-cec40f7e', + '.random-classname-f1dfab60', + ], + attributes: [ + { + key: + 'data-random-attr-728ecb92', + value: + 'random-attr-value-d40d75c9', + selector: + '[data-random-attr-728ecb92=random-attr-value-d40d75c9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-a8e2690d', + '.random-classname-48602ec7', + ], + attributes: [ + { + key: + 'data-random-attr-bc268e91', + selector: + '[data-random-attr-bc268e91]', + }, + ], + siblings: [ + ':nth-child(11)', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-e7faac62', + '.random-classname-52f2de4', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-5f9b984a', + '.random-classname-45f24a0c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-cd7f5b1e', + '.random-classname-55b21800', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-4080eb34', + '.random-classname-50521e86', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-5b4bb15c', + '.random-classname-d0254eee', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-6ad73c84', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '37-9', + classNames: [ + '.random-classname-a4e1b5f8', + ], + attributes: [], + siblings: [ + ':nth-child(2)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-2', + classNames: [ + '.random-classname-7a15c01b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-31667f7f', + ], + attributes: [ + { + key: + 'data-random-attr-693f809', + selector: + '[data-random-attr-693f809]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-76d9ef4d', + '.random-classname-5306cf07', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-eff2e72b', + '.random-classname-68263895', + ], + attributes: [ + { + key: + 'data-random-attr-88790f8f', + selector: + '[data-random-attr-88790f8f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-962c2c33', + '.random-classname-8a83aadd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-44fb6117', + ], + attributes: [ + { + key: + 'data-random-attr-762f8561', + selector: + '[data-random-attr-762f8561]', + }, + ], + siblings: [ + ':nth-child(7)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-79f5dc72', + '.random-classname-9cc7a874', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-898cca5a', + '.random-classname-7aa169c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-6cd9262e', + '.random-classname-a872e590', + ], + attributes: [ + { + key: + 'data-random-attr-ed297542', + value: + 'random-attr-value-3fb433b9', + selector: + '[data-random-attr-ed297542=random-attr-value-3fb433b9]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-754ca53', + '.random-classname-4e278dfd', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-2', + classNames: [ + '.random-classname-a2150a81', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-f557ad45', + ], + attributes: [ + { + key: + 'data-random-attr-da8e57bf', + selector: + '[data-random-attr-da8e57bf]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-170d5f63', + '.random-classname-1013b58d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '37-9', + classNames: [ + '.random-classname-539a6311', + '.random-classname-268dab6b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-c0d8c6d5', + '.random-classname-1f77f7cf', + ], + attributes: [ + { + key: + 'data-random-attr-f8d924d9', + selector: + '[data-random-attr-f8d924d9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-99c8011d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-c9f81fa1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '36-3', + classNames: [ + '.random-classname-91268465', + '.random-classname-fa69dbdf', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-c9bc1583', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-85dd70ad', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-a4d74031', + '.random-classname-e633258b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-53f9e5f5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '36-3', + classNames: [ + '.random-classname-7d1a5f9', + '.random-classname-75d43693', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-792d043d', + '.random-classname-dbe5e177', + ], + attributes: [ + { + key: + 'data-random-attr-1220c4c1', + selector: + '[data-random-attr-1220c4c1]', + }, + ], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-351de720', + '.random-classname-861d3d52', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-1a971c54', + ], + attributes: [], + siblings: [ + ':nth-child(6)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-79c8cf87', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '35-9', + classNames: [ + '.random-classname-aec8afab', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-cbfb200f', + '.random-classname-8be5b719', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-7c3b04b3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-9c1e975d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-cd3f8197', + '.random-classname-82d6f9e1', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-c93ffabb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '35-9', + classNames: [ + '.random-classname-78d8141f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-e4f895a9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-58b296ed', + '.random-classname-524af7a7', + ], + attributes: [ + { + key: + 'data-random-attr-b955aa71', + selector: + '[data-random-attr-b955aa71]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-79b3d435', + ], + attributes: [ + { + key: + 'data-random-attr-6de24c2f', + selector: + '[data-random-attr-6de24c2f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-c41be2d3', + '.random-classname-5664ba7d', + ], + attributes: [ + { + key: + 'data-random-attr-892c31b7', + selector: + '[data-random-attr-892c31b7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-2c5c9cdb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '35-9', + classNames: [ + '.random-classname-d5ba69c5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-da1cfec9', + '.random-classname-7afc97e3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-dd4e020d', + '.random-classname-6642fc7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-d5273791', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-44e3f3eb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-ee42884f', + '.random-classname-64808959', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '35-9', + classNames: [ + '.random-classname-dbfed0f3', + '.random-classname-9fc76d9d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-82b3f1d7', + '.random-classname-730c1421', + ], + attributes: [ + { + key: + 'data-random-attr-efbd4efb', + selector: + '[data-random-attr-efbd4efb]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-6f1a8c5f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-3d938e03', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-b3ba54b1', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-5179ae0b', + '.random-classname-da980275', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '35-9', + classNames: [ + '.random-classname-eb974a79', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-140eb0bd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-70dec1f7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-f6ea111b', + '.random-classname-90e32805', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-cc1c8109', + '.random-classname-4d789423', + ], + attributes: [ + { + key: + 'data-random-attr-4dce884d', + selector: + '[data-random-attr-4dce884d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-997bd007', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '35-9', + classNames: [ + '.random-classname-e51f782b', + '.random-classname-feadf195', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-268e308f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-c9eadd33', + ], + attributes: [ + { + key: + 'data-random-attr-f30283dd', + selector: + '[data-random-attr-f30283dd]', + }, + ], + siblings: [ + ':nth-child(7)', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-9e28ff5e', + '.random-classname-bab68640', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-d3bf1d74', + ], + attributes: [ + { + key: + 'data-random-attr-9c704ac6', + value: + 'random-attr-value-3943a36d', + selector: + '[data-random-attr-9c704ac6=random-attr-value-3943a36d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-ee8a3827', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '35-9', + classNames: [ + '.random-classname-1ce670b5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-9bbf7cb9', + '.random-classname-d103fb53', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-206ae6fd', + '.random-classname-5b3d9237', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-90897381', + ], + attributes: [ + { + key: + 'data-random-attr-f2c7c55b', + selector: + '[data-random-attr-f2c7c55b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-b1062645', + '.random-classname-ec3838bf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-ff9a4349', + '.random-classname-bb4cd063', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '35-9', + classNames: [ + '.random-classname-2914e8d', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-cbbb3c6b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-551e18cf', + '.random-classname-4f60edd9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-240fda1d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-19819257', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-4288b77b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '34-7', + classNames: [ + '.random-classname-c41c3cdf', + '.random-classname-3d9c7c69', + ], + attributes: [ + { + key: + 'data-random-attr-d64c0683', + selector: + '[data-random-attr-d64c0683]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-437f89ad', + '.random-classname-54d43867', + ], + attributes: [ + { + key: + 'data-random-attr-23366931', + selector: + '[data-random-attr-23366931]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-7dc1368b', + '.random-classname-26df1ef5', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-4315eef9', + '.random-classname-18246793', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-5088a277', + '.random-classname-c6ee2dc1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-ac636485', + '.random-classname-bd2550ff', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-39d654cd', + '.random-classname-741fd087', + ], + attributes: [ + { + key: + 'data-random-attr-1dc95651', + selector: + '[data-random-attr-1dc95651]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '34-7', + classNames: [ + '.random-classname-74f740ab', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-9a32410f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-b6268019', + '.random-classname-a13bb5b3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-b5ac297', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-8630e2e1', + '.random-classname-4756cbbb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-eebbdba5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-48f9ea9', + '.random-classname-cb1ca2c3', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '34-7', + classNames: [ + '.random-classname-b1c89dda', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-db2ab61c', + '.random-classname-aa1471ae', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-67b9bd10', + '.random-classname-4c5fb8c2', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-d05abeb8', + '.random-classname-b00230aa', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-507a497e', + '.random-classname-c003f560', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-5a00ee94', + ], + attributes: [ + { + key: + 'data-random-attr-840ad8e6', + value: + 'random-attr-value-71dd9b0d', + selector: + '[data-random-attr-840ad8e6=random-attr-value-71dd9b0d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-2c2c30c7', + '.random-classname-de8be091', + ], + attributes: [ + { + key: + 'data-random-attr-9d1384eb', + selector: + '[data-random-attr-9d1384eb]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '34-7', + classNames: [ + '.random-classname-2d5f5c55', + ], + attributes: [ + { + key: + 'data-random-attr-560aa94f', + selector: + '[data-random-attr-560aa94f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-b7a5259', + '.random-classname-d32081f3', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-8a3efd21', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-9ca879e5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-7b6eed5f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-35e57f03', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-6afcf8e7', + '.random-classname-54b7db1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '34-7', + classNames: [ + '.random-classname-6acf3b75', + '.random-classname-c814756f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-604d9379', + '.random-classname-dcfe0013', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-bce382f7', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-3607b0be', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-6d9de0d2', + '.random-classname-6d450bd4', + ], + attributes: [], + siblings: [ + ':nth-child(6)', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-1754aad1', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-28e7518f', + '.random-classname-199c6499', + ], + attributes: [ + { + key: + 'data-random-attr-242d8e33', + selector: + '[data-random-attr-242d8e33]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '34-7', + classNames: [ + '.random-classname-4531e317', + '.random-classname-a0e35761', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-503b43b', + '.random-classname-a56f5825', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-ce10a329', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-aae69b43', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-4b5bb927', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-b146a9b5', + '.random-classname-168b3daf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-6aaec5b9', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '32-7', + classNames: [ + '.random-classname-63372c53', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-c1d23ffd', + '.random-classname-84735337', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-4e61dc81', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-20589f45', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-852619bf', + '.random-classname-a97fcc49', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-1d32e78d', + '.random-classname-2af9b147', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-9aeccd6b', + '.random-classname-33de38d5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-eaccb6d9', + '.random-classname-58a2da73', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-6f7bb31d', + '.random-classname-1dafd357', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '32-7', + classNames: [ + '.random-classname-1c5df1a1', + '.random-classname-1662887b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-c51e8569', + '.random-classname-fe5ff783', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-ef96b967', + '.random-classname-6bf99231', + ], + attributes: [ + { + key: + 'data-random-attr-a153478b', + selector: + '[data-random-attr-a153478b]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-953e37f9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-8d69b63d', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-2ff3812c', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-27403120', + '.random-classname-e1581752', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-b2ab86a6', + '.random-classname-3d3fb4c8', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-1f16613a', + '.random-classname-52b7307c', + ], + attributes: [ + { + key: + 'data-random-attr-76cbbb0e', + value: + 'random-attr-value-b5ad0715', + selector: + '[data-random-attr-76cbbb0e=random-attr-value-b5ad0715]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '32-7', + classNames: [ + '.random-classname-c94b4919', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-74c066b3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-3e3a0397', + ], + attributes: [ + { + key: + 'data-random-attr-8eeecbe1', + selector: + '[data-random-attr-8eeecbe1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-608bd4a5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-9b22d61f', + '.random-classname-d60aa7a9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-b42cc8ed', + '.random-classname-8fedf9a7', + ], + attributes: [ + { + key: + 'data-random-attr-6ea9fc71', + selector: + '[data-random-attr-6ea9fc71]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-cbf86bcb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-71e58e2f', + '.random-classname-4a3bea39', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-5f97b3b7', + ], + attributes: [ + { + key: + 'data-random-attr-a8139101', + selector: + '[data-random-attr-a8139101]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '32-7', + classNames: [ + '.random-classname-185f5bc5', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-3ed795e6', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-bb0dc47a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-a6b2b5bc', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-31b9b24e', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-da0ae6b0', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-69e9b362', + '.random-classname-3a7ecce4', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-13711c58', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-de6b7f4a', + '.random-classname-3c35c90c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '32-7', + classNames: [ + '.random-classname-69b2321e', + '.random-classname-c0860700', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-124ec832', + '.random-classname-f6344a34', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-342046a8', + '.random-classname-d6c32e1a', + ], + attributes: [ + { + key: + 'data-random-attr-9e6af05c', + value: + 'random-attr-value-5c9dd00b', + selector: + '[data-random-attr-9e6af05c=random-attr-value-5c9dd00b]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-33e7dc79', + '.random-classname-f8143113', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-bf6f62bd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-43ac43f7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-3f9eb31b', + ], + attributes: [ + { + key: + 'data-random-attr-ea5a1a05', + selector: + '[data-random-attr-ea5a1a05]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-823d227f', + '.random-classname-2ed99309', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-5823ba4d', + '.random-classname-f9b1d207', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '32-7', + classNames: [ + '.random-classname-15a96395', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-42243a24', + '.random-classname-e9ff7af6', + ], + attributes: [ + { + key: + 'data-random-attr-90f8bd98', + value: + 'random-attr-value-38732417', + selector: + '[data-random-attr-90f8bd98=random-attr-value-38732417]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-67a0853b', + '.random-classname-d2115125', + ], + attributes: [], + siblings: [ + ':nth-child(9)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-3b6a0774', + '.random-classname-a85cc4c6', + ], + attributes: [ + { + key: + 'data-random-attr-989537e8', + value: + 'random-attr-value-e5f13a27', + selector: + '[data-random-attr-989537e8=random-attr-value-e5f13a27]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-fdfd90f1', + ], + attributes: [ + { + key: + 'data-random-attr-6f83744b', + selector: + '[data-random-attr-6f83744b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-504ae2b5', + '.random-classname-cd0deaf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-cdee5d53', + '.random-classname-c25d98fd', + ], + attributes: [ + { + key: + 'data-random-attr-6c6d1437', + selector: + '[data-random-attr-6c6d1437]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-fefe675b', + '.random-classname-d34f1845', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-b557fabf', + '.random-classname-9f495549', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '31-5', + classNames: [ + '.random-classname-ca67b247', + '.random-classname-8a5e5e11', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '32-1', + classNames: [ + '.random-classname-a4225e6b', + '.random-classname-4056f1d5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-9365acf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-5b1c7fd9', + '.random-classname-218a8b73', + ], + attributes: [ + { + key: + 'data-random-attr-c0b8c1d', + selector: + '[data-random-attr-c0b8c1d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-27a6daa1', + ], + attributes: [ + { + key: + 'data-random-attr-b540597b', + selector: + '[data-random-attr-b540597b]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-34cfedf', + '.random-classname-ea848e69', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-1d2fbbad', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-f20bb31', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-60e9588b', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-dabce6ef', + '.random-classname-8e4a80f9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '31-5', + classNames: [ + '.random-classname-343e0f3d', + '.random-classname-e21a2477', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '32-1', + classNames: [ + '.random-classname-cc2c5c3e', + '.random-classname-c14f5620', + ], + attributes: [], + siblings: [ + ':nth-child(14)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-d3862ea3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-fc4f86cd', + '.random-classname-5419d287', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-db6062ab', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-afcec015', + '.random-classname-8b6c830f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-55541219', + ], + attributes: [ + { + key: + 'data-random-attr-6c917b3', + selector: + '[data-random-attr-6c917b3]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-75dd4497', + '.random-classname-2d10b4e1', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-902e371f', + '.random-classname-e969b0a9', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-f657aa7', + '.random-classname-beea2571', + ], + attributes: [ + { + key: + 'data-random-attr-cd0f7ccb', + selector: + '[data-random-attr-cd0f7ccb]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '31-5', + classNames: [ + '.random-classname-c0ca7f35', + '.random-classname-e94d2f2f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '32-1', + classNames: [ + '.random-classname-93813339', + '.random-classname-697b75d3', + ], + attributes: [ + { + key: + 'data-random-attr-350c57d', + selector: + '[data-random-attr-350c57d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-2b01fa01', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-327d4c5', + '.random-classname-eb2a6b3f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-e3a399c9', + '.random-classname-c8ceae3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-ef0832c7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-737ea6eb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-aa50ce55', + '.random-classname-8666eb4f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-9019e459', + '.random-classname-a8efe3f3', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-c4d0cf21', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '31-5', + classNames: [ + '.random-classname-9fbe6be5', + '.random-classname-57e3af5f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '32-1', + classNames: [ + '.random-classname-56d12e9', + '.random-classname-21156103', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-a809fae7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-6f99cfb1', + ], + attributes: [ + { + key: + 'data-random-attr-9035e10b', + selector: + '[data-random-attr-9035e10b]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-b8c1b76f', + '.random-classname-f6662579', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-5dd5bbbd', + ], + attributes: [], + siblings: [ + ':nth-child(9)', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-7427eabe', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-1c34bad2', + ], + attributes: [ + { + key: + 'data-random-attr-9532f5d4', + value: + 'random-attr-value-1fabe723', + selector: + '[data-random-attr-9532f5d4=random-attr-value-1fabe723]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-ab84534d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-4c7bfcd1', + '.random-classname-68bd2b2b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-9a65938f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '31-1', + classNames: [ + '.random-classname-d5adf699', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '32-1', + classNames: [ + '.random-classname-9b570edd', + '.random-classname-38786517', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-1272961', + ], + attributes: [ + { + key: + 'data-random-attr-e141563b', + selector: + '[data-random-attr-e141563b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-a0574a25', + '.random-classname-aad679f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-98ceb529', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-cee6ee6d', + '.random-classname-ce4abb27', + ], + attributes: [ + { + key: + 'data-random-attr-c36fb9f1', + selector: + '[data-random-attr-c36fb9f1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-c69c854b', + ], + attributes: [ + { + key: + 'data-random-attr-89f31bb5', + selector: + '[data-random-attr-89f31bb5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-95a7faf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-21298e53', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-b20cf1fd', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-783eae81', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '31-1', + classNames: [ + '.random-classname-8ccddbbf', + ], + attributes: [ + { + key: + 'data-random-attr-70f6de49', + selector: + '[data-random-attr-70f6de49]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '32-1', + classNames: [ + '.random-classname-c1232363', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-ae2198d', + '.random-classname-f999b347', + ], + attributes: [ + { + key: + 'data-random-attr-e2bd0711', + selector: + '[data-random-attr-e2bd0711]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-f75bef6b', + '.random-classname-9973aad5', + ], + attributes: [], + siblings: [ + ':nth-child(5)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-3040d736', + '.random-classname-5d45a3d8', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-5f5b088c', + '.random-classname-641b1d9e', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-798179b4', + ], + attributes: [ + { + key: + 'data-random-attr-d0e63106', + value: + 'random-attr-value-593dd4ad', + selector: + '[data-random-attr-d0e63106=random-attr-value-593dd4ad]', + }, + ], + siblings: [ + ':nth-child(7)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-49bbb16e', + '.random-classname-1a0bd2d0', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '29-9', + classNames: [ + '.random-classname-b356b04', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '29-9', + classNames: [ + '.random-classname-f0af8c78', + '.random-classname-c3ef046a', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '29-9', + classNames: [ + '.random-classname-2270793e', + '.random-classname-86b27b20', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '29-9', + classNames: [ + '.random-classname-2662f152', + '.random-classname-554af054', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '29-9', + classNames: [ + '.random-classname-24fb3ec8', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '29-9', + classNames: [ + '.random-classname-af7c7b3a', + '.random-classname-7765a7c', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '29-9', + classNames: [ + '.random-classname-d1447770', + ], + attributes: [], + siblings: [ + ':nth-child(4)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '29-9', + classNames: [ + '.random-classname-6755c8b3', + '.random-classname-4f39fb5d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '28-6', + classNames: [ + '.random-classname-c2448597', + '.random-classname-f0969de1', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '28-6', + classNames: [ + '.random-classname-fbb33ebb', + '.random-classname-6117c6a5', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '28-6', + classNames: [ + '.random-classname-960775c3', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '28-6', + classNames: [ + '.random-classname-e4a0fba7', + '.random-classname-1d8e4e71', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '28-6', + classNames: [ + '.random-classname-ddc4b835', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '27-6', + classNames: [ + '.random-classname-6ef8d02f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '27-6', + classNames: [ + '.random-classname-16f8a6d3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '27-6', + classNames: [ + '.random-classname-40921e7d', + ], + attributes: [ + { + key: + 'data-random-attr-511335b7', + selector: + '[data-random-attr-511335b7]', + }, + ], + siblings: [ + ':nth-child(13)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '27-6', + classNames: [ + '.random-classname-e8306460', + '.random-classname-8854ec92', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '27-6', + classNames: [ + '.random-classname-aa54cd94', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-9765008', + '.random-classname-44edde7a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-e4fbdfbc', + '.random-classname-cb1e6c4e', + ], + attributes: [], + siblings: [ + ':nth-child(12)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-8dbfad59', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-fa06d19d', + '.random-classname-be7cf5d7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-133492fb', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-65a91be9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-3a12612d', + '.random-classname-85367be7', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-f7d1f20b', + '.random-classname-434ce675', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-37c86e79', + '.random-classname-2bcc9313', + ], + attributes: [ + { + key: + 'data-random-attr-976014bd', + selector: + '[data-random-attr-976014bd]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-4189c5f7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-5c63551b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-cdcae47f', + '.random-classname-7126a509', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-c61a5823', + '.random-classname-f308ec4d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-c5a5a5d1', + '.random-classname-55f9bc2b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-298ab48f', + '.random-classname-e50cbf99', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-d865e7dd', + '.random-classname-5541a617', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-81e6273b', + '.random-classname-a0414325', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-5d03be29', + '.random-classname-4f176e43', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-14683c27', + '.random-classname-df45e2f1', + ], + attributes: [ + { + key: + 'data-random-attr-15b9964b', + selector: + '[data-random-attr-15b9964b]', + }, + ], + siblings: [ + ':nth-child(11)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-b955d2c4', + '.random-classname-2f96bc96', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-7acd8aec', + ], + attributes: [ + { + key: + 'data-random-attr-ce8daefe', + value: + 'random-attr-value-44280a45', + selector: + '[data-random-attr-ce8daefe=random-attr-value-44280a45]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-ae886749', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-ab729463', + '.random-classname-fdefb28d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-237fb011', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-a499806b', + ], + attributes: [ + { + key: + 'data-random-attr-cf3463d5', + selector: + '[data-random-attr-cf3463d5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-de5e9ccf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-62e5ed73', + '.random-classname-78973e1d', + ], + attributes: [ + { + key: + 'data-random-attr-6ed29657', + selector: + '[data-random-attr-6ed29657]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-9407fb7b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-eedd6165', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-e78dc0df', + ], + attributes: [ + { + key: + 'data-random-attr-4efca069', + selector: + '[data-random-attr-4efca069]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-bbb3ca83', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-a49b0d31', + '.random-classname-f4217a8b', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-f63628ef', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-b50f12f9', + '.random-classname-be8d2b93', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-bc0bd1c1', + '.random-classname-e3b6fd9b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-15b8d4ff', + '.random-classname-8ba86989', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-8323d487', + '.random-classname-58dffa51', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-f658dc70', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-1fb1ef22', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-bd3dca18', + '.random-classname-c6fb330a', + ], + attributes: [ + { + key: + 'data-random-attr-f9ac72cc', + value: + 'random-attr-value-d5da0fbb', + selector: + '[data-random-attr-f9ac72cc=random-attr-value-d5da0fbb]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-9210f91f', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-8e0866c3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-f7213ed', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-1a967771', + ], + attributes: [ + { + key: + 'data-random-attr-2f499ecb', + selector: + '[data-random-attr-2f499ecb]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-ed62f135', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-4ee9ad44', + '.random-classname-5cb7fb16', + ], + attributes: [ + { + key: + 'data-random-attr-81d0d2b8', + value: + 'random-attr-value-9bf6f6b7', + selector: + '[data-random-attr-81d0d2b8=random-attr-value-9bf6f6b7]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-3ba4c6c5', + '.random-classname-c9e2d3f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '22-3', + classNames: [ + '.random-classname-2c6abc9', + '.random-classname-252bcce3', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '22-3', + classNames: [ + '.random-classname-10f434c7', + ], + attributes: [ + { + key: + 'data-random-attr-a8068491', + selector: + '[data-random-attr-a8068491]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '21-2', + classNames: [ + '.random-classname-91f9c8eb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-79d24055', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-f7d32d4f', + '.random-classname-c8497659', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-c8cf45f3', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-b5936d7', + '.random-classname-24f2a121', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-d9645de5', + ], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-cbc924e9', + ], + attributes: [ + { + key: + 'data-random-attr-1a554303', + selector: + '[data-random-attr-1a554303]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-4c26fce7', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-a372030b', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-f27ef96f', + '.random-classname-880eb779', + ], + attributes: [ + { + key: + 'data-random-attr-646ec413', + selector: + '[data-random-attr-646ec413]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-d89e86f7', + '.random-classname-f7800641', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-e24ba61b', + '.random-classname-9dda8505', + ], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-f3a41c26', + '.random-classname-ab146648', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-d9da39fc', + '.random-classname-d857008e', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-f6dec5a2', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-18d6d924', + ], + attributes: [ + { + key: 'data-random-attr-9f0e71f6', + value: + 'random-attr-value-3298c0dd', + selector: + '[data-random-attr-9f0e71f6=random-attr-value-3298c0dd]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-16fafb61', + ], + attributes: [ + { + key: 'data-random-attr-598ef83b', + selector: + '[data-random-attr-598ef83b]', + }, + ], + siblings: [':nth-child(13)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-49516a72', + '.random-classname-77406674', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-d3ba06e8', + '.random-classname-425a185a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-df3a949c', + '.random-classname-3884542e', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-7da08342', + '.random-classname-89e287c4', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-5863996', + ], + attributes: [ + { + key: 'data-random-attr-3c6e1538', + value: + 'random-attr-value-3cf25737', + selector: + '[data-random-attr-3c6e1538=random-attr-value-3cf25737]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '18-11', + classNames: ['.random-classname-4ee5a5b'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-e7fdf049', + ], + attributes: [ + { + key: 'data-random-attr-cf460563', + selector: + '[data-random-attr-cf460563]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-59214b8d', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-dca65911', + '.random-classname-bbdb116b', + ], + attributes: [ + { + key: 'data-random-attr-71991cd5', + selector: + '[data-random-attr-71991cd5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-bd58bdcf', + ], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-fb599e73', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-6893171d', + ], + attributes: [ + { + key: 'data-random-attr-d610d757', + selector: + '[data-random-attr-d610d757]', + }, + ], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-ff545a65', + '.random-classname-ff9421df', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-3fc606ad', + '.random-classname-8c48bd67', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-b6ee3631', + '.random-classname-e7c38b8b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '16-13', + classNames: ['.random-classname-90f53bf5'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: [ + '.random-classname-2c75bf9', + '.random-classname-3f715c93', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: [ + '.random-classname-5b931a3d', + '.random-classname-d1326777', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: [ + '.random-classname-ba214e9b', + '.random-classname-3e74c185', + ], + attributes: [ + { + key: 'data-random-attr-c007b5ff', + selector: '[data-random-attr-c007b5ff]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: [ + '.random-classname-611781a3', + '.random-classname-d31351cd', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: [ + '.random-classname-869fa351', + '.random-classname-861c15ab', + ], + attributes: [ + { + key: 'data-random-attr-20beb15', + selector: '[data-random-attr-20beb15]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: [ + '.random-classname-6ec66d19', + '.random-classname-d3fb2ab3', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: ['.random-classname-d95f0797'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: [ + '.random-classname-6f04e0bb', + '.random-classname-4833b8a5', + ], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: [ + '.random-classname-4edecba9', + '.random-classname-258d57c3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: ['.random-classname-94d12ced'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: ['.random-classname-d063fda7'], + attributes: [ + { + key: 'data-random-attr-4602a071', + selector: '[data-random-attr-4602a071]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '15-12', + classNames: ['.random-classname-b06cafcb'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: [ + '.random-classname-d0a90e39', + '.random-classname-37f08d3', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: [ + '.random-classname-dd9eb7b7', + '.random-classname-40253501', + ], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: ['.random-classname-a9593fc5'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: ['.random-classname-cc3e0e3f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: ['.random-classname-4bc13de3'], + attributes: [ + { + key: 'data-random-attr-aac7980d', + selector: '[data-random-attr-aac7980d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: ['.random-classname-d35f2d91'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: ['.random-classname-e888f955'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: [ + '.random-classname-30ef4e4f', + '.random-classname-cfb73f59', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: [ + '.random-classname-bdfe839d', + '.random-classname-10f977d7', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: ['.random-classname-970834fb'], + attributes: [], + siblings: [':nth-child(11)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '14-2', + classNames: [ + '.random-classname-9de61e34', + '.random-classname-7e74c986', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + { + value: { + name: '13-3', + classNames: ['.random-classname-a34d621a'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '13-3', + classNames: [ + '.random-classname-b057445c', + '.random-classname-459d59ee', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-f4bd0502'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-497ff756', + '.random-classname-9e7d58f8', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-50787fac'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-5eb9d7a0'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-13', + classNames: [ + '.random-classname-8e6dd4d4', + '.random-classname-60add926', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: ['.random-classname-7e6e2b48'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: ['.random-classname-45589bba'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: [ + '.random-classname-ad75cefc', + '.random-classname-b985d8e', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: ['.random-classname-eecf72a2'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: ['.random-classname-ff7b6ef6'], + attributes: [ + { + key: 'data-random-attr-ab7cd198', + value: 'random-attr-value-25202817', + selector: + '[data-random-attr-ab7cd198=random-attr-value-25202817]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: [ + '.random-classname-783bc93b', + '.random-classname-75013525', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: [ + '.random-classname-7319d029', + '.random-classname-c2215043', + ], + attributes: [], + siblings: [':nth-child(5)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: ['.random-classname-5227a55a'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: [ + '.random-classname-4b2c312e', + '.random-classname-ad392890', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: [ + '.random-classname-98033cc4', + '.random-classname-b229b696', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: [ + '.random-classname-4d479a38', + '.random-classname-cb41182a', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-520c40e0'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-29b77d12'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-9d446866', '.random-classname-af4dbc88'], + attributes: [ + { + key: 'data-random-attr-67227efa', + value: 'random-attr-value-9e310211', + selector: '[data-random-attr-67227efa=random-attr-value-9e310211]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-4d20a26b'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-5496decf', '.random-classname-ad43a3d9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-e9b2f01d', '.random-classname-fe131857'], + attributes: [], + siblings: [':nth-child(5)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '9-3', + classNames: ['.random-classname-c32d6d80'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '9-3', + classNames: ['.random-classname-e7a772b2'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '8-5', + classNames: ['.random-classname-7702d8b4'], + attributes: [ + { + key: 'data-random-attr-7171e806', + value: 'random-attr-value-a401fad', + selector: '[data-random-attr-7171e806=random-attr-value-a401fad]', + }, + ], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '8-5', + classNames: ['.random-classname-b7699c8b', '.random-classname-bb274f5'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '8-5', + classNames: ['.random-classname-3763a4f9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '8-5', + classNames: ['.random-classname-aef7733d'], + attributes: [ + { + key: 'data-random-attr-666d2877', + selector: '[data-random-attr-666d2877]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '7-3', + classNames: ['.random-classname-7d8f9f9b', '.random-classname-9f643a85'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '7-3', + classNames: ['.random-classname-eb4ff2a3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '6-3', + classNames: ['.random-classname-12f1eacd'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '6-3', + classNames: ['.random-classname-eaab197c', '.random-classname-668c8c0e'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + { + value: { + name: '5-3', + classNames: ['.random-classname-43934922', '.random-classname-df43a8a4'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '5-3', + classNames: ['.random-classname-a6fbd418'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-93561ccc', '.random-classname-1e227bde'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-3434cdf2', '.random-classname-831f15f4'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-bc195746', '.random-classname-f0b7ee68'], + attributes: [ + { + key: 'data-random-attr-c929ebda', + value: 'random-attr-value-2fd2c971', + selector: '[data-random-attr-c929ebda=random-attr-value-2fd2c971]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-248b6335'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-e57e5739', '.random-classname-628839d3'], + attributes: [ + { + key: 'data-random-attr-e32e297d', + selector: '[data-random-attr-e32e297d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-260a78b7', '.random-classname-a39e01'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-6b21ef3f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-43daaee3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-502f310d', '.random-classname-11f036c7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-4f1bd691'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-7884eaeb', '.random-classname-1be3b255'], + attributes: [], + siblings: [':nth-child(3)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-4ae8d5e4', '.random-classname-adc34cb6'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-4e9f3558'], + attributes: [], + siblings: [':nth-child(10)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-ad7805fb', '.random-classname-c99a4fe5'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-e9b536e9', '.random-classname-a1a52503'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-b44aac2d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-20e673b1', '.random-classname-6be250b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-278e9175'], + attributes: [ + { + key: 'data-random-attr-f54c3b6f', + selector: '[data-random-attr-f54c3b6f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-633f2613'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-a03ed4ac'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-b1c2fca0', '.random-classname-56d26ed2'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-53fec9d4'], + attributes: [ + { + key: 'data-random-attr-7d6b9626', + value: 'random-attr-value-226eb74d', + selector: '[data-random-attr-7d6b9626=random-attr-value-226eb74d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-6b7aa0d1', '.random-classname-41c76f2b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-f092178f', '.random-classname-98811a99'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-ea91b433'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-f8356917', '.random-classname-625ecd61'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + selectors: [ + '::before >', + '.random-classname-7134e52f .random-classname-7ef38bd3', + '.random-classname-277f4b7d', + ':first-child', + '::before .random-classname-7ef38bd3 > .random-classname-277f4b7d :first-child .random-classname-57d7a13f >', + '.random-classname-b1643fc9', + '.random-classname-6c6280e3', + '::before', + '::before :not(.random-classname-7ef38bd3) > .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-57d7a13f > .random-classname-6c6280e3 .random-classname-5e569891', + '.random-classname-277f4b7d :first-child .random-classname-63271ac5 .random-classname-6c6280e3 .random-classname-d75c28c7 .random-classname-1406fceb', + '.random-classname-1406fceb ::slotted', + '.random-classname-fc9c0a59 .random-classname-91c27e9d', + '.random-classname-338e2ad7', + ':last-child', + '::slotted', + ':not(.random-classname-d75c28c7) ::slotted :not(.random-classname-fc9c0a59) .random-classname-91c27e9d .random-classname-338e2ad7 :not(.random-classname-b1f0b1e5)', + '::slotted >', + '.random-classname-196d4e2d', + '.random-classname-7d68f0e7', + '.random-classname-60f9370b', + '.random-classname-60f9370b .random-classname-e3057375 >', + '.random-classname-ee8f1a41', + '.random-classname-c66fda1b', + '.random-classname-9c70d905', + '.random-classname-e3057375 .random-classname-db8b4b79 .random-classname-ee8f1a41 :not(.random-classname-9c70d905) .random-classname-7e5397f', + '.random-classname-9eb77d23', + '[data-random-attr-8412594d]', + ':last-child > .random-classname-b1f0b1e5 .random-classname-c710b8e9 .random-classname-196d4e2d .random-classname-60f9370b .random-classname-e3057375 [data-random-attr-a32a41bd] .random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f [data-random-attr-8412594d] .random-classname-f25762d1', + '::slotted [data-random-attr-8d8e498f] >', + '.random-classname-9eb77d23 > .random-classname-f25762d1 .random-classname-d66be295 > :first-child', + '.random-classname-f6b7db17', + ':not(.random-classname-ccf61c99) .random-classname-f6b7db17 .random-classname-37740f61', + '.random-classname-f6b7db17 [data-random-attr-acad2c3b] > .random-classname-b6db9d9f', + '.random-classname-7fbf1343', + '.random-classname-b6db9d9f ::before .random-classname-e63fb127', + '.random-classname-c5ee35af >', + ':first-child :not(::before) >', + ':first-child > .random-classname-de8777fd > ::before >', + '.random-classname-92711bf >', + '.random-classname-d8354b37 ::before :not(::before) .random-classname-3564b963', + '.random-classname-3564b963 :last-child', + ':not(.random-classname-2c161f8d) .random-classname-172870d5', + '.random-classname-eb2731cf', + '[data-random-attr-185e6ed9]', + '.random-classname-d1adcb57', + '.random-classname-7426a9a1', + '.random-classname-39d0456b .random-classname-eb2731cf > .random-classname-7426a9a1 .random-classname-2e08ae65', + '.random-classname-3904daad', + '.random-classname-af2b167', + '.random-classname-2c161f8d .random-classname-39d0456b > :first-child .random-classname-7426a9a1 [data-random-attr-8dfe3d69] .random-classname-260e8ff5', + '.random-classname-2cf95df :not(.random-classname-2ec71093) >', + '.random-classname-2e08ae65 :not(.random-classname-87d6ee3d)', + '.random-classname-4c844ec1', + '[data-random-attr-e82d829b]', + '[data-random-attr-8dfe3d69] .random-classname-6bdd29ff >', + '.random-classname-d1adcb57 > .random-classname-2cf95df .random-classname-79c25cd', + '.random-classname-f6b7db17 .random-classname-37740f61 .random-classname-7b6f9025 .random-classname-7fbf1343 > .random-classname-e63fb127 .random-classname-6c8e1ff1 .random-classname-4247db9 ::before .random-classname-b4068e5b > .random-classname-92711bf .random-classname-3564b963 .random-classname-2c161f8d .random-classname-39d0456b .random-classname-eb2731cf .random-classname-d1adcb57 .random-classname-2e08ae65 :not(.random-classname-100549ab)', + '.random-classname-58445a0f', + ':first-child .random-classname-7426a9a1 [data-random-attr-8dfe3d69] .random-classname-29150119 >', + '::before .random-classname-3564b963 .random-classname-2c161f8d .random-classname-172870d5 [data-random-attr-185e6ed9] > .random-classname-7426a9a1 .random-classname-2cf95df ::before', + '.random-classname-7426a9a1 > .random-classname-ecaffb97', + '::before ::before >', + '.random-classname-6b5a0bc3', + '.random-classname-99a400ed', + '.random-classname-3cfe3cb', + '.random-classname-eb2731cf ::slotted > .random-classname-ecaffb97 > .random-classname-92d27e35', + '.random-classname-4821a239', + '.random-classname-9748bcd3', + ':first-child .random-classname-d1adcb57 .random-classname-4821a239 .random-classname-8d58a47d', + '.random-classname-f24b6db', + '.random-classname-d01bc8c9', + ':nth-child(3)', + '.random-classname-9748bcd3 > ::after >', + '::before > .random-classname-39d0456b :first-child :not(.random-classname-d1adcb57) .random-classname-4821a239 .random-classname-a446ca4e >', + '.random-classname-6dcfbeb0', + '.random-classname-39d0456b .random-classname-eb2731cf .random-classname-d1adcb57 > .random-classname-4821a239 .random-classname-f47c4b62', + '.random-classname-7426a9a1 .random-classname-9748bcd3 ::placeholder >', + '.random-classname-39d0456b :first-child .random-classname-7426a9a1 .random-classname-4821a239 .random-classname-8290a234', + '.random-classname-9a75ed86', + '[data-random-attr-9fd61ea8=random-attr-value-a8ed71e7]', + '::before .random-classname-906d480b', + '::before > ::slotted ::before .random-classname-85140e6f', + '.random-classname-78059479', + '[data-random-attr-2b528341] >', + '.random-classname-92711bf .random-classname-3564b963 ::before .random-classname-39d0456b .random-classname-eb2731cf .random-classname-7426a9a1 [data-random-attr-2b528341] .random-classname-152c2b1b', + '.random-classname-d6a61a7f', + '.random-classname-e1454b09', + '.random-classname-1dfdee23', + '.random-classname-922ef24d', + '[data-random-attr-2b528341] :first-child', + ':last-child .random-classname-39d0456b .random-classname-eb2731cf .random-classname-7426a9a1 .random-classname-1d4c9abd .random-classname-36ce599 >', + '[data-random-attr-cdc3f861]', + '.random-classname-b4068e5b > .random-classname-92711bf .random-classname-3564b963 :last-child .random-classname-39d0456b :first-child .random-classname-c3d91c17 ::slotted', + '.random-classname-c0056429', + '.random-classname-92d60443', + '[data-random-attr-13c90d6d]', + '[data-random-attr-787c48f1]', + ':not(.random-classname-9c70d905) > .random-classname-db14c209 ::slotted ::slotted [data-random-attr-8d8e498f] ::before .random-classname-f6b7db17 :not([data-random-attr-acad2c3b]) .random-classname-b6db9d9f ::before .random-classname-e63fb127 .random-classname-6c8e1ff1 > .random-classname-c5ee35af ::before ::before ::before .random-classname-3564b963 :last-child .random-classname-172870d5 ::before [data-random-attr-cdc3f861] ::slotted ::slotted', + ':first-child .random-classname-c5256ddd > :not([data-random-attr-daf18925]) ::before', + '.random-classname-2683df5b', + '::slotted .random-classname-218b5045', + '.random-classname-bded0d49', + '.random-classname-508c2a63', + '.random-classname-c5256ddd .random-classname-9729fd3b .random-classname-f5791611', + '.random-classname-172870d5 [data-random-attr-185e6ed9] [data-random-attr-cdc3f861] > .random-classname-9729fd3b .random-classname-ff3552cf', + '[data-random-attr-cdc3f861] .random-classname-877cc41d', + '.random-classname-c3d91c17 .random-classname-10800c57 .random-classname-ffddb180', + '.random-classname-92711bf > .random-classname-3564b963 > :last-child .random-classname-39d0456b :first-child .random-classname-c3d91c17 :nth-child(13) [data-random-attr-533b0c06=random-attr-value-29cef3ad]', + '.random-classname-f4a8d08b', + '.random-classname-777deef', + '.random-classname-777deef .random-classname-d5ff4193', + '.random-classname-d58b473d', + '.random-classname-5e341c77', + '.random-classname-1cf9b7c1', + '.random-classname-ca400aff', + '.random-classname-777deef ::slotted', + '.random-classname-15cabecd', + '.random-classname-ae91ca87', + ':nth-child(5)', + '.random-classname-1bac300e', + '[data-random-attr-eb7b2d22=random-attr-value-adfdca19]', + '.random-classname-9fe65a5d', + '[data-random-attr-be333c97]', + '.random-classname-9409e5bb', + '.random-classname-9e5005a5', + '.random-classname-9b432f1f', + '.random-classname-15cabecd .random-classname-1bac300e > .random-classname-9832fcc3', + '::before > .random-classname-3564b963 > .random-classname-2c161f8d .random-classname-172870d5 ::before :nth-child(5) .random-classname-1bac300e > .random-classname-8fd8dd71', + '.random-classname-7808b735', + '.random-classname-7d80272f', + '[data-random-attr-fa46eb39]', + '.random-classname-bf856cb7', + '.random-classname-15cabecd .random-classname-bf856cb7 .random-classname-5c2407db', + '.random-classname-172870d5 ::before :nth-child(5) > .random-classname-9a55fd7d > .random-classname-c7fb633f', + '.random-classname-2b751c9', + '.random-classname-15cabecd > ::before > [data-random-attr-589c050d]', + '.random-classname-7e3f274e', + '.random-classname-7b13f862', + '.random-classname-d83259e4', + '[data-random-attr-3ebb70b6=random-attr-value-1ca2309d]', + '.random-classname-bbe98721', + '.random-classname-c74239fb', + '.random-classname-a855db4b .random-classname-4247db9 .random-classname-de8777fd .random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 :last-child .random-classname-39d0456b .random-classname-eb2731cf .random-classname-15cabecd > .random-classname-7b13f862 > .random-classname-8470a75f', + ':nth-child(5) :last-child :not(.random-classname-579ccae9)', + '.random-classname-c8b5d903', + '.random-classname-df01802d', + ':nth-child(5) .random-classname-d83259e4 .random-classname-1d1fe575 >', + '.random-classname-ac6caf6f', + '::placeholder', + '.random-classname-5877a1f8', + '.random-classname-d88702be', + '[data-random-attr-185e6ed9] .random-classname-15cabecd ::placeholder', + '.random-classname-d35b4dd4', + '[data-random-attr-b0eeba26=random-attr-value-846f8b4d]', + '::before .random-classname-15cabecd ::placeholder ::before', + '.random-classname-d768a32b', + '.random-classname-3564b963 ::before > .random-classname-172870d5 [data-random-attr-185e6ed9] .random-classname-15cabecd .random-classname-8596833', + '.random-classname-39d0456b > .random-classname-eb2731cf .random-classname-15cabecd .random-classname-7ac7ae99 .random-classname-c177e161', + '.random-classname-5c178225', + '.random-classname-50b25f9f', + '.random-classname-1d70f543', + '.random-classname-faae266d', + '.random-classname-cace71f1', + '.random-classname-ee43fd4b', + '.random-classname-b4068e5b .random-classname-92711bf > .random-classname-3564b963 ::before .random-classname-39d0456b .random-classname-eb2731cf > .random-classname-15cabecd .random-classname-50b25f9f > .random-classname-c6f0fb9', + '.random-classname-c22b6681 >', + ':not(.random-classname-3564b963) > :last-child .random-classname-39d0456b :not(:first-child) > .random-classname-ae91ca87 .random-classname-5c178225 .random-classname-1205305b', + '::before .random-classname-3564b963 :last-child .random-classname-172870d5 [data-random-attr-185e6ed9] ::before >', + '.random-classname-5379b63', + '.random-classname-3564b963 > :last-child .random-classname-172870d5 > ::before ::before .random-classname-9785518d ::slotted >', + '.random-classname-b27de2d5', + '.random-classname-1b8773cf', + '[data-random-attr-185e6ed9] ::before .random-classname-9785518d .random-classname-bc109d1d', + ':last-child :not(.random-classname-39d0456b) .random-classname-eb2731cf .random-classname-9c8ed3bf > .random-classname-5379b63 ::slotted', + '.random-classname-9785518d .random-classname-f04857df', + '.random-classname-3564b963 .random-classname-2c161f8d .random-classname-39d0456b :first-child .random-classname-9c8ed3bf .random-classname-5379b63 .random-classname-286e4f69 >', + '.random-classname-54bd0cad', + '.random-classname-9c8ed3bf .random-classname-53429c31', + '.random-classname-bfa881f9', + '.random-classname-29bb7293', + '.random-classname-7663a03d', + '.random-classname-80d320c1', + '.random-classname-53429c31 .random-classname-30599889', + '::before > ::slotted ::slotted', + ':first-child .random-classname-9c8ed3bf :first-child .random-classname-d656b115', + '::before ::before > .random-classname-3564b963 .random-classname-2c161f8d .random-classname-172870d5 [data-random-attr-185e6ed9] ::before > .random-classname-c022e18b .random-classname-796040b3 >', + '.random-classname-6b5755e1', + '.random-classname-870cb6bb', + '[data-random-attr-c647fea5]', + '.random-classname-198471a9', + '.random-classname-c48fedc3', + '.random-classname-1c34f3a7', + '.random-classname-3b5d0671', + '[data-random-attr-75c205cb]', + '.random-classname-510bc82f', + '.random-classname-9c8ed3bf .random-classname-6b5755e1 .random-classname-797f1ed3', + '::before :last-child :last-child >', + '.random-classname-2c161f8d .random-classname-39d0456b :first-child .random-classname-9c8ed3bf > [data-random-attr-c647fea5] [data-random-attr-ac779e0d]', + '::placeholder >', + '.random-classname-4ee688b0', + '.random-classname-ed1fa562', + '.random-classname-3262cb0c', + '::before > .random-classname-bed22900 >', + ':not(.random-classname-8a20841e) .random-classname-c4018c34', + '::before .random-classname-3564b963 :last-child .random-classname-172870d5 ::before ::before >', + '.random-classname-6609506f', + '.random-classname-8da62679', + '[data-random-attr-c94b0b13]', + '.random-classname-e63fb127 > .random-classname-6c8e1ff1 .random-classname-c5ee35af .random-classname-d8354b37 ::before ::before > .random-classname-3564b963 > :last-child .random-classname-172870d5 [data-random-attr-185e6ed9] ::before > .random-classname-6609506f ::slotted', + '.random-classname-17055541', + '.random-classname-e1b0cd1b', + '[data-random-attr-19a54405]', + '.random-classname-edf3dc7f', + '[data-random-attr-a5525d09]', + '.random-classname-e63fb127 ::before .random-classname-c5ee35af .random-classname-d8354b37 > .random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 :not(::before) .random-classname-39d0456b :first-child .random-classname-eb616a0b [data-random-attr-c94b0b13] > .random-classname-2d16d023', + '.random-classname-663fcc07', + '.random-classname-f7485dd1', + '.random-classname-eb616a0b .random-classname-b8670d95 >', + '.random-classname-dfdf1fdd >', + '.random-classname-8ee17b25', + '.random-classname-92711bf .random-classname-3564b963 .random-classname-2c161f8d .random-classname-39d0456b > .random-classname-eb2731cf .random-classname-eb616a0b :not(.random-classname-904b7629)', + '.random-classname-2f8fe643', + ':first-child :not(.random-classname-eb616a0b) .random-classname-904b7629 .random-classname-c7b73f6d', + '[data-random-attr-185e6ed9] > :not(::before) .random-classname-904b7629 :nth-child(4)', + '.random-classname-eb2731cf .random-classname-eb616a0b ::before >', + '.random-classname-ea0e8e37', + '.random-classname-130fcf81', + '.random-classname-58244245', + '.random-classname-2c161f8d > .random-classname-172870d5 [data-random-attr-185e6ed9] ::before .random-classname-3cea58b9 :not(.random-classname-8972ea8d) >', + '.random-classname-4a4fac47', + '.random-classname-85a6811', + '.random-classname-c31e9bd5', + '.random-classname-501d94cf', + '.random-classname-f299c9d9', + '.random-classname-59d86573', + ':nth-child(13)', + '.random-classname-98ae358c >', + '.random-classname-a7c5869 >', + '.random-classname-172870d5 ::before .random-classname-4811c531', + '.random-classname-7eb120ef', + '.random-classname-7eb120ef .random-classname-3f5ccaf9 >', + '.random-classname-7eb120ef .random-classname-e959e77', + '.random-classname-172870d5 ::before .random-classname-4811c531 .random-classname-7eb120ef .random-classname-4f4759b', + ':not(.random-classname-3564b963) :last-child .random-classname-39d0456b :first-child ::before [data-random-attr-18d1ccff] >', + '.random-classname-c5ee35af .random-classname-de8777fd ::before ::before .random-classname-3564b963 ::before .random-classname-172870d5 [data-random-attr-185e6ed9] .random-classname-c7a0f28b [data-random-attr-18d1ccff] ::before', + '.random-classname-c7a0f28b ::before .random-classname-a15bcc87', + ':not(::before) .random-classname-4811c531 [data-random-attr-4aedbd0f]', + '.random-classname-7ca06a15 [data-random-attr-8450f1b3]', + '[data-random-attr-f9213ee1]', + '.random-classname-c8e5f11f', + '.random-classname-172870d5 ::before > ::before [data-random-attr-4aedbd0f] ::before', + '.random-classname-ff3d7d39', + '.random-classname-63604fd3', + '.random-classname-a8478401', + '.random-classname-26c116cb .random-classname-ff3d7d39 .random-classname-1bd1f192', + '.random-classname-da91a94', + '.random-classname-26c116cb .random-classname-2ddfe4e6', + '.random-classname-c2b0ed08', + '.random-classname-2ddfe4e6 > .random-classname-b882254f >', + '.random-classname-1ceb2e59', + '.random-classname-5b1bdf3', + '.random-classname-4c11e29d', + '.random-classname-99e72ed7', + '.random-classname-85cb5921', + '.random-classname-24cddbfb', + '::before > .random-classname-26c116cb :not(.random-classname-99e72ed7) .random-classname-11b5695f', + '.random-classname-ad25b22d', + '.random-classname-2612f4e7', + '.random-classname-8d5ed9b1', + '.random-classname-36e17b0b', + '.random-classname-eb2731cf ::slotted .random-classname-ad25b22d > .random-classname-c1e9f16f', + '.random-classname-172870d5 > ::before .random-classname-26c116cb .random-classname-26cc6f79', + '.random-classname-9dcd3c13', + '.random-classname-e8ba5bd', + '.random-classname-7f791e1b', + '.random-classname-f7febd05', + '[data-random-attr-5680bd7f]', + '.random-classname-2c161f8d .random-classname-172870d5 ::before > ::slotted .random-classname-26cc6f79 .random-classname-dce94123 >', + '.random-classname-555cbd4d', + '.random-classname-4968cd07', + '[data-random-attr-e1b606d1]', + '.random-classname-5502c695', + '.random-classname-2c161f8d .random-classname-39d0456b > .random-classname-555cbd4d .random-classname-f7a5c52b .random-classname-391acd8f', + '.random-classname-623aca33', + '.random-classname-10f1f8dd', + '[data-random-attr-b7d4df17]', + '.random-classname-39d0456b .random-classname-555cbd4d .random-classname-f7a5c52b .random-classname-10bb361 >', + '.random-classname-20b8703b .random-classname-34f7425', + '.random-classname-d932d743', + ':not(.random-classname-555cbd4d) .random-classname-5502c695 .random-classname-20b8703b ::before >', + '.random-classname-555cbd4d .random-classname-f7a5c52b :last-child', + '.random-classname-5502c695 :not(.random-classname-d70cdbfd) .random-classname-58e6bb45', + '.random-classname-d0695bf', + '.random-classname-172870d5 :nth-child(7) .random-classname-4967c366', + '.random-classname-4967c366 ::slotted', + '.random-classname-5e2c1673', + '.random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 > ::before .random-classname-39d0456b .random-classname-d0695bf .random-classname-4967c366 .random-classname-ef58cf88 .random-classname-bd224da1', + '.random-classname-ba6e6169', + '.random-classname-c3283383', + ':nth-child(7) > .random-classname-c3283383 .random-classname-99053ead', + '.random-classname-6f24b567 >', + ':last-child >', + '::before .random-classname-39d0456b .random-classname-d0695bf .random-classname-ba6e6169 .random-classname-99053ead .random-classname-95f513f9', + ':nth-child(7) .random-classname-f180523d', + '.random-classname-39d0456b .random-classname-d0695bf > .random-classname-f180523d :not(.random-classname-b33ec69b)', + '.random-classname-b33ec69b > [data-random-attr-2900adff]', + '.random-classname-9012aa89', + '.random-classname-2066cd87', + '.random-classname-39d0456b ::placeholder', + ':not(.random-classname-3564b963) :not(::before) > .random-classname-172870d5 > ::placeholder .random-classname-c1c68876', + '.random-classname-3564b963 ::before > .random-classname-39d0456b .random-classname-29ae1970 > .random-classname-5579cba4 .random-classname-3aa718 >', + '.random-classname-3aa718 .random-classname-4b9d521f', + '.random-classname-7b7683a9', + '.random-classname-b5c864ed', + '.random-classname-abb7f5a7', + '.random-classname-d8354b37 .random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 ::before .random-classname-39d0456b .random-classname-29ae1970 .random-classname-5579cba4 .random-classname-7b7683a9 :first-child', + '.random-classname-720ec639', + '.random-classname-5dc580d3', + '.random-classname-2c161f8d .random-classname-39d0456b .random-classname-29ae1970 .random-classname-5579cba4 .random-classname-4dd0afb7 >', + '.random-classname-41a577c5', + '.random-classname-faaf063f', + '[data-random-attr-b1e1ecc9]', + '.random-classname-449ad00d', + '.random-classname-e2202dc7', + '.random-classname-389e591', + '.random-classname-389e591 > .random-classname-7d38f759', + '[data-random-attr-b1e1ecc9] > .random-classname-e2202dc7 > ::slotted .random-classname-99676fd7', + '.random-classname-c6558ee5', + '.random-classname-cc9ce5e9', + '.random-classname-f77bac03', + '[data-random-attr-ff6dcb2d]', + '.random-classname-c6558ee5 [data-random-attr-ff6dcb2d] [data-random-attr-56658c0b] >', + '.random-classname-172870d5 .random-classname-faaf063f ::slotted > .random-classname-1ea78784 >', + '.random-classname-3564b963 :last-child > .random-classname-39d0456b > [data-random-attr-b1e1ecc9] .random-classname-c6558ee5 .random-classname-e85b9d02 > :not(.random-classname-397c0f56)', + '.random-classname-1ea78784 :nth-child(10)', + '.random-classname-2456f1b', + ':not(::before) ::before .random-classname-3564b963 .random-classname-2c161f8d > .random-classname-172870d5 > :not(::slotted) ::placeholder > ::placeholder', + '::placeholder .random-classname-aeb62cd4 [data-random-attr-579033ba=random-attr-value-3087afd1] >', + ':last-child .random-classname-39d0456b [data-random-attr-b1e1ecc9] ::placeholder .random-classname-a427f95 > .random-classname-78f17b33', + '.random-classname-6ceb9c61', + '.random-classname-8218829', + '.random-classname-172870d5 [data-random-attr-b1e1ecc9] :nth-child(11) ::slotted', + '.random-classname-3564b963 .random-classname-2c161f8d .random-classname-39d0456b .random-classname-faaf063f ::placeholder [data-random-attr-81cecf1] > .random-classname-b9525aaf >', + '[data-random-attr-bb0834fd]', + '::before .random-classname-39d0456b .random-classname-51e1037', + '::before .random-classname-3564b963 ::before .random-classname-172870d5 [data-random-attr-f304a181] ::slotted >', + '::before .random-classname-b4068e5b > .random-classname-92711bf .random-classname-3564b963 :last-child .random-classname-39d0456b .random-classname-51e1037 > .random-classname-4aa1235b ::before', + '::before [data-random-attr-fccbba11]', + '.random-classname-3a4c0dd5', + '.random-classname-4215d6cf', + '.random-classname-172870d5 > [data-random-attr-f304a181] ::slotted .random-classname-4215d6cf .random-classname-57355bd9', + '.random-classname-51e1037 > ::slotted', + '.random-classname-3564b963 > .random-classname-2c161f8d .random-classname-172870d5 [data-random-attr-f304a181] :last-child .random-classname-a9fb7adf', + '.random-classname-f2878b65 .random-classname-781a5528', + '.random-classname-3564b963 .random-classname-2c161f8d .random-classname-172870d5 > :not([data-random-attr-f304a181]) ::slotted ::placeholder > ::before', + ':last-child :nth-child(1) .random-classname-d0080593', + '.random-classname-2c161f8d .random-classname-172870d5 > [data-random-attr-f304a181] ::slotted', + '.random-classname-6c8e1ff1 :first-child ::before > .random-classname-b4068e5b .random-classname-92711bf > .random-classname-3564b963 .random-classname-2c161f8d .random-classname-39d0456b .random-classname-51e1037 .random-classname-ebc4ab3d ::before', + '::before .random-classname-39d0456b .random-classname-51e1037 > .random-classname-ebc4ab3d .random-classname-6335ce87', + '::slotted > .random-classname-6a960451 .random-classname-c69e1eab', + '.random-classname-ebc4ab3d .random-classname-4b1fdc15', + '.random-classname-3564b963 > .random-classname-2c161f8d .random-classname-172870d5 > [data-random-attr-f304a181] ::slotted ::slotted ::before', + '.random-classname-ba2d29bb', + '.random-classname-5807e9a5', + '.random-classname-2b98b31f', + '.random-classname-3564b963 .random-classname-2c161f8d .random-classname-39d0456b .random-classname-ba2d29bb .random-classname-2b98b31f > .random-classname-e6bec0c3', + '.random-classname-d82b7ded', + '.random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f .random-classname-9eb77d23 .random-classname-f25762d1 .random-classname-d66be295 > ::before .random-classname-f6b7db17 .random-classname-37740f61 :last-child .random-classname-7fbf1343 .random-classname-e63fb127 > .random-classname-a855db4b :first-child .random-classname-d8354b37 .random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 :last-child > .random-classname-39d0456b .random-classname-ba2d29bb [data-random-attr-c8cb38cb]', + '.random-classname-4056f44 >', + '.random-classname-3564b963 .random-classname-2c161f8d > :not(.random-classname-39d0456b) .random-classname-ba2d29bb .random-classname-741f76a7 .random-classname-ecd15ec2 .random-classname-d497b4b8 >', + ':last-child > .random-classname-172870d5 .random-classname-5807e9a5 :nth-child(9) .random-classname-ecd15ec2 :first-child', + '.random-classname-cec40f7e', + '.random-classname-f1dfab60', + '[data-random-attr-728ecb92=random-attr-value-d40d75c9]', + '.random-classname-3564b963 > :last-child .random-classname-172870d5 .random-classname-5807e9a5 > .random-classname-34418171 > .random-classname-a8e2690d', + '.random-classname-e7faac62', + '.random-classname-52f2de4', + '::after', + ':nth-child(11) > .random-classname-45f24a0c', + '.random-classname-cd7f5b1e', + '.random-classname-55b21800', + ':last-child .random-classname-172870d5 .random-classname-5807e9a5 .random-classname-50521e86 >', + '.random-classname-ba2d29bb .random-classname-4080eb34 > .random-classname-5b4bb15c >', + '::placeholder ::placeholder', + ':last-child .random-classname-39d0456b .random-classname-a4e1b5f8', + '.random-classname-7a15c01b', + '.random-classname-3564b963 .random-classname-2c161f8d .random-classname-39d0456b .random-classname-a4e1b5f8 .random-classname-7a15c01b [data-random-attr-693f809]', + '.random-classname-76d9ef4d', + '.random-classname-5306cf07', + '[data-random-attr-88790f8f]', + '::before .random-classname-8a83aadd', + '.random-classname-44fb6117', + '[data-random-attr-762f8561]', + ':nth-child(7)', + ':last-child .random-classname-172870d5 :nth-child(2) > ::before .random-classname-8a83aadd ::after', + '.random-classname-898cca5a', + ':last-child > .random-classname-172870d5 :nth-child(2) ::before > .random-classname-6cd9262e', + ':last-child > .random-classname-39d0456b .random-classname-a4e1b5f8 .random-classname-7a15c01b > [data-random-attr-ed297542=random-attr-value-3fb433b9] :last-child >', + ':nth-child(2) ::slotted >', + '.random-classname-f557ad45', + '[data-random-attr-da8e57bf]', + '::before ::slotted', + '.random-classname-539a6311', + '.random-classname-268dab6b', + '.random-classname-172870d5 .random-classname-268dab6b ::slotted >', + '.random-classname-539a6311 [data-random-attr-f8d924d9] > .random-classname-99c8011d', + '::slotted ::slotted', + '.random-classname-91268465', + '.random-classname-fa69dbdf', + '.random-classname-91268465 :not(.random-classname-c9bc1583)', + '.random-classname-3564b963 .random-classname-2c161f8d .random-classname-fa69dbdf > .random-classname-c9bc1583 .random-classname-85dd70ad >', + '.random-classname-a4d74031', + '.random-classname-e633258b', + '.random-classname-85dd70ad .random-classname-a4d74031 .random-classname-53f9e5f5', + '.random-classname-75d43693', + '.random-classname-92711bf .random-classname-3564b963 .random-classname-2c161f8d > .random-classname-7d1a5f9 [data-random-attr-1220c4c1]', + '.random-classname-351de720', + '.random-classname-861d3d52', + '.random-classname-3564b963 :last-child > :not(.random-classname-7d1a5f9) .random-classname-792d043d .random-classname-351de720 .random-classname-1a971c54 >', + '.random-classname-2c161f8d .random-classname-75d43693 > :nth-child(3) .random-classname-861d3d52 :nth-child(6) ::before', + '.random-classname-3564b963 .random-classname-aec8afab', + '.random-classname-cbfb200f', + '.random-classname-8be5b719', + '.random-classname-7c3b04b3 >', + '.random-classname-3564b963 ::before .random-classname-8be5b719 :not(.random-classname-7c3b04b3) .random-classname-9c1e975d', + '.random-classname-c5ee35af > ::before .random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 .random-classname-aec8afab > .random-classname-cbfb200f .random-classname-7c3b04b3 > .random-classname-9c1e975d > .random-classname-cd3f8197', + '.random-classname-82d6f9e1 ::before', + '.random-classname-3564b963 :not(.random-classname-78d8141f)', + '.random-classname-e63fb127 .random-classname-6c8e1ff1 .random-classname-c5ee35af > ::before ::before > ::before .random-classname-3564b963 .random-classname-78d8141f ::slotted', + '.random-classname-78d8141f .random-classname-e4f895a9 [data-random-attr-b955aa71]', + '.random-classname-524af7a7 ::before', + '.random-classname-c41be2d3', + '.random-classname-3564b963 .random-classname-78d8141f ::slotted ::slotted [data-random-attr-6de24c2f] ::before .random-classname-2c5c9cdb >', + '.random-classname-d5ba69c5', + '::slotted [data-random-attr-8d8e498f] .random-classname-ccf61c99 .random-classname-f6b7db17 [data-random-attr-acad2c3b] :last-child ::before .random-classname-e63fb127 > .random-classname-a855db4b :first-child ::before ::before ::before .random-classname-3564b963 ::slotted .random-classname-7afc97e3', + '.random-classname-dd4e020d', + '.random-classname-6642fc7', + '.random-classname-4247db9 ::before ::before ::before :not(.random-classname-3564b963) ::slotted .random-classname-7afc97e3 .random-classname-6642fc7 .random-classname-d5273791', + '.random-classname-d5273791 .random-classname-44e3f3eb', + '.random-classname-d5273791 ::before > .random-classname-64808959', + '.random-classname-b4068e5b .random-classname-92711bf > .random-classname-3564b963 .random-classname-dbfed0f3', + '::before .random-classname-3564b963 .random-classname-9fc76d9d ::before >', + ':first-child .random-classname-de8777fd .random-classname-b4068e5b .random-classname-92711bf > .random-classname-3564b963 .random-classname-dbfed0f3 :not([data-random-attr-efbd4efb]) :not(.random-classname-6f1a8c5f)', + '.random-classname-3d938e03', + ':not(.random-classname-b3ba54b1)', + '.random-classname-da980275', + '.random-classname-eb974a79', + '.random-classname-140eb0bd', + '.random-classname-70dec1f7', + '::before .random-classname-90e32805', + '.random-classname-f6ea111b .random-classname-4d789423', + '.random-classname-f6ea111b > .random-classname-cc1c8109 ::before', + ':not(.random-classname-d8354b37) .random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 .random-classname-e51f782b', + '.random-classname-268e308f :nth-child(7)', + '.random-classname-bab68640 >', + ':not(.random-classname-e63fb127) .random-classname-a855db4b .random-classname-c5ee35af .random-classname-d8354b37 .random-classname-b4068e5b > .random-classname-92711bf > .random-classname-3564b963 .random-classname-e51f782b .random-classname-268e308f .random-classname-c9eadd33 ::placeholder .random-classname-d3bf1d74', + '::before ::before .random-classname-3564b963 .random-classname-feadf195 > ::before ::after > .random-classname-9e28ff5e [data-random-attr-9c704ac6=random-attr-value-3943a36d] .random-classname-ee8a3827', + '.random-classname-92711bf .random-classname-3564b963 .random-classname-1ce670b5', + '.random-classname-d103fb53', + '.random-classname-9bbf7cb9 .random-classname-206ae6fd', + '.random-classname-d103fb53 .random-classname-5b3d9237 [data-random-attr-f2c7c55b]', + '.random-classname-b1062645', + '.random-classname-ec3838bf', + '.random-classname-ff9a4349', + '.random-classname-bb4cd063', + '.random-classname-92711bf > .random-classname-3564b963 ::before', + '.random-classname-de8777fd ::before ::before .random-classname-3564b963 :last-child ::before', + ':last-child .random-classname-cbbb3c6b ::slotted', + '.random-classname-240fda1d', + '.random-classname-7fbf1343 .random-classname-e63fb127 .random-classname-6c8e1ff1 > .random-classname-c5ee35af .random-classname-d8354b37 > .random-classname-b4068e5b > .random-classname-92711bf .random-classname-3564b963 :last-child .random-classname-cbbb3c6b ::slotted > .random-classname-240fda1d .random-classname-19819257', + '.random-classname-c41c3cdf', + '.random-classname-3d9c7c69', + '[data-random-attr-d64c0683]', + '::before ::before [data-random-attr-d64c0683] [data-random-attr-23366931]', + '.random-classname-7dc1368b', + '.random-classname-26df1ef5', + '.random-classname-6c8e1ff1 .random-classname-4247db9 .random-classname-d8354b37 ::before ::before .random-classname-c41c3cdf .random-classname-54d43867 > .random-classname-26df1ef5 > .random-classname-4315eef9', + '.random-classname-92711bf [data-random-attr-d64c0683] [data-random-attr-23366931] .random-classname-7dc1368b .random-classname-18246793 ::slotted', + '.random-classname-e63fb127 .random-classname-a855db4b .random-classname-c5ee35af .random-classname-d8354b37 ::before > ::before .random-classname-c41c3cdf [data-random-attr-23366931] :not(.random-classname-26df1ef5) > .random-classname-4315eef9 :not(.random-classname-c6ee2dc1) .random-classname-bd2550ff', + '[data-random-attr-1dc95651]', + '.random-classname-74f740ab', + '.random-classname-9a32410f', + '.random-classname-b6268019 .random-classname-b5ac297 >', + '::before :first-child .random-classname-9a32410f .random-classname-a13bb5b3 .random-classname-b5ac297 .random-classname-4756cbbb >', + '.random-classname-b6268019 .random-classname-b5ac297 .random-classname-8630e2e1 .random-classname-eebbdba5', + '::before :first-child > .random-classname-9a32410f .random-classname-b6268019 > .random-classname-b5ac297 .random-classname-4756cbbb :not(::slotted) :not(.random-classname-cb1ca2c3)', + '.random-classname-b1c89dda', + '::before .random-classname-b1c89dda .random-classname-aa1471ae', + '.random-classname-4c5fb8c2 > ::after', + '::after :not(::placeholder)', + '.random-classname-5a00ee94', + '[data-random-attr-840ad8e6=random-attr-value-71dd9b0d]', + '.random-classname-2c2c30c7', + '.random-classname-de8be091', + '[data-random-attr-9d1384eb]', + '.random-classname-2d5f5c55', + '[data-random-attr-560aa94f]', + '.random-classname-b7a5259', + '.random-classname-8a3efd21', + '.random-classname-9ca879e5', + ':not([data-random-attr-560aa94f]) > .random-classname-d32081f3 ::slotted :not(.random-classname-9ca879e5) ::before', + '.random-classname-35e57f03', + '.random-classname-9ca879e5 :not(::before) ::before .random-classname-6afcf8e7', + '.random-classname-92711bf .random-classname-6acf3b75 >', + '::before .random-classname-c814756f ::before', + '.random-classname-bce382f7', + '.random-classname-3607b0be', + '.random-classname-6d9de0d2', + '.random-classname-6d450bd4', + ':nth-child(6)', + '.random-classname-1754aad1', + '.random-classname-4247db9 .random-classname-d8354b37 .random-classname-b4068e5b .random-classname-92711bf .random-classname-6acf3b75 .random-classname-604d9379 :not(.random-classname-bce382f7) .random-classname-3607b0be .random-classname-6d9de0d2 :last-child .random-classname-28e7518f >', + '.random-classname-f6b7db17 [data-random-attr-acad2c3b] :last-child ::before > .random-classname-e63fb127 > .random-classname-6c8e1ff1 .random-classname-4247db9 ::before > ::before ::before > .random-classname-a0e35761', + '.random-classname-503b43b', + '.random-classname-a56f5825', + '.random-classname-ce10a329', + '.random-classname-ce10a329 .random-classname-aae69b43', + '::before > .random-classname-4b5bb927', + '.random-classname-a56f5825 .random-classname-ce10a329 :not(.random-classname-aae69b43) :first-child .random-classname-b146a9b5 >', + '.random-classname-6aaec5b9', + '.random-classname-c5ee35af .random-classname-d8354b37 > .random-classname-63372c53', + '.random-classname-84735337', + '.random-classname-9c70d905 .random-classname-7e5397f ::slotted .random-classname-f25762d1 > :not(.random-classname-d66be295) .random-classname-ccf61c99 .random-classname-f6b7db17 :not(.random-classname-37740f61) .random-classname-7b6f9025 .random-classname-7fbf1343 :not(.random-classname-e63fb127) .random-classname-6c8e1ff1 > .random-classname-c5ee35af > ::before .random-classname-63372c53 .random-classname-c1d23ffd .random-classname-4e61dc81 >', + '::before .random-classname-f6b7db17 [data-random-attr-acad2c3b] :last-child ::before > .random-classname-e63fb127 > .random-classname-6c8e1ff1 :first-child ::before > .random-classname-63372c53 .random-classname-84735337 ::slotted .random-classname-20589f45', + '.random-classname-c1d23ffd .random-classname-4e61dc81 .random-classname-20589f45 ::slotted', + '.random-classname-20589f45 > .random-classname-852619bf .random-classname-1d32e78d', + '.random-classname-4247db9 .random-classname-d8354b37 :not(.random-classname-63372c53) .random-classname-c1d23ffd .random-classname-4e61dc81 .random-classname-20589f45 .random-classname-a97fcc49 :not(.random-classname-2af9b147) > .random-classname-9aeccd6b', + '::before .random-classname-33de38d5 > .random-classname-58a2da73', + '.random-classname-6f7bb31d', + '.random-classname-de8777fd ::slotted', + '.random-classname-c51e8569', + '::before :not(.random-classname-e63fb127) .random-classname-6c8e1ff1 :first-child .random-classname-d8354b37 .random-classname-1662887b > .random-classname-c51e8569 .random-classname-ef96b967', + '.random-classname-d8354b37 .random-classname-1c5df1a1 :not(.random-classname-fe5ff783) :last-child > :not(.random-classname-953e37f9)', + '::slotted :nth-child(13)', + '.random-classname-2ff3812c >', + ':not(:last-child) ::slotted > :nth-child(13) ::placeholder ::after', + '.random-classname-fe5ff783 .random-classname-6bf99231 > .random-classname-953e37f9 .random-classname-8d69b63d .random-classname-2ff3812c .random-classname-e1581752 .random-classname-b2ab86a6', + ':not(::slotted) ::before ::slotted > ::slotted :nth-child(13) ::placeholder > :not(.random-classname-e1581752) > .random-classname-3d3fb4c8 > ::slotted', + '.random-classname-c94b4919', + '.random-classname-74c066b3 .random-classname-3e3a0397', + '.random-classname-608bd4a5', + '::before .random-classname-c94b4919 .random-classname-74c066b3 > [data-random-attr-8eeecbe1] :not(.random-classname-608bd4a5) ::slotted', + '.random-classname-b42cc8ed', + '.random-classname-8fedf9a7', + '[data-random-attr-6ea9fc71]', + '.random-classname-cbf86bcb', + ':not(.random-classname-608bd4a5) ::slotted > .random-classname-b42cc8ed ::before > ::before >', + '::slotted .random-classname-8fedf9a7 .random-classname-cbf86bcb :first-child > [data-random-attr-a8139101]', + '.random-classname-185f5bc5', + '.random-classname-e63fb127 .random-classname-6c8e1ff1 > :first-child ::before :nth-child(11) .random-classname-3ed795e6 >', + '.random-classname-4247db9 .random-classname-de8777fd ::after > ::after .random-classname-bb0dc47a', + '.random-classname-de8777fd :not(.random-classname-185f5bc5) .random-classname-3ed795e6 .random-classname-bb0dc47a .random-classname-a6b2b5bc', + '.random-classname-31b9b24e', + '[data-random-attr-8412594d] > .random-classname-f25762d1 .random-classname-d66be295 ::before .random-classname-f6b7db17 .random-classname-37740f61 :not(:last-child) .random-classname-7fbf1343 .random-classname-e63fb127 > ::before :first-child ::before :nth-child(11) > .random-classname-3ed795e6 .random-classname-bb0dc47a .random-classname-a6b2b5bc > .random-classname-31b9b24e .random-classname-da0ae6b0', + '.random-classname-a6b2b5bc > .random-classname-31b9b24e .random-classname-da0ae6b0 .random-classname-3a7ecce4', + '::placeholder .random-classname-13711c58', + ':not(::after) .random-classname-bb0dc47a .random-classname-a6b2b5bc .random-classname-31b9b24e .random-classname-da0ae6b0 ::placeholder > .random-classname-13711c58 .random-classname-3c35c90c', + ':not(.random-classname-69b2321e) >', + '.random-classname-f6b7db17 [data-random-attr-acad2c3b] .random-classname-b6db9d9f ::before .random-classname-e63fb127 .random-classname-6c8e1ff1 > :first-child ::before .random-classname-c0860700 .random-classname-124ec832', + '.random-classname-4247db9 .random-classname-d8354b37 .random-classname-69b2321e .random-classname-124ec832 > .random-classname-342046a8', + '.random-classname-f6344a34 > :first-child .random-classname-f8143113', + ':first-child > .random-classname-342046a8 .random-classname-33e7dc79 .random-classname-bf6f62bd >', + '.random-classname-f6b7db17 .random-classname-37740f61 .random-classname-7b6f9025 .random-classname-7fbf1343 > .random-classname-e63fb127 ::before .random-classname-4247db9 .random-classname-de8777fd .random-classname-69b2321e .random-classname-124ec832 [data-random-attr-9e6af05c=random-attr-value-5c9dd00b] .random-classname-33e7dc79 .random-classname-bf6f62bd .random-classname-43ac43f7 .random-classname-3f9eb31b', + '.random-classname-bf6f62bd ::before [data-random-attr-ea5a1a05] ::slotted', + '.random-classname-33e7dc79 .random-classname-bf6f62bd .random-classname-43ac43f7 .random-classname-3f9eb31b .random-classname-823d227f .random-classname-5823ba4d', + '::before .random-classname-c5ee35af ::before :nth-child(11)', + '.random-classname-f6b7db17 > .random-classname-37740f61 .random-classname-7b6f9025 > .random-classname-7fbf1343 > .random-classname-e63fb127 .random-classname-a855db4b :first-child ::before .random-classname-15a96395 [data-random-attr-90f8bd98=random-attr-value-38732417]', + '.random-classname-67a0853b', + '.random-classname-d2115125', + ':nth-child(9)', + '.random-classname-3b6a0774', + '.random-classname-a85cc4c6', + '[data-random-attr-989537e8=random-attr-value-e5f13a27]', + '.random-classname-fdfd90f1', + '[data-random-attr-6f83744b]', + '.random-classname-fdfd90f1 .random-classname-cd0deaf', + '.random-classname-504ae2b5 .random-classname-c25d98fd', + '.random-classname-fefe675b', + '.random-classname-d34f1845', + '::before .random-classname-d34f1845 ::before', + '.random-classname-4247db9 .random-classname-ca67b247', + '::before .random-classname-f6b7db17 [data-random-attr-acad2c3b] .random-classname-7b6f9025 ::before .random-classname-e63fb127 ::before .random-classname-4247db9 .random-classname-8a5e5e11 .random-classname-4056f1d5', + '.random-classname-f6b7db17 .random-classname-37740f61 :last-child .random-classname-7fbf1343 :not(.random-classname-e63fb127) .random-classname-a855db4b .random-classname-4247db9 > .random-classname-ca67b247 .random-classname-a4225e6b > .random-classname-9365acf', + '::before .random-classname-e63fb127 ::before :not(.random-classname-c5ee35af) .random-classname-8a5e5e11 .random-classname-4056f1d5 .random-classname-9365acf ::slotted', + ':first-child .random-classname-ca67b247 .random-classname-a4225e6b .random-classname-9365acf [data-random-attr-c0b8c1d] .random-classname-27a6daa1', + '.random-classname-27a6daa1 .random-classname-34cfedf', + '.random-classname-5b1c7fd9 [data-random-attr-b540597b] .random-classname-ea848e69 > .random-classname-1d2fbbad', + '.random-classname-f20bb31', + '.random-classname-f20bb31 .random-classname-60e9588b', + '::slotted > .random-classname-f20bb31 :first-child .random-classname-8e4a80f9', + '.random-classname-6c8e1ff1 .random-classname-4247db9 .random-classname-e21a2477', + '.random-classname-cc2c5c3e', + '.random-classname-6c8e1ff1 > .random-classname-c5ee35af .random-classname-e21a2477 :nth-child(14) .random-classname-d3862ea3', + '.random-classname-9c70d905 .random-classname-db14c209 [data-random-attr-8412594d] ::slotted [data-random-attr-8d8e498f] > :first-child .random-classname-f6b7db17 [data-random-attr-acad2c3b] .random-classname-7b6f9025 ::before > .random-classname-e63fb127 .random-classname-6c8e1ff1 > .random-classname-4247db9 .random-classname-e21a2477 .random-classname-cc2c5c3e .random-classname-d3862ea3 .random-classname-5419d287', + '.random-classname-db6062ab >', + '.random-classname-d3862ea3 ::before .random-classname-db6062ab .random-classname-8b6c830f', + '.random-classname-d3862ea3 .random-classname-fc4f86cd .random-classname-db6062ab .random-classname-afcec015 ::before >', + '.random-classname-343e0f3d .random-classname-c14f5620 :not(.random-classname-d3862ea3) .random-classname-fc4f86cd > .random-classname-db6062ab .random-classname-8b6c830f [data-random-attr-6c917b3] .random-classname-2d10b4e1', + '.random-classname-902e371f', + '.random-classname-e969b0a9', + '.random-classname-f657aa7', + '.random-classname-c0ca7f35', + '.random-classname-e94d2f2f', + '.random-classname-697b75d3', + '.random-classname-2b01fa01', + '.random-classname-eb2a6b3f', + '.random-classname-7fbf1343 .random-classname-e63fb127 :not(.random-classname-a855db4b) > .random-classname-4247db9 .random-classname-c0ca7f35 > [data-random-attr-350c57d] .random-classname-2b01fa01 > .random-classname-327d4c5 .random-classname-c8ceae3', + '.random-classname-737ea6eb', + '.random-classname-aa50ce55', + '.random-classname-8666eb4f', + '.random-classname-9019e459', + '.random-classname-a8efe3f3', + '.random-classname-c4d0cf21', + '.random-classname-4247db9 .random-classname-9fbe6be5', + '.random-classname-56d12e9', + '.random-classname-21156103', + '.random-classname-4247db9 .random-classname-9fbe6be5 .random-classname-21156103 .random-classname-a809fae7', + '.random-classname-a809fae7 .random-classname-6f99cfb1', + '.random-classname-b8c1b76f', + '.random-classname-21156103 .random-classname-a809fae7 .random-classname-6f99cfb1 .random-classname-f6662579 :nth-child(9)', + '.random-classname-7427eabe', + '[data-random-attr-9532f5d4=random-attr-value-1fabe723]', + '.random-classname-1c34bad2 .random-classname-ab84534d', + '::after [data-random-attr-9532f5d4=random-attr-value-1fabe723] ::slotted ::before', + '.random-classname-e63fb127 .random-classname-6c8e1ff1 .random-classname-9a65938f', + '.random-classname-a855db4b :not(.random-classname-9a65938f) .random-classname-d5adf699 .random-classname-9b570edd >', + '.random-classname-38786517 > [data-random-attr-e141563b]', + '.random-classname-1272961 .random-classname-a0574a25 >', + '.random-classname-cee6ee6d', + '.random-classname-ce4abb27', + '[data-random-attr-c36fb9f1]', + '.random-classname-aad679f ::slotted [data-random-attr-c36fb9f1] > [data-random-attr-89f31bb5]', + '.random-classname-95a7faf', + '::slotted .random-classname-ce4abb27 [data-random-attr-89f31bb5] ::before :not(.random-classname-21298e53)', + '.random-classname-21298e53 .random-classname-b20cf1fd', + ':not(.random-classname-e63fb127) > .random-classname-a855db4b :last-child', + '.random-classname-8ccddbbf', + '[data-random-attr-70f6de49]', + '.random-classname-c1232363', + '.random-classname-ae2198d', + '.random-classname-f999b347', + '[data-random-attr-e2bd0711]', + '.random-classname-f75bef6b', + '.random-classname-9973aad5', + '.random-classname-3040d736 >', + '.random-classname-641b1d9e', + '.random-classname-7b6f9025 .random-classname-7fbf1343 .random-classname-e63fb127 .random-classname-a855db4b .random-classname-798179b4', + '.random-classname-b356b04', + '::slotted ::slotted [data-random-attr-8d8e498f] .random-classname-ccf61c99 .random-classname-f6b7db17 [data-random-attr-acad2c3b] .random-classname-b6db9d9f ::before :not(.random-classname-e63fb127) > .random-classname-c3ef046a', + '.random-classname-2270793e', + '.random-classname-86b27b20', + ':not(.random-classname-e63fb127) .random-classname-2662f152', + '.random-classname-24fb3ec8', + '.random-classname-af7c7b3a', + '.random-classname-7765a7c', + '.random-classname-7fbf1343 .random-classname-e63fb127 > .random-classname-d1447770', + '.random-classname-6755c8b3', + '.random-classname-4f39fb5d', + '.random-classname-c2448597', + '.random-classname-f0969de1', + '::before .random-classname-6117c6a5', + '.random-classname-7fbf1343 .random-classname-960775c3', + '.random-classname-e4a0fba7', + '.random-classname-1d8e4e71', + '.random-classname-7e5397f > .random-classname-9eb77d23 .random-classname-f25762d1 .random-classname-d66be295 ::before :not(.random-classname-f6b7db17) > .random-classname-37740f61 .random-classname-7b6f9025 > .random-classname-7fbf1343 .random-classname-ddc4b835', + '.random-classname-b6db9d9f .random-classname-16f8a6d3', + '.random-classname-40921e7d', + '[data-random-attr-511335b7]', + '.random-classname-e8306460', + '.random-classname-8854ec92', + '.random-classname-9c70d905 .random-classname-7e5397f [data-random-attr-8412594d] .random-classname-f25762d1 .random-classname-d66be295 .random-classname-ccf61c99 .random-classname-f6b7db17 > .random-classname-37740f61 .random-classname-9765008', + '.random-classname-e4fbdfbc', + '.random-classname-cb1e6c4e', + ':nth-child(12)', + '.random-classname-8dbfad59', + '[data-random-attr-8d8e498f] :first-child .random-classname-f6b7db17 :not([data-random-attr-acad2c3b]) > .random-classname-fa06d19d >', + '[data-random-attr-acad2c3b] ::slotted', + '.random-classname-37740f61 > :last-child >', + '.random-classname-f7d1f20b', + '.random-classname-f6b7db17 > .random-classname-37740f61 .random-classname-2bcc9313', + '.random-classname-dfff6d6f ::slotted .random-classname-c66fda1b .random-classname-9c70d905 .random-classname-db14c209 [data-random-attr-8412594d] ::slotted [data-random-attr-8d8e498f] :first-child .random-classname-f6b7db17 [data-random-attr-acad2c3b] ::before', + '.random-classname-d66be295 .random-classname-ccf61c99 .random-classname-f6b7db17 .random-classname-37740f61 .random-classname-5c63551b', + '.random-classname-f6b7db17 :not([data-random-attr-acad2c3b]) .random-classname-7126a509', + '.random-classname-f25762d1 .random-classname-d66be295 ::before > .random-classname-f6b7db17 .random-classname-c61a5823', + '.random-classname-ccf61c99 .random-classname-f6b7db17 ::before', + '.random-classname-298ab48f', + '.random-classname-e50cbf99', + '.random-classname-c66fda1b .random-classname-9c70d905 .random-classname-db14c209 ::slotted ::slotted [data-random-attr-8d8e498f] :first-child > :not(.random-classname-f6b7db17) :first-child', + '.random-classname-ccf61c99 .random-classname-f6b7db17 .random-classname-81e6273b', + '.random-classname-db14c209 ::slotted > ::slotted [data-random-attr-8d8e498f] ::before .random-classname-f6b7db17 > .random-classname-4f176e43', + '.random-classname-f6b7db17 .random-classname-df45e2f1 >', + '.random-classname-2f96bc96 >', + '.random-classname-f6b7db17 .random-classname-7acd8aec', + '::slotted ::slotted [data-random-attr-8d8e498f] .random-classname-ccf61c99 > .random-classname-f6b7db17 .random-classname-ae886749 >', + '.random-classname-ab729463', + '.random-classname-fdefb28d', + '.random-classname-f6b7db17 .random-classname-237fb011', + '.random-classname-a499806b', + '[data-random-attr-cf3463d5]', + '[data-random-attr-8d8e498f] :first-child ::before', + '[data-random-attr-6ed29657]', + '::slotted ::slotted > [data-random-attr-8d8e498f] :first-child :not(.random-classname-9407fb7b)', + '.random-classname-9eb77d23 .random-classname-f25762d1 .random-classname-d66be295 ::before .random-classname-eedd6165', + '[data-random-attr-4efca069]', + ':first-child > :first-child', + ':first-child > .random-classname-a49b0d31', + '.random-classname-f63628ef', + '.random-classname-b50f12f9', + '.random-classname-be8d2b93', + '::before .random-classname-bc0bd1c1', + '.random-classname-8ba86989', + '.random-classname-f25762d1 .random-classname-d66be295 :nth-child(3)', + '.random-classname-9eb77d23 ::slotted [data-random-attr-8d8e498f] > .random-classname-f658dc70', + '.random-classname-d66be295 .random-classname-1fb1ef22', + '::slotted .random-classname-91c27e9d :last-child > .random-classname-bc3be55f ::slotted .random-classname-7d68f0e7 .random-classname-60f9370b .random-classname-dfff6d6f > .random-classname-a6dc7813 .random-classname-c66fda1b .random-classname-9c70d905 .random-classname-db14c209 .random-classname-9eb77d23 ::slotted [data-random-attr-8d8e498f] .random-classname-c6fb330a', + '.random-classname-b1f0b1e5 > .random-classname-c710b8e9 ::before .random-classname-60f9370b .random-classname-e3057375 .random-classname-db8b4b79 .random-classname-ee8f1a41 > .random-classname-9c70d905 .random-classname-7e5397f ::slotted .random-classname-f25762d1 .random-classname-d66be295 .random-classname-9210f91f', + '.random-classname-8e0866c3', + '.random-classname-d66be295 .random-classname-f7213ed', + '.random-classname-338e2ad7 :not(.random-classname-bc3be55f) > ::slotted > .random-classname-196d4e2d :not(.random-classname-60f9370b) .random-classname-dfff6d6f > .random-classname-a6dc7813 .random-classname-c66fda1b > .random-classname-9c70d905 .random-classname-db14c209 .random-classname-9eb77d23 ::slotted [data-random-attr-8d8e498f] [data-random-attr-2f499ecb]', + '.random-classname-f25762d1 > .random-classname-d66be295 .random-classname-ed62f135', + '.random-classname-4ee9ad44', + '.random-classname-5cb7fb16', + '[data-random-attr-81d0d2b8=random-attr-value-9bf6f6b7]', + '.random-classname-c710b8e9 .random-classname-7d68f0e7 .random-classname-60f9370b .random-classname-e3057375 > [data-random-attr-a32a41bd] > .random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f ::slotted > .random-classname-f25762d1 > .random-classname-d66be295 .random-classname-3ba4c6c5 >', + '.random-classname-252bcce3', + '.random-classname-f25762d1 .random-classname-10f434c7', + '.random-classname-9c70d905 .random-classname-db14c209 [data-random-attr-8412594d] .random-classname-91f9c8eb', + '.random-classname-79d24055', + '.random-classname-f7d32d4f', + '.random-classname-c8497659', + '.random-classname-c8cf45f3', + '.random-classname-db14c209 ::slotted >', + '.random-classname-7e5397f > .random-classname-d9645de5 >', + '.random-classname-db14c209 .random-classname-cbc924e9 >', + '.random-classname-db8b4b79 .random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f .random-classname-4c26fce7', + '[data-random-attr-a32a41bd] .random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f [data-random-attr-646ec413]', + '.random-classname-a6dc7813 .random-classname-c66fda1b .random-classname-9c70d905 > .random-classname-db14c209 .random-classname-f7800641', + '.random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f .random-classname-e24ba61b', + ':last-child .random-classname-bc3be55f ::slotted ::before .random-classname-60f9370b .random-classname-dfff6d6f ::slotted .random-classname-c66fda1b :not(.random-classname-9c70d905) .random-classname-ab146648 >', + '.random-classname-d9da39fc', + '.random-classname-d857008e', + '.random-classname-f6dec5a2', + '.random-classname-60f9370b .random-classname-e3057375 .random-classname-db8b4b79 > :not(.random-classname-ee8f1a41) .random-classname-9c70d905 [data-random-attr-9f0e71f6=random-attr-value-3298c0dd]', + '::before .random-classname-60f9370b .random-classname-dfff6d6f ::slotted .random-classname-c66fda1b .random-classname-9c70d905 :nth-child(13)', + '.random-classname-49516a72 >', + '.random-classname-425a185a', + '.random-classname-db8b4b79 .random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-3884542e', + '.random-classname-7da08342', + '.random-classname-89e287c4', + '.random-classname-9c70d905 .random-classname-5863996', + '.random-classname-4ee5a5b', + '.random-classname-e7fdf049 >', + '::slotted > .random-classname-196d4e2d :not(.random-classname-60f9370b) :not(.random-classname-dfff6d6f) ::slotted > .random-classname-c66fda1b ::slotted >', + '.random-classname-dca65911', + '.random-classname-bd58bdcf', + '.random-classname-e3057375 .random-classname-db8b4b79 .random-classname-ee8f1a41 .random-classname-fb599e73 >', + '.random-classname-91c27e9d ::slotted > .random-classname-bc3be55f ::slotted ::before .random-classname-60f9370b .random-classname-dfff6d6f ::slotted > .random-classname-c66fda1b ::slotted', + '[data-random-attr-a32a41bd] .random-classname-ee8f1a41 :first-child', + '.random-classname-3fc606ad', + '.random-classname-8c48bd67', + '.random-classname-ee8f1a41 .random-classname-b6ee3631 >', + '.random-classname-b1f0b1e5 > .random-classname-c710b8e9 .random-classname-7d68f0e7 .random-classname-60f9370b .random-classname-e3057375 .random-classname-2c75bf9', + '.random-classname-dfff6d6f .random-classname-5b931a3d', + '.random-classname-ba214e9b', + '.random-classname-3e74c185', + '[data-random-attr-c007b5ff]', + '.random-classname-5e569891 ::slotted ::slotted .random-classname-91c27e9d :not(.random-classname-338e2ad7) :not(.random-classname-bc3be55f) ::slotted :not(::before) .random-classname-60f9370b .random-classname-dfff6d6f .random-classname-611781a3', + '.random-classname-c710b8e9 .random-classname-196d4e2d .random-classname-60f9370b .random-classname-e3057375 [data-random-attr-20beb15]', + '.random-classname-196d4e2d .random-classname-60f9370b > .random-classname-dfff6d6f ::before', + '::before > .random-classname-60f9370b .random-classname-e3057375 :not(.random-classname-d95f0797)', + '.random-classname-4833b8a5 >', + '.random-classname-60f9370b .random-classname-e3057375 .random-classname-4edecba9', + '.random-classname-94d12ced', + '.random-classname-d063fda7', + '[data-random-attr-4602a071]', + '.random-classname-fa45e001 .random-classname-57d7a13f .random-classname-6c6280e3 .random-classname-5e569891 .random-classname-1406fceb ::slotted .random-classname-91c27e9d .random-classname-338e2ad7 .random-classname-bc3be55f ::slotted .random-classname-196d4e2d .random-classname-60f9370b ::slotted', + '.random-classname-b1f0b1e5 .random-classname-c710b8e9 .random-classname-7d68f0e7 .random-classname-60f9370b ::before', + '.random-classname-fa45e001 .random-classname-57d7a13f .random-classname-b1643fc9 .random-classname-5e569891 :first-child ::slotted .random-classname-91c27e9d :last-child .random-classname-bc3be55f ::slotted .random-classname-196d4e2d .random-classname-60f9370b :last-child', + '.random-classname-a9593fc5', + '.random-classname-cc3e0e3f', + '.random-classname-c710b8e9 .random-classname-7d68f0e7 > .random-classname-60f9370b [data-random-attr-aac7980d]', + '::slotted .random-classname-196d4e2d > .random-classname-60f9370b ::slotted', + '::before .random-classname-60f9370b .random-classname-e888f955', + '.random-classname-196d4e2d .random-classname-60f9370b > .random-classname-30ef4e4f', + ':not(.random-classname-60f9370b) .random-classname-10f977d7', + ':nth-child(11) >', + ':last-child > .random-classname-b1f0b1e5 .random-classname-c710b8e9 .random-classname-7d68f0e7 .random-classname-7e74c986', + '::slotted .random-classname-a34d621a >', + '.random-classname-b057445c', + '.random-classname-459d59ee', + '.random-classname-f4bd0502', + '.random-classname-497ff756', + '.random-classname-9e7d58f8', + '.random-classname-5eb9d7a0', + '.random-classname-277f4b7d .random-classname-fa45e001 .random-classname-57d7a13f .random-classname-b1643fc9 .random-classname-5e569891 :first-child > ::slotted .random-classname-91c27e9d ::slotted .random-classname-60add926 >', + '.random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-338e2ad7 > .random-classname-7e6e2b48', + '.random-classname-91c27e9d .random-classname-338e2ad7 .random-classname-45589bba', + '::slotted > .random-classname-ad75cefc >', + '::slotted > .random-classname-91c27e9d ::slotted ::after', + '.random-classname-338e2ad7 [data-random-attr-ab7cd198=random-attr-value-25202817]', + '::slotted .random-classname-91c27e9d ::slotted ::slotted', + '.random-classname-fc9c0a59 .random-classname-91c27e9d > ::slotted .random-classname-7319d029 >', + ':last-child :not(.random-classname-b229b696)', + '.random-classname-91c27e9d .random-classname-338e2ad7 :first-child', + '.random-classname-520c40e0', + '.random-classname-fc9c0a59 .random-classname-91c27e9d :not(.random-classname-29b77d12)', + '.random-classname-7ef38bd3 > .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-57d7a13f :not(.random-classname-6c6280e3) .random-classname-5e569891 :first-child ::slotted .random-classname-91c27e9d .random-classname-9d446866 >', + '::before .random-classname-d75c28c7 :first-child .random-classname-fc9c0a59 > :not(.random-classname-91c27e9d) .random-classname-4d20a26b', + '.random-classname-5496decf', + '.random-classname-ad43a3d9', + '.random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-e9b2f01d >', + '.random-classname-5e569891 .random-classname-1406fceb :not(::slotted) .random-classname-c32d6d80', + '.random-classname-1406fceb .random-classname-fc9c0a59 .random-classname-e7a772b2', + '::slotted [data-random-attr-7171e806=random-attr-value-a401fad]', + '.random-classname-b7699c8b', + '.random-classname-bb274f5', + '.random-classname-277f4b7d .random-classname-fa45e001 .random-classname-57d7a13f > .random-classname-6c6280e3 .random-classname-5e569891 .random-classname-1406fceb ::slotted >', + ':not(.random-classname-6c6280e3) .random-classname-d75c28c7 .random-classname-1406fceb .random-classname-aef7733d', + '.random-classname-7d8f9f9b', + '.random-classname-9f643a85', + '.random-classname-277f4b7d :first-child .random-classname-63271ac5 ::before .random-classname-d75c28c7 > .random-classname-eb4ff2a3', + '.random-classname-12f1eacd', + '.random-classname-668c8c0e >', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d :not(.random-classname-fa45e001) .random-classname-57d7a13f > ::placeholder', + '.random-classname-a6fbd418', + '.random-classname-277f4b7d .random-classname-fa45e001 > :not(.random-classname-93561ccc)', + '.random-classname-fa45e001 > .random-classname-3434cdf2', + '.random-classname-f0b7ee68', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d > .random-classname-d7d1eab7 .random-classname-248b6335', + '.random-classname-7ef38bd3 .random-classname-277f4b7d :first-child > .random-classname-628839d3', + '.random-classname-d7d1eab7 > :first-child >', + '.random-classname-43daaee3', + '::before > .random-classname-7ef38bd3 :not(.random-classname-277f4b7d) .random-classname-11f036c7', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-4f1bd691 >', + '.random-classname-7884eaeb', + '.random-classname-1be3b255', + '.random-classname-7ef38bd3 .random-classname-277f4b7d > .random-classname-4ae8d5e4 >', + ':not(.random-classname-277f4b7d) :nth-child(10)', + '.random-classname-ad7805fb', + '.random-classname-c99a4fe5', + '.random-classname-a1a52503', + '.random-classname-7134e52f .random-classname-7ef38bd3 > .random-classname-b44aac2d', + '::before .random-classname-6be250b', + '.random-classname-278e9175', + ':not(::before) :nth-child(7)', + '.random-classname-a03ed4ac', + '.random-classname-b1c2fca0', + '.random-classname-56d26ed2', + '.random-classname-7134e52f [data-random-attr-7d6b9626=random-attr-value-226eb74d]', + '.random-classname-f092178f', + '.random-classname-7134e52f .random-classname-f8356917', + ], +}; diff --git a/apps/stress-test/src/fixtures/l_2.js b/apps/stress-test/src/fixtures/l_2.js new file mode 100644 index 0000000000000..aa8fef809ae19 --- /dev/null +++ b/apps/stress-test/src/fixtures/l_2.js @@ -0,0 +1,12568 @@ +/* eslint-disable @fluentui/max-len */ +export default { + tree: { + value: { + name: '0-0', + classNames: ['.random-classname-7134e52f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '1-1', + classNames: ['.random-classname-7ef38bd3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-5', + classNames: ['.random-classname-277f4b7d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-3', + classNames: ['.random-classname-d7d1eab7', '.random-classname-fa45e001'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-63271ac5', '.random-classname-57d7a13f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '5-11', + classNames: ['.random-classname-b1643fc9', '.random-classname-6c6280e3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '6-3', + classNames: ['.random-classname-d75c28c7', '.random-classname-5e569891'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-11', + classNames: ['.random-classname-1406fceb'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '8-9', + classNames: ['.random-classname-fc9c0a59'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '9-7', + classNames: ['.random-classname-91c27e9d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-5', + classNames: ['.random-classname-338e2ad7'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-5', + classNames: [ + '.random-classname-b1f0b1e5', + '.random-classname-bc3be55f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-13', + classNames: ['.random-classname-c710b8e9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '13-5', + classNames: [ + '.random-classname-196d4e2d', + '.random-classname-7d68f0e7', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '14-6', + classNames: ['.random-classname-60f9370b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '15-1', + classNames: [ + '.random-classname-e3057375', + '.random-classname-dfff6d6f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '16-11', + classNames: [ + '.random-classname-db8b4b79', + '.random-classname-a6dc7813', + ], + attributes: [ + { + key: 'data-random-attr-a32a41bd', + selector: '[data-random-attr-a32a41bd]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '17-5', + classNames: [ + '.random-classname-ee8f1a41', + '.random-classname-c66fda1b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '18-11', + classNames: [ + '.random-classname-9c70d905', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '19-7', + classNames: [ + '.random-classname-7e5397f', + '.random-classname-db14c209', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '20-7', + classNames: [ + '.random-classname-9eb77d23', + ], + attributes: [ + { + key: + 'data-random-attr-8412594d', + selector: + '[data-random-attr-8412594d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '21-4', + classNames: [ + '.random-classname-f25762d1', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '22-7', + classNames: [ + '.random-classname-d66be295', + ], + attributes: [ + { + key: + 'data-random-attr-8d8e498f', + selector: + '[data-random-attr-8d8e498f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '23-13', + classNames: [ + '.random-classname-ccf61c99', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '24-13', + classNames: [ + '.random-classname-f6b7db17', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '25-11', + classNames: [ + '.random-classname-37740f61', + ], + attributes: [ + { + key: + 'data-random-attr-acad2c3b', + selector: + '[data-random-attr-acad2c3b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-7b6f9025', + '.random-classname-b6db9d9f', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '27-9', + classNames: [ + '.random-classname-7fbf1343', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '28-9', + classNames: [ + '.random-classname-e63fb127', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '29-5', + classNames: [ + '.random-classname-6c8e1ff1', + '.random-classname-a855db4b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-c5ee35af', + '.random-classname-4247db9', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '31-9', + classNames: [ + '.random-classname-de8777fd', + '.random-classname-d8354b37', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '32-3', + classNames: [ + '.random-classname-b4068e5b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '33-5', + classNames: [ + '.random-classname-92711bf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '34-3', + classNames: [ + '.random-classname-3564b963', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-2c161f8d', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '36-7', + classNames: [ + '.random-classname-39d0456b', + '.random-classname-172870d5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-5', + classNames: [ + '.random-classname-eb2731cf', + ], + attributes: [ + { + key: + 'data-random-attr-185e6ed9', + selector: + '[data-random-attr-185e6ed9]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-d1adcb57', + '.random-classname-7426a9a1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-2e08ae65', + '.random-classname-2cf95df', + ], + attributes: [ + { + key: + 'data-random-attr-8dfe3d69', + selector: + '[data-random-attr-8dfe3d69]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-3904daad', + '.random-classname-af2b167', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-260e8ff5', + ], + attributes: [ + { + key: + 'data-random-attr-23413def', + selector: + '[data-random-attr-23413def]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-4ebeff9', + '.random-classname-2ec71093', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-87d6ee3d', + ], + attributes: [ + { + key: + 'data-random-attr-ca295b77', + selector: + '[data-random-attr-ca295b77]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-4c844ec1', + ], + attributes: [ + { + key: + 'data-random-attr-e82d829b', + selector: + '[data-random-attr-e82d829b]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-6bdd29ff', + '.random-classname-10308689', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-24aa35a3', + '.random-classname-79c25cd', + ], + attributes: [ + { + key: + 'data-random-attr-1ad2c987', + selector: + '[data-random-attr-1ad2c987]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-100549ab', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-3baf3f15', + '.random-classname-58445a0f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-29150119', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-6f0adeb3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-ecaffb97', + '.random-classname-5fef83e1', + ], + attributes: [ + { + key: + 'data-random-attr-c00b14bb', + selector: + '[data-random-attr-c00b14bb]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-d057ce1f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-6b5a0bc3', + '.random-classname-99a400ed', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-72b8b471', + '.random-classname-3cfe3cb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-92d27e35', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-4821a239', + '.random-classname-9748bcd3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-8d58a47d', + ], + attributes: [ + { + key: + 'data-random-attr-a849abb7', + selector: + '[data-random-attr-a849abb7]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-dab04901', + '.random-classname-f24b6db', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-d01bc8c9', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-5c5a9e08', + '.random-classname-19ad5c7a', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-a446ca4e', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-6dcfbeb0', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-f47c4b62', + '.random-classname-a3e524e4', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-1351174a', + ], + attributes: [ + { + key: + 'data-random-attr-ea67210c', + value: + 'random-attr-value-750268fb', + selector: + '[data-random-attr-ea67210c=random-attr-value-750268fb]', + }, + ], + siblings: [ + ':nth-child(7)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-8290a234', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-9a75ed86', + ], + attributes: [ + { + key: + 'data-random-attr-9fd61ea8', + value: + 'random-attr-value-a8ed71e7', + selector: + '[data-random-attr-9fd61ea8=random-attr-value-a8ed71e7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-906d480b', + '.random-classname-a4c0ac75', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-85140e6f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-78059479', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-1d4c9abd', + '.random-classname-fad63bf7', + ], + attributes: [ + { + key: + 'data-random-attr-2b528341', + selector: + '[data-random-attr-2b528341]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-152c2b1b', + '.random-classname-fbde5205', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-d6a61a7f', + '.random-classname-e1454b09', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-1dfdee23', + '.random-classname-922ef24d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-f990bd1', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-220b6a8f', + '.random-classname-36ce599', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-c5256ddd', + '.random-classname-c3d91c17', + ], + attributes: [ + { + key: + 'data-random-attr-cdc3f861', + selector: + '[data-random-attr-cdc3f861]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-9729fd3b', + ], + attributes: [ + { + key: + 'data-random-attr-daf18925', + selector: + '[data-random-attr-daf18925]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-c0056429', + '.random-classname-92d60443', + ], + attributes: [ + { + key: + 'data-random-attr-13c90d6d', + selector: + '[data-random-attr-13c90d6d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-52b53227', + ], + attributes: [ + { + key: + 'data-random-attr-787c48f1', + selector: + '[data-random-attr-787c48f1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-2191ab5', + '.random-classname-ca13d6af', + ], + attributes: [ + { + key: + 'data-random-attr-7ed7c6b9', + selector: + '[data-random-attr-7ed7c6b9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-a5f2d0fd', + '.random-classname-8a0f0c37', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-2683df5b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-8', + classNames: [ + '.random-classname-218b5045', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-bded0d49', + '.random-classname-508c2a63', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-f5791611', + '.random-classname-32e5d66b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-fe8129d5', + '.random-classname-ff3552cf', + ], + attributes: [ + { + key: + 'data-random-attr-a18e37d9', + selector: + '[data-random-attr-a18e37d9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-877cc41d', + '.random-classname-10800c57', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-bec0989e', + '.random-classname-ffddb180', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-8', + classNames: [ + '.random-classname-307456b2', + '.random-classname-8355cb4', + ], + attributes: [ + { + key: + 'data-random-attr-533b0c06', + value: + 'random-attr-value-29cef3ad', + selector: + '[data-random-attr-533b0c06=random-attr-value-29cef3ad]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-58d77331', + '.random-classname-f4a8d08b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-777deef', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-86d838f9', + '.random-classname-d5ff4193', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-8', + classNames: [ + '.random-classname-d58b473d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-5e341c77', + '.random-classname-1cf9b7c1', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-8', + classNames: [ + '.random-classname-ca400aff', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-20530f89', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-15cabecd', + '.random-classname-ae91ca87', + ], + attributes: [], + siblings: [ + ':nth-child(5)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-1bac300e', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-3250ea70', + ], + attributes: [ + { + key: + 'data-random-attr-eb7b2d22', + value: + 'random-attr-value-adfdca19', + selector: + '[data-random-attr-eb7b2d22=random-attr-value-adfdca19]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-9fe65a5d', + ], + attributes: [ + { + key: + 'data-random-attr-be333c97', + selector: + '[data-random-attr-be333c97]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-9409e5bb', + '.random-classname-9e5005a5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-9b432f1f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-9832fcc3', + ], + attributes: [ + { + key: + 'data-random-attr-e37719ed', + selector: + '[data-random-attr-e37719ed]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-9', + classNames: [ + '.random-classname-351972a7', + '.random-classname-8fd8dd71', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-8', + classNames: [ + '.random-classname-7808b735', + '.random-classname-7d80272f', + ], + attributes: [ + { + key: + 'data-random-attr-fa46eb39', + selector: + '[data-random-attr-fa46eb39]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-9a55fd7d', + '.random-classname-bf856cb7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-5c2407db', + '.random-classname-72d40cc5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-c7fb633f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-8', + classNames: [ + '.random-classname-2b751c9', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-e6b162e3', + ], + attributes: [ + { + key: + 'data-random-attr-589c050d', + selector: + '[data-random-attr-589c050d]', + }, + ], + siblings: [ + ':nth-child(5)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-7e3f274e', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-7b13f862', + '.random-classname-d83259e4', + ], + attributes: [ + { + key: + 'data-random-attr-3ebb70b6', + value: + 'random-attr-value-1ca2309d', + selector: + '[data-random-attr-3ebb70b6=random-attr-value-1ca2309d]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-bbe98721', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-c74239fb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-8', + classNames: [ + '.random-classname-8470a75f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-579ccae9', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-c8b5d903', + '.random-classname-df01802d', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-63e5590b', + '.random-classname-1d1fe575', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-ac6caf6f', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-5877a1f8', + '.random-classname-62bf35ea', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-d88702be', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-7', + classNames: [ + '.random-classname-68fd40a0', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-8', + classNames: [ + '.random-classname-d35b4dd4', + ], + attributes: [ + { + key: + 'data-random-attr-b0eeba26', + value: + 'random-attr-value-846f8b4d', + selector: + '[data-random-attr-b0eeba26=random-attr-value-846f8b4d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-2edacb07', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-d768a32b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-7ac7ae99', + '.random-classname-8596833', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-c177e161', + '.random-classname-18aace3b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-5c178225', + '.random-classname-50b25f9f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-1d70f543', + '.random-classname-faae266d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-cace71f1', + '.random-classname-ee43fd4b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-c6f0fb9', + '.random-classname-75c00653', + ], + attributes: [ + { + key: + 'data-random-attr-dc8229fd', + selector: + '[data-random-attr-dc8229fd]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-c22b6681', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-1205305b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-9c8ed3bf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-5379b63', + '.random-classname-9785518d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-b979ab47', + '.random-classname-4ab7bf11', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-b27de2d5', + '.random-classname-1b8773cf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-8008b473', + '.random-classname-bc109d1d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-60164d57', + '.random-classname-75dc7ba1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-7882a065', + '.random-classname-f04857df', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-4', + classNames: [ + '.random-classname-286e4f69', + '.random-classname-6aa45183', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-54bd0cad', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-53429c31', + '.random-classname-c022e18b', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-bfa881f9', + '.random-classname-29bb7293', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-7663a03d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-80d320c1', + '.random-classname-b3ae249b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-6', + classNames: [ + '.random-classname-53e6ebff', + '.random-classname-30599889', + ], + attributes: [ + { + key: + 'data-random-attr-123f17a3', + selector: + '[data-random-attr-123f17a3]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-4', + classNames: [ + '.random-classname-d01d57cd', + '.random-classname-d614cb87', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-d656b115', + '.random-classname-8dc69c0f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-bbca9319', + '.random-classname-796040b3', + ], + attributes: [ + { + key: + 'data-random-attr-3b43335d', + selector: + '[data-random-attr-3b43335d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-6b5755e1', + '.random-classname-870cb6bb', + ], + attributes: [ + { + key: + 'data-random-attr-c647fea5', + selector: + '[data-random-attr-c647fea5]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-198471a9', + '.random-classname-c48fedc3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-4', + classNames: [ + '.random-classname-1c34f3a7', + '.random-classname-3b5d0671', + ], + attributes: [ + { + key: + 'data-random-attr-75c205cb', + selector: + '[data-random-attr-75c205cb]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-510bc82f', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-797f1ed3', + '.random-classname-de77567d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-a1b11b01', + '.random-classname-aa2758db', + ], + attributes: [ + { + key: + 'data-random-attr-dc2085c5', + selector: + '[data-random-attr-dc2085c5]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-4', + classNames: [ + '.random-classname-d936dac9', + '.random-classname-4e1ed3e3', + ], + attributes: [ + { + key: + 'data-random-attr-ac779e0d', + selector: + '[data-random-attr-ac779e0d]', + }, + ], + siblings: [ + ':nth-child(9)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-25b737bc', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-4ee688b0', + '.random-classname-ed1fa562', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-2c138ee4', + '.random-classname-25736db6', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-3262cb0c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-8a20841e', + '.random-classname-bed22900', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-c4018c34', + '.random-classname-92186786', + ], + attributes: [ + { + key: + 'data-random-attr-2df0a8a8', + value: + 'random-attr-value-ed4273e7', + selector: + '[data-random-attr-2df0a8a8=random-attr-value-ed4273e7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-eb616a0b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-6609506f', + '.random-classname-8da62679', + ], + attributes: [ + { + key: + 'data-random-attr-c94b0b13', + selector: + '[data-random-attr-c94b0b13]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-42fd4cbd', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-17055541', + '.random-classname-e1b0cd1b', + ], + attributes: [ + { + key: + 'data-random-attr-19a54405', + selector: + '[data-random-attr-19a54405]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-edf3dc7f', + ], + attributes: [ + { + key: + 'data-random-attr-a5525d09', + selector: + '[data-random-attr-a5525d09]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-2d16d023', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-663fcc07', + '.random-classname-f7485dd1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-b8670d95', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-42081933', + '.random-classname-dfdf1fdd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-14679e17', + ], + attributes: [ + { + key: + 'data-random-attr-a28fca61', + selector: + '[data-random-attr-a28fca61]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-8ee17b25', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-904b7629', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-2f8fe643', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-c7b73f6d', + ], + attributes: [], + siblings: [ + ':nth-child(7)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-916fd79c', + ], + attributes: [], + siblings: [ + ':nth-child(4)', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-3cea58b9', + ], + attributes: [ + { + key: + 'data-random-attr-bd5f3753', + selector: + '[data-random-attr-bd5f3753]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-ea0e8e37', + '.random-classname-130fcf81', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-58244245', + ], + attributes: [ + { + key: + 'data-random-attr-3128b4bf', + selector: + '[data-random-attr-3128b4bf]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-63670c63', + '.random-classname-8972ea8d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-4a4fac47', + '.random-classname-85a6811', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-c31e9bd5', + '.random-classname-501d94cf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-f299c9d9', + '.random-classname-59d86573', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-915bd7ca', + '.random-classname-98ae358c', + ], + attributes: [ + { + key: + 'data-random-attr-f82fd29e', + value: + 'random-attr-value-76359965', + selector: + '[data-random-attr-f82fd29e=random-attr-value-76359965]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-a7c5869', + '.random-classname-a9244283', + ], + attributes: [ + { + key: + 'data-random-attr-49cf25ad', + selector: + '[data-random-attr-49cf25ad]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-4811c531', + '.random-classname-c7a0f28b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-7eb120ef', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-3f5ccaf9', + '.random-classname-39fba393', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-e959e77', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-81089c1', + '.random-classname-4f4759b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-ddd8085', + ], + attributes: [ + { + key: + 'data-random-attr-18d1ccff', + selector: + '[data-random-attr-18d1ccff]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-e54f88a3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-a15bcc87', + ], + attributes: [ + { + key: + 'data-random-attr-a8f2b251', + selector: + '[data-random-attr-a8f2b251]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-7ca06a15', + ], + attributes: [ + { + key: + 'data-random-attr-4aedbd0f', + selector: + '[data-random-attr-4aedbd0f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-e27b5c19', + ], + attributes: [ + { + key: + 'data-random-attr-8450f1b3', + selector: + '[data-random-attr-8450f1b3]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-2f85be97', + ], + attributes: [ + { + key: + 'data-random-attr-f9213ee1', + selector: + '[data-random-attr-f9213ee1]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-67e3f7a5', + '.random-classname-c8e5f11f', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-70dec3', + '.random-classname-61894bed', + ], + attributes: [ + { + key: + 'data-random-attr-e91474a7', + selector: + '[data-random-attr-e91474a7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-26c116cb', + '.random-classname-7a612935', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-ff3d7d39', + '.random-classname-63604fd3', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-248eeb7', + '.random-classname-a8478401', + ], + attributes: [], + siblings: [ + ':nth-child(1)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-210b6160', + '.random-classname-1bd1f192', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-da91a94', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-2ddfe4e6', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-4', + classNames: [ + '.random-classname-c2b0ed08', + ], + attributes: [], + siblings: [ + ':nth-child(8)', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-2b2c7855', + '.random-classname-b882254f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-1ceb2e59', + '.random-classname-5b1bdf3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-4c11e29d', + '.random-classname-99e72ed7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-85cb5921', + '.random-classname-24cddbfb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-11b5695f', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-ad25b22d', + '.random-classname-2612f4e7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-8d5ed9b1', + '.random-classname-36e17b0b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-5', + classNames: [ + '.random-classname-c1e9f16f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-26cc6f79', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-9dcd3c13', + '.random-classname-e8ba5bd', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-e5f4be41', + '.random-classname-7f791e1b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-f7febd05', + ], + attributes: [ + { + key: + 'data-random-attr-5680bd7f', + selector: + '[data-random-attr-5680bd7f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-dce94123', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-555cbd4d', + '.random-classname-4968cd07', + ], + attributes: [ + { + key: + 'data-random-attr-e1b606d1', + selector: + '[data-random-attr-e1b606d1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-f7a5c52b', + '.random-classname-5502c695', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-391acd8f', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-623aca33', + '.random-classname-10f1f8dd', + ], + attributes: [ + { + key: + 'data-random-attr-b7d4df17', + selector: + '[data-random-attr-b7d4df17]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-10bb361', + '.random-classname-20b8703b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-34f7425', + '.random-classname-bf99219f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-d932d743', + '.random-classname-ae4586d', + ], + attributes: [ + { + key: + 'data-random-attr-aaadb527', + selector: + '[data-random-attr-aaadb527]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-14421f4b', + '.random-classname-ff9dc5b5', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-8d826853', + '.random-classname-d70cdbfd', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-9413d25b', + '.random-classname-58e6bb45', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '37-5', + classNames: [ + '.random-classname-d0695bf', + ], + attributes: [], + siblings: [ + ':nth-child(7)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-4967c366', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-ef58cf88', + '.random-classname-d14609fa', + ], + attributes: [ + { + key: + 'data-random-attr-3ed2973c', + value: + 'random-attr-value-1a3e896b', + selector: + '[data-random-attr-3ed2973c=random-attr-value-1a3e896b]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-da7592d9', + '.random-classname-5e2c1673', + ], + attributes: [ + { + key: + 'data-random-attr-88a44f1d', + selector: + '[data-random-attr-88a44f1d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-bd224da1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-198c9265', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-ba6e6169', + '.random-classname-c3283383', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-99053ead', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-6f24b567', + '.random-classname-c744ee31', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-1b23038b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-31b3c1ef', + '.random-classname-95f513f9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-f180523d', + ], + attributes: [ + { + key: + 'data-random-attr-4aec5f77', + selector: + '[data-random-attr-4aec5f77]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-b33ec69b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-8a08f985', + ], + attributes: [ + { + key: + 'data-random-attr-2900adff', + selector: + '[data-random-attr-2900adff]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-9012aa89', + ], + attributes: [ + { + key: + 'data-random-attr-b5e3f9a3', + selector: + '[data-random-attr-b5e3f9a3]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-2066cd87', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '37-5', + classNames: [ + '.random-classname-76a6470e', + '.random-classname-29ae1970', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-5579cba4', + '.random-classname-c1c68876', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-3aa718', + ], + attributes: [ + { + key: + 'data-random-attr-3755180a', + value: + 'random-attr-value-4c4f27e1', + selector: + '[data-random-attr-3755180a=random-attr-value-4c4f27e1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-1323f0a5', + '.random-classname-4b9d521f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-7b7683a9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-b5c864ed', + '.random-classname-abb7f5a7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-7d915871', + '.random-classname-e7c427cb', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-720ec639', + '.random-classname-5dc580d3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-4dd0afb7', + '.random-classname-8641ed01', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-8939fadb', + '.random-classname-41a577c5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '37-5', + classNames: [ + '.random-classname-faaf063f', + ], + attributes: [ + { + key: + 'data-random-attr-b1e1ecc9', + selector: + '[data-random-attr-b1e1ecc9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-449ad00d', + '.random-classname-e2202dc7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-389e591', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-b4c33155', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-7d38f759', + '.random-classname-85476ef3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-97fbb9d', + '.random-classname-99676fd7', + ], + attributes: [ + { + key: + 'data-random-attr-80d24221', + selector: + '[data-random-attr-80d24221]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-c6558ee5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-cc9ce5e9', + '.random-classname-f77bac03', + ], + attributes: [ + { + key: + 'data-random-attr-ff6dcb2d', + selector: + '[data-random-attr-ff6dcb2d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-d8a775e7', + '.random-classname-7c402b1', + ], + attributes: [ + { + key: + 'data-random-attr-56658c0b', + selector: + '[data-random-attr-56658c0b]', + }, + ], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-e85b9d02', + '.random-classname-1ea78784', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-397c0f56', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-e48930f8', + ], + attributes: [], + siblings: [ + ':nth-child(10)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-2456f1b', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-3', + classNames: [ + '.random-classname-aeb62cd4', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-a6d00348', + ], + attributes: [ + { + key: + 'data-random-attr-579033ba', + value: + 'random-attr-value-3087afd1', + selector: + '[data-random-attr-579033ba=random-attr-value-3087afd1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-a427f95', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-78f17b33', + '.random-classname-6f28d1dd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-18062017', + '.random-classname-6ceb9c61', + ], + attributes: [ + { + key: + 'data-random-attr-c745413b', + selector: + '[data-random-attr-c745413b]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-eef2829f', + '.random-classname-8218829', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-5435716d', + '.random-classname-ae333627', + ], + attributes: [ + { + key: + 'data-random-attr-81cecf1', + selector: + '[data-random-attr-81cecf1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-d411feb5', + '.random-classname-b9525aaf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-f6299953', + ], + attributes: [ + { + key: + 'data-random-attr-bb0834fd', + selector: + '[data-random-attr-bb0834fd]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '37-5', + classNames: [ + '.random-classname-51e1037', + ], + attributes: [ + { + key: + 'data-random-attr-f304a181', + selector: + '[data-random-attr-f304a181]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-2', + classNames: [ + '.random-classname-4aa1235b', + ], + attributes: [ + { + key: + 'data-random-attr-5d4d3445', + selector: + '[data-random-attr-5d4d3445]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-4f7b3149', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-b47ae47', + ], + attributes: [ + { + key: + 'data-random-attr-fccbba11', + selector: + '[data-random-attr-fccbba11]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-3a4c0dd5', + '.random-classname-4215d6cf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-57355bd9', + '.random-classname-9d03c773', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-53711057', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-f2878b65', + '.random-classname-a9fb7adf', + ], + attributes: [], + siblings: [ + ':nth-child(1)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-2', + classNames: [ + '.random-classname-781a5528', + ], + attributes: [ + { + key: + 'data-random-attr-400cc09a', + value: + 'random-attr-value-60dc1731', + selector: + '[data-random-attr-400cc09a=random-attr-value-60dc1731]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-caa9148b', + '.random-classname-cfb8acf5', + ], + attributes: [ + { + key: + 'data-random-attr-9efa62ef', + selector: + '[data-random-attr-9efa62ef]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-d0080593', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-ebc4ab3d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-c0b75bc1', + '.random-classname-ce8d179b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-94738eff', + '.random-classname-ffc53389', + ], + attributes: [ + { + key: + 'data-random-attr-93fc6aa3', + selector: + '[data-random-attr-93fc6aa3]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '36-7', + classNames: [ + '.random-classname-6335ce87', + '.random-classname-6a960451', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-c69e1eab', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-2', + classNames: [ + '.random-classname-4b1fdc15', + ], + attributes: [ + { + key: + 'data-random-attr-5a07ff0f', + selector: + '[data-random-attr-5a07ff0f]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-4c31be5d', + '.random-classname-73e84097', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-ba2d29bb', + '.random-classname-5807e9a5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-2b98b31f', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-2', + classNames: [ + '.random-classname-e6bec0c3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-d82b7ded', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-741f76a7', + '.random-classname-34418171', + ], + attributes: [ + { + key: + 'data-random-attr-c8cb38cb', + selector: + '[data-random-attr-c8cb38cb]', + }, + ], + siblings: [ + ':nth-child(9)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '36-7', + classNames: [ + '.random-classname-ecd15ec2', + '.random-classname-4056f44', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '37-2', + classNames: [ + '.random-classname-d497b4b8', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-34a896aa', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-cec40f7e', + '.random-classname-f1dfab60', + ], + attributes: [ + { + key: + 'data-random-attr-728ecb92', + value: + 'random-attr-value-d40d75c9', + selector: + '[data-random-attr-728ecb92=random-attr-value-d40d75c9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-a8e2690d', + '.random-classname-48602ec7', + ], + attributes: [ + { + key: + 'data-random-attr-bc268e91', + selector: + '[data-random-attr-bc268e91]', + }, + ], + siblings: [ + ':nth-child(11)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '40-2', + classNames: [ + '.random-classname-e7faac62', + '.random-classname-52f2de4', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-5f9b984a', + '.random-classname-45f24a0c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-cd7f5b1e', + '.random-classname-55b21800', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-4080eb34', + '.random-classname-50521e86', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-5b4bb15c', + '.random-classname-d0254eee', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-6ad73c84', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-a4e1b5f8', + ], + attributes: [], + siblings: [ + ':nth-child(2)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-7a15c01b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-31667f7f', + ], + attributes: [ + { + key: + 'data-random-attr-693f809', + selector: + '[data-random-attr-693f809]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-76d9ef4d', + '.random-classname-5306cf07', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-3', + classNames: [ + '.random-classname-eff2e72b', + '.random-classname-68263895', + ], + attributes: [ + { + key: + 'data-random-attr-88790f8f', + selector: + '[data-random-attr-88790f8f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-962c2c33', + '.random-classname-8a83aadd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-44fb6117', + ], + attributes: [ + { + key: + 'data-random-attr-762f8561', + selector: + '[data-random-attr-762f8561]', + }, + ], + siblings: [ + ':nth-child(7)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-79f5dc72', + '.random-classname-9cc7a874', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '40-3', + classNames: [ + '.random-classname-898cca5a', + '.random-classname-7aa169c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-2', + classNames: [ + '.random-classname-6cd9262e', + '.random-classname-a872e590', + ], + attributes: [ + { + key: + 'data-random-attr-ed297542', + value: + 'random-attr-value-3fb433b9', + selector: + '[data-random-attr-ed297542=random-attr-value-3fb433b9]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-754ca53', + '.random-classname-4e278dfd', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '37-2', + classNames: [ + '.random-classname-a2150a81', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-f557ad45', + ], + attributes: [ + { + key: + 'data-random-attr-da8e57bf', + selector: + '[data-random-attr-da8e57bf]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-170d5f63', + '.random-classname-1013b58d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-539a6311', + '.random-classname-268dab6b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '36-7', + classNames: [ + '.random-classname-c0d8c6d5', + '.random-classname-1f77f7cf', + ], + attributes: [ + { + key: + 'data-random-attr-f8d924d9', + selector: + '[data-random-attr-f8d924d9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-99c8011d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-c9f81fa1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-91268465', + '.random-classname-fa69dbdf', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-c9bc1583', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '36-7', + classNames: [ + '.random-classname-85dd70ad', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-a4d74031', + '.random-classname-e633258b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-53f9e5f5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-7d1a5f9', + '.random-classname-75d43693', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-792d043d', + '.random-classname-dbe5e177', + ], + attributes: [ + { + key: + 'data-random-attr-1220c4c1', + selector: + '[data-random-attr-1220c4c1]', + }, + ], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '36-7', + classNames: [ + '.random-classname-351de720', + '.random-classname-861d3d52', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-1a971c54', + ], + attributes: [], + siblings: [ + ':nth-child(6)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-79c8cf87', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-aec8afab', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-cbfb200f', + '.random-classname-8be5b719', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '36-7', + classNames: [ + '.random-classname-7c3b04b3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-9c1e975d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-cd3f8197', + '.random-classname-82d6f9e1', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-c93ffabb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-78d8141f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '34-3', + classNames: [ + '.random-classname-e4f895a9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-58b296ed', + '.random-classname-524af7a7', + ], + attributes: [ + { + key: + 'data-random-attr-b955aa71', + selector: + '[data-random-attr-b955aa71]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-79b3d435', + ], + attributes: [ + { + key: + 'data-random-attr-6de24c2f', + selector: + '[data-random-attr-6de24c2f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-c41be2d3', + '.random-classname-5664ba7d', + ], + attributes: [ + { + key: + 'data-random-attr-892c31b7', + selector: + '[data-random-attr-892c31b7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-2c5c9cdb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-d5ba69c5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-da1cfec9', + '.random-classname-7afc97e3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '34-3', + classNames: [ + '.random-classname-dd4e020d', + '.random-classname-6642fc7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-d5273791', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-44e3f3eb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-ee42884f', + '.random-classname-64808959', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-dbfed0f3', + '.random-classname-9fc76d9d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-82b3f1d7', + '.random-classname-730c1421', + ], + attributes: [ + { + key: + 'data-random-attr-efbd4efb', + selector: + '[data-random-attr-efbd4efb]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-6f1a8c5f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '33-5', + classNames: [ + '.random-classname-3d938e03', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-b3ba54b1', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-5179ae0b', + '.random-classname-da980275', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-eb974a79', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-140eb0bd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-70dec1f7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-f6ea111b', + '.random-classname-90e32805', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-cc1c8109', + '.random-classname-4d789423', + ], + attributes: [ + { + key: + 'data-random-attr-4dce884d', + selector: + '[data-random-attr-4dce884d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '33-5', + classNames: [ + '.random-classname-997bd007', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-e51f782b', + '.random-classname-feadf195', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-268e308f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-c9eadd33', + ], + attributes: [ + { + key: + 'data-random-attr-f30283dd', + selector: + '[data-random-attr-f30283dd]', + }, + ], + siblings: [ + ':nth-child(7)', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-9e28ff5e', + '.random-classname-bab68640', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-d3bf1d74', + ], + attributes: [ + { + key: + 'data-random-attr-9c704ac6', + value: + 'random-attr-value-3943a36d', + selector: + '[data-random-attr-9c704ac6=random-attr-value-3943a36d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-ee8a3827', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-1ce670b5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '33-5', + classNames: [ + '.random-classname-9bbf7cb9', + '.random-classname-d103fb53', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-206ae6fd', + '.random-classname-5b3d9237', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-90897381', + ], + attributes: [ + { + key: + 'data-random-attr-f2c7c55b', + selector: + '[data-random-attr-f2c7c55b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-b1062645', + '.random-classname-ec3838bf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-ff9a4349', + '.random-classname-bb4cd063', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-2914e8d', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-cbbb3c6b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-551e18cf', + '.random-classname-4f60edd9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '33-5', + classNames: [ + '.random-classname-240fda1d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-19819257', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-4288b77b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-c41c3cdf', + '.random-classname-3d9c7c69', + ], + attributes: [ + { + key: + 'data-random-attr-d64c0683', + selector: + '[data-random-attr-d64c0683]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-437f89ad', + '.random-classname-54d43867', + ], + attributes: [ + { + key: + 'data-random-attr-23366931', + selector: + '[data-random-attr-23366931]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-7dc1368b', + '.random-classname-26df1ef5', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-4315eef9', + '.random-classname-18246793', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-5088a277', + '.random-classname-c6ee2dc1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '32-3', + classNames: [ + '.random-classname-ac636485', + '.random-classname-bd2550ff', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-39d654cd', + '.random-classname-741fd087', + ], + attributes: [ + { + key: + 'data-random-attr-1dc95651', + selector: + '[data-random-attr-1dc95651]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-74f740ab', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-9a32410f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-b6268019', + '.random-classname-a13bb5b3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-b5ac297', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-8630e2e1', + '.random-classname-4756cbbb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-eebbdba5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-48f9ea9', + '.random-classname-cb1ca2c3', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '32-3', + classNames: [ + '.random-classname-b1c89dda', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-db2ab61c', + '.random-classname-aa1471ae', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-67b9bd10', + '.random-classname-4c5fb8c2', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-d05abeb8', + '.random-classname-b00230aa', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-507a497e', + '.random-classname-c003f560', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-5a00ee94', + ], + attributes: [ + { + key: + 'data-random-attr-840ad8e6', + value: + 'random-attr-value-71dd9b0d', + selector: + '[data-random-attr-840ad8e6=random-attr-value-71dd9b0d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-2c2c30c7', + '.random-classname-de8be091', + ], + attributes: [ + { + key: + 'data-random-attr-9d1384eb', + selector: + '[data-random-attr-9d1384eb]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-2d5f5c55', + ], + attributes: [ + { + key: + 'data-random-attr-560aa94f', + selector: + '[data-random-attr-560aa94f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-b7a5259', + '.random-classname-d32081f3', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '31-9', + classNames: [ + '.random-classname-8a3efd21', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '32-1', + classNames: [ + '.random-classname-9ca879e5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-7b6eed5f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-35e57f03', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-6afcf8e7', + '.random-classname-54b7db1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-6acf3b75', + '.random-classname-c814756f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-604d9379', + '.random-classname-dcfe0013', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-bce382f7', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-3607b0be', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-6d9de0d2', + '.random-classname-6d450bd4', + ], + attributes: [], + siblings: [ + ':nth-child(6)', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '31-9', + classNames: [ + '.random-classname-1754aad1', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '32-1', + classNames: [ + '.random-classname-28e7518f', + '.random-classname-199c6499', + ], + attributes: [ + { + key: + 'data-random-attr-242d8e33', + selector: + '[data-random-attr-242d8e33]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-4531e317', + '.random-classname-a0e35761', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-503b43b', + '.random-classname-a56f5825', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-ce10a329', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-aae69b43', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-4b5bb927', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-b146a9b5', + '.random-classname-168b3daf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-6aaec5b9', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-63372c53', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '31-9', + classNames: [ + '.random-classname-c1d23ffd', + '.random-classname-84735337', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '32-1', + classNames: [ + '.random-classname-4e61dc81', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-20589f45', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-852619bf', + '.random-classname-a97fcc49', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-1d32e78d', + '.random-classname-2af9b147', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-9aeccd6b', + '.random-classname-33de38d5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-eaccb6d9', + '.random-classname-58a2da73', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-6f7bb31d', + '.random-classname-1dafd357', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-1c5df1a1', + '.random-classname-1662887b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-c51e8569', + '.random-classname-fe5ff783', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '31-9', + classNames: [ + '.random-classname-ef96b967', + '.random-classname-6bf99231', + ], + attributes: [ + { + key: + 'data-random-attr-a153478b', + selector: + '[data-random-attr-a153478b]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '32-1', + classNames: [ + '.random-classname-953e37f9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-8d69b63d', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-2ff3812c', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-27403120', + '.random-classname-e1581752', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-b2ab86a6', + '.random-classname-3d3fb4c8', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-1f16613a', + '.random-classname-52b7307c', + ], + attributes: [ + { + key: + 'data-random-attr-76cbbb0e', + value: + 'random-attr-value-b5ad0715', + selector: + '[data-random-attr-76cbbb0e=random-attr-value-b5ad0715]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-c94b4919', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-74c066b3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-3e3a0397', + ], + attributes: [ + { + key: + 'data-random-attr-8eeecbe1', + selector: + '[data-random-attr-8eeecbe1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '31-9', + classNames: [ + '.random-classname-608bd4a5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '32-1', + classNames: [ + '.random-classname-9b22d61f', + '.random-classname-d60aa7a9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-b42cc8ed', + '.random-classname-8fedf9a7', + ], + attributes: [ + { + key: + 'data-random-attr-6ea9fc71', + selector: + '[data-random-attr-6ea9fc71]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-cbf86bcb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-71e58e2f', + '.random-classname-4a3bea39', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-5f97b3b7', + ], + attributes: [ + { + key: + 'data-random-attr-a8139101', + selector: + '[data-random-attr-a8139101]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-185f5bc5', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-3ed795e6', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-bb0dc47a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-a6b2b5bc', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '31-9', + classNames: [ + '.random-classname-31b9b24e', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '32-1', + classNames: [ + '.random-classname-da0ae6b0', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-69e9b362', + '.random-classname-3a7ecce4', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-13711c58', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-de6b7f4a', + '.random-classname-3c35c90c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-69b2321e', + '.random-classname-c0860700', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-124ec832', + '.random-classname-f6344a34', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-342046a8', + '.random-classname-d6c32e1a', + ], + attributes: [ + { + key: + 'data-random-attr-9e6af05c', + value: + 'random-attr-value-5c9dd00b', + selector: + '[data-random-attr-9e6af05c=random-attr-value-5c9dd00b]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-33e7dc79', + '.random-classname-f8143113', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-bf6f62bd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '31-9', + classNames: [ + '.random-classname-43ac43f7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '32-1', + classNames: [ + '.random-classname-3f9eb31b', + ], + attributes: [ + { + key: + 'data-random-attr-ea5a1a05', + selector: + '[data-random-attr-ea5a1a05]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-823d227f', + '.random-classname-2ed99309', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-5823ba4d', + '.random-classname-f9b1d207', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-15a96395', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-42243a24', + '.random-classname-e9ff7af6', + ], + attributes: [ + { + key: + 'data-random-attr-90f8bd98', + value: + 'random-attr-value-38732417', + selector: + '[data-random-attr-90f8bd98=random-attr-value-38732417]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-67a0853b', + '.random-classname-d2115125', + ], + attributes: [], + siblings: [ + ':nth-child(9)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-3b6a0774', + '.random-classname-a85cc4c6', + ], + attributes: [ + { + key: + 'data-random-attr-989537e8', + value: + 'random-attr-value-e5f13a27', + selector: + '[data-random-attr-989537e8=random-attr-value-e5f13a27]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-fdfd90f1', + ], + attributes: [ + { + key: + 'data-random-attr-6f83744b', + selector: + '[data-random-attr-6f83744b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-504ae2b5', + '.random-classname-cd0deaf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '31-9', + classNames: [ + '.random-classname-cdee5d53', + '.random-classname-c25d98fd', + ], + attributes: [ + { + key: + 'data-random-attr-6c6d1437', + selector: + '[data-random-attr-6c6d1437]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '32-1', + classNames: [ + '.random-classname-fefe675b', + '.random-classname-d34f1845', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-b557fabf', + '.random-classname-9f495549', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-ca67b247', + '.random-classname-8a5e5e11', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-a4225e6b', + '.random-classname-4056f1d5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-9365acf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-5b1c7fd9', + '.random-classname-218a8b73', + ], + attributes: [ + { + key: + 'data-random-attr-c0b8c1d', + selector: + '[data-random-attr-c0b8c1d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-27a6daa1', + ], + attributes: [ + { + key: + 'data-random-attr-b540597b', + selector: + '[data-random-attr-b540597b]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-34cfedf', + '.random-classname-ea848e69', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-1d2fbbad', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-f20bb31', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '31-1', + classNames: [ + '.random-classname-60e9588b', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '32-1', + classNames: [ + '.random-classname-dabce6ef', + '.random-classname-8e4a80f9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-343e0f3d', + '.random-classname-e21a2477', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-cc2c5c3e', + '.random-classname-c14f5620', + ], + attributes: [], + siblings: [ + ':nth-child(14)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-d3862ea3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-fc4f86cd', + '.random-classname-5419d287', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-db6062ab', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-afcec015', + '.random-classname-8b6c830f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-55541219', + ], + attributes: [ + { + key: + 'data-random-attr-6c917b3', + selector: + '[data-random-attr-6c917b3]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-75dd4497', + '.random-classname-2d10b4e1', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-902e371f', + '.random-classname-e969b0a9', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '31-1', + classNames: [ + '.random-classname-f657aa7', + '.random-classname-beea2571', + ], + attributes: [ + { + key: + 'data-random-attr-cd0f7ccb', + selector: + '[data-random-attr-cd0f7ccb]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '32-1', + classNames: [ + '.random-classname-c0ca7f35', + '.random-classname-e94d2f2f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-93813339', + '.random-classname-697b75d3', + ], + attributes: [ + { + key: + 'data-random-attr-350c57d', + selector: + '[data-random-attr-350c57d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-2b01fa01', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-327d4c5', + '.random-classname-eb2a6b3f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-e3a399c9', + '.random-classname-c8ceae3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-ef0832c7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-737ea6eb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-aa50ce55', + '.random-classname-8666eb4f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-9019e459', + '.random-classname-a8efe3f3', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-c4d0cf21', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '31-1', + classNames: [ + '.random-classname-9fbe6be5', + '.random-classname-57e3af5f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '32-1', + classNames: [ + '.random-classname-56d12e9', + '.random-classname-21156103', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-a809fae7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-6f99cfb1', + ], + attributes: [ + { + key: + 'data-random-attr-9035e10b', + selector: + '[data-random-attr-9035e10b]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-b8c1b76f', + '.random-classname-f6662579', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-5dd5bbbd', + ], + attributes: [], + siblings: [ + ':nth-child(9)', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-7427eabe', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-1c34bad2', + ], + attributes: [ + { + key: + 'data-random-attr-9532f5d4', + value: + 'random-attr-value-1fabe723', + selector: + '[data-random-attr-9532f5d4=random-attr-value-1fabe723]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-ab84534d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-4c7bfcd1', + '.random-classname-68bd2b2b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-9a65938f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '31-1', + classNames: [ + '.random-classname-d5adf699', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '32-1', + classNames: [ + '.random-classname-9b570edd', + '.random-classname-38786517', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-1272961', + ], + attributes: [ + { + key: + 'data-random-attr-e141563b', + selector: + '[data-random-attr-e141563b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-a0574a25', + '.random-classname-aad679f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-98ceb529', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '36-1', + classNames: [ + '.random-classname-cee6ee6d', + '.random-classname-ce4abb27', + ], + attributes: [ + { + key: + 'data-random-attr-c36fb9f1', + selector: + '[data-random-attr-c36fb9f1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-1', + classNames: [ + '.random-classname-c69c854b', + ], + attributes: [ + { + key: + 'data-random-attr-89f31bb5', + selector: + '[data-random-attr-89f31bb5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '38-1', + classNames: [ + '.random-classname-95a7faf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-21298e53', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '40-1', + classNames: [ + '.random-classname-b20cf1fd', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-783eae81', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '31-1', + classNames: [ + '.random-classname-8ccddbbf', + ], + attributes: [ + { + key: + 'data-random-attr-70f6de49', + selector: + '[data-random-attr-70f6de49]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '32-1', + classNames: [ + '.random-classname-c1232363', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-ae2198d', + '.random-classname-f999b347', + ], + attributes: [ + { + key: + 'data-random-attr-e2bd0711', + selector: + '[data-random-attr-e2bd0711]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '34-1', + classNames: [ + '.random-classname-f75bef6b', + '.random-classname-9973aad5', + ], + attributes: [], + siblings: [ + ':nth-child(5)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-3040d736', + '.random-classname-5d45a3d8', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '29-5', + classNames: [ + '.random-classname-5f5b088c', + '.random-classname-641b1d9e', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '29-5', + classNames: [ + '.random-classname-798179b4', + ], + attributes: [ + { + key: + 'data-random-attr-d0e63106', + value: + 'random-attr-value-593dd4ad', + selector: + '[data-random-attr-d0e63106=random-attr-value-593dd4ad]', + }, + ], + siblings: [ + ':nth-child(7)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '29-5', + classNames: [ + '.random-classname-49bbb16e', + '.random-classname-1a0bd2d0', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '29-5', + classNames: [ + '.random-classname-b356b04', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '28-9', + classNames: [ + '.random-classname-f0af8c78', + '.random-classname-c3ef046a', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '28-9', + classNames: [ + '.random-classname-2270793e', + '.random-classname-86b27b20', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '28-9', + classNames: [ + '.random-classname-2662f152', + '.random-classname-554af054', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '28-9', + classNames: [ + '.random-classname-24fb3ec8', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '28-9', + classNames: [ + '.random-classname-af7c7b3a', + '.random-classname-7765a7c', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '28-9', + classNames: [ + '.random-classname-d1447770', + ], + attributes: [], + siblings: [ + ':nth-child(4)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '28-9', + classNames: [ + '.random-classname-6755c8b3', + '.random-classname-4f39fb5d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '28-9', + classNames: [ + '.random-classname-c2448597', + '.random-classname-f0969de1', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '27-9', + classNames: [ + '.random-classname-fbb33ebb', + '.random-classname-6117c6a5', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '27-9', + classNames: [ + '.random-classname-960775c3', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '27-9', + classNames: [ + '.random-classname-e4a0fba7', + '.random-classname-1d8e4e71', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '27-9', + classNames: [ + '.random-classname-ddc4b835', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '27-9', + classNames: [ + '.random-classname-6ef8d02f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '27-9', + classNames: [ + '.random-classname-16f8a6d3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '27-9', + classNames: [ + '.random-classname-40921e7d', + ], + attributes: [ + { + key: + 'data-random-attr-511335b7', + selector: + '[data-random-attr-511335b7]', + }, + ], + siblings: [ + ':nth-child(13)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '27-9', + classNames: [ + '.random-classname-e8306460', + '.random-classname-8854ec92', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-aa54cd94', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-9765008', + '.random-classname-44edde7a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-e4fbdfbc', + '.random-classname-cb1e6c4e', + ], + attributes: [], + siblings: [ + ':nth-child(12)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-8dbfad59', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-fa06d19d', + '.random-classname-be7cf5d7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-133492fb', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-65a91be9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-3a12612d', + '.random-classname-85367be7', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-f7d1f20b', + '.random-classname-434ce675', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-37c86e79', + '.random-classname-2bcc9313', + ], + attributes: [ + { + key: + 'data-random-attr-976014bd', + selector: + '[data-random-attr-976014bd]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-4189c5f7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-5c63551b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-cdcae47f', + '.random-classname-7126a509', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-c61a5823', + '.random-classname-f308ec4d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-c5a5a5d1', + '.random-classname-55f9bc2b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-298ab48f', + '.random-classname-e50cbf99', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-d865e7dd', + '.random-classname-5541a617', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-81e6273b', + '.random-classname-a0414325', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-5d03be29', + '.random-classname-4f176e43', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-14683c27', + '.random-classname-df45e2f1', + ], + attributes: [ + { + key: + 'data-random-attr-15b9964b', + selector: + '[data-random-attr-15b9964b]', + }, + ], + siblings: [ + ':nth-child(11)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-b955d2c4', + '.random-classname-2f96bc96', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-7acd8aec', + ], + attributes: [ + { + key: + 'data-random-attr-ce8daefe', + value: + 'random-attr-value-44280a45', + selector: + '[data-random-attr-ce8daefe=random-attr-value-44280a45]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-ae886749', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-ab729463', + '.random-classname-fdefb28d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-237fb011', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-a499806b', + ], + attributes: [ + { + key: + 'data-random-attr-cf3463d5', + selector: + '[data-random-attr-cf3463d5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-de5e9ccf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-62e5ed73', + '.random-classname-78973e1d', + ], + attributes: [ + { + key: + 'data-random-attr-6ed29657', + selector: + '[data-random-attr-6ed29657]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-9407fb7b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-eedd6165', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-e78dc0df', + ], + attributes: [ + { + key: + 'data-random-attr-4efca069', + selector: + '[data-random-attr-4efca069]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-bbb3ca83', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-a49b0d31', + '.random-classname-f4217a8b', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-f63628ef', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-b50f12f9', + '.random-classname-be8d2b93', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-bc0bd1c1', + '.random-classname-e3b6fd9b', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-15b8d4ff', + '.random-classname-8ba86989', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-8323d487', + '.random-classname-58dffa51', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-f658dc70', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-1fb1ef22', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-bd3dca18', + '.random-classname-c6fb330a', + ], + attributes: [ + { + key: + 'data-random-attr-f9ac72cc', + value: + 'random-attr-value-d5da0fbb', + selector: + '[data-random-attr-f9ac72cc=random-attr-value-d5da0fbb]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-9210f91f', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-8e0866c3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-f7213ed', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-1a967771', + ], + attributes: [ + { + key: + 'data-random-attr-2f499ecb', + selector: + '[data-random-attr-2f499ecb]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-ed62f135', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '22-7', + classNames: [ + '.random-classname-4ee9ad44', + '.random-classname-5cb7fb16', + ], + attributes: [ + { + key: + 'data-random-attr-81d0d2b8', + value: + 'random-attr-value-9bf6f6b7', + selector: + '[data-random-attr-81d0d2b8=random-attr-value-9bf6f6b7]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '22-7', + classNames: [ + '.random-classname-3ba4c6c5', + '.random-classname-c9e2d3f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '22-7', + classNames: [ + '.random-classname-2c6abc9', + '.random-classname-252bcce3', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '22-7', + classNames: [ + '.random-classname-10f434c7', + ], + attributes: [ + { + key: + 'data-random-attr-a8068491', + selector: + '[data-random-attr-a8068491]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '22-7', + classNames: [ + '.random-classname-91f9c8eb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '22-7', + classNames: [ + '.random-classname-79d24055', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '21-4', + classNames: [ + '.random-classname-f7d32d4f', + '.random-classname-c8497659', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '21-4', + classNames: [ + '.random-classname-c8cf45f3', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '21-4', + classNames: [ + '.random-classname-b5936d7', + '.random-classname-24f2a121', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '20-7', + classNames: [ + '.random-classname-d9645de5', + ], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '20-7', + classNames: [ + '.random-classname-cbc924e9', + ], + attributes: [ + { + key: + 'data-random-attr-1a554303', + selector: + '[data-random-attr-1a554303]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '20-7', + classNames: [ + '.random-classname-4c26fce7', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '20-7', + classNames: [ + '.random-classname-a372030b', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '20-7', + classNames: [ + '.random-classname-f27ef96f', + '.random-classname-880eb779', + ], + attributes: [ + { + key: + 'data-random-attr-646ec413', + selector: + '[data-random-attr-646ec413]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '20-7', + classNames: [ + '.random-classname-d89e86f7', + '.random-classname-f7800641', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '19-7', + classNames: [ + '.random-classname-e24ba61b', + '.random-classname-9dda8505', + ], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '19-7', + classNames: [ + '.random-classname-f3a41c26', + '.random-classname-ab146648', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '19-7', + classNames: [ + '.random-classname-d9da39fc', + '.random-classname-d857008e', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '19-7', + classNames: [ + '.random-classname-f6dec5a2', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '19-7', + classNames: [ + '.random-classname-18d6d924', + ], + attributes: [ + { + key: 'data-random-attr-9f0e71f6', + value: + 'random-attr-value-3298c0dd', + selector: + '[data-random-attr-9f0e71f6=random-attr-value-3298c0dd]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '19-7', + classNames: [ + '.random-classname-16fafb61', + ], + attributes: [ + { + key: 'data-random-attr-598ef83b', + selector: + '[data-random-attr-598ef83b]', + }, + ], + siblings: [':nth-child(13)'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-49516a72', + '.random-classname-77406674', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-d3ba06e8', + '.random-classname-425a185a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-df3a949c', + '.random-classname-3884542e', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-7da08342', + '.random-classname-89e287c4', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: ['.random-classname-5863996'], + attributes: [ + { + key: 'data-random-attr-3c6e1538', + value: 'random-attr-value-3cf25737', + selector: + '[data-random-attr-3c6e1538=random-attr-value-3cf25737]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: ['.random-classname-4ee5a5b'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-e7fdf049', + ], + attributes: [ + { + key: 'data-random-attr-cf460563', + selector: + '[data-random-attr-cf460563]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-59214b8d', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-dca65911', + '.random-classname-bbdb116b', + ], + attributes: [ + { + key: 'data-random-attr-71991cd5', + selector: + '[data-random-attr-71991cd5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-bd58bdcf', + ], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '17-5', + classNames: ['.random-classname-fb599e73'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '17-5', + classNames: ['.random-classname-6893171d'], + attributes: [ + { + key: 'data-random-attr-d610d757', + selector: '[data-random-attr-d610d757]', + }, + ], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '17-5', + classNames: [ + '.random-classname-ff545a65', + '.random-classname-ff9421df', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '17-5', + classNames: [ + '.random-classname-3fc606ad', + '.random-classname-8c48bd67', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '16-11', + classNames: [ + '.random-classname-b6ee3631', + '.random-classname-e7c38b8b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '16-11', + classNames: ['.random-classname-90f53bf5'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '16-11', + classNames: [ + '.random-classname-2c75bf9', + '.random-classname-3f715c93', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '16-11', + classNames: [ + '.random-classname-5b931a3d', + '.random-classname-d1326777', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '16-11', + classNames: [ + '.random-classname-ba214e9b', + '.random-classname-3e74c185', + ], + attributes: [ + { + key: 'data-random-attr-c007b5ff', + selector: '[data-random-attr-c007b5ff]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '16-11', + classNames: [ + '.random-classname-611781a3', + '.random-classname-d31351cd', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '16-11', + classNames: [ + '.random-classname-869fa351', + '.random-classname-861c15ab', + ], + attributes: [ + { + key: 'data-random-attr-20beb15', + selector: '[data-random-attr-20beb15]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '16-11', + classNames: [ + '.random-classname-6ec66d19', + '.random-classname-d3fb2ab3', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '16-11', + classNames: ['.random-classname-d95f0797'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '16-11', + classNames: [ + '.random-classname-6f04e0bb', + '.random-classname-4833b8a5', + ], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '14-6', + classNames: [ + '.random-classname-4edecba9', + '.random-classname-258d57c3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '14-6', + classNames: ['.random-classname-94d12ced'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '14-6', + classNames: ['.random-classname-d063fda7'], + attributes: [ + { + key: 'data-random-attr-4602a071', + selector: '[data-random-attr-4602a071]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '14-6', + classNames: ['.random-classname-b06cafcb'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '14-6', + classNames: [ + '.random-classname-d0a90e39', + '.random-classname-37f08d3', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '13-5', + classNames: [ + '.random-classname-dd9eb7b7', + '.random-classname-40253501', + ], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '13-5', + classNames: ['.random-classname-a9593fc5'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '13-5', + classNames: ['.random-classname-cc3e0e3f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '13-5', + classNames: ['.random-classname-4bc13de3'], + attributes: [ + { + key: 'data-random-attr-aac7980d', + selector: '[data-random-attr-aac7980d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-d35f2d91'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-e888f955'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: [ + '.random-classname-30ef4e4f', + '.random-classname-cfb73f59', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: [ + '.random-classname-bdfe839d', + '.random-classname-10f977d7', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-970834fb'], + attributes: [], + siblings: [':nth-child(11)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: [ + '.random-classname-9de61e34', + '.random-classname-7e74c986', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-a34d621a'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: [ + '.random-classname-b057445c', + '.random-classname-459d59ee', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-f4bd0502'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: [ + '.random-classname-497ff756', + '.random-classname-9e7d58f8', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-50787fac'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-5eb9d7a0'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-5', + classNames: [ + '.random-classname-8e6dd4d4', + '.random-classname-60add926', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '11-5', + classNames: ['.random-classname-7e6e2b48'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '11-5', + classNames: ['.random-classname-45589bba'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '11-5', + classNames: [ + '.random-classname-ad75cefc', + '.random-classname-b985d8e', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + { + value: { + name: '10-5', + classNames: ['.random-classname-eecf72a2'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '10-5', + classNames: ['.random-classname-ff7b6ef6'], + attributes: [ + { + key: 'data-random-attr-ab7cd198', + value: 'random-attr-value-25202817', + selector: '[data-random-attr-ab7cd198=random-attr-value-25202817]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '10-5', + classNames: ['.random-classname-783bc93b', '.random-classname-75013525'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '10-5', + classNames: ['.random-classname-7319d029', '.random-classname-c2215043'], + attributes: [], + siblings: [':nth-child(5)'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '9-7', + classNames: ['.random-classname-5227a55a'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '9-7', + classNames: ['.random-classname-4b2c312e', '.random-classname-ad392890'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '9-7', + classNames: ['.random-classname-98033cc4', '.random-classname-b229b696'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '9-7', + classNames: ['.random-classname-4d479a38', '.random-classname-cb41182a'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '9-7', + classNames: ['.random-classname-520c40e0'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '9-7', + classNames: ['.random-classname-29b77d12'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-9d446866', '.random-classname-af4dbc88'], + attributes: [ + { + key: 'data-random-attr-67227efa', + value: 'random-attr-value-9e310211', + selector: '[data-random-attr-67227efa=random-attr-value-9e310211]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-4d20a26b'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-5496decf', '.random-classname-ad43a3d9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-e9b2f01d', '.random-classname-fe131857'], + attributes: [], + siblings: [':nth-child(5)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-c32d6d80'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-e7a772b2'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-7702d8b4'], + attributes: [ + { + key: 'data-random-attr-7171e806', + value: 'random-attr-value-a401fad', + selector: '[data-random-attr-7171e806=random-attr-value-a401fad]', + }, + ], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-b7699c8b', '.random-classname-bb274f5'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-3763a4f9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-aef7733d'], + attributes: [ + { + key: 'data-random-attr-666d2877', + selector: '[data-random-attr-666d2877]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-7d8f9f9b', '.random-classname-9f643a85'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-eb4ff2a3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-12f1eacd'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-eaab197c', '.random-classname-668c8c0e'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-43934922', '.random-classname-df43a8a4'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-a6fbd418'], + attributes: [ + { + key: 'data-random-attr-9107cd0a', + value: 'random-attr-value-bb8058e1', + selector: '[data-random-attr-9107cd0a=random-attr-value-bb8058e1]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-9a37b1a5', '.random-classname-c903bb1f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-6c9648c3', '.random-classname-685445ed'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '6-3', + classNames: ['.random-classname-6eb7ea7', '.random-classname-2fd2c971'], + attributes: [ + { + key: 'data-random-attr-d193c0cb', + selector: '[data-random-attr-d193c0cb]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '6-3', + classNames: ['.random-classname-f593b32f'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-628839d3', '.random-classname-e32e297d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-a39e01', '.random-classname-2753d3db'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-c9dcac94'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-e6a49f08'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-34e4057a', '.random-classname-4c7f9ebc'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-41bb834e', '.random-classname-ca59dfb0'], + attributes: [ + { + key: 'data-random-attr-e7881462', + value: 'random-attr-value-34090859', + selector: '[data-random-attr-e7881462=random-attr-value-34090859]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-b2bea7f3', '.random-classname-5db05c9d'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-2aa47321', '.random-classname-ad7805fb'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-c99a4fe5'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-e9b536e9', '.random-classname-a1a52503'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-d753fee7', '.random-classname-20e673b1'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-6be250b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-f54c3b6f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-633f2613'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-871408f7', '.random-classname-cdcad841'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-9f9d877f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + selectors: [ + '::before >', + '.random-classname-7134e52f .random-classname-7ef38bd3', + '.random-classname-277f4b7d', + ':first-child', + '::before .random-classname-7ef38bd3 > .random-classname-277f4b7d :first-child .random-classname-57d7a13f >', + '.random-classname-b1643fc9', + '.random-classname-6c6280e3', + '::before', + '::before :not(.random-classname-7ef38bd3) > .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-57d7a13f > .random-classname-6c6280e3 .random-classname-5e569891', + '.random-classname-277f4b7d :first-child .random-classname-63271ac5 .random-classname-6c6280e3 .random-classname-d75c28c7 .random-classname-1406fceb', + '.random-classname-1406fceb ::slotted', + '.random-classname-fc9c0a59 .random-classname-91c27e9d', + '.random-classname-338e2ad7', + ':last-child', + '::slotted', + ':not(.random-classname-d75c28c7) ::slotted :not(.random-classname-fc9c0a59) .random-classname-91c27e9d .random-classname-338e2ad7 :not(.random-classname-b1f0b1e5)', + '::slotted >', + '.random-classname-196d4e2d', + '.random-classname-7d68f0e7', + '.random-classname-60f9370b', + '.random-classname-60f9370b .random-classname-e3057375 >', + '.random-classname-ee8f1a41', + '.random-classname-c66fda1b', + '.random-classname-9c70d905', + '.random-classname-e3057375 .random-classname-db8b4b79 .random-classname-ee8f1a41 :not(.random-classname-9c70d905) .random-classname-7e5397f', + '.random-classname-9eb77d23', + '[data-random-attr-8412594d]', + ':last-child > .random-classname-b1f0b1e5 .random-classname-c710b8e9 .random-classname-196d4e2d .random-classname-60f9370b .random-classname-e3057375 [data-random-attr-a32a41bd] .random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f [data-random-attr-8412594d] .random-classname-f25762d1', + '::slotted [data-random-attr-8d8e498f] >', + '.random-classname-9eb77d23 > .random-classname-f25762d1 .random-classname-d66be295 > :first-child', + '.random-classname-f6b7db17', + ':not(.random-classname-ccf61c99) .random-classname-f6b7db17 .random-classname-37740f61', + '.random-classname-f6b7db17 [data-random-attr-acad2c3b] > .random-classname-b6db9d9f', + '.random-classname-7fbf1343', + '.random-classname-b6db9d9f ::before .random-classname-e63fb127', + '.random-classname-c5ee35af >', + ':first-child :not(::before) >', + ':first-child > .random-classname-de8777fd > ::before >', + '.random-classname-92711bf >', + '.random-classname-d8354b37 ::before :not(::before) .random-classname-3564b963', + '.random-classname-3564b963 :last-child', + ':not(.random-classname-2c161f8d) .random-classname-172870d5', + '.random-classname-eb2731cf', + '[data-random-attr-185e6ed9]', + '.random-classname-d1adcb57', + '.random-classname-7426a9a1', + '.random-classname-39d0456b .random-classname-eb2731cf > .random-classname-7426a9a1 .random-classname-2e08ae65', + '.random-classname-3904daad', + '.random-classname-af2b167', + '.random-classname-2c161f8d .random-classname-39d0456b > :first-child .random-classname-7426a9a1 [data-random-attr-8dfe3d69] .random-classname-260e8ff5', + '.random-classname-2cf95df :not(.random-classname-2ec71093) >', + '.random-classname-2e08ae65 :not(.random-classname-87d6ee3d)', + '.random-classname-4c844ec1', + '[data-random-attr-e82d829b]', + '[data-random-attr-8dfe3d69] .random-classname-6bdd29ff >', + '.random-classname-d1adcb57 > .random-classname-2cf95df .random-classname-79c25cd', + '.random-classname-f6b7db17 .random-classname-37740f61 .random-classname-7b6f9025 .random-classname-7fbf1343 > .random-classname-e63fb127 .random-classname-6c8e1ff1 .random-classname-4247db9 ::before .random-classname-b4068e5b > .random-classname-92711bf .random-classname-3564b963 .random-classname-2c161f8d .random-classname-39d0456b .random-classname-eb2731cf .random-classname-d1adcb57 .random-classname-2e08ae65 :not(.random-classname-100549ab)', + '.random-classname-58445a0f', + ':first-child .random-classname-7426a9a1 [data-random-attr-8dfe3d69] .random-classname-29150119 >', + '::before .random-classname-3564b963 .random-classname-2c161f8d .random-classname-172870d5 [data-random-attr-185e6ed9] > .random-classname-7426a9a1 .random-classname-2cf95df ::before', + '.random-classname-eb2731cf > .random-classname-ecaffb97', + '::before ::before >', + '.random-classname-6b5a0bc3', + '.random-classname-99a400ed', + '.random-classname-3cfe3cb', + '.random-classname-eb2731cf .random-classname-ecaffb97 > .random-classname-d057ce1f > .random-classname-92d27e35', + '.random-classname-4821a239', + '.random-classname-9748bcd3', + ':first-child [data-random-attr-c00b14bb] .random-classname-d057ce1f .random-classname-8d58a47d', + '.random-classname-f24b6db', + '.random-classname-d01bc8c9', + ':nth-child(3)', + ':nth-child(3) > ::after >', + '::before > .random-classname-39d0456b :first-child :not([data-random-attr-c00b14bb]) .random-classname-d01bc8c9 .random-classname-a446ca4e >', + '.random-classname-6dcfbeb0', + '.random-classname-39d0456b .random-classname-eb2731cf .random-classname-ecaffb97 > .random-classname-6dcfbeb0 .random-classname-f47c4b62', + '::before .random-classname-6dcfbeb0 ::placeholder >', + '.random-classname-39d0456b :first-child [data-random-attr-c00b14bb] .random-classname-6dcfbeb0 .random-classname-8290a234', + '.random-classname-9a75ed86', + '[data-random-attr-9fd61ea8=random-attr-value-a8ed71e7]', + '::before .random-classname-906d480b', + '::before > ::before ::before .random-classname-85140e6f', + '.random-classname-78059479', + '[data-random-attr-2b528341] >', + '.random-classname-92711bf .random-classname-3564b963 ::before .random-classname-39d0456b .random-classname-eb2731cf .random-classname-ecaffb97 ::before .random-classname-152c2b1b', + '.random-classname-d6a61a7f', + '.random-classname-e1454b09', + '.random-classname-1dfdee23', + '.random-classname-922ef24d', + '.random-classname-e1454b09 :first-child', + ':last-child .random-classname-39d0456b .random-classname-eb2731cf .random-classname-ecaffb97 .random-classname-d6a61a7f .random-classname-36ce599 >', + '[data-random-attr-cdc3f861]', + '.random-classname-92711bf > .random-classname-3564b963 .random-classname-2c161f8d .random-classname-39d0456b :first-child [data-random-attr-c00b14bb] .random-classname-d6a61a7f ::slotted', + '.random-classname-c0056429', + '.random-classname-92d60443', + '[data-random-attr-13c90d6d]', + '[data-random-attr-787c48f1]', + ':not(.random-classname-9c70d905) > .random-classname-db14c209 ::slotted ::slotted [data-random-attr-8d8e498f] ::before .random-classname-f6b7db17 :not([data-random-attr-acad2c3b]) .random-classname-b6db9d9f ::before .random-classname-e63fb127 .random-classname-6c8e1ff1 > .random-classname-c5ee35af ::before ::before ::before .random-classname-3564b963 :last-child .random-classname-172870d5 ::before ::before .random-classname-e1454b09 ::slotted', + ':first-child [data-random-attr-c00b14bb] > :not(.random-classname-d6a61a7f) ::before', + '.random-classname-2683df5b', + '.random-classname-2683df5b .random-classname-218b5045', + '.random-classname-bded0d49', + '.random-classname-508c2a63', + '.random-classname-2683df5b .random-classname-218b5045 .random-classname-f5791611', + '.random-classname-172870d5 [data-random-attr-185e6ed9] .random-classname-2683df5b > ::slotted .random-classname-ff3552cf', + '.random-classname-218b5045 .random-classname-877cc41d', + '.random-classname-2683df5b ::slotted .random-classname-ffddb180', + '.random-classname-b4068e5b > .random-classname-92711bf > .random-classname-3564b963 :last-child .random-classname-39d0456b :first-child .random-classname-2683df5b [data-random-attr-533b0c06=random-attr-value-29cef3ad]', + '.random-classname-f4a8d08b', + '.random-classname-777deef', + '::slotted .random-classname-d5ff4193', + '.random-classname-d58b473d', + '.random-classname-5e341c77', + '.random-classname-1cf9b7c1', + '.random-classname-ca400aff', + '.random-classname-ca400aff ::slotted', + '.random-classname-15cabecd', + '.random-classname-ae91ca87', + ':nth-child(5)', + '.random-classname-1bac300e', + '[data-random-attr-eb7b2d22=random-attr-value-adfdca19]', + '.random-classname-9fe65a5d', + '[data-random-attr-be333c97]', + '.random-classname-9409e5bb', + '.random-classname-9e5005a5', + '.random-classname-9b432f1f', + '.random-classname-2683df5b .random-classname-ca400aff > .random-classname-9832fcc3', + '::before > .random-classname-3564b963 > .random-classname-2c161f8d .random-classname-172870d5 ::before .random-classname-2683df5b .random-classname-ca400aff > .random-classname-8fd8dd71', + '.random-classname-7808b735', + '.random-classname-7d80272f', + '[data-random-attr-fa46eb39]', + '.random-classname-bf856cb7', + '.random-classname-2683df5b .random-classname-7808b735 .random-classname-5c2407db', + '.random-classname-172870d5 ::before .random-classname-2683df5b > :last-child > .random-classname-c7fb633f', + '.random-classname-2b751c9', + '.random-classname-2683df5b > .random-classname-2b751c9 > [data-random-attr-589c050d]', + '.random-classname-7e3f274e', + '.random-classname-7b13f862', + '.random-classname-d83259e4', + '[data-random-attr-3ebb70b6=random-attr-value-1ca2309d]', + '.random-classname-bbe98721', + '.random-classname-c74239fb', + '.random-classname-e63fb127 .random-classname-a855db4b .random-classname-c5ee35af .random-classname-d8354b37 .random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 .random-classname-2c161f8d .random-classname-39d0456b .random-classname-eb2731cf > .random-classname-2683df5b > .random-classname-8470a75f', + '.random-classname-2683df5b .random-classname-8470a75f :not(.random-classname-579ccae9)', + '.random-classname-c8b5d903', + '.random-classname-df01802d', + '.random-classname-2683df5b .random-classname-8470a75f .random-classname-1d1fe575 >', + '.random-classname-ac6caf6f', + '::placeholder', + '.random-classname-5877a1f8', + '.random-classname-d88702be', + '.random-classname-2683df5b .random-classname-8470a75f ::placeholder', + '.random-classname-d35b4dd4', + '[data-random-attr-b0eeba26=random-attr-value-846f8b4d]', + '::before .random-classname-2683df5b [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before', + '.random-classname-d768a32b', + '.random-classname-3564b963 ::before > .random-classname-172870d5 [data-random-attr-185e6ed9] .random-classname-d768a32b .random-classname-8596833', + '.random-classname-39d0456b > .random-classname-eb2731cf .random-classname-d768a32b .random-classname-7ac7ae99 .random-classname-c177e161', + '.random-classname-5c178225', + '.random-classname-50b25f9f', + '.random-classname-1d70f543', + '.random-classname-faae266d', + '.random-classname-cace71f1', + '.random-classname-ee43fd4b', + '.random-classname-b4068e5b .random-classname-92711bf > .random-classname-3564b963 ::before .random-classname-39d0456b .random-classname-eb2731cf > .random-classname-d768a32b .random-classname-7ac7ae99 > .random-classname-c6f0fb9', + '.random-classname-c22b6681 >', + ':not(.random-classname-92711bf) > .random-classname-3564b963 ::before :not(.random-classname-39d0456b) > :first-child .random-classname-c22b6681 .random-classname-1205305b', + ':last-child .random-classname-172870d5 [data-random-attr-185e6ed9] .random-classname-c22b6681 :last-child ::before >', + '.random-classname-5379b63', + '.random-classname-3564b963 > :last-child .random-classname-172870d5 > ::before .random-classname-c22b6681 :last-child ::slotted >', + '.random-classname-b27de2d5', + '.random-classname-1b8773cf', + '[data-random-attr-185e6ed9] .random-classname-c22b6681 :last-child .random-classname-bc109d1d', + ':last-child :not(.random-classname-39d0456b) .random-classname-eb2731cf .random-classname-c22b6681 > .random-classname-1205305b ::slotted', + '::before .random-classname-f04857df', + '.random-classname-92711bf .random-classname-3564b963 .random-classname-2c161f8d .random-classname-39d0456b :first-child .random-classname-7882a065 .random-classname-286e4f69 >', + '.random-classname-54bd0cad', + '.random-classname-286e4f69 .random-classname-53429c31', + '.random-classname-bfa881f9', + '.random-classname-29bb7293', + '.random-classname-7663a03d', + '.random-classname-80d320c1', + '.random-classname-286e4f69 .random-classname-30599889', + '::before > .random-classname-f04857df ::slotted', + ':first-child .random-classname-7882a065 :first-child .random-classname-d656b115', + '::before ::before > .random-classname-3564b963 .random-classname-2c161f8d .random-classname-172870d5 [data-random-attr-185e6ed9] .random-classname-f04857df > .random-classname-d614cb87 .random-classname-796040b3 >', + '.random-classname-6b5755e1', + '.random-classname-870cb6bb', + '[data-random-attr-c647fea5]', + '.random-classname-198471a9', + '.random-classname-c48fedc3', + '.random-classname-1c34f3a7', + '.random-classname-3b5d0671', + '[data-random-attr-75c205cb]', + '.random-classname-510bc82f', + '.random-classname-7882a065 .random-classname-1c34f3a7 .random-classname-797f1ed3', + '.random-classname-f04857df :first-child :last-child >', + '.random-classname-3564b963 ::before .random-classname-39d0456b :first-child > .random-classname-7882a065 [data-random-attr-ac779e0d]', + '::placeholder >', + '.random-classname-4ee688b0', + '.random-classname-ed1fa562', + '.random-classname-3262cb0c', + '.random-classname-4e1ed3e3 > .random-classname-bed22900 >', + ':not(.random-classname-eb2731cf) .random-classname-c4018c34', + '.random-classname-3564b963 ::before .random-classname-172870d5 ::before ::before ::before >', + '.random-classname-6609506f', + '.random-classname-8da62679', + '[data-random-attr-c94b0b13]', + '::before > .random-classname-e63fb127 .random-classname-6c8e1ff1 .random-classname-4247db9 .random-classname-d8354b37 ::before > ::before > .random-classname-3564b963 :last-child .random-classname-172870d5 [data-random-attr-185e6ed9] > .random-classname-92186786 ::slotted', + '.random-classname-17055541', + '.random-classname-e1b0cd1b', + '[data-random-attr-19a54405]', + '.random-classname-edf3dc7f', + '[data-random-attr-a5525d09]', + '.random-classname-e63fb127 ::before .random-classname-c5ee35af .random-classname-d8354b37 > .random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 :not(::before) .random-classname-39d0456b :first-child [data-random-attr-2df0a8a8=random-attr-value-ed4273e7] .random-classname-42fd4cbd > .random-classname-2d16d023', + '.random-classname-663fcc07', + '.random-classname-f7485dd1', + '.random-classname-42fd4cbd .random-classname-b8670d95 >', + '.random-classname-dfdf1fdd >', + '.random-classname-8ee17b25', + '.random-classname-3564b963 :last-child .random-classname-39d0456b .random-classname-eb2731cf > .random-classname-c4018c34 .random-classname-42081933 :not(.random-classname-904b7629)', + '.random-classname-2f8fe643', + ':first-child :not([data-random-attr-2df0a8a8=random-attr-value-ed4273e7]) .random-classname-42081933 .random-classname-c7b73f6d', + '.random-classname-2c161f8d > :not(.random-classname-172870d5) [data-random-attr-185e6ed9] :nth-child(4)', + '.random-classname-eb2731cf .random-classname-916fd79c ::before >', + '.random-classname-ea0e8e37', + '.random-classname-130fcf81', + '.random-classname-58244245', + '.random-classname-2c161f8d > .random-classname-172870d5 [data-random-attr-185e6ed9] :nth-child(4) .random-classname-3cea58b9 :not(.random-classname-8972ea8d) >', + '.random-classname-4a4fac47', + '.random-classname-85a6811', + '.random-classname-c31e9bd5', + '.random-classname-501d94cf', + '.random-classname-f299c9d9', + '.random-classname-59d86573', + ':nth-child(13)', + '.random-classname-98ae358c >', + '.random-classname-a7c5869 >', + ':nth-child(4) ::slotted .random-classname-4811c531', + '.random-classname-7eb120ef', + '.random-classname-916fd79c .random-classname-3f5ccaf9 >', + '.random-classname-39fba393 .random-classname-e959e77', + ':last-child .random-classname-172870d5 ::before :nth-child(4) .random-classname-4f4759b', + ':not(::before) .random-classname-39d0456b :first-child :nth-child(4) .random-classname-81089c1 [data-random-attr-18d1ccff] >', + '.random-classname-e63fb127 .random-classname-6c8e1ff1 .random-classname-4247db9 .random-classname-de8777fd ::before ::before .random-classname-3564b963 :last-child .random-classname-172870d5 [data-random-attr-185e6ed9] ::before', + '.random-classname-eb2731cf .random-classname-e54f88a3 .random-classname-a15bcc87', + ':not(::before) .random-classname-a15bcc87 [data-random-attr-4aedbd0f]', + '.random-classname-e54f88a3 [data-random-attr-8450f1b3]', + '[data-random-attr-f9213ee1]', + '.random-classname-c8e5f11f', + '.random-classname-172870d5 ::before > ::before :last-child ::before', + '.random-classname-ff3d7d39', + '.random-classname-63604fd3', + '.random-classname-a8478401', + '.random-classname-ff3d7d39 .random-classname-248eeb7 .random-classname-1bd1f192', + '.random-classname-da91a94', + '.random-classname-248eeb7 .random-classname-2ddfe4e6', + '.random-classname-c2b0ed08', + '.random-classname-ff3d7d39 > .random-classname-b882254f >', + '.random-classname-1ceb2e59', + '.random-classname-5b1bdf3', + '.random-classname-4c11e29d', + '.random-classname-99e72ed7', + '.random-classname-85cb5921', + '.random-classname-24cddbfb', + '::before > .random-classname-ff3d7d39 :not(.random-classname-99e72ed7) .random-classname-11b5695f', + '.random-classname-ad25b22d', + '.random-classname-2612f4e7', + '.random-classname-8d5ed9b1', + '.random-classname-36e17b0b', + '.random-classname-eb2731cf :last-child .random-classname-4c11e29d > .random-classname-c1e9f16f', + '.random-classname-172870d5 > ::before .random-classname-ff3d7d39 .random-classname-26cc6f79', + '.random-classname-9dcd3c13', + '.random-classname-e8ba5bd', + '.random-classname-7f791e1b', + '.random-classname-f7febd05', + '[data-random-attr-5680bd7f]', + '.random-classname-3564b963 :last-child .random-classname-172870d5 > ::before .random-classname-63604fd3 .random-classname-dce94123 >', + '.random-classname-555cbd4d', + '.random-classname-4968cd07', + '[data-random-attr-e1b606d1]', + '.random-classname-5502c695', + '.random-classname-2c161f8d .random-classname-39d0456b > .random-classname-eb2731cf .random-classname-f7a5c52b .random-classname-391acd8f', + '.random-classname-623aca33', + '.random-classname-10f1f8dd', + '[data-random-attr-b7d4df17]', + '.random-classname-39d0456b :first-child .random-classname-f7a5c52b .random-classname-10bb361 >', + '.random-classname-20b8703b .random-classname-34f7425', + '.random-classname-d932d743', + ':not(::before) .random-classname-5502c695 .random-classname-20b8703b ::before >', + ':first-child .random-classname-f7a5c52b :last-child', + '.random-classname-5502c695 :not(.random-classname-d70cdbfd) .random-classname-58e6bb45', + '.random-classname-d0695bf', + '.random-classname-172870d5 :nth-child(7) .random-classname-4967c366', + '.random-classname-4967c366 ::slotted', + '.random-classname-5e2c1673', + '.random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 > ::before .random-classname-39d0456b .random-classname-d0695bf .random-classname-4967c366 .random-classname-ef58cf88 .random-classname-bd224da1', + '.random-classname-ba6e6169', + '.random-classname-c3283383', + ':nth-child(7) > .random-classname-c3283383 .random-classname-99053ead', + '.random-classname-6f24b567 >', + ':last-child >', + '::before .random-classname-39d0456b .random-classname-d0695bf .random-classname-ba6e6169 .random-classname-99053ead .random-classname-95f513f9', + ':nth-child(7) .random-classname-f180523d', + '.random-classname-39d0456b .random-classname-d0695bf > .random-classname-f180523d :not(.random-classname-b33ec69b)', + '.random-classname-b33ec69b > [data-random-attr-2900adff]', + '.random-classname-9012aa89', + '.random-classname-2066cd87', + '.random-classname-39d0456b ::placeholder', + ':not(.random-classname-3564b963) :not(::before) > .random-classname-172870d5 > ::placeholder .random-classname-c1c68876', + '.random-classname-3564b963 ::before > .random-classname-39d0456b .random-classname-29ae1970 > .random-classname-5579cba4 .random-classname-3aa718 >', + '.random-classname-3aa718 .random-classname-4b9d521f', + '.random-classname-7b7683a9', + '.random-classname-b5c864ed', + '.random-classname-abb7f5a7', + '.random-classname-d8354b37 .random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 ::before .random-classname-39d0456b .random-classname-29ae1970 .random-classname-5579cba4 .random-classname-7b7683a9 :first-child', + '.random-classname-720ec639', + '.random-classname-5dc580d3', + '.random-classname-2c161f8d .random-classname-39d0456b .random-classname-29ae1970 .random-classname-5579cba4 .random-classname-4dd0afb7 >', + '.random-classname-41a577c5', + '.random-classname-faaf063f', + '[data-random-attr-b1e1ecc9]', + '.random-classname-449ad00d', + '.random-classname-e2202dc7', + '.random-classname-389e591', + '.random-classname-389e591 > .random-classname-7d38f759', + '[data-random-attr-b1e1ecc9] > .random-classname-e2202dc7 > ::slotted .random-classname-99676fd7', + '.random-classname-c6558ee5', + '.random-classname-cc9ce5e9', + '.random-classname-f77bac03', + '[data-random-attr-ff6dcb2d]', + '.random-classname-c6558ee5 [data-random-attr-ff6dcb2d] [data-random-attr-56658c0b] >', + '.random-classname-faaf063f ::slotted [data-random-attr-ff6dcb2d] > .random-classname-1ea78784 >', + '.random-classname-3564b963 :last-child > .random-classname-39d0456b > [data-random-attr-b1e1ecc9] .random-classname-c6558ee5 [data-random-attr-ff6dcb2d] > :not(.random-classname-397c0f56)', + '::slotted :nth-child(10)', + '.random-classname-2456f1b', + ':not(::before) ::before .random-classname-3564b963 .random-classname-2c161f8d > .random-classname-172870d5 > :not(::slotted) ::slotted > ::placeholder', + '.random-classname-c6558ee5 .random-classname-aeb62cd4 [data-random-attr-579033ba=random-attr-value-3087afd1] >', + '.random-classname-3564b963 ::before .random-classname-39d0456b ::slotted .random-classname-a427f95 > .random-classname-78f17b33', + '.random-classname-6ceb9c61', + '.random-classname-8218829', + '.random-classname-172870d5 [data-random-attr-b1e1ecc9] :last-child ::slotted', + '.random-classname-3564b963 .random-classname-2c161f8d .random-classname-39d0456b .random-classname-faaf063f ::before [data-random-attr-81cecf1] > .random-classname-b9525aaf >', + '[data-random-attr-bb0834fd]', + '::before .random-classname-39d0456b .random-classname-51e1037', + '::before .random-classname-3564b963 ::before .random-classname-172870d5 [data-random-attr-f304a181] ::slotted >', + '::before .random-classname-b4068e5b > .random-classname-92711bf .random-classname-3564b963 :last-child .random-classname-39d0456b .random-classname-51e1037 > .random-classname-4aa1235b ::before', + '::before [data-random-attr-fccbba11]', + '.random-classname-3a4c0dd5', + '.random-classname-4215d6cf', + '.random-classname-172870d5 > [data-random-attr-f304a181] ::slotted .random-classname-4215d6cf .random-classname-57355bd9', + '.random-classname-3a4c0dd5 > ::slotted', + '::before > .random-classname-172870d5 [data-random-attr-f304a181] .random-classname-4aa1235b .random-classname-4215d6cf .random-classname-a9fb7adf', + '.random-classname-51e1037 .random-classname-781a5528', + '::before .random-classname-3564b963 :last-child > :not(.random-classname-172870d5) [data-random-attr-f304a181] [data-random-attr-400cc09a=random-attr-value-60dc1731] > ::before', + '.random-classname-781a5528 [data-random-attr-9efa62ef] .random-classname-d0080593', + '.random-classname-172870d5 [data-random-attr-f304a181] > [data-random-attr-400cc09a=random-attr-value-60dc1731] ::slotted', + '.random-classname-c5ee35af ::before .random-classname-b4068e5b > .random-classname-92711bf .random-classname-3564b963 > .random-classname-2c161f8d .random-classname-39d0456b .random-classname-51e1037 .random-classname-781a5528 .random-classname-ebc4ab3d ::before', + '.random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 > :last-child .random-classname-6335ce87', + ':last-child > .random-classname-6a960451 .random-classname-c69e1eab', + '.random-classname-c69e1eab .random-classname-4b1fdc15', + '::before > .random-classname-3564b963 .random-classname-2c161f8d > .random-classname-6a960451 .random-classname-c69e1eab ::slotted ::before', + '.random-classname-ba2d29bb', + '.random-classname-5807e9a5', + '.random-classname-2b98b31f', + '.random-classname-92711bf .random-classname-3564b963 :last-child .random-classname-6335ce87 .random-classname-c69e1eab > .random-classname-e6bec0c3', + '.random-classname-d82b7ded', + '.random-classname-7e5397f .random-classname-9eb77d23 .random-classname-f25762d1 .random-classname-d66be295 .random-classname-ccf61c99 .random-classname-f6b7db17 > .random-classname-37740f61 :last-child .random-classname-7fbf1343 .random-classname-e63fb127 ::before .random-classname-4247db9 > .random-classname-d8354b37 .random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 .random-classname-2c161f8d .random-classname-6335ce87 .random-classname-c69e1eab > .random-classname-e6bec0c3 .random-classname-d82b7ded [data-random-attr-c8cb38cb]', + '.random-classname-4056f44 >', + '.random-classname-de8777fd .random-classname-b4068e5b > :not(.random-classname-92711bf) .random-classname-3564b963 :last-child .random-classname-ecd15ec2 .random-classname-d497b4b8 >', + '::before > .random-classname-3564b963 ::before ::placeholder .random-classname-d497b4b8 :first-child', + '.random-classname-cec40f7e', + '.random-classname-f1dfab60', + '[data-random-attr-728ecb92=random-attr-value-d40d75c9]', + '.random-classname-2c161f8d > .random-classname-4056f44 .random-classname-d497b4b8 :first-child > .random-classname-f1dfab60 > .random-classname-a8e2690d', + '.random-classname-e7faac62', + '.random-classname-52f2de4', + '::after', + ':first-child > .random-classname-45f24a0c', + '.random-classname-cd7f5b1e', + '.random-classname-55b21800', + '.random-classname-d497b4b8 :first-child .random-classname-45f24a0c .random-classname-50521e86 >', + '.random-classname-34a896aa .random-classname-5f9b984a > .random-classname-5b4bb15c >', + '.random-classname-d497b4b8 ::placeholder', + '.random-classname-d497b4b8 .random-classname-6ad73c84 .random-classname-a4e1b5f8', + '.random-classname-7a15c01b', + '.random-classname-3564b963 .random-classname-2c161f8d .random-classname-4056f44 .random-classname-d497b4b8 .random-classname-6ad73c84 [data-random-attr-693f809]', + '.random-classname-76d9ef4d', + '.random-classname-5306cf07', + '[data-random-attr-88790f8f]', + '.random-classname-68263895 .random-classname-8a83aadd', + '.random-classname-44fb6117', + '[data-random-attr-762f8561]', + ':nth-child(7)', + ':last-child .random-classname-4056f44 .random-classname-d497b4b8 > ::before .random-classname-8a83aadd ::after', + '.random-classname-898cca5a', + ':last-child > .random-classname-ecd15ec2 .random-classname-d497b4b8 .random-classname-68263895 > .random-classname-6cd9262e', + ':last-child > ::placeholder .random-classname-d497b4b8 .random-classname-eff2e72b > [data-random-attr-ed297542=random-attr-value-3fb433b9] :last-child >', + '.random-classname-ecd15ec2 ::slotted >', + '.random-classname-f557ad45', + '[data-random-attr-da8e57bf]', + '::before ::slotted', + '.random-classname-539a6311', + '.random-classname-268dab6b', + '.random-classname-3564b963 ::before ::slotted >', + ':last-child [data-random-attr-f8d924d9] > .random-classname-99c8011d', + '::slotted ::slotted', + '.random-classname-91268465', + '.random-classname-fa69dbdf', + '.random-classname-91268465 :not(.random-classname-c9bc1583)', + '.random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 > :last-child .random-classname-85dd70ad >', + '.random-classname-a4d74031', + '.random-classname-e633258b', + '.random-classname-85dd70ad .random-classname-a4d74031 .random-classname-53f9e5f5', + '.random-classname-75d43693', + '.random-classname-85dd70ad .random-classname-a4d74031 .random-classname-53f9e5f5 > .random-classname-7d1a5f9 [data-random-attr-1220c4c1]', + '.random-classname-351de720', + '.random-classname-861d3d52', + '.random-classname-b4068e5b .random-classname-92711bf > :not(.random-classname-3564b963) ::before .random-classname-351de720 .random-classname-1a971c54 >', + '::before .random-classname-3564b963 > .random-classname-2c161f8d .random-classname-861d3d52 :nth-child(6) ::before', + '.random-classname-79c8cf87 .random-classname-aec8afab', + '.random-classname-cbfb200f', + '.random-classname-8be5b719', + '.random-classname-7c3b04b3 >', + '::before .random-classname-3564b963 :last-child :not(.random-classname-7c3b04b3) .random-classname-9c1e975d', + '.random-classname-6c8e1ff1 > :first-child .random-classname-d8354b37 .random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 > .random-classname-2c161f8d .random-classname-7c3b04b3 > .random-classname-9c1e975d > .random-classname-cd3f8197', + '.random-classname-82d6f9e1 ::before', + '.random-classname-c93ffabb :not(.random-classname-78d8141f)', + '.random-classname-b6db9d9f ::before .random-classname-e63fb127 > ::before .random-classname-4247db9 > .random-classname-de8777fd ::before ::before ::slotted', + '.random-classname-92711bf .random-classname-e4f895a9 [data-random-attr-b955aa71]', + '.random-classname-524af7a7 ::before', + '.random-classname-c41be2d3', + '::before ::before ::slotted ::slotted [data-random-attr-6de24c2f] ::before .random-classname-2c5c9cdb >', + '.random-classname-d5ba69c5', + '[data-random-attr-acad2c3b] .random-classname-b6db9d9f ::before .random-classname-e63fb127 .random-classname-6c8e1ff1 :first-child .random-classname-de8777fd ::before > ::before ::slotted .random-classname-524af7a7 [data-random-attr-6de24c2f] .random-classname-5664ba7d .random-classname-2c5c9cdb ::slotted .random-classname-7afc97e3', + '.random-classname-dd4e020d', + '.random-classname-6642fc7', + '::before .random-classname-e63fb127 .random-classname-a855db4b :first-child :not(.random-classname-de8777fd) ::before ::before .random-classname-6642fc7 .random-classname-d5273791', + '.random-classname-d5273791 .random-classname-44e3f3eb', + '.random-classname-d5273791 ::before > .random-classname-64808959', + '.random-classname-d5273791 .random-classname-44e3f3eb > .random-classname-ee42884f .random-classname-dbfed0f3', + '::before .random-classname-64808959 .random-classname-9fc76d9d ::before >', + '.random-classname-92711bf .random-classname-dd4e020d .random-classname-d5273791 .random-classname-44e3f3eb > .random-classname-ee42884f .random-classname-dbfed0f3 :not([data-random-attr-efbd4efb]) :not(.random-classname-6f1a8c5f)', + '.random-classname-3d938e03', + ':not(.random-classname-b3ba54b1)', + '.random-classname-da980275', + '.random-classname-eb974a79', + '.random-classname-140eb0bd', + '.random-classname-70dec1f7', + '::before .random-classname-90e32805', + '.random-classname-f6ea111b .random-classname-4d789423', + '.random-classname-de8777fd > ::before ::before', + ':not(.random-classname-4247db9) .random-classname-de8777fd .random-classname-b4068e5b .random-classname-997bd007 .random-classname-e51f782b', + '.random-classname-268e308f :nth-child(7)', + '.random-classname-bab68640 >', + ':not(.random-classname-7fbf1343) .random-classname-e63fb127 .random-classname-6c8e1ff1 .random-classname-4247db9 ::before > .random-classname-b4068e5b > .random-classname-997bd007 .random-classname-e51f782b .random-classname-268e308f .random-classname-c9eadd33 ::placeholder .random-classname-d3bf1d74', + '.random-classname-de8777fd ::before ::before .random-classname-feadf195 > ::before ::after > .random-classname-9e28ff5e [data-random-attr-9c704ac6=random-attr-value-3943a36d] .random-classname-ee8a3827', + '.random-classname-d3bf1d74 .random-classname-ee8a3827 .random-classname-1ce670b5', + '.random-classname-d103fb53', + '.random-classname-9bbf7cb9 .random-classname-206ae6fd', + '.random-classname-d103fb53 .random-classname-5b3d9237 [data-random-attr-f2c7c55b]', + '.random-classname-b1062645', + '.random-classname-ec3838bf', + '.random-classname-ff9a4349', + '.random-classname-bb4cd063', + '.random-classname-b1062645 > .random-classname-ff9a4349 ::before', + '.random-classname-5b3d9237 [data-random-attr-f2c7c55b] .random-classname-ec3838bf .random-classname-bb4cd063 :last-child ::before', + ':last-child .random-classname-cbbb3c6b ::slotted', + '.random-classname-240fda1d', + '.random-classname-d66be295 .random-classname-ccf61c99 .random-classname-f6b7db17 > .random-classname-37740f61 .random-classname-b6db9d9f > .random-classname-7fbf1343 > .random-classname-e63fb127 ::before .random-classname-4247db9 .random-classname-de8777fd .random-classname-b4068e5b > .random-classname-240fda1d .random-classname-19819257', + '.random-classname-c41c3cdf', + '.random-classname-3d9c7c69', + '[data-random-attr-d64c0683]', + '::before ::before [data-random-attr-d64c0683] [data-random-attr-23366931]', + '.random-classname-7dc1368b', + '.random-classname-26df1ef5', + '.random-classname-de8777fd ::before .random-classname-240fda1d ::before ::before .random-classname-c41c3cdf .random-classname-54d43867 > .random-classname-26df1ef5 > .random-classname-4315eef9', + '.random-classname-4288b77b [data-random-attr-d64c0683] [data-random-attr-23366931] .random-classname-7dc1368b .random-classname-18246793 ::slotted', + '::slotted [data-random-attr-8d8e498f] .random-classname-ccf61c99 .random-classname-f6b7db17 [data-random-attr-acad2c3b] > :last-child ::before .random-classname-e63fb127 :not(.random-classname-a855db4b) > .random-classname-c5ee35af :not(.random-classname-d8354b37) .random-classname-bd2550ff', + '[data-random-attr-1dc95651]', + '.random-classname-74f740ab', + '.random-classname-9a32410f', + '.random-classname-b6268019 .random-classname-b5ac297 >', + '.random-classname-39d654cd :first-child .random-classname-9a32410f .random-classname-a13bb5b3 .random-classname-b5ac297 .random-classname-4756cbbb >', + '.random-classname-b6268019 .random-classname-b5ac297 .random-classname-8630e2e1 .random-classname-eebbdba5', + '.random-classname-741fd087 :first-child > .random-classname-9a32410f .random-classname-b6268019 > .random-classname-b5ac297 .random-classname-4756cbbb :not(::slotted) :not(.random-classname-cb1ca2c3)', + '.random-classname-b1c89dda', + '.random-classname-d8354b37 .random-classname-b1c89dda .random-classname-aa1471ae', + '.random-classname-4c5fb8c2 > ::after', + '::after :not(::placeholder)', + '.random-classname-5a00ee94', + '[data-random-attr-840ad8e6=random-attr-value-71dd9b0d]', + '.random-classname-2c2c30c7', + '.random-classname-de8be091', + '[data-random-attr-9d1384eb]', + '.random-classname-2d5f5c55', + '[data-random-attr-560aa94f]', + '.random-classname-b7a5259', + '.random-classname-8a3efd21', + '.random-classname-9ca879e5', + ':not(.random-classname-a855db4b) > .random-classname-c5ee35af ::slotted :not(.random-classname-9ca879e5) ::before', + '.random-classname-35e57f03', + '.random-classname-9ca879e5 :not(::before) ::before .random-classname-6afcf8e7', + '.random-classname-54b7db1 .random-classname-6acf3b75 >', + '.random-classname-6afcf8e7 .random-classname-c814756f ::before', + '.random-classname-bce382f7', + '.random-classname-3607b0be', + '.random-classname-6d9de0d2', + '.random-classname-6d450bd4', + ':nth-child(6)', + '.random-classname-1754aad1', + '.random-classname-d66be295 :first-child .random-classname-f6b7db17 .random-classname-37740f61 .random-classname-b6db9d9f .random-classname-7fbf1343 :not(.random-classname-e63fb127) .random-classname-6c8e1ff1 .random-classname-4247db9 :last-child .random-classname-28e7518f >', + ':first-child .random-classname-f6b7db17 [data-random-attr-acad2c3b] .random-classname-7b6f9025 > ::before > .random-classname-e63fb127 .random-classname-a855db4b :first-child > ::before ::before > .random-classname-a0e35761', + '.random-classname-503b43b', + '.random-classname-a56f5825', + '.random-classname-ce10a329', + '.random-classname-ce10a329 .random-classname-aae69b43', + '::before > .random-classname-4b5bb927', + '.random-classname-a56f5825 .random-classname-ce10a329 :not(.random-classname-aae69b43) :first-child .random-classname-b146a9b5 >', + '.random-classname-6aaec5b9', + '.random-classname-b146a9b5 .random-classname-6aaec5b9 > .random-classname-63372c53', + '.random-classname-84735337', + '[data-random-attr-a32a41bd] .random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f > :not(.random-classname-9eb77d23) .random-classname-f25762d1 .random-classname-d66be295 :not(.random-classname-ccf61c99) .random-classname-f6b7db17 .random-classname-37740f61 :not(:last-child) .random-classname-7fbf1343 > .random-classname-e63fb127 > ::before :first-child .random-classname-c1d23ffd .random-classname-4e61dc81 >', + '::slotted [data-random-attr-8d8e498f] ::before .random-classname-f6b7db17 [data-random-attr-acad2c3b] > .random-classname-b6db9d9f > ::before .random-classname-e63fb127 ::before > .random-classname-4247db9 .random-classname-84735337 ::slotted .random-classname-20589f45', + '.random-classname-c1d23ffd .random-classname-4e61dc81 .random-classname-20589f45 ::slotted', + '.random-classname-20589f45 > .random-classname-852619bf .random-classname-1d32e78d', + '.random-classname-e63fb127 .random-classname-a855db4b :not(:first-child) .random-classname-c1d23ffd .random-classname-4e61dc81 .random-classname-20589f45 .random-classname-a97fcc49 :not(.random-classname-2af9b147) > .random-classname-9aeccd6b', + '::before .random-classname-33de38d5 > .random-classname-58a2da73', + '.random-classname-6f7bb31d', + '.random-classname-1dafd357 ::slotted', + '.random-classname-c51e8569', + '.random-classname-f6b7db17 :not([data-random-attr-acad2c3b]) .random-classname-7b6f9025 ::before .random-classname-e63fb127 .random-classname-6c8e1ff1 > .random-classname-c5ee35af .random-classname-ef96b967', + '.random-classname-e63fb127 .random-classname-6c8e1ff1 :not(.random-classname-4247db9) :last-child > :not(.random-classname-953e37f9)', + '::slotted :nth-child(13)', + '.random-classname-2ff3812c >', + ':not(:last-child) ::slotted > :nth-child(13) ::placeholder ::after', + '.random-classname-4247db9 .random-classname-6bf99231 > .random-classname-953e37f9 .random-classname-8d69b63d .random-classname-2ff3812c .random-classname-e1581752 .random-classname-b2ab86a6', + ':not(::before) :first-child ::slotted > ::slotted :nth-child(13) ::placeholder > :not(.random-classname-e1581752) > .random-classname-3d3fb4c8 > ::slotted', + '.random-classname-c94b4919', + '.random-classname-74c066b3 .random-classname-3e3a0397', + '.random-classname-608bd4a5', + '.random-classname-7fbf1343 .random-classname-e63fb127 ::before > .random-classname-4247db9 :not(.random-classname-608bd4a5) ::slotted', + '.random-classname-b42cc8ed', + '.random-classname-8fedf9a7', + '[data-random-attr-6ea9fc71]', + '.random-classname-cbf86bcb', + ':not(.random-classname-608bd4a5) ::slotted > .random-classname-b42cc8ed ::before > ::before >', + '::slotted .random-classname-8fedf9a7 .random-classname-cbf86bcb :first-child > [data-random-attr-a8139101]', + '.random-classname-185f5bc5', + '[data-random-attr-6ea9fc71] .random-classname-cbf86bcb > .random-classname-71e58e2f ::slotted :nth-child(11) .random-classname-3ed795e6 >', + '::before .random-classname-5f97b3b7 ::after > ::after .random-classname-bb0dc47a', + '.random-classname-5f97b3b7 :not(.random-classname-185f5bc5) .random-classname-3ed795e6 .random-classname-bb0dc47a .random-classname-a6b2b5bc', + '.random-classname-31b9b24e', + '.random-classname-e3057375 > .random-classname-db8b4b79 .random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f ::slotted :not(.random-classname-f25762d1) .random-classname-d66be295 ::before > .random-classname-f6b7db17 .random-classname-37740f61 :last-child .random-classname-7fbf1343 > .random-classname-e63fb127 .random-classname-a855db4b .random-classname-c5ee35af > .random-classname-31b9b24e .random-classname-da0ae6b0', + ':first-child > .random-classname-31b9b24e .random-classname-da0ae6b0 .random-classname-3a7ecce4', + '::placeholder .random-classname-13711c58', + ':not(.random-classname-e63fb127) .random-classname-a855db4b .random-classname-4247db9 .random-classname-31b9b24e .random-classname-da0ae6b0 ::placeholder > .random-classname-13711c58 .random-classname-3c35c90c', + ':not(.random-classname-69b2321e) >', + '.random-classname-e63fb127 .random-classname-a855db4b .random-classname-4247db9 .random-classname-31b9b24e .random-classname-da0ae6b0 .random-classname-69e9b362 > .random-classname-13711c58 .random-classname-3c35c90c .random-classname-c0860700 .random-classname-124ec832', + '.random-classname-13711c58 .random-classname-de6b7f4a .random-classname-69b2321e .random-classname-124ec832 > .random-classname-342046a8', + '.random-classname-f6344a34 > :first-child .random-classname-f8143113', + ':first-child > .random-classname-342046a8 .random-classname-33e7dc79 .random-classname-bf6f62bd >', + '.random-classname-9c70d905 .random-classname-7e5397f .random-classname-9eb77d23 .random-classname-f25762d1 > .random-classname-d66be295 ::before .random-classname-f6b7db17 .random-classname-37740f61 .random-classname-7b6f9025 .random-classname-7fbf1343 .random-classname-e63fb127 .random-classname-a855db4b .random-classname-4247db9 .random-classname-43ac43f7 .random-classname-3f9eb31b', + '.random-classname-c5ee35af ::before [data-random-attr-ea5a1a05] ::slotted', + '.random-classname-6c8e1ff1 :first-child .random-classname-43ac43f7 .random-classname-3f9eb31b .random-classname-823d227f .random-classname-5823ba4d', + '[data-random-attr-ea5a1a05] .random-classname-823d227f ::slotted :nth-child(11)', + '.random-classname-7fbf1343 > .random-classname-e63fb127 .random-classname-6c8e1ff1 > :first-child > .random-classname-43ac43f7 .random-classname-3f9eb31b ::slotted :last-child .random-classname-15a96395 [data-random-attr-90f8bd98=random-attr-value-38732417]', + '.random-classname-67a0853b', + '.random-classname-d2115125', + ':nth-child(9)', + '.random-classname-3b6a0774', + '.random-classname-a85cc4c6', + '[data-random-attr-989537e8=random-attr-value-e5f13a27]', + '.random-classname-fdfd90f1', + '[data-random-attr-6f83744b]', + '.random-classname-fdfd90f1 .random-classname-cd0deaf', + '.random-classname-c5ee35af .random-classname-c25d98fd', + '.random-classname-fefe675b', + '.random-classname-d34f1845', + '::before .random-classname-d34f1845 ::before', + ':last-child .random-classname-ca67b247', + ':last-child ::before .random-classname-e63fb127 .random-classname-6c8e1ff1 .random-classname-c5ee35af .random-classname-c25d98fd .random-classname-d34f1845 .random-classname-9f495549 .random-classname-8a5e5e11 .random-classname-4056f1d5', + '.random-classname-7fbf1343 .random-classname-e63fb127 ::before .random-classname-c5ee35af :not(.random-classname-cdee5d53) .random-classname-fefe675b .random-classname-b557fabf > .random-classname-ca67b247 .random-classname-a4225e6b > .random-classname-9365acf', + '.random-classname-c5ee35af ::before .random-classname-d34f1845 :not(::before) .random-classname-8a5e5e11 .random-classname-4056f1d5 .random-classname-9365acf ::slotted', + ':last-child .random-classname-ca67b247 .random-classname-a4225e6b .random-classname-9365acf [data-random-attr-c0b8c1d] .random-classname-27a6daa1', + '.random-classname-27a6daa1 .random-classname-34cfedf', + '.random-classname-5b1c7fd9 [data-random-attr-b540597b] .random-classname-ea848e69 > .random-classname-1d2fbbad', + '.random-classname-f20bb31', + '.random-classname-f20bb31 .random-classname-60e9588b', + '::before > .random-classname-f20bb31 :first-child .random-classname-8e4a80f9', + '.random-classname-60e9588b .random-classname-8e4a80f9 .random-classname-e21a2477', + '.random-classname-cc2c5c3e', + '.random-classname-60e9588b > .random-classname-dabce6ef .random-classname-e21a2477 :nth-child(14) .random-classname-d3862ea3', + '.random-classname-9eb77d23 ::slotted [data-random-attr-8d8e498f] :first-child .random-classname-f6b7db17 > [data-random-attr-acad2c3b] :last-child ::before .random-classname-e63fb127 ::before > .random-classname-f20bb31 :first-child > .random-classname-8e4a80f9 .random-classname-e21a2477 .random-classname-cc2c5c3e .random-classname-d3862ea3 .random-classname-5419d287', + '.random-classname-db6062ab >', + '.random-classname-d3862ea3 ::before .random-classname-db6062ab .random-classname-8b6c830f', + '.random-classname-d3862ea3 .random-classname-fc4f86cd .random-classname-db6062ab .random-classname-afcec015 ::before >', + '.random-classname-343e0f3d .random-classname-c14f5620 :not(.random-classname-d3862ea3) .random-classname-fc4f86cd > .random-classname-db6062ab .random-classname-8b6c830f [data-random-attr-6c917b3] .random-classname-2d10b4e1', + '.random-classname-902e371f', + '.random-classname-e969b0a9', + '.random-classname-f657aa7', + '.random-classname-c0ca7f35', + '.random-classname-e94d2f2f', + '.random-classname-697b75d3', + '.random-classname-2b01fa01', + '.random-classname-eb2a6b3f', + '.random-classname-e63fb127 .random-classname-6c8e1ff1 :not(:first-child) > .random-classname-beea2571 .random-classname-c0ca7f35 > [data-random-attr-350c57d] .random-classname-2b01fa01 > .random-classname-327d4c5 .random-classname-c8ceae3', + '.random-classname-737ea6eb', + '.random-classname-aa50ce55', + '.random-classname-8666eb4f', + '.random-classname-9019e459', + '.random-classname-a8efe3f3', + '.random-classname-c4d0cf21', + '.random-classname-c4d0cf21 .random-classname-9fbe6be5', + '.random-classname-56d12e9', + '.random-classname-21156103', + '.random-classname-c4d0cf21 .random-classname-9fbe6be5 .random-classname-21156103 .random-classname-a809fae7', + '.random-classname-a809fae7 .random-classname-6f99cfb1', + '.random-classname-b8c1b76f', + '.random-classname-21156103 .random-classname-a809fae7 .random-classname-6f99cfb1 .random-classname-f6662579 :nth-child(9)', + '.random-classname-7427eabe', + '[data-random-attr-9532f5d4=random-attr-value-1fabe723]', + '.random-classname-1c34bad2 .random-classname-ab84534d', + '::after [data-random-attr-9532f5d4=random-attr-value-1fabe723] ::slotted ::before', + '.random-classname-e63fb127 .random-classname-6c8e1ff1 .random-classname-9a65938f', + '.random-classname-a855db4b :not(.random-classname-9a65938f) .random-classname-d5adf699 .random-classname-9b570edd >', + '.random-classname-38786517 > [data-random-attr-e141563b]', + '.random-classname-1272961 .random-classname-a0574a25 >', + '.random-classname-cee6ee6d', + '.random-classname-ce4abb27', + '[data-random-attr-c36fb9f1]', + '.random-classname-aad679f ::slotted [data-random-attr-c36fb9f1] > [data-random-attr-89f31bb5]', + '.random-classname-95a7faf', + '::slotted .random-classname-ce4abb27 [data-random-attr-89f31bb5] ::before :not(.random-classname-21298e53)', + '.random-classname-21298e53 .random-classname-b20cf1fd', + ':not(.random-classname-e63fb127) > .random-classname-a855db4b :last-child', + '.random-classname-8ccddbbf', + '[data-random-attr-70f6de49]', + '.random-classname-c1232363', + '.random-classname-ae2198d', + '.random-classname-f999b347', + '[data-random-attr-e2bd0711]', + '.random-classname-f75bef6b', + '.random-classname-9973aad5', + '.random-classname-3040d736 >', + '.random-classname-641b1d9e', + '.random-classname-37740f61 .random-classname-7b6f9025 .random-classname-7fbf1343 .random-classname-e63fb127 .random-classname-798179b4', + '.random-classname-b356b04', + '.random-classname-db14c209 [data-random-attr-8412594d] ::slotted [data-random-attr-8d8e498f] ::before .random-classname-f6b7db17 [data-random-attr-acad2c3b] :last-child :not(::before) > .random-classname-c3ef046a', + '.random-classname-2270793e', + '.random-classname-86b27b20', + ':not(::before) .random-classname-2662f152', + '.random-classname-24fb3ec8', + '.random-classname-af7c7b3a', + '.random-classname-7765a7c', + '.random-classname-b6db9d9f .random-classname-7fbf1343 > .random-classname-d1447770', + '.random-classname-6755c8b3', + '.random-classname-4f39fb5d', + '.random-classname-c2448597', + '.random-classname-f0969de1', + '.random-classname-b6db9d9f .random-classname-6117c6a5', + ':last-child .random-classname-960775c3', + '.random-classname-e4a0fba7', + '.random-classname-1d8e4e71', + '.random-classname-9c70d905 > .random-classname-7e5397f .random-classname-9eb77d23 .random-classname-f25762d1 .random-classname-d66be295 :not(:first-child) > .random-classname-f6b7db17 .random-classname-37740f61 > .random-classname-b6db9d9f .random-classname-ddc4b835', + '.random-classname-b6db9d9f .random-classname-16f8a6d3', + '.random-classname-40921e7d', + '[data-random-attr-511335b7]', + '.random-classname-e8306460', + '.random-classname-8854ec92', + '.random-classname-9c70d905 .random-classname-7e5397f [data-random-attr-8412594d] .random-classname-f25762d1 .random-classname-d66be295 .random-classname-ccf61c99 .random-classname-f6b7db17 > .random-classname-37740f61 .random-classname-9765008', + '.random-classname-e4fbdfbc', + '.random-classname-cb1e6c4e', + ':nth-child(12)', + '.random-classname-8dbfad59', + '[data-random-attr-8d8e498f] :first-child .random-classname-f6b7db17 :not([data-random-attr-acad2c3b]) > .random-classname-fa06d19d >', + '[data-random-attr-acad2c3b] ::slotted', + '.random-classname-37740f61 > :last-child >', + '.random-classname-f7d1f20b', + '.random-classname-f6b7db17 > .random-classname-37740f61 .random-classname-2bcc9313', + '.random-classname-dfff6d6f ::slotted .random-classname-c66fda1b .random-classname-9c70d905 .random-classname-db14c209 [data-random-attr-8412594d] ::slotted [data-random-attr-8d8e498f] :first-child .random-classname-f6b7db17 [data-random-attr-acad2c3b] ::before', + '.random-classname-d66be295 .random-classname-ccf61c99 .random-classname-f6b7db17 .random-classname-37740f61 .random-classname-5c63551b', + ':first-child :not(.random-classname-f6b7db17) .random-classname-7126a509', + '.random-classname-f25762d1 .random-classname-d66be295 ::before > .random-classname-f6b7db17 .random-classname-c61a5823', + '.random-classname-ccf61c99 .random-classname-f6b7db17 ::before', + '.random-classname-298ab48f', + '.random-classname-e50cbf99', + '.random-classname-c66fda1b .random-classname-9c70d905 .random-classname-db14c209 ::slotted ::slotted [data-random-attr-8d8e498f] :first-child > :not(.random-classname-f6b7db17) :first-child', + '.random-classname-ccf61c99 .random-classname-f6b7db17 .random-classname-81e6273b', + '.random-classname-db14c209 ::slotted > ::slotted [data-random-attr-8d8e498f] ::before .random-classname-f6b7db17 > .random-classname-4f176e43', + '.random-classname-f6b7db17 .random-classname-df45e2f1 >', + '.random-classname-2f96bc96 >', + '.random-classname-f6b7db17 .random-classname-7acd8aec', + '.random-classname-db14c209 [data-random-attr-8412594d] ::slotted [data-random-attr-8d8e498f] > .random-classname-ccf61c99 .random-classname-ae886749 >', + '.random-classname-ab729463', + '.random-classname-fdefb28d', + ':first-child .random-classname-237fb011', + '.random-classname-a499806b', + '[data-random-attr-cf3463d5]', + '[data-random-attr-8d8e498f] :first-child ::before', + '[data-random-attr-6ed29657]', + '::slotted ::slotted > [data-random-attr-8d8e498f] :first-child :not(.random-classname-9407fb7b)', + '.random-classname-9eb77d23 .random-classname-f25762d1 .random-classname-d66be295 ::before .random-classname-eedd6165', + '[data-random-attr-4efca069]', + ':first-child > :first-child', + ':first-child > .random-classname-a49b0d31', + '.random-classname-f63628ef', + '.random-classname-b50f12f9', + '.random-classname-be8d2b93', + '.random-classname-d66be295 .random-classname-bc0bd1c1', + '.random-classname-8ba86989', + '.random-classname-f25762d1 .random-classname-d66be295 :nth-child(3)', + '.random-classname-9eb77d23 ::slotted [data-random-attr-8d8e498f] > .random-classname-f658dc70', + '.random-classname-d66be295 .random-classname-1fb1ef22', + '::slotted .random-classname-91c27e9d :last-child > .random-classname-bc3be55f ::slotted .random-classname-7d68f0e7 .random-classname-60f9370b .random-classname-dfff6d6f > .random-classname-a6dc7813 .random-classname-c66fda1b .random-classname-9c70d905 .random-classname-db14c209 .random-classname-9eb77d23 ::slotted [data-random-attr-8d8e498f] .random-classname-c6fb330a', + '.random-classname-b1f0b1e5 > .random-classname-c710b8e9 ::before .random-classname-60f9370b .random-classname-e3057375 .random-classname-db8b4b79 .random-classname-ee8f1a41 > .random-classname-9c70d905 .random-classname-7e5397f ::slotted .random-classname-f25762d1 .random-classname-d66be295 .random-classname-9210f91f', + '.random-classname-8e0866c3', + '.random-classname-d66be295 .random-classname-f7213ed', + '.random-classname-338e2ad7 :not(.random-classname-bc3be55f) > ::slotted > .random-classname-196d4e2d :not(.random-classname-60f9370b) .random-classname-dfff6d6f > .random-classname-a6dc7813 .random-classname-c66fda1b > .random-classname-9c70d905 .random-classname-db14c209 .random-classname-9eb77d23 ::slotted [data-random-attr-8d8e498f] [data-random-attr-2f499ecb]', + '.random-classname-f25762d1 > .random-classname-d66be295 .random-classname-ed62f135', + '.random-classname-4ee9ad44', + '.random-classname-5cb7fb16', + '[data-random-attr-81d0d2b8=random-attr-value-9bf6f6b7]', + '.random-classname-b1f0b1e5 .random-classname-c710b8e9 .random-classname-7d68f0e7 .random-classname-60f9370b > .random-classname-e3057375 > [data-random-attr-a32a41bd] .random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f > [data-random-attr-8412594d] > .random-classname-f25762d1 .random-classname-3ba4c6c5 >', + '.random-classname-252bcce3', + '.random-classname-f25762d1 .random-classname-10f434c7', + '.random-classname-db14c209 ::slotted ::slotted .random-classname-91f9c8eb', + '.random-classname-79d24055', + '.random-classname-f7d32d4f', + '.random-classname-c8497659', + '.random-classname-c8cf45f3', + '::slotted ::slotted >', + '.random-classname-7e5397f > .random-classname-d9645de5 >', + '.random-classname-db14c209 .random-classname-cbc924e9 >', + '.random-classname-db8b4b79 .random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f .random-classname-4c26fce7', + '[data-random-attr-a32a41bd] .random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f [data-random-attr-646ec413]', + '.random-classname-a6dc7813 .random-classname-c66fda1b .random-classname-9c70d905 > .random-classname-db14c209 .random-classname-f7800641', + '.random-classname-db8b4b79 .random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-e24ba61b', + ':last-child .random-classname-bc3be55f ::slotted ::before .random-classname-60f9370b .random-classname-dfff6d6f ::slotted .random-classname-c66fda1b :not(.random-classname-9c70d905) .random-classname-ab146648 >', + '.random-classname-d9da39fc', + '.random-classname-d857008e', + '.random-classname-f6dec5a2', + '.random-classname-60f9370b .random-classname-e3057375 .random-classname-db8b4b79 > :not(.random-classname-ee8f1a41) .random-classname-9c70d905 [data-random-attr-9f0e71f6=random-attr-value-3298c0dd]', + '::before .random-classname-60f9370b .random-classname-dfff6d6f ::slotted .random-classname-c66fda1b .random-classname-9c70d905 :nth-child(13)', + '.random-classname-49516a72 >', + '.random-classname-425a185a', + '.random-classname-e3057375 .random-classname-db8b4b79 .random-classname-ee8f1a41 .random-classname-3884542e', + '.random-classname-7da08342', + '.random-classname-89e287c4', + '.random-classname-ee8f1a41 .random-classname-5863996', + '.random-classname-4ee5a5b', + '.random-classname-e7fdf049 >', + '::slotted > .random-classname-196d4e2d :not(.random-classname-60f9370b) :not(.random-classname-dfff6d6f) ::slotted > .random-classname-c66fda1b ::slotted >', + '.random-classname-dca65911', + '.random-classname-bd58bdcf', + '.random-classname-60f9370b .random-classname-e3057375 .random-classname-db8b4b79 .random-classname-fb599e73 >', + '::slotted .random-classname-91c27e9d > ::slotted .random-classname-bc3be55f ::slotted .random-classname-196d4e2d .random-classname-60f9370b .random-classname-dfff6d6f > ::slotted ::slotted', + '.random-classname-e3057375 [data-random-attr-a32a41bd] :first-child', + '.random-classname-3fc606ad', + '.random-classname-8c48bd67', + '.random-classname-e3057375 .random-classname-b6ee3631 >', + '.random-classname-b1f0b1e5 > .random-classname-c710b8e9 .random-classname-7d68f0e7 .random-classname-60f9370b .random-classname-e3057375 .random-classname-2c75bf9', + '.random-classname-dfff6d6f .random-classname-5b931a3d', + '.random-classname-ba214e9b', + '.random-classname-3e74c185', + '[data-random-attr-c007b5ff]', + '.random-classname-5e569891 ::slotted ::slotted .random-classname-91c27e9d :not(.random-classname-338e2ad7) :not(.random-classname-bc3be55f) ::slotted :not(::before) .random-classname-60f9370b .random-classname-dfff6d6f .random-classname-611781a3', + '.random-classname-c710b8e9 .random-classname-196d4e2d .random-classname-60f9370b .random-classname-e3057375 [data-random-attr-20beb15]', + '.random-classname-196d4e2d .random-classname-60f9370b > .random-classname-dfff6d6f ::before', + '::before > .random-classname-60f9370b .random-classname-e3057375 :not(.random-classname-d95f0797)', + '.random-classname-4833b8a5 >', + '.random-classname-c710b8e9 .random-classname-7d68f0e7 .random-classname-4edecba9', + '.random-classname-94d12ced', + '.random-classname-d063fda7', + '[data-random-attr-4602a071]', + '.random-classname-277f4b7d .random-classname-d7d1eab7 .random-classname-57d7a13f ::before .random-classname-5e569891 :first-child ::slotted .random-classname-91c27e9d .random-classname-338e2ad7 .random-classname-bc3be55f ::slotted .random-classname-7d68f0e7 ::slotted', + ':last-child .random-classname-b1f0b1e5 .random-classname-c710b8e9 .random-classname-196d4e2d ::before', + '.random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-d7d1eab7 .random-classname-57d7a13f .random-classname-6c6280e3 .random-classname-5e569891 :first-child ::slotted .random-classname-91c27e9d ::slotted .random-classname-bc3be55f ::slotted :last-child', + '.random-classname-a9593fc5', + '.random-classname-cc3e0e3f', + '.random-classname-338e2ad7 .random-classname-b1f0b1e5 > .random-classname-c710b8e9 [data-random-attr-aac7980d]', + '.random-classname-91c27e9d .random-classname-338e2ad7 > .random-classname-bc3be55f ::slotted', + '::slotted .random-classname-b1f0b1e5 .random-classname-e888f955', + '.random-classname-338e2ad7 .random-classname-bc3be55f > .random-classname-30ef4e4f', + ':not(.random-classname-b1f0b1e5) .random-classname-10f977d7', + ':nth-child(11) >', + '.random-classname-fc9c0a59 > .random-classname-91c27e9d :last-child .random-classname-b1f0b1e5 .random-classname-7e74c986', + '.random-classname-bc3be55f .random-classname-a34d621a >', + '.random-classname-b057445c', + '.random-classname-459d59ee', + '.random-classname-f4bd0502', + '.random-classname-497ff756', + '.random-classname-9e7d58f8', + '.random-classname-5eb9d7a0', + '.random-classname-277f4b7d .random-classname-fa45e001 .random-classname-57d7a13f .random-classname-b1643fc9 .random-classname-5e569891 :first-child > ::slotted .random-classname-91c27e9d ::slotted .random-classname-60add926 >', + '.random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-338e2ad7 > .random-classname-7e6e2b48', + '.random-classname-91c27e9d .random-classname-338e2ad7 .random-classname-45589bba', + '::slotted > .random-classname-ad75cefc >', + ':first-child > ::slotted .random-classname-91c27e9d ::after', + '.random-classname-91c27e9d [data-random-attr-ab7cd198=random-attr-value-25202817]', + '::slotted ::slotted .random-classname-91c27e9d ::slotted', + '.random-classname-1406fceb .random-classname-fc9c0a59 > .random-classname-91c27e9d .random-classname-7319d029 >', + '::slotted :not(.random-classname-b229b696)', + ':first-child .random-classname-fc9c0a59 :first-child', + '.random-classname-520c40e0', + '.random-classname-1406fceb .random-classname-fc9c0a59 :not(.random-classname-29b77d12)', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d :not(.random-classname-fa45e001) .random-classname-57d7a13f .random-classname-6c6280e3 .random-classname-5e569891 .random-classname-1406fceb .random-classname-9d446866 >', + '.random-classname-277f4b7d .random-classname-d7d1eab7 .random-classname-63271ac5 .random-classname-b1643fc9 > :not(.random-classname-d75c28c7) ::slotted .random-classname-4d20a26b', + '.random-classname-5496decf', + '.random-classname-ad43a3d9', + '.random-classname-d75c28c7 :first-child .random-classname-e9b2f01d >', + '::before .random-classname-5e569891 :not(.random-classname-1406fceb) .random-classname-c32d6d80', + '.random-classname-d75c28c7 :first-child .random-classname-e7a772b2', + '::slotted [data-random-attr-7171e806=random-attr-value-a401fad]', + '.random-classname-b7699c8b', + '.random-classname-bb274f5', + '.random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 > .random-classname-57d7a13f ::before .random-classname-5e569891 ::slotted >', + ':not(.random-classname-63271ac5) .random-classname-6c6280e3 .random-classname-d75c28c7 .random-classname-aef7733d', + '.random-classname-7d8f9f9b', + '.random-classname-9f643a85', + '.random-classname-277f4b7d :first-child .random-classname-63271ac5 ::before .random-classname-d75c28c7 > .random-classname-eb4ff2a3', + '.random-classname-12f1eacd', + '.random-classname-668c8c0e >', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-57d7a13f :not(.random-classname-6c6280e3) .random-classname-5e569891 > ::placeholder', + '[data-random-attr-9107cd0a=random-attr-value-bb8058e1] >', + '.random-classname-d75c28c7 > .random-classname-6c9648c3', + '.random-classname-2fd2c971', + ':not(.random-classname-7ef38bd3) .random-classname-277f4b7d :first-child .random-classname-63271ac5 > .random-classname-b1643fc9 .random-classname-f593b32f', + ':first-child .random-classname-57d7a13f ::slotted >', + '.random-classname-63271ac5 > :nth-child(7) >', + '.random-classname-e6a49f08', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d > .random-classname-d7d1eab7 :not(.random-classname-57d7a13f) .random-classname-4c7f9ebc', + '.random-classname-63271ac5 .random-classname-ca59dfb0', + '.random-classname-b2bea7f3', + '.random-classname-5db05c9d', + '.random-classname-fa45e001 .random-classname-63271ac5 > .random-classname-2aa47321 >', + ':not(.random-classname-57d7a13f) :last-child', + '.random-classname-e9b536e9', + '.random-classname-a1a52503', + '.random-classname-20e673b1', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d > .random-classname-6be250b', + '::before .random-classname-7ef38bd3 ::before', + '.random-classname-633f2613', + '::before :not(.random-classname-7ef38bd3) .random-classname-cdcad841 >', + ':not(.random-classname-9f9d877f)', + ], +}; diff --git a/apps/stress-test/src/fixtures/m_1.js b/apps/stress-test/src/fixtures/m_1.js new file mode 100644 index 0000000000000..927d3a6de6115 --- /dev/null +++ b/apps/stress-test/src/fixtures/m_1.js @@ -0,0 +1,7665 @@ +/* eslint-disable @fluentui/max-len */ +export default { + tree: { + value: { + name: '0-0', + classNames: ['.random-classname-7134e52f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '1-11', + classNames: ['.random-classname-7ef38bd3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-3', + classNames: ['.random-classname-277f4b7d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-7', + classNames: ['.random-classname-d7d1eab7', '.random-classname-fa45e001'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-9', + classNames: ['.random-classname-63271ac5', '.random-classname-57d7a13f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '5-3', + classNames: ['.random-classname-b1643fc9', '.random-classname-6c6280e3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '6-3', + classNames: ['.random-classname-d75c28c7', '.random-classname-5e569891'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-3', + classNames: ['.random-classname-1406fceb'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '8-5', + classNames: ['.random-classname-fc9c0a59'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '9-3', + classNames: ['.random-classname-91c27e9d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-7', + classNames: ['.random-classname-338e2ad7'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-13', + classNames: [ + '.random-classname-b1f0b1e5', + '.random-classname-bc3be55f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-5', + classNames: ['.random-classname-c710b8e9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-196d4e2d', + '.random-classname-7d68f0e7', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-60f9370b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-e3057375', + '.random-classname-dfff6d6f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-db8b4b79', + '.random-classname-a6dc7813', + ], + attributes: [ + { + key: 'data-random-attr-a32a41bd', + selector: '[data-random-attr-a32a41bd]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-13', + classNames: [ + '.random-classname-ee8f1a41', + '.random-classname-c66fda1b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-9c70d905'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-13', + classNames: [ + '.random-classname-7e5397f', + '.random-classname-db14c209', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-2', + classNames: ['.random-classname-9eb77d23'], + attributes: [ + { + key: 'data-random-attr-8412594d', + selector: '[data-random-attr-8412594d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-2', + classNames: ['.random-classname-f25762d1'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-13', + classNames: ['.random-classname-d66be295'], + attributes: [ + { + key: 'data-random-attr-8d8e498f', + selector: '[data-random-attr-8d8e498f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-12', + classNames: ['.random-classname-ccf61c99'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-12', + classNames: ['.random-classname-f6b7db17'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-12', + classNames: ['.random-classname-37740f61'], + attributes: [ + { + key: 'data-random-attr-acad2c3b', + selector: '[data-random-attr-acad2c3b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-12', + classNames: [ + '.random-classname-7b6f9025', + '.random-classname-b6db9d9f', + ], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-12', + classNames: ['.random-classname-7fbf1343'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-12', + classNames: ['.random-classname-e63fb127'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-12', + classNames: [ + '.random-classname-6c8e1ff1', + '.random-classname-a855db4b', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-12', + classNames: [ + '.random-classname-c5ee35af', + '.random-classname-4247db9', + ], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-12', + classNames: [ + '.random-classname-de8777fd', + '.random-classname-d8354b37', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-12', + classNames: ['.random-classname-b4068e5b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-12', + classNames: ['.random-classname-92711bf'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-12', + classNames: ['.random-classname-3564b963'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-13', + classNames: ['.random-classname-2c161f8d'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-11', + classNames: [ + '.random-classname-39d0456b', + '.random-classname-172870d5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: ['.random-classname-eb2731cf'], + attributes: [ + { + key: 'data-random-attr-185e6ed9', + selector: '[data-random-attr-185e6ed9]', + }, + ], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: [ + '.random-classname-d1adcb57', + '.random-classname-7426a9a1', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: [ + '.random-classname-2e08ae65', + '.random-classname-2cf95df', + ], + attributes: [ + { + key: 'data-random-attr-8dfe3d69', + selector: '[data-random-attr-8dfe3d69]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: [ + '.random-classname-3904daad', + '.random-classname-af2b167', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: ['.random-classname-260e8ff5'], + attributes: [ + { + key: 'data-random-attr-23413def', + selector: '[data-random-attr-23413def]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: [ + '.random-classname-4ebeff9', + '.random-classname-2ec71093', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: ['.random-classname-87d6ee3d'], + attributes: [ + { + key: 'data-random-attr-ca295b77', + selector: '[data-random-attr-ca295b77]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: ['.random-classname-4c844ec1'], + attributes: [ + { + key: 'data-random-attr-e82d829b', + selector: '[data-random-attr-e82d829b]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: [ + '.random-classname-6bdd29ff', + '.random-classname-10308689', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: [ + '.random-classname-24aa35a3', + '.random-classname-79c25cd', + ], + attributes: [ + { + key: 'data-random-attr-1ad2c987', + selector: '[data-random-attr-1ad2c987]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-13', + classNames: ['.random-classname-100549ab'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-7', + classNames: ['.random-classname-3baf3f15'], + attributes: [ + { + key: 'data-random-attr-58445a0f', + selector: '[data-random-attr-58445a0f]', + }, + ], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-49ad815d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-ecaffb97'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-c00b14bb', + '.random-classname-5ffc0ca5', + ], + attributes: [ + { + key: 'data-random-attr-d057ce1f', + selector: '[data-random-attr-d057ce1f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-6b5a0bc3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-23c1f1a7', + '.random-classname-72b8b471', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-92d27e35', + '.random-classname-3838862f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-13', + classNames: ['.random-classname-4821a239'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-4', + classNames: [ + '.random-classname-8d58a47d', + '.random-classname-a849abb7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-4', + classNames: ['.random-classname-dab04901'], + attributes: [ + { + key: 'data-random-attr-f24b6db', + selector: '[data-random-attr-f24b6db]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-4', + classNames: [ + '.random-classname-252b93c5', + '.random-classname-8047823f', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-4', + classNames: ['.random-classname-94e46c0d'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-13', + classNames: [ + '.random-classname-a4ff4191', + '.random-classname-4e1a8deb', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-9', + classNames: ['.random-classname-3525c24f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-9', + classNames: ['.random-classname-8959d359'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-9', + classNames: [ + '.random-classname-7608aaf3', + '.random-classname-8aa0579d', + ], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-9', + classNames: ['.random-classname-750268fb'], + attributes: [ + { + key: 'data-random-attr-e789aae5', + selector: '[data-random-attr-e789aae5]', + }, + ], + siblings: [':nth-child(11)'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '12-9', + classNames: ['.random-classname-9a75ed86'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-9', + classNames: ['.random-classname-9fd61ea8'], + attributes: [ + { + key: 'data-random-attr-8b6ec61a', + value: 'random-attr-value-cc875eb1', + selector: + '[data-random-attr-8b6ec61a=random-attr-value-cc875eb1]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-9', + classNames: [ + '.random-classname-a4c0ac75', + '.random-classname-85140e6f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-9', + classNames: ['.random-classname-78059479'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-9', + classNames: ['.random-classname-ddd2a913'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-13', + classNames: [ + '.random-classname-fad63bf7', + '.random-classname-2b528341', + ], + attributes: [ + { + key: 'data-random-attr-152c2b1b', + selector: '[data-random-attr-152c2b1b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-fbde5205', + '.random-classname-d6a61a7f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-13', + classNames: [ + '.random-classname-e1454b09', + '.random-classname-1dfdee23', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-7', + classNames: [ + '.random-classname-922ef24d', + '.random-classname-9339ca07', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-f050122b'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-36ce599', + '.random-classname-a52eb733', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-c3d91c17', + '.random-classname-cdc3f861', + ], + attributes: [ + { + key: 'data-random-attr-9729fd3b', + selector: '[data-random-attr-9729fd3b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-daf18925'], + attributes: [ + { + key: 'data-random-attr-f124fe9f', + selector: '[data-random-attr-f124fe9f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-92d60443', + '.random-classname-13c90d6d', + ], + attributes: [ + { + key: 'data-random-attr-52b53227', + selector: '[data-random-attr-52b53227]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-787c48f1'], + attributes: [ + { + key: 'data-random-attr-174aec4b', + selector: '[data-random-attr-174aec4b]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-13', + classNames: [ + '.random-classname-ca13d6af', + '.random-classname-7ed7c6b9', + ], + attributes: [ + { + key: 'data-random-attr-a6a4d553', + selector: '[data-random-attr-a6a4d553]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-7', + classNames: [ + '.random-classname-8a0f0c37', + '.random-classname-70aafd81', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-2683df5b', + '.random-classname-218b5045', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-3f38f2bf', + '.random-classname-bded0d49', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-fdbbb88d', + '.random-classname-4867aa47', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-f5791611'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-fe8129d5'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-a18e37d9', + '.random-classname-c0bd0373', + ], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-13', + classNames: ['.random-classname-b44f92a1'], + attributes: [ + { + key: 'data-random-attr-72c1d17b', + selector: '[data-random-attr-72c1d17b]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-3', + classNames: [ + '.random-classname-e4e9f6df', + '.random-classname-84444669', + ], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-29cef3ad', + '.random-classname-19593267', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-58d77331', + '.random-classname-f4a8d08b', + ], + attributes: [], + siblings: [':nth-child(3)'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-13', + classNames: [ + '.random-classname-25af7f82', + '.random-classname-cc6e0e04', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-6', + classNames: [ + '.random-classname-35e0d9d6', + '.random-classname-87d8df78', + ], + attributes: [ + { + key: 'data-random-attr-900acf6a', + value: 'random-attr-value-1cf9b7c1', + selector: + '[data-random-attr-900acf6a=random-attr-value-1cf9b7c1]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-6', + classNames: [ + '.random-classname-c728e85', + '.random-classname-ca400aff', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-6', + classNames: ['.random-classname-2cb2a6a3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-6', + classNames: [ + '.random-classname-15cabecd', + '.random-classname-ae91ca87', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-6', + classNames: ['.random-classname-58df6051'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-6', + classNames: [ + '.random-classname-921bdaab', + '.random-classname-f0b0f815', + ], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-ccf38fb3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-2', + classNames: ['.random-classname-9fe65a5d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-4', + classNames: [ + '.random-classname-12f16ce1', + '.random-classname-9409e5bb', + ], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-4', + classNames: ['.random-classname-9b432f1f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-4', + classNames: ['.random-classname-36168a9'], + attributes: [ + { + key: 'data-random-attr-9832fcc3', + selector: '[data-random-attr-9832fcc3]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-4', + classNames: ['.random-classname-351972a7'], + attributes: [ + { + key: 'data-random-attr-8fd8dd71', + selector: '[data-random-attr-8fd8dd71]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-2', + classNames: [ + '.random-classname-7808b735', + '.random-classname-7d80272f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-5', + classNames: ['.random-classname-fa46eb39'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-9a55fd7d'], + attributes: [ + { + key: 'data-random-attr-bf856cb7', + selector: '[data-random-attr-bf856cb7]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-e27eb201', + '.random-classname-5c2407db', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-c7fb633f', + '.random-classname-2b751c9', + ], + attributes: [ + { + key: 'data-random-attr-e6b162e3', + selector: '[data-random-attr-e6b162e3]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-1df82ac7', + '.random-classname-7c0bea91', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-a5eb0655', '.random-classname-4b55e34f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-7', + classNames: ['.random-classname-b2fb9c59'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-e125bf3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-7', + classNames: ['.random-classname-1ca2309d'], + attributes: [ + { + key: 'data-random-attr-3532acd7', + selector: '[data-random-attr-3532acd7]', + }, + ], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-3', + classNames: ['.random-classname-dac6a3e5'], + attributes: [], + siblings: [':nth-child(13)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-f8ff1734', + '.random-classname-136d2a86', + ], + attributes: [ + { + key: 'data-random-attr-acf963a8', + value: 'random-attr-value-1e35f2e7', + selector: + '[data-random-attr-acf963a8=random-attr-value-1e35f2e7]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-63e5590b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-7', + classNames: ['.random-classname-1d1fe575'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-5', + classNames: ['.random-classname-8363dd79'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-394cda13'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-2292f3bd', + '.random-classname-3642fcf7', + ], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-4aefcb05', + '.random-classname-c8aafb7f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-9f59d409'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-7', + classNames: [ + '.random-classname-9e1f0cba', + '.random-classname-511267fc', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '12-7', + classNames: ['.random-classname-34569cf0'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-d96403a2'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-75788ff6'], + attributes: [ + { + key: 'data-random-attr-bf739a98', + value: 'random-attr-value-1dbe5d17', + selector: + '[data-random-attr-bf739a98=random-attr-value-1dbe5d17]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-c177e161'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-5c178225'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-b06f19c6', + '.random-classname-1b3b54e8', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-2921b22e', + '.random-classname-a6a75190', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-7', + classNames: [ + '.random-classname-3494c142', + '.random-classname-a76775c4', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-657ae338', + '.random-classname-2b58492a', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-7', + classNames: [ + '.random-classname-f0d9a9fe', + '.random-classname-81a8a9e0', + ], + attributes: [], + siblings: [':last-child'], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '12-7', + classNames: [ + '.random-classname-d4d64966', + '.random-classname-3774588', + ], + attributes: [ + { + key: 'data-random-attr-dbc9effa', + value: 'random-attr-value-4ab7bf11', + selector: + '[data-random-attr-dbc9effa=random-attr-value-4ab7bf11]', + }, + ], + siblings: [':nth-child(13)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-9c015630'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-e9ab4ee2'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-d400ef36'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-8de08aca', + '.random-classname-249c608c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-57de359e', + '.random-classname-10d65680', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-feedd1b4', + '.random-classname-150c4906', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-7', + classNames: [ + '.random-classname-66a9199a', + '.random-classname-41d567dc', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-7', + classNames: [ + '.random-classname-eaa4c96e', + '.random-classname-588caad0', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-cd17c304', + '.random-classname-3af556d6', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-974b6478', + '.random-classname-2709c6a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-190d832c'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-98c95320', + '.random-classname-8d178952', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-11ed16c8', + '.random-classname-44c4133a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-8e59b27c'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-f4714f70', '.random-classname-cf29da22'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '11-4', + classNames: [ + '.random-classname-11948e76', + '.random-classname-9649d18', + ], + attributes: [ + { + key: 'data-random-attr-28707e0a', + value: 'random-attr-value-6b5755e1', + selector: + '[data-random-attr-28707e0a=random-attr-value-6b5755e1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-6', + classNames: [ + '.random-classname-870cb6bb', + '.random-classname-c647fea5', + ], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-6', + classNames: [ + '.random-classname-c48fedc3', + '.random-classname-4b6e32ed', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-6', + classNames: [ + '.random-classname-1c34f3a7', + '.random-classname-3b5d0671', + ], + attributes: [ + { + key: 'data-random-attr-75c205cb', + selector: '[data-random-attr-75c205cb]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-6', + classNames: [ + '.random-classname-510bc82f', + '.random-classname-7503439', + ], + attributes: [ + { + key: 'data-random-attr-797f1ed3', + selector: '[data-random-attr-797f1ed3]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-6', + classNames: [ + '.random-classname-2d852db7', + '.random-classname-a1b11b01', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-6', + classNames: [ + '.random-classname-dc2085c5', + '.random-classname-3ef3443f', + ], + attributes: [ + { + key: 'data-random-attr-d936dac9', + selector: '[data-random-attr-d936dac9]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-4', + classNames: ['.random-classname-ac779e0d'], + attributes: [], + siblings: [':nth-child(9)'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-25b737bc', + '.random-classname-1a6b844e', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-4', + classNames: [ + '.random-classname-ed1fa562', + '.random-classname-2c138ee4', + ], + attributes: [ + { + key: 'data-random-attr-25736db6', + value: 'random-attr-value-d7c8099d', + selector: + '[data-random-attr-25736db6=random-attr-value-d7c8099d]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-5', + classNames: [ + '.random-classname-74287021', + '.random-classname-fc860afb', + ], + attributes: [ + { + key: 'data-random-attr-1ba79ce5', + selector: '[data-random-attr-1ba79ce5]', + }, + ], + siblings: [':nth-child(7)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-c4018c34'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-2df0a8a8', + '.random-classname-148be01a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-77e0725c', + '.random-classname-5bb4b7ee', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-63041d84'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-4', + classNames: [ + '.random-classname-70831556', + '.random-classname-e5426f8', + ], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-5', + classNames: [ + '.random-classname-db052dac', + '.random-classname-2bc51fbe', + ], + attributes: [ + { + key: 'data-random-attr-76a65a0', + value: 'random-attr-value-edf3dc7f', + selector: + '[data-random-attr-76a65a0=random-attr-value-edf3dc7f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-2d16d023'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-663fcc07', + '.random-classname-f7485dd1', + ], + attributes: [ + { + key: 'data-random-attr-d485342b', + selector: '[data-random-attr-d485342b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-b8670d95'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-c3067799', + '.random-classname-42081933', + ], + attributes: [ + { + key: 'data-random-attr-dfdf1fdd', + selector: '[data-random-attr-dfdf1fdd]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-14679e17'], + attributes: [ + { + key: 'data-random-attr-a28fca61', + selector: '[data-random-attr-a28fca61]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-412f9f3b'], + attributes: [], + siblings: [':nth-child(3)'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-5', + classNames: [ + '.random-classname-32661572', + '.random-classname-2b594974', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-790756c6'], + attributes: [], + siblings: [':nth-child(2)'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-3d410e4b', + '.random-classname-f5cd8cb5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-752b18af'], + attributes: [ + { + key: 'data-random-attr-3cea58b9', + selector: '[data-random-attr-3cea58b9]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-123582fd'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-130fcf81'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-3', + classNames: ['.random-classname-868a815b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-3', + classNames: ['.random-classname-58244245'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-eec1f49'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-4a4fac47'], + attributes: [ + { + key: 'data-random-attr-85a6811', + selector: '[data-random-attr-85a6811]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: [ + '.random-classname-c31e9bd5', + '.random-classname-501d94cf', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-3', + classNames: ['.random-classname-59d86573'], + attributes: [ + { + key: 'data-random-attr-e1c8761d', + selector: '[data-random-attr-e1c8761d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-48cd64a1', + '.random-classname-a149737b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-76359965', + '.random-classname-34eab8df', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: [ + '.random-classname-a9244283', + '.random-classname-49cf25ad', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-4', + classNames: [ + '.random-classname-3b723467', + '.random-classname-4811c531', + ], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-4', + classNames: [ + '.random-classname-7a968fd0', + '.random-classname-75e3d982', + ], + attributes: [ + { + key: 'data-random-attr-3f557804', + value: 'random-attr-value-39fba393', + selector: + '[data-random-attr-3f557804=random-attr-value-39fba393]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-4', + classNames: [ + '.random-classname-e959e77', + '.random-classname-81089c1', + ], + attributes: [ + { + key: 'data-random-attr-4f4759b', + selector: '[data-random-attr-4f4759b]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-4', + classNames: [ + '.random-classname-18d1ccff', + '.random-classname-d0442189', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-c693f0cd'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-3', + classNames: [ + '.random-classname-a15bcc87', + '.random-classname-a8f2b251', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-2', + classNames: ['.random-classname-7ca06a15'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-2', + classNames: [ + '.random-classname-4aedbd0f', + '.random-classname-e27b5c19', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: ['.random-classname-8450f1b3'], + attributes: [ + { + key: 'data-random-attr-abc40c5d', + selector: '[data-random-attr-abc40c5d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-5', + classNames: ['.random-classname-f9213ee1'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-67e3f7a5'], + attributes: [ + { + key: 'data-random-attr-c8e5f11f', + selector: '[data-random-attr-c8e5f11f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-70dec3'], + attributes: [ + { + key: 'data-random-attr-61894bed', + selector: '[data-random-attr-61894bed]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-e91474a7'], + attributes: [ + { + key: 'data-random-attr-5452f71', + selector: '[data-random-attr-5452f71]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-7a612935'], + attributes: [ + { + key: 'data-random-attr-c2db692f', + selector: '[data-random-attr-c2db692f]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: [ + '.random-classname-63604fd3', + '.random-classname-e9bcaf7d', + ], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-a8478401', + '.random-classname-92ea9db', + ], + attributes: [ + { + key: 'data-random-attr-f110fec5', + selector: '[data-random-attr-f110fec5]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '9-3', + classNames: ['.random-classname-e39a63c9', '.random-classname-e71044e3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '10-5', + classNames: ['.random-classname-c3a42cc7', '.random-classname-1b513c91'], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: [], + }, + children: [ + { + value: { + name: '11-3', + classNames: [ + '.random-classname-e5efedb0', + '.random-classname-1a9f5262', + ], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-e4df6ab6', + '.random-classname-5af70358', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: ['.random-classname-bcd4fe4a'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-5', + classNames: ['.random-classname-c17ea00c'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-9c0c211e'], + attributes: [], + siblings: [':nth-child(6)'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-89b5bb03', + '.random-classname-ad25b22d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-2612f4e7', + '.random-classname-8d5ed9b1', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-36e17b0b', + '.random-classname-71ca5775', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: [ + '.random-classname-c1e9f16f', + '.random-classname-26cc6f79', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-4', + classNames: ['.random-classname-e8ba5bd'], + attributes: [], + siblings: [':nth-child(5)'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '12-4', + classNames: [ + '.random-classname-e8373cbe', + '.random-classname-c92b8aa0', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-4', + classNames: [ + '.random-classname-6de02cd2', + '.random-classname-c5937d4', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-4', + classNames: ['.random-classname-2163e48'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-5', + classNames: ['.random-classname-be2126ba'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-3', + classNames: [ + '.random-classname-e3cd91fc', + '.random-classname-1d9c188e', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-e3a95da2', + '.random-classname-79353124', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: ['.random-classname-64f689f6'], + attributes: [ + { + key: 'data-random-attr-cf75a498', + value: 'random-attr-value-b7d4df17', + selector: + '[data-random-attr-cf75a498=random-attr-value-b7d4df17]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-3', + classNames: ['.random-classname-20b8703b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-34f7425', + '.random-classname-bf99219f', + ], + attributes: [ + { + key: 'data-random-attr-6f447f29', + selector: '[data-random-attr-6f447f29]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-d932d743', + '.random-classname-ae4586d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: ['.random-classname-aaadb527'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-14421f4b', + '.random-classname-ff9dc5b5', + ], + attributes: [ + { + key: 'data-random-attr-3c1cb9af', + selector: '[data-random-attr-3c1cb9af]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-5', + classNames: ['.random-classname-a049a1b9', '.random-classname-8d826853'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-3', + classNames: [ + '.random-classname-d70cdbfd', + '.random-classname-b8344f37', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-9413d25b', + '.random-classname-58e6bb45', + ], + attributes: [ + { + key: 'data-random-attr-d0695bf', + selector: '[data-random-attr-d0695bf]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: [ + '.random-classname-7b1a7d63', + '.random-classname-6384838d', + ], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-3', + classNames: [ + '.random-classname-1a3e896b', + '.random-classname-c06354d5', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-5e2c1673', + '.random-classname-88a44f1d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-718ecf57'], + attributes: [], + siblings: [':nth-child(11)'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: ['.random-classname-6fb56f9e'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-d6c3a080', + '.random-classname-f8231db2', + ], + attributes: [ + { + key: 'data-random-attr-321abbb4', + value: 'random-attr-value-c3283383', + selector: + '[data-random-attr-321abbb4=random-attr-value-c3283383]', + }, + ], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-5', + classNames: ['.random-classname-c744ee31', '.random-classname-1b23038b'], + attributes: [ + { + key: 'data-random-attr-a1b73f5', + selector: '[data-random-attr-a1b73f5]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-3', + classNames: ['.random-classname-95f513f9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-f180523d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: [ + '.random-classname-42b1f2c1', + '.random-classname-b33ec69b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-3', + classNames: ['.random-classname-8a08f985'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-2900adff', + '.random-classname-9012aa89', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-b5e3f9a3'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: [ + '.random-classname-2066cd87', + '.random-classname-b3925b51', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-738e2315'], + attributes: [ + { + key: 'data-random-attr-3458de0f', + selector: '[data-random-attr-3458de0f]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-5', + classNames: ['.random-classname-fdc5a2b3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-3', + classNames: ['.random-classname-8168e55d'], + attributes: [ + { + key: 'data-random-attr-ef54ff97', + selector: '[data-random-attr-ef54ff97]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-4c4f27e1'], + attributes: [ + { + key: 'data-random-attr-a1e58bb', + selector: '[data-random-attr-a1e58bb]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: ['.random-classname-4b9d521f'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-3', + classNames: [ + '.random-classname-5bd5cfc3', + '.random-classname-b5c864ed', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-7d915871', + '.random-classname-e7c427cb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-b7836235'], + attributes: [ + { + key: 'data-random-attr-e2ef0a2f', + selector: '[data-random-attr-e2ef0a2f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: [ + '.random-classname-5dc580d3', + '.random-classname-4c26087d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-4dd0afb7'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '9-3', + classNames: ['.random-classname-8939fadb', '.random-classname-41a577c5'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-3', + classNames: ['.random-classname-faaf063f', '.random-classname-b1e1ecc9'], + attributes: [], + siblings: [':nth-child(3)'], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-2bd907a', + '.random-classname-c71061bc', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '12-3', + classNames: [ + '.random-classname-14d52b0', + '.random-classname-d392ff62', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-7291f8e4', + '.random-classname-4cff67b6', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-ef010858'], + attributes: [ + { + key: 'data-random-attr-293e4b4a', + value: 'random-attr-value-80d24221', + selector: + '[data-random-attr-293e4b4a=random-attr-value-80d24221]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-3', + classNames: ['.random-classname-c6558ee5', '.random-classname-ca3dca5f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-cc9ce5e9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-2', + classNames: ['.random-classname-ff6dcb2d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-2', + classNames: [ + '.random-classname-7c402b1', + '.random-classname-56658c0b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-3', + classNames: ['.random-classname-6e159075', '.random-classname-d00e926f'], + attributes: [ + { + key: 'data-random-attr-ded6b879', + selector: '[data-random-attr-ded6b879]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-2', + classNames: ['.random-classname-153dfebd'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-b0482741', + '.random-classname-2456f1b', + ], + attributes: [ + { + key: 'data-random-attr-75fc3605', + selector: '[data-random-attr-75fc3605]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-2', + classNames: [ + '.random-classname-12519e7f', + '.random-classname-c8ef6f09', + ], + attributes: [ + { + key: 'data-random-attr-123fb223', + selector: '[data-random-attr-123fb223]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-2', + classNames: [ + '.random-classname-e855ce07', + '.random-classname-3087afd1', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-2', + classNames: ['.random-classname-50ca562b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '8-5', + classNames: ['.random-classname-a427f95'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '9-2', + classNames: ['.random-classname-6300999'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '10-3', + classNames: ['.random-classname-18062017'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-3', + classNames: ['.random-classname-c745413b'], + attributes: [ + { + key: 'data-random-attr-49616d25', + selector: '[data-random-attr-49616d25]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-2', + classNames: ['.random-classname-8218829'], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '12-2', + classNames: [ + '.random-classname-c66b3d5a', + '.random-classname-4fd8019c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: [ + '.random-classname-fb9d492e', + '.random-classname-c820090', + ], + attributes: [ + { + key: 'data-random-attr-50d64842', + value: 'random-attr-value-c68ceab9', + selector: + '[data-random-attr-50d64842=random-attr-value-c68ceab9]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-3', + classNames: [ + '.random-classname-bb0834fd', + '.random-classname-51e1037', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-4aa1235b', + '.random-classname-5d4d3445', + ], + attributes: [ + { + key: 'data-random-attr-402876bf', + selector: '[data-random-attr-402876bf]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-5c51ee63', + '.random-classname-b5ba1c8d', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: ['.random-classname-fccbba11'], + attributes: [ + { + key: 'data-random-attr-9b641a6b', + selector: '[data-random-attr-9b641a6b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-3a4c0dd5'], + attributes: [ + { + key: 'data-random-attr-4215d6cf', + selector: '[data-random-attr-4215d6cf]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-3', + classNames: ['.random-classname-57355bd9'], + attributes: [ + { + key: 'data-random-attr-9d03c773', + selector: '[data-random-attr-9d03c773]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-53711057'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-f2878b65'], + attributes: [ + { + key: 'data-random-attr-a9fb7adf', + selector: '[data-random-attr-a9fb7adf]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-3', + classNames: ['.random-classname-c8b02483', '.random-classname-d25f57ad'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-2', + classNames: [ + '.random-classname-249b3667', + '.random-classname-60dc1731', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-cfb8acf5'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-2', + classNames: [ + '.random-classname-d0080593', + '.random-classname-ebc4ab3d', + ], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '12-3', + classNames: ['.random-classname-3f23e83e'], + attributes: [ + { + key: 'data-random-attr-3d0ac220', + value: 'random-attr-value-94738eff', + selector: + '[data-random-attr-3d0ac220=random-attr-value-94738eff]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-ffc53389', + '.random-classname-93fc6aa3', + ], + attributes: [ + { + key: 'data-random-attr-a7ed22cd', + selector: '[data-random-attr-a7ed22cd]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-6a960451'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '9-2', + classNames: ['.random-classname-c69e1eab'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '10-3', + classNames: ['.random-classname-5a07ff0f', '.random-classname-ba88ee19'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-4c31be5d', + '.random-classname-73e84097', + ], + attributes: [ + { + key: 'data-random-attr-f4e110e1', + selector: '[data-random-attr-f4e110e1]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-3', + classNames: [ + '.random-classname-5807e9a5', + '.random-classname-2b98b31f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-e7458ca9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-e6bec0c3'], + attributes: [ + { + key: 'data-random-attr-d82b7ded', + selector: '[data-random-attr-d82b7ded]', + }, + ], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-3', + classNames: ['.random-classname-c8cb38cb', '.random-classname-87499b35'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-efc40f39', + '.random-classname-78aeb1d3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-95b3617d'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-3', + classNames: ['.random-classname-cba05601'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-3a494bdb'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-5dddf0c5', + '.random-classname-5f72e73f', + ], + attributes: [ + { + key: 'data-random-attr-d40d75c9', + selector: '[data-random-attr-d40d75c9]', + }, + ], + siblings: [':nth-child(11)'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '8-5', + classNames: ['.random-classname-480e7708'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-2', + classNames: ['.random-classname-cd639d7a', '.random-classname-135af6bc'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '10-2', + classNames: ['.random-classname-f0feb7b0', '.random-classname-e7faac62'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-e1df0d58', + '.random-classname-5f9b984a', + ], + attributes: [], + siblings: [':last-child'], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '12-2', + classNames: [ + '.random-classname-55b21800', + '.random-classname-1a820132', + ], + attributes: [], + siblings: [':nth-child(10)'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-2', + classNames: ['.random-classname-14fff6e7'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-2', + classNames: ['.random-classname-59ed9d0b'], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: [], + }, + children: [ + { + value: { + name: '11-3', + classNames: [ + '.random-classname-e6d1ca02', + '.random-classname-6ad73c84', + ], + attributes: [ + { + key: 'data-random-attr-42068c56', + value: 'random-attr-value-e71457bd', + selector: + '[data-random-attr-42068c56=random-attr-value-e71457bd]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-5ff9041', + '.random-classname-7a15c01b', + ], + attributes: [ + { + key: 'data-random-attr-239daf05', + selector: '[data-random-attr-239daf05]', + }, + ], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: [ + '.random-classname-dd1a2323', + '.random-classname-76d9ef4d', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-3', + classNames: [ + '.random-classname-eff2e72b', + '.random-classname-68263895', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-88790f8f', + '.random-classname-211ad299', + ], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-8a83aadd', + '.random-classname-44fb6117', + ], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: [ + '.random-classname-c6eee140', + '.random-classname-79f5dc72', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '12-2', + classNames: ['.random-classname-53e468e8'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-2', + classNames: ['.random-classname-7aa169c'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '9-2', + classNames: ['.random-classname-a872e590'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-524249c4'], + attributes: [ + { + key: 'data-random-attr-26754b96', + value: 'random-attr-value-4e278dfd', + selector: '[data-random-attr-26754b96=random-attr-value-4e278dfd]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-a2150a81', + '.random-classname-ba32745b', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-da8e57bf', + '.random-classname-1198ba49', + ], + attributes: [ + { + key: 'data-random-attr-170d5f63', + selector: '[data-random-attr-170d5f63]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '8-5', + classNames: ['.random-classname-5b69af47', '.random-classname-539a6311'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-268dab6b'], + attributes: [ + { + key: 'data-random-attr-c0d8c6d5', + selector: '[data-random-attr-c0d8c6d5]', + }, + ], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-265f7873', '.random-classname-99c8011d'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-29b2e67b', + '.random-classname-91268465', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-fa69dbdf', + '.random-classname-c3fe7369', + ], + attributes: [ + { + key: 'data-random-attr-c9bc1583', + selector: '[data-random-attr-c9bc1583]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '8-5', + classNames: ['.random-classname-85dd70ad', '.random-classname-6bd5b767'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-e633258b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-d68503ef'], + attributes: [ + { + key: 'data-random-attr-7d1a5f9', + selector: '[data-random-attr-7d1a5f9]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-792d043d', + '.random-classname-dbe5e177', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-66df689b', + '.random-classname-494beb85', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '7-3', + classNames: ['.random-classname-6b2a6fff', '.random-classname-af5bbc89'], + attributes: [ + { + key: 'data-random-attr-8f98dba3', + selector: '[data-random-attr-8f98dba3]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-79c8cf87'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-aec8afab'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-cbfb200f', '.random-classname-8be5b719'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-9c1e975d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-cd3f8197'], + attributes: [], + siblings: [':nth-child(5)'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '7-3', + classNames: ['.random-classname-6ed830de', '.random-classname-c82833c0'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-6e7352f2'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-85ac46', '.random-classname-a2c80b68'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-783910da', '.random-classname-6cbaa11c'], + attributes: [ + { + key: 'data-random-attr-e28a94ae', + value: 'random-attr-value-79b3d435', + selector: '[data-random-attr-e28a94ae=random-attr-value-79b3d435]', + }, + ], + siblings: [':nth-child(7)'], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-77e42444', + '.random-classname-74d48a16', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-f80f39b8'], + attributes: [], + siblings: [':nth-child(4)'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '6-3', + classNames: ['.random-classname-2c5c9cdb'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-337ac83f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-7afc97e3', '.random-classname-dd4e020d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-6642fc7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-d5273791'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-44e3f3eb', + '.random-classname-25dca355', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-ee42884f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '6-3', + classNames: ['.random-classname-dbfed0f3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-9fc76d9d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-730c1421', '.random-classname-efbd4efb'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-679380e5'], + attributes: [ + { + key: 'data-random-attr-6f1a8c5f', + selector: '[data-random-attr-6f1a8c5f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-3d938e03', '.random-classname-4a69fd2d'], + attributes: [ + { + key: 'data-random-attr-eb1c77e7', + selector: '[data-random-attr-eb1c77e7]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-5179ae0b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-da980275'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '5-3', + classNames: ['.random-classname-eb974a79', '.random-classname-566bcf13'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-140eb0bd', '.random-classname-70dec1f7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-771af941'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-90e32805', '.random-classname-c3bf607f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-cc1c8109', '.random-classname-4d789423'], + attributes: [ + { + key: 'data-random-attr-4dce884d', + selector: '[data-random-attr-4dce884d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-3b5701d1', '.random-classname-e51f782b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-feadf195'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-268e308f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '5-3', + classNames: ['.random-classname-c9eadd33', '.random-classname-f30283dd'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-4eb4a217', '.random-classname-acd76e61'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-a96ae33b', '.random-classname-8a715f25'], + attributes: [ + { + key: 'data-random-attr-8d71449f', + selector: '[data-random-attr-8d71449f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-333aa43'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-ee8a3827'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-1ce670b5'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-16899caf', + '.random-classname-9bbf7cb9', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-206ae6fd'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-90897381'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-f2c7c55b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-ec3838bf', '.random-classname-ff9a4349'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-2914e8d', '.random-classname-b4fb047'], + attributes: [ + { + key: 'data-random-attr-52cd0c11', + selector: '[data-random-attr-52cd0c11]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-cbbb3c6b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-551e18cf', '.random-classname-4f60edd9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-a3f2973'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-19819257'], + attributes: [ + { + key: 'data-random-attr-827908a1', + selector: '[data-random-attr-827908a1]', + }, + ], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-c41c3cdf', + '.random-classname-3d9c7c69', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-437f89ad'], + attributes: [ + { + key: 'data-random-attr-54d43867', + selector: '[data-random-attr-54d43867]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-23366931'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-26df1ef5'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-e853a4ef'], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-50f3fd78', '.random-classname-a1b99d6a'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-b49b2c2c', '.random-classname-e340223e'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-68850c20'], + attributes: [ + { + key: 'data-random-attr-9e80aa52', + value: 'random-attr-value-2ed64589', + selector: '[data-random-attr-9e80aa52=random-attr-value-2ed64589]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-39d654cd'], + attributes: [ + { + key: 'data-random-attr-741fd087', + selector: '[data-random-attr-741fd087]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-1dc95651'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-dc2f4e15'], + attributes: [ + { + key: 'data-random-attr-9a32410f', + selector: '[data-random-attr-9a32410f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-b6268019', '.random-classname-a13bb5b3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-12f705d', '.random-classname-b5ac297'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-8630e2e1'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-435b751f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-cb1ca2c3', '.random-classname-c75dafed'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-9ccdd371'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-2ae55acb'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-f8c1ed2f', + '.random-classname-4bdaa139', + ], + attributes: [ + { + key: 'data-random-attr-500d13d3', + selector: '[data-random-attr-500d13d3]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-1e3a137d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-98fff2b7', '.random-classname-cc892801'], + attributes: [ + { + key: 'data-random-attr-6f73eddb', + selector: '[data-random-attr-6f73eddb]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-393ae2c5', '.random-classname-86c6a93f'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-79fe08e3', '.random-classname-71dd9b0d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-de8be091'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-9d1384eb', '.random-classname-2d5f5c55'], + attributes: [], + siblings: [':nth-child(11)'], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-99975eb6', '.random-classname-24171758'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-12b5f40c', + '.random-classname-7bc2951e', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-e1ebdb32'], + attributes: [ + { + key: 'data-random-attr-9fb9d534', + value: 'random-attr-value-35e57f03', + selector: + '[data-random-attr-9fb9d534=random-attr-value-35e57f03]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-631e162d', '.random-classname-6afcf8e7'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-4d09bf0b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-6acf3b75', '.random-classname-c814756f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-604d9379'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-2c2d09bd', '.random-classname-bce382f7'], + attributes: [], + siblings: [':nth-child(11)'], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-3607b0be'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-71781ea0', '.random-classname-6d9de0d2'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-6d450bd4', + '.random-classname-dc852826', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-d633e5fc', + '.random-classname-49598c8e', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-71a411a2', '.random-classname-ac660524'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-1169b898'], + attributes: [ + { + key: 'data-random-attr-cdb1a58a', + value: 'random-attr-value-a0e35761', + selector: '[data-random-attr-cdb1a58a=random-attr-value-a0e35761]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-503b43b', '.random-classname-a56f5825'], + attributes: [ + { + key: 'data-random-attr-1c96a59f', + selector: '[data-random-attr-1c96a59f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-ce10a329'], + attributes: [ + { + key: 'data-random-attr-aae69b43', + selector: '[data-random-attr-aae69b43]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-f500bc6d', '.random-classname-4b5bb927'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-b146a9b5'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-6aaec5b9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-63372c53'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-84735337'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-461165b', '.random-classname-20589f45'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-a97fcc49', '.random-classname-59104163'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-1d32e78d', '.random-classname-2af9b147'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-9aeccd6b'], + attributes: [], + siblings: [':nth-child(5)'], + pseudos: [], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-80195ce2'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-f4f8dd36', '.random-classname-ace999d8'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-f5d3e39e'], + attributes: [], + siblings: [':nth-child(8)'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-fe5ff783', + '.random-classname-9b45a2ad', + ], + attributes: [ + { + key: 'data-random-attr-ef96b967', + selector: '[data-random-attr-ef96b967]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-a153478b', + '.random-classname-d86857f5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-e46645ef', '.random-classname-953e37f9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-8d69b63d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-f7ef6377'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-4e900a9b'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-e34ce89', '.random-classname-1f5dbda3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-cd00edcd'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-623ad187'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-39f8ff51', + '.random-classname-2929d1ab', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-b5ad0715'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-c94b4919', '.random-classname-74c066b3'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-8eeecbe1'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-44719cbb', '.random-classname-608bd4a5'], + attributes: [], + siblings: [':nth-child(11)'], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-26be2646'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-d9e89568'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-3caecb1c'], + attributes: [ + { + key: 'data-random-attr-19d24eae', + value: 'random-attr-value-6744635', + selector: '[data-random-attr-19d24eae=random-attr-value-6744635]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-71e58e2f', '.random-classname-4a3bea39'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-7d336c7d', '.random-classname-5f97b3b7'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-138f3edb', + '.random-classname-185f5bc5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-69568a3f', + '.random-classname-d1e810c9', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-fa8379e3', '.random-classname-f691340d'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-a74715eb', '.random-classname-29861555'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-3f581b59', '.random-classname-bcc632f3'], + attributes: [ + { + key: 'data-random-attr-1a9f1f9d', + selector: '[data-random-attr-1a9f1f9d]', + }, + ], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-5b70f0fb', '.random-classname-7f6172e5'], + attributes: [ + { + key: 'data-random-attr-19074e5f', + selector: '[data-random-attr-19074e5f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-1b1509e9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-d1bb7003', '.random-classname-ddf62f2d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-a4a179e7'], + attributes: [], + siblings: [':nth-child(9)'], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-bbea7b50', '.random-classname-c2ec5102'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-c8de5b84', + '.random-classname-abde0356', + ], + attributes: [ + { + key: 'data-random-attr-fae344f8', + value: 'random-attr-value-43ac43f7', + selector: + '[data-random-attr-fae344f8=random-attr-value-43ac43f7]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-3f9eb31b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-ea5a1a05'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-2ed99309'], + attributes: [ + { + key: 'data-random-attr-5ec17623', + selector: '[data-random-attr-5ec17623]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-f9b1d207'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-97b653d1', '.random-classname-11849a2b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-9f84728f', '.random-classname-17332d99'], + attributes: [ + { + key: 'data-random-attr-b4f43f33', + selector: '[data-random-attr-b4f43f33]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-eb6c35dd'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-e2534061', '.random-classname-67a0853b'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-ee7dac29'], + attributes: [ + { + key: 'data-random-attr-3a1d8c43', + selector: '[data-random-attr-3a1d8c43]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-e5f13a27'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-504ae2b5'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-3c820eb9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-cdee5d53'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-c25d98fd'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-6b9e4581'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-d34f1845', '.random-classname-b557fabf'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-57b263', '.random-classname-eff8808d'], + attributes: [ + { + key: 'data-random-attr-ca67b247', + selector: '[data-random-attr-ca67b247]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-a4225e6b'], + attributes: [ + { + key: 'data-random-attr-4056f1d5', + selector: '[data-random-attr-4056f1d5]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-5b1c7fd9', '.random-classname-218a8b73'], + attributes: [ + { + key: 'data-random-attr-c0b8c1d', + selector: '[data-random-attr-c0b8c1d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-27a6daa1', + '.random-classname-b540597b', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-34cfedf'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-ea848e69', '.random-classname-51f7e883'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-1d2fbbad', '.random-classname-4c1d3a67'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-60e9588b', '.random-classname-f89590f5'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: [], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-bdebb604'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-1a9d0778', '.random-classname-b1e9376a'], + attributes: [ + { + key: 'data-random-attr-2f5fd62c', + value: 'random-attr-value-bdee5b9b', + selector: '[data-random-attr-2f5fd62c=random-attr-value-bdee5b9b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-497e5685'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-dd775789'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-fc4f86cd', '.random-classname-5419d287'], + attributes: [], + siblings: [':nth-child(13)'], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-6a57180e', + '.random-classname-4c841270', + ], + attributes: [ + { + key: 'data-random-attr-59a09522', + value: 'random-attr-value-55541219', + selector: + '[data-random-attr-59a09522=random-attr-value-55541219]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-4abd225d'], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-16c007de', '.random-classname-f97922c0'], + attributes: [], + siblings: [':nth-child(8)'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-2d8a84c3', '.random-classname-af1fe1ed'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-beea2571'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-e94d2f2f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-697b75d3'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-ecf374b7', '.random-classname-2b01fa01'], + attributes: [ + { + key: 'data-random-attr-28ae8fdb', + selector: '[data-random-attr-28ae8fdb]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-eb2a6b3f'], + attributes: [ + { + key: 'data-random-attr-e3a399c9', + selector: '[data-random-attr-e3a399c9]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-fb68cd0d', '.random-classname-ef0832c7'], + attributes: [ + { + key: 'data-random-attr-2813291', + selector: '[data-random-attr-2813291]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-737ea6eb'], + attributes: [ + { + key: 'data-random-attr-aa50ce55', + selector: '[data-random-attr-aa50ce55]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-8666eb4f', + '.random-classname-9019e459', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-b5c0f89d', '.random-classname-1a64b4d7'], + attributes: [ + { + key: 'data-random-attr-c4d0cf21', + selector: '[data-random-attr-c4d0cf21]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-9fbe6be5', '.random-classname-57e3af5f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-56d12e9', '.random-classname-21156103'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-6f99cfb1', '.random-classname-9035e10b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-f29ad75', '.random-classname-b8c1b76f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-f6662579', '.random-classname-b7ae6213'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-153904f7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-ec53441'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-f68b9305', '.random-classname-ce62037f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-ec0e1c09'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-ab84534d', + '.random-classname-3372d307', + ], + attributes: [ + { + key: 'data-random-attr-4c7bfcd1', + selector: '[data-random-attr-4c7bfcd1]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-b61d1c95'], + attributes: [ + { + key: 'data-random-attr-9a65938f', + selector: '[data-random-attr-9a65938f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-8c3ef033'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-38786517', '.random-classname-1272961'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-e141563b'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-aad679f'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-c0d87d43', '.random-classname-cee6ee6d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-c36fb9f1', '.random-classname-c69c854b'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-95a7faf', '.random-classname-a13957b9'], + attributes: [], + siblings: [':nth-child(9)'], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-11370b38'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-e8eeb12a', + '.random-classname-5bbe35ec', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-ce9d1e0', + '.random-classname-de183612', + ], + attributes: [], + siblings: [':last-child'], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-5edd6d88'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-1', + classNames: ['.random-classname-a89a57fa'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-cef1bdce', '.random-classname-cc2c7e30'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-f888b6e2', '.random-classname-caba1c64'], + attributes: [ + { + key: 'data-random-attr-3040d736', + value: 'random-attr-value-89bf651d', + selector: '[data-random-attr-3040d736=random-attr-value-89bf651d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-3453c3a1'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-2f222a7b'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-98cb5fdf', '.random-classname-3dce9769'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-593dd4ad'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-9cabe431', '.random-classname-cc83698b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-1766c9f5', '.random-classname-db5787ef'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-8a2cfa93', '.random-classname-ae36683d'], + attributes: [ + { + key: 'data-random-attr-1f08e577', + selector: '[data-random-attr-1f08e577]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-ea50ac9b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-a381cf85'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-36adf3ff'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-e5329fa3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-59bcd387', '.random-classname-c7845151'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-9b9af3ab', '.random-classname-5a947915'], + attributes: [ + { + key: 'data-random-attr-ce6fa40f', + selector: '[data-random-attr-ce6fa40f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-6755c8b3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + selectors: [ + '::before >', + '.random-classname-7134e52f .random-classname-7ef38bd3', + '.random-classname-277f4b7d', + ':first-child', + '::before .random-classname-7ef38bd3 > .random-classname-277f4b7d :first-child .random-classname-57d7a13f >', + '.random-classname-b1643fc9', + '.random-classname-6c6280e3', + '::before', + '::before :not(.random-classname-7ef38bd3) > .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-57d7a13f > .random-classname-6c6280e3 .random-classname-5e569891', + '.random-classname-277f4b7d :first-child .random-classname-63271ac5 .random-classname-6c6280e3 .random-classname-d75c28c7 .random-classname-1406fceb', + '.random-classname-1406fceb ::slotted', + '.random-classname-fc9c0a59 .random-classname-91c27e9d', + '.random-classname-338e2ad7', + ':last-child', + '::slotted', + ':not(.random-classname-d75c28c7) ::slotted :not(.random-classname-fc9c0a59) .random-classname-91c27e9d .random-classname-338e2ad7 :not(.random-classname-b1f0b1e5)', + '::slotted >', + '.random-classname-196d4e2d', + '.random-classname-7d68f0e7', + '.random-classname-60f9370b', + '.random-classname-b1f0b1e5 .random-classname-e3057375 >', + '.random-classname-ee8f1a41', + '.random-classname-c66fda1b', + '.random-classname-9c70d905', + '.random-classname-1406fceb .random-classname-fc9c0a59 .random-classname-91c27e9d :not(::slotted) .random-classname-7e5397f', + '.random-classname-9eb77d23', + '[data-random-attr-8412594d]', + '.random-classname-7ef38bd3 > .random-classname-277f4b7d :first-child .random-classname-63271ac5 .random-classname-6c6280e3 .random-classname-d75c28c7 ::slotted .random-classname-fc9c0a59 .random-classname-91c27e9d :last-child .random-classname-7e5397f .random-classname-f25762d1', + '::slotted [data-random-attr-8d8e498f] >', + '.random-classname-91c27e9d > ::slotted .random-classname-d66be295 > :first-child', + '.random-classname-f6b7db17', + ':not(.random-classname-338e2ad7) .random-classname-d66be295 .random-classname-37740f61', + '.random-classname-338e2ad7 [data-random-attr-8d8e498f] > .random-classname-b6db9d9f', + '.random-classname-7fbf1343', + ':last-child [data-random-attr-8d8e498f] .random-classname-e63fb127', + '.random-classname-c5ee35af >', + '.random-classname-d66be295 :not(::before) >', + '::slotted > [data-random-attr-8d8e498f] > ::before >', + '.random-classname-92711bf >', + '.random-classname-91c27e9d .random-classname-338e2ad7 :not([data-random-attr-8d8e498f]) .random-classname-3564b963', + ':last-child :last-child', + ':not(.random-classname-2c161f8d) .random-classname-172870d5', + '.random-classname-eb2731cf', + '[data-random-attr-185e6ed9]', + '.random-classname-d1adcb57', + '.random-classname-7426a9a1', + '.random-classname-91c27e9d ::slotted > :last-child .random-classname-2e08ae65', + '.random-classname-3904daad', + '.random-classname-af2b167', + '.random-classname-1406fceb .random-classname-fc9c0a59 > .random-classname-91c27e9d :last-child :last-child .random-classname-260e8ff5', + ':last-child :not(.random-classname-2ec71093) >', + '.random-classname-2c161f8d :not(.random-classname-87d6ee3d)', + '.random-classname-4c844ec1', + '[data-random-attr-e82d829b]', + '.random-classname-2c161f8d .random-classname-6bdd29ff >', + '.random-classname-338e2ad7 > ::before .random-classname-79c25cd', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 > .random-classname-63271ac5 ::before .random-classname-d75c28c7 :first-child .random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-338e2ad7 :not(.random-classname-100549ab)', + '::slotted ::slotted .random-classname-91c27e9d ::slotted > .random-classname-100549ab :not(::slotted)', + '.random-classname-91c27e9d :last-child .random-classname-100549ab .random-classname-49ad815d >', + '.random-classname-b1643fc9 .random-classname-5e569891 .random-classname-1406fceb ::slotted .random-classname-91c27e9d > :last-child .random-classname-100549ab ::before', + '.random-classname-100549ab > .random-classname-c00b14bb', + '.random-classname-100549ab ::before >', + '.random-classname-23c1f1a7', + '.random-classname-72b8b471', + '.random-classname-3838862f', + '.random-classname-fc9c0a59 .random-classname-91c27e9d > .random-classname-338e2ad7 > .random-classname-4821a239', + '.random-classname-8d58a47d', + '.random-classname-a849abb7', + '.random-classname-91c27e9d .random-classname-338e2ad7 .random-classname-4821a239 .random-classname-dab04901', + '.random-classname-8047823f', + '.random-classname-94e46c0d', + ':last-child > ::before >', + '::slotted > .random-classname-fc9c0a59 .random-classname-91c27e9d :not(.random-classname-338e2ad7) .random-classname-a4ff4191 .random-classname-3525c24f >', + '.random-classname-8959d359', + '.random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-338e2ad7 > ::before .random-classname-7608aaf3', + ':last-child ::before ::after >', + '.random-classname-fc9c0a59 .random-classname-91c27e9d :last-child .random-classname-a4ff4191 .random-classname-9a75ed86', + '.random-classname-9fd61ea8', + '[data-random-attr-8b6ec61a=random-attr-value-cc875eb1]', + '::before .random-classname-a4c0ac75', + '.random-classname-91c27e9d > ::slotted ::before .random-classname-78059479', + '.random-classname-ddd2a913', + '[data-random-attr-152c2b1b] >', + '.random-classname-6c6280e3 .random-classname-d75c28c7 ::slotted .random-classname-fc9c0a59 .random-classname-91c27e9d :last-child [data-random-attr-152c2b1b] .random-classname-fbde5205', + '.random-classname-e1454b09', + '.random-classname-1dfdee23', + '.random-classname-922ef24d', + '.random-classname-9339ca07', + '.random-classname-1dfdee23 :first-child', + ':first-child .random-classname-fc9c0a59 .random-classname-91c27e9d :last-child .random-classname-e1454b09 .random-classname-a52eb733 >', + '[data-random-attr-9729fd3b]', + '::before > .random-classname-d75c28c7 .random-classname-1406fceb .random-classname-fc9c0a59 .random-classname-91c27e9d ::slotted .random-classname-e1454b09 ::before', + '.random-classname-92d60443', + '.random-classname-13c90d6d', + '[data-random-attr-52b53227]', + '[data-random-attr-174aec4b]', + '::before > .random-classname-7ef38bd3 .random-classname-277f4b7d :first-child .random-classname-57d7a13f .random-classname-b1643fc9 .random-classname-5e569891 :first-child ::slotted .random-classname-91c27e9d ::slotted ::before', + '[data-random-attr-a6a4d553] > .random-classname-8a0f0c37 >', + '.random-classname-2683df5b', + '.random-classname-218b5045', + ':first-child .random-classname-63271ac5 > .random-classname-b1643fc9 .random-classname-d75c28c7 ::slotted .random-classname-fc9c0a59 > .random-classname-91c27e9d > ::slotted .random-classname-ca13d6af .random-classname-bded0d49', + '.random-classname-4867aa47', + '.random-classname-f5791611', + '.random-classname-7ed7c6b9 > :first-child', + '.random-classname-a18e37d9', + '.random-classname-c0bd0373', + '::slotted ::before :not(:first-child)', + '.random-classname-29cef3ad', + '.random-classname-19593267', + '::before .random-classname-58d77331', + '.random-classname-91c27e9d :last-child .random-classname-cc6e0e04', + '.random-classname-b1643fc9 > .random-classname-d75c28c7 > :first-child .random-classname-fc9c0a59 .random-classname-91c27e9d :last-child .random-classname-25af7f82 [data-random-attr-900acf6a=random-attr-value-1cf9b7c1]', + '.random-classname-ca400aff', + '.random-classname-2cb2a6a3', + '.random-classname-cc6e0e04 .random-classname-ae91ca87', + '.random-classname-58df6051', + '.random-classname-921bdaab', + '.random-classname-f0b0f815', + '.random-classname-ccf38fb3', + '.random-classname-ccf38fb3 ::slotted', + '.random-classname-12f16ce1', + '.random-classname-9409e5bb', + '.random-classname-9b432f1f', + '[data-random-attr-9832fcc3]', + '.random-classname-351972a7', + '[data-random-attr-8fd8dd71]', + '.random-classname-7808b735', + '.random-classname-7d80272f', + '.random-classname-fa46eb39', + '.random-classname-ccf38fb3 .random-classname-7808b735 > .random-classname-9a55fd7d', + '::before > .random-classname-5e569891 > .random-classname-1406fceb ::slotted .random-classname-91c27e9d .random-classname-ccf38fb3 .random-classname-7d80272f > .random-classname-5c2407db', + '.random-classname-c7fb633f', + '.random-classname-2b751c9', + '[data-random-attr-e6b162e3]', + '.random-classname-7c0bea91', + '.random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-a5eb0655', + ':first-child ::slotted .random-classname-91c27e9d > .random-classname-4b55e34f > .random-classname-b2fb9c59', + '.random-classname-e125bf3', + '.random-classname-91c27e9d > .random-classname-4b55e34f > [data-random-attr-3532acd7]', + '.random-classname-dac6a3e5', + '.random-classname-f8ff1734', + '.random-classname-136d2a86', + '[data-random-attr-acf963a8=random-attr-value-1e35f2e7]', + '.random-classname-63e5590b', + '.random-classname-1d1fe575', + '.random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-d7d1eab7 .random-classname-63271ac5 .random-classname-b1643fc9 .random-classname-d75c28c7 :first-child .random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-a5eb0655 > .random-classname-1d1fe575 > .random-classname-8363dd79', + '.random-classname-4b55e34f ::slotted :not(.random-classname-394cda13)', + '.random-classname-2292f3bd', + '.random-classname-3642fcf7', + '.random-classname-4b55e34f ::slotted .random-classname-c8aafb7f >', + '.random-classname-9f59d409', + ':nth-child(7)', + '::after', + '.random-classname-9e1f0cba', + '.random-classname-34569cf0', + '.random-classname-4b55e34f .random-classname-9e1f0cba ::after', + '.random-classname-75788ff6', + '[data-random-attr-bf739a98=random-attr-value-1dbe5d17]', + '.random-classname-91c27e9d .random-classname-4b55e34f ::placeholder ::slotted', + '.random-classname-5c178225', + '.random-classname-1406fceb ::slotted > .random-classname-91c27e9d .random-classname-4b55e34f .random-classname-9e1f0cba .random-classname-1b3b54e8', + '.random-classname-fc9c0a59 > .random-classname-91c27e9d .random-classname-a5eb0655 ::placeholder .random-classname-2921b22e', + '.random-classname-3494c142', + '.random-classname-a76775c4', + '::placeholder', + '.random-classname-657ae338', + '.random-classname-2b58492a', + '.random-classname-f0d9a9fe', + '.random-classname-81a8a9e0', + '.random-classname-63271ac5 ::before > .random-classname-d75c28c7 ::slotted .random-classname-fc9c0a59 .random-classname-91c27e9d > .random-classname-a5eb0655 .random-classname-f0d9a9fe > .random-classname-d4d64966', + '.random-classname-9c015630 >', + ':not(.random-classname-d75c28c7) > :first-child .random-classname-fc9c0a59 :not(.random-classname-91c27e9d) > .random-classname-a5eb0655 :last-child .random-classname-e9ab4ee2', + ':first-child ::slotted .random-classname-91c27e9d .random-classname-4b55e34f .random-classname-81a8a9e0 ::after >', + '.random-classname-8de08aca', + '.random-classname-5e569891 > :first-child ::slotted > .random-classname-91c27e9d .random-classname-4b55e34f ::after ::placeholder >', + '.random-classname-feedd1b4', + '.random-classname-150c4906', + '::slotted .random-classname-91c27e9d .random-classname-4b55e34f .random-classname-41d567dc', + ':first-child :not(.random-classname-fc9c0a59) .random-classname-91c27e9d .random-classname-a5eb0655 > .random-classname-66a9199a ::placeholder', + '.random-classname-41d567dc .random-classname-3af556d6', + '.random-classname-d75c28c7 .random-classname-1406fceb .random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-a5eb0655 .random-classname-66a9199a .random-classname-974b6478 >', + '.random-classname-190d832c', + '.random-classname-66a9199a .random-classname-98c95320', + '.random-classname-11ed16c8', + '.random-classname-44c4133a', + '.random-classname-8e59b27c', + '.random-classname-f4714f70', + '.random-classname-f4714f70 .random-classname-9649d18', + '.random-classname-cf29da22 > .random-classname-11948e76 ::before', + '.random-classname-91c27e9d .random-classname-f4714f70 [data-random-attr-28707e0a=random-attr-value-6b5755e1] .random-classname-c48fedc3', + '.random-classname-57d7a13f ::before > .random-classname-5e569891 .random-classname-1406fceb ::slotted .random-classname-91c27e9d .random-classname-f4714f70 > .random-classname-9649d18 .random-classname-3b5d0671 >', + '.random-classname-510bc82f', + '.random-classname-7503439', + '[data-random-attr-797f1ed3]', + '.random-classname-2d852db7', + '.random-classname-a1b11b01', + '.random-classname-dc2085c5', + '.random-classname-3ef3443f', + '[data-random-attr-d936dac9]', + '.random-classname-ac779e0d', + ':nth-child(9)', + '.random-classname-cf29da22 .random-classname-ac779e0d .random-classname-25b737bc', + '.random-classname-91c27e9d :first-child :first-child >', + '.random-classname-1406fceb .random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-cf29da22 > [data-random-attr-25736db6=random-attr-value-d7c8099d] [data-random-attr-1ba79ce5]', + '::placeholder >', + '.random-classname-2df0a8a8', + '.random-classname-148be01a', + '.random-classname-63041d84', + '.random-classname-cf29da22 > .random-classname-e5426f8 >', + ':not(.random-classname-70831556) .random-classname-db052dac', + ':first-child ::slotted .random-classname-91c27e9d :first-child .random-classname-e5426f8 ::before >', + '.random-classname-663fcc07', + '.random-classname-f7485dd1', + '[data-random-attr-d485342b]', + '::before > .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-57d7a13f ::before > .random-classname-5e569891 > :first-child ::slotted .random-classname-91c27e9d :first-child > .random-classname-70831556 ::slotted', + '.random-classname-c3067799', + '.random-classname-42081933', + '[data-random-attr-dfdf1fdd]', + '.random-classname-14679e17', + '[data-random-attr-a28fca61]', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d > .random-classname-fa45e001 .random-classname-63271ac5 ::before :not(.random-classname-d75c28c7) ::slotted .random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-14679e17 > .random-classname-412f9f3b', + '.random-classname-2b594974 >', + '.random-classname-412f9f3b .random-classname-790756c6 >', + '.random-classname-f5cd8cb5 >', + '.random-classname-123582fd', + '.random-classname-63271ac5 .random-classname-6c6280e3 .random-classname-d75c28c7 .random-classname-1406fceb > .random-classname-fc9c0a59 .random-classname-91c27e9d :not(.random-classname-130fcf81)', + '.random-classname-868a815b', + '.random-classname-91c27e9d :not(.random-classname-130fcf81) .random-classname-868a815b .random-classname-58244245', + '.random-classname-91c27e9d > :not(.random-classname-130fcf81) .random-classname-868a815b :last-child', + '.random-classname-130fcf81 .random-classname-868a815b ::slotted >', + '.random-classname-c31e9bd5', + '.random-classname-501d94cf', + '.random-classname-59d86573', + '.random-classname-1406fceb > ::slotted .random-classname-91c27e9d .random-classname-130fcf81 .random-classname-c31e9bd5 :not(.random-classname-a149737b) >', + '.random-classname-76359965', + '.random-classname-34eab8df', + '.random-classname-a9244283', + '.random-classname-49cf25ad', + '.random-classname-3b723467', + '.random-classname-4811c531', + ':nth-child(1)', + '.random-classname-75e3d982 >', + '.random-classname-e959e77 >', + '.random-classname-130fcf81 .random-classname-49cf25ad .random-classname-18d1ccff', + '.random-classname-c693f0cd', + '.random-classname-c693f0cd .random-classname-a15bcc87 >', + '.random-classname-a8f2b251 .random-classname-7ca06a15', + '::slotted .random-classname-91c27e9d .random-classname-c693f0cd .random-classname-a8f2b251 .random-classname-e27b5c19', + ':not(.random-classname-d75c28c7) :first-child .random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-c693f0cd [data-random-attr-abc40c5d] >', + '.random-classname-277f4b7d .random-classname-d7d1eab7 .random-classname-57d7a13f .random-classname-b1643fc9 .random-classname-5e569891 ::slotted ::slotted .random-classname-91c27e9d .random-classname-c693f0cd [data-random-attr-abc40c5d] ::slotted', + '.random-classname-c693f0cd ::slotted .random-classname-67e3f7a5', + ':not(.random-classname-c693f0cd) .random-classname-8450f1b3 [data-random-attr-61894bed]', + '.random-classname-8450f1b3 [data-random-attr-5452f71]', + '[data-random-attr-c2db692f]', + '.random-classname-e9bcaf7d', + '::slotted .random-classname-91c27e9d > .random-classname-c693f0cd :first-child ::slotted', + '.random-classname-c3a42cc7', + '.random-classname-1b513c91', + '.random-classname-1a9f5262', + '.random-classname-c3a42cc7 .random-classname-e5efedb0 .random-classname-5af70358', + '.random-classname-bcd4fe4a', + '.random-classname-bcd4fe4a .random-classname-c17ea00c', + '.random-classname-9c0c211e', + '.random-classname-bcd4fe4a > .random-classname-ad25b22d >', + '.random-classname-2612f4e7', + '.random-classname-8d5ed9b1', + '.random-classname-36e17b0b', + '.random-classname-71ca5775', + '.random-classname-c1e9f16f', + '.random-classname-26cc6f79', + '.random-classname-e39a63c9 > .random-classname-c3a42cc7 :not(.random-classname-26cc6f79) .random-classname-e8ba5bd', + '.random-classname-e8373cbe', + '.random-classname-c92b8aa0', + '.random-classname-6de02cd2', + '.random-classname-c5937d4', + '::before :nth-child(1) .random-classname-c1e9f16f > .random-classname-2163e48', + '::slotted > ::slotted .random-classname-e39a63c9 .random-classname-be2126ba', + '.random-classname-e3cd91fc', + '.random-classname-1d9c188e', + '.random-classname-79353124', + '.random-classname-64f689f6', + '[data-random-attr-cf75a498=random-attr-value-b7d4df17]', + '.random-classname-1406fceb ::slotted ::before > .random-classname-be2126ba [data-random-attr-cf75a498=random-attr-value-b7d4df17] .random-classname-20b8703b >', + '.random-classname-34f7425', + '.random-classname-bf99219f', + '[data-random-attr-6f447f29]', + '.random-classname-ae4586d', + '.random-classname-1406fceb .random-classname-fc9c0a59 > .random-classname-e39a63c9 .random-classname-be2126ba .random-classname-aaadb527', + '.random-classname-14421f4b', + '.random-classname-ff9dc5b5', + '[data-random-attr-3c1cb9af]', + ':first-child .random-classname-fc9c0a59 .random-classname-e39a63c9 .random-classname-a049a1b9 >', + '.random-classname-8d826853 .random-classname-d70cdbfd', + '.random-classname-9413d25b', + ':not(::slotted) ::before .random-classname-8d826853 ::before >', + '.random-classname-a049a1b9 :last-child :first-child', + '.random-classname-8d826853 :not(.random-classname-6384838d) .random-classname-88a44f1d', + '.random-classname-718ecf57', + '.random-classname-e39a63c9 .random-classname-8d826853 .random-classname-6fb56f9e', + '.random-classname-6fb56f9e ::slotted', + '.random-classname-1b23038b', + '.random-classname-fa45e001 .random-classname-63271ac5 .random-classname-6c6280e3 > .random-classname-d75c28c7 ::slotted .random-classname-fc9c0a59 .random-classname-e71044e3 .random-classname-c744ee31 .random-classname-95f513f9', + '.random-classname-42b1f2c1', + '.random-classname-b33ec69b', + '.random-classname-1b23038b > .random-classname-b33ec69b .random-classname-8a08f985', + '.random-classname-2900adff >', + ':first-child >', + '.random-classname-d75c28c7 ::slotted .random-classname-fc9c0a59 ::before [data-random-attr-a1b73f5] .random-classname-b3925b51', + '::slotted .random-classname-738e2315', + '::slotted .random-classname-fc9c0a59 > .random-classname-e39a63c9 :not(.random-classname-fdc5a2b3)', + '.random-classname-fdc5a2b3 > [data-random-attr-ef54ff97]', + '.random-classname-4c4f27e1', + '.random-classname-4b9d521f', + '.random-classname-4b9d521f ::slotted', + ':not(::slotted) :not(::before) > .random-classname-fdc5a2b3 > :last-child .random-classname-e7c427cb', + '.random-classname-1406fceb .random-classname-fc9c0a59 > .random-classname-e71044e3 .random-classname-fdc5a2b3 > .random-classname-4b9d521f .random-classname-b7836235 >', + '.random-classname-fdc5a2b3 .random-classname-4c26087d', + '.random-classname-4dd0afb7', + '.random-classname-8939fadb', + '.random-classname-41a577c5', + '.random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-d7d1eab7 .random-classname-63271ac5 ::before .random-classname-d75c28c7 :first-child .random-classname-fc9c0a59 .random-classname-8939fadb :nth-child(3)', + '.random-classname-2bd907a', + '.random-classname-c71061bc', + '.random-classname-fc9c0a59 .random-classname-8939fadb .random-classname-faaf063f .random-classname-2bd907a .random-classname-14d52b0 >', + '.random-classname-4cff67b6', + '.random-classname-ef010858', + '[data-random-attr-293e4b4a=random-attr-value-80d24221]', + '.random-classname-c6558ee5', + '.random-classname-ca3dca5f', + '.random-classname-cc9ce5e9', + '.random-classname-cc9ce5e9 > .random-classname-7c402b1', + ':first-child > ::slotted > .random-classname-41a577c5 .random-classname-d00e926f', + '.random-classname-153dfebd', + '.random-classname-b0482741', + '.random-classname-2456f1b', + '[data-random-attr-75fc3605]', + '.random-classname-8939fadb [data-random-attr-ded6b879] [data-random-attr-123fb223] >', + '.random-classname-41a577c5 .random-classname-d00e926f .random-classname-c8ef6f09 > .random-classname-3087afd1 >', + '.random-classname-d75c28c7 :first-child > .random-classname-fc9c0a59 > .random-classname-8939fadb .random-classname-6e159075 .random-classname-12519e7f > :not(.random-classname-50ca562b)', + '.random-classname-1406fceb :last-child', + '.random-classname-6300999', + ':not(:first-child) .random-classname-57d7a13f .random-classname-6c6280e3 .random-classname-5e569891 > :first-child > :not(:last-child) ::before > ::before', + '::before .random-classname-18062017 [data-random-attr-49616d25] >', + ':first-child .random-classname-a427f95 :last-child .random-classname-18062017 .random-classname-c745413b > .random-classname-c66b3d5a', + '.random-classname-c820090', + '.random-classname-51e1037', + ':last-child ::before ::slotted ::before', + '.random-classname-d75c28c7 .random-classname-1406fceb .random-classname-a427f95 .random-classname-6300999 .random-classname-18062017 [data-random-attr-50d64842=random-attr-value-c68ceab9] > .random-classname-b5ba1c8d >', + '[data-random-attr-9b641a6b]', + '.random-classname-18062017 .random-classname-fccbba11 .random-classname-3a4c0dd5', + '.random-classname-b1643fc9 .random-classname-5e569891 ::slotted :last-child :last-child ::before >', + ':first-child .random-classname-63271ac5 > .random-classname-b1643fc9 .random-classname-d75c28c7 :first-child .random-classname-a427f95 ::before > .random-classname-57355bd9 ::slotted', + '::slotted [data-random-attr-a9fb7adf]', + '.random-classname-c8b02483', + '.random-classname-d25f57ad', + '.random-classname-1406fceb > :last-child ::before .random-classname-d25f57ad .random-classname-249b3667', + '.random-classname-249b3667 > ::before', + '.random-classname-5e569891 > .random-classname-1406fceb :last-child .random-classname-6300999 .random-classname-d25f57ad .random-classname-ebc4ab3d', + '.random-classname-d0080593 .random-classname-3f23e83e', + '.random-classname-5e569891 .random-classname-1406fceb :last-child > :not(:last-child) .random-classname-d25f57ad ::after > ::slotted', + '.random-classname-c8b02483 :nth-child(7) .random-classname-6a960451', + '.random-classname-5e569891 .random-classname-1406fceb > :last-child ::before', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d > :first-child .random-classname-63271ac5 > .random-classname-b1643fc9 .random-classname-d75c28c7 ::slotted .random-classname-a427f95 .random-classname-c69e1eab ::slotted', + '.random-classname-a427f95 .random-classname-c69e1eab .random-classname-ba88ee19 > [data-random-attr-f4e110e1] .random-classname-5807e9a5', + '.random-classname-ba88ee19 > .random-classname-73e84097 .random-classname-e7458ca9', + '.random-classname-4c31be5d .random-classname-e6bec0c3', + '.random-classname-57d7a13f > .random-classname-b1643fc9 .random-classname-5e569891 > .random-classname-1406fceb :last-child ::before ::slotted', + '.random-classname-efc40f39', + '.random-classname-78aeb1d3', + '.random-classname-95b3617d', + '::before .random-classname-d75c28c7 :first-child .random-classname-a427f95 .random-classname-c69e1eab > .random-classname-cba05601', + '.random-classname-3a494bdb', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d > .random-classname-fa45e001 .random-classname-63271ac5 .random-classname-6c6280e3 .random-classname-d75c28c7 .random-classname-1406fceb .random-classname-a427f95 .random-classname-c69e1eab > .random-classname-cba05601 .random-classname-3a494bdb [data-random-attr-d40d75c9]', + '.random-classname-b1643fc9 .random-classname-5e569891 > :first-child .random-classname-480e7708', + '.random-classname-480e7708 .random-classname-cd639d7a', + '.random-classname-f0feb7b0', + '.random-classname-e7faac62', + '.random-classname-5f9b984a .random-classname-1a820132', + '.random-classname-e1df0d58 .random-classname-14fff6e7 >', + '.random-classname-6c6280e3 > .random-classname-5e569891 ::slotted .random-classname-480e7708 .random-classname-cd639d7a :nth-child(1)', + '.random-classname-e6d1ca02', + '.random-classname-6ad73c84', + '[data-random-attr-42068c56=random-attr-value-e71457bd]', + '.random-classname-1406fceb > .random-classname-480e7708 .random-classname-cd639d7a :nth-child(1) > .random-classname-6ad73c84 > .random-classname-5ff9041', + '.random-classname-dd1a2323', + '.random-classname-76d9ef4d', + '::before > .random-classname-68263895', + '.random-classname-88790f8f', + '.random-classname-211ad299', + '.random-classname-135af6bc :nth-child(1) .random-classname-76d9ef4d .random-classname-44fb6117 >', + '::placeholder .random-classname-59ed9d0b > .random-classname-c6eee140 >', + '::placeholder ::placeholder', + '.random-classname-59ed9d0b :first-child .random-classname-7aa169c', + '.random-classname-a872e590', + '::before .random-classname-d75c28c7 :first-child .random-classname-480e7708 .random-classname-a872e590 [data-random-attr-26754b96=random-attr-value-4e278dfd]', + '.random-classname-a2150a81', + '.random-classname-ba32745b', + '[data-random-attr-170d5f63]', + '::slotted .random-classname-539a6311', + '.random-classname-268dab6b', + '[data-random-attr-c0d8c6d5]', + '.random-classname-6c6280e3 .random-classname-5e569891 .random-classname-1406fceb > .random-classname-539a6311 ::before ::before', + '.random-classname-29b2e67b', + '.random-classname-539a6311 > [data-random-attr-c0d8c6d5] .random-classname-99c8011d .random-classname-91268465 > .random-classname-fa69dbdf', + '.random-classname-fa45e001 > .random-classname-63271ac5 ::before .random-classname-d75c28c7 > ::slotted :first-child >', + '.random-classname-85dd70ad ::before >', + '.random-classname-d68503ef', + '[data-random-attr-7d1a5f9]', + '::slotted ::before', + '.random-classname-66df689b', + '.random-classname-494beb85', + '.random-classname-6c6280e3 .random-classname-5e569891 ::before >', + '.random-classname-d75c28c7 [data-random-attr-8f98dba3] > .random-classname-79c8cf87', + '::before ::before', + '.random-classname-cbfb200f', + '.random-classname-8be5b719', + '.random-classname-cbfb200f :not(.random-classname-9c1e975d)', + '.random-classname-79c8cf87 .random-classname-aec8afab .random-classname-8be5b719 > .random-classname-9c1e975d .random-classname-cd3f8197 >', + '.random-classname-6ed830de', + '.random-classname-c82833c0', + '.random-classname-d75c28c7 .random-classname-6ed830de .random-classname-6e7352f2', + '.random-classname-a2c80b68', + '.random-classname-d75c28c7 .random-classname-6ed830de .random-classname-6e7352f2 > .random-classname-85ac46 [data-random-attr-e28a94ae=random-attr-value-79b3d435]', + '.random-classname-77e42444', + '.random-classname-74d48a16', + '.random-classname-6ed830de .random-classname-6e7352f2 > :not(.random-classname-85ac46) .random-classname-783910da .random-classname-77e42444 .random-classname-f80f39b8 >', + '.random-classname-7ef38bd3 .random-classname-277f4b7d > .random-classname-d7d1eab7 .random-classname-57d7a13f .random-classname-6c6280e3 ::before', + '.random-classname-2c5c9cdb .random-classname-337ac83f', + '.random-classname-7afc97e3', + '.random-classname-dd4e020d', + '.random-classname-6642fc7 >', + '::before ::before .random-classname-dd4e020d :not(.random-classname-6642fc7) .random-classname-d5273791', + '.random-classname-277f4b7d > :first-child .random-classname-63271ac5 .random-classname-b1643fc9 .random-classname-2c5c9cdb .random-classname-337ac83f > .random-classname-7afc97e3 .random-classname-6642fc7 > .random-classname-d5273791 > .random-classname-44e3f3eb', + '.random-classname-25dca355 ::before', + '::before :not(.random-classname-dbfed0f3)', + '::before .random-classname-7ef38bd3 > .random-classname-277f4b7d .random-classname-fa45e001 > .random-classname-57d7a13f .random-classname-6c6280e3 .random-classname-dbfed0f3 ::slotted', + '.random-classname-b1643fc9 .random-classname-dbfed0f3 .random-classname-9fc76d9d .random-classname-730c1421 >', + '.random-classname-efbd4efb ::before', + '.random-classname-3d938e03', + '.random-classname-b1643fc9 .random-classname-dbfed0f3 ::slotted .random-classname-efbd4efb [data-random-attr-6f1a8c5f] ::before .random-classname-5179ae0b >', + '.random-classname-da980275', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-57d7a13f .random-classname-566bcf13', + ':not(.random-classname-eb974a79) > .random-classname-140eb0bd >', + '.random-classname-90e32805', + '.random-classname-c3bf607f', + '.random-classname-c3bf607f .random-classname-4d789423', + '.random-classname-3b5701d1', + '.random-classname-e51f782b', + '.random-classname-fa45e001 .random-classname-57d7a13f .random-classname-566bcf13 .random-classname-70dec1f7 :not(::slotted) .random-classname-c3bf607f ::slotted .random-classname-e51f782b .random-classname-feadf195', + '.random-classname-feadf195 .random-classname-268e308f', + '.random-classname-d7d1eab7 .random-classname-57d7a13f > .random-classname-f30283dd', + '.random-classname-fa45e001 .random-classname-63271ac5 > .random-classname-c9eadd33 .random-classname-4eb4a217', + '.random-classname-57d7a13f .random-classname-f30283dd .random-classname-acd76e61 ::before >', + '.random-classname-7ef38bd3 .random-classname-277f4b7d :first-child .random-classname-63271ac5 > .random-classname-c9eadd33 .random-classname-4eb4a217 :not([data-random-attr-8d71449f]) :not(.random-classname-333aa43)', + '.random-classname-ee8a3827', + ':not(.random-classname-1ce670b5)', + '.random-classname-9bbf7cb9', + '.random-classname-206ae6fd', + '.random-classname-90897381', + '.random-classname-f2c7c55b', + '::before .random-classname-ff9a4349', + '.random-classname-ec3838bf .random-classname-b4fb047', + '.random-classname-ec3838bf > .random-classname-2914e8d ::before', + ':not(.random-classname-f2c7c55b) .random-classname-ec3838bf .random-classname-b4fb047 .random-classname-cbbb3c6b .random-classname-551e18cf', + '.random-classname-a3f2973 :last-child', + '.random-classname-3d9c7c69 >', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d :first-child .random-classname-437f89ad', + '.random-classname-fa45e001 [data-random-attr-54d43867] :not(::slotted) >', + '.random-classname-7134e52f > .random-classname-7ef38bd3 > .random-classname-277f4b7d > .random-classname-d7d1eab7 .random-classname-437f89ad .random-classname-23366931 .random-classname-26df1ef5', + '::slotted .random-classname-26df1ef5 ::placeholder >', + '.random-classname-50f3fd78', + '.random-classname-a1b99d6a', + '.random-classname-a1b99d6a .random-classname-e340223e', + '.random-classname-68850c20', + '[data-random-attr-741fd087]', + '.random-classname-1dc95651', + '.random-classname-277f4b7d .random-classname-fa45e001 [data-random-attr-9a32410f]', + '.random-classname-b6268019', + '.random-classname-a13bb5b3', + '.random-classname-12f705d', + '.random-classname-b5ac297', + '.random-classname-b6268019 > .random-classname-12f705d ::before', + '.random-classname-d7d1eab7 [data-random-attr-9a32410f] .random-classname-a13bb5b3 .random-classname-b5ac297 :last-child ::before', + ':last-child .random-classname-435b751f ::slotted', + '.random-classname-9ccdd371', + '.random-classname-7134e52f .random-classname-7ef38bd3 > .random-classname-277f4b7d .random-classname-fa45e001 > .random-classname-dc2f4e15 > .random-classname-b6268019 .random-classname-12f705d :last-child .random-classname-435b751f ::slotted > .random-classname-9ccdd371 .random-classname-2ae55acb', + '.random-classname-f8c1ed2f', + '.random-classname-4bdaa139', + '[data-random-attr-500d13d3]', + '.random-classname-d7d1eab7 .random-classname-1e3a137d', + '.random-classname-277f4b7d .random-classname-d7d1eab7 .random-classname-1e3a137d [data-random-attr-6f73eddb]', + '.random-classname-393ae2c5', + '.random-classname-86c6a93f', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-1e3a137d .random-classname-cc892801 > .random-classname-86c6a93f > .random-classname-79fe08e3', + '.random-classname-277f4b7d :first-child .random-classname-1e3a137d .random-classname-98fff2b7 .random-classname-86c6a93f ::slotted .random-classname-de8be091', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d > :first-child .random-classname-1e3a137d [data-random-attr-6f73eddb] :not(.random-classname-86c6a93f) > .random-classname-79fe08e3 :not(.random-classname-de8be091) .random-classname-2d5f5c55', + '.random-classname-99975eb6', + '.random-classname-24171758', + '.random-classname-99975eb6 ::after', + '.random-classname-e1ebdb32', + '.random-classname-631e162d .random-classname-4d09bf0b >', + '.random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-6afcf8e7 .random-classname-4d09bf0b .random-classname-c814756f >', + '.random-classname-631e162d .random-classname-4d09bf0b .random-classname-6acf3b75 .random-classname-604d9379', + '.random-classname-7ef38bd3 .random-classname-277f4b7d > :first-child .random-classname-631e162d > .random-classname-4d09bf0b .random-classname-c814756f :not(::slotted) :not(.random-classname-bce382f7)', + '.random-classname-3607b0be', + '.random-classname-bce382f7 .random-classname-3607b0be .random-classname-6d9de0d2', + '.random-classname-dc852826 > ::after', + ':first-child :not(::placeholder)', + '.random-classname-1169b898', + '[data-random-attr-cdb1a58a=random-attr-value-a0e35761]', + '.random-classname-503b43b', + '.random-classname-a56f5825', + '[data-random-attr-1c96a59f]', + '.random-classname-ce10a329', + '[data-random-attr-aae69b43]', + '.random-classname-f500bc6d', + '.random-classname-b146a9b5', + '.random-classname-6aaec5b9', + ':not([data-random-attr-aae69b43]) > .random-classname-4b5bb927 ::slotted :not(.random-classname-6aaec5b9) ::before', + '.random-classname-84735337', + '.random-classname-7ef38bd3 :not(.random-classname-277f4b7d) .random-classname-d7d1eab7 .random-classname-461165b', + '.random-classname-20589f45 .random-classname-a97fcc49 >', + '.random-classname-461165b .random-classname-59104163 ::before', + '.random-classname-9aeccd6b', + '.random-classname-80195ce2', + '.random-classname-f4f8dd36', + '.random-classname-ace999d8', + '.random-classname-f5d3e39e', + '.random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-20589f45 .random-classname-a97fcc49 .random-classname-1d32e78d :not(.random-classname-9aeccd6b) .random-classname-80195ce2 .random-classname-f4f8dd36 :nth-child(8) .random-classname-fe5ff783 >', + '.random-classname-277f4b7d .random-classname-d7d1eab7 ::slotted .random-classname-59104163 > .random-classname-1d32e78d > :nth-child(5) ::after ::after > ::before ::before > .random-classname-d86857f5', + '.random-classname-e46645ef', + '.random-classname-953e37f9', + '.random-classname-8d69b63d', + '.random-classname-8d69b63d .random-classname-f7ef6377', + '::before > .random-classname-4e900a9b', + '.random-classname-953e37f9 .random-classname-8d69b63d :not(.random-classname-f7ef6377) :first-child .random-classname-e34ce89 >', + '.random-classname-cd00edcd', + '.random-classname-e34ce89 .random-classname-cd00edcd > .random-classname-623ad187', + '.random-classname-2929d1ab', + ':not(.random-classname-7134e52f) .random-classname-7ef38bd3 .random-classname-277f4b7d :not(.random-classname-d7d1eab7) .random-classname-e46645ef .random-classname-8d69b63d :not(.random-classname-f7ef6377) .random-classname-4e900a9b > .random-classname-e34ce89 > .random-classname-cd00edcd .random-classname-623ad187 .random-classname-39f8ff51 .random-classname-b5ad0715 >', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-74c066b3 >', + '.random-classname-c94b4919 .random-classname-8eeecbe1', + '.random-classname-8eeecbe1 ::after >', + '.random-classname-7134e52f :not(.random-classname-7ef38bd3) .random-classname-277f4b7d :last-child > .random-classname-8eeecbe1 :nth-child(11) .random-classname-26be2646', + '.random-classname-d9e89568', + '.random-classname-3caecb1c', + '::placeholder > [data-random-attr-19d24eae=random-attr-value-6744635] .random-classname-71e58e2f', + '.random-classname-277f4b7d :last-child :not(.random-classname-8eeecbe1) :nth-child(11) .random-classname-26be2646 .random-classname-d9e89568 .random-classname-3caecb1c :not(.random-classname-4a3bea39) > .random-classname-7d336c7d', + '::slotted .random-classname-5f97b3b7 > .random-classname-185f5bc5', + '.random-classname-69568a3f', + '.random-classname-277f4b7d ::before', + '.random-classname-a74715eb', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-f691340d > .random-classname-a74715eb .random-classname-3f581b59', + '.random-classname-5b70f0fb', + '.random-classname-7f6172e5', + '[data-random-attr-19074e5f]', + '.random-classname-1b1509e9', + '.random-classname-277f4b7d :first-child .random-classname-a74715eb :last-child .random-classname-7f6172e5 .random-classname-1b1509e9 .random-classname-d1bb7003', + ':not(.random-classname-f691340d) .random-classname-29861555 > .random-classname-bcc632f3 .random-classname-5b70f0fb .random-classname-1b1509e9 .random-classname-ddf62f2d > :not(::placeholder)', + '.random-classname-29861555 .random-classname-bcc632f3 > .random-classname-7f6172e5 .random-classname-1b1509e9 .random-classname-d1bb7003 :nth-child(9) .random-classname-bbea7b50', + ':not(::before) ::slotted ::before > .random-classname-7f6172e5 .random-classname-1b1509e9 .random-classname-ddf62f2d > :not(:nth-child(9)) > .random-classname-c2ec5102 > ::before', + '.random-classname-3f9eb31b', + '.random-classname-ea5a1a05 .random-classname-2ed99309', + '.random-classname-f9b1d207', + '.random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-ea5a1a05 > [data-random-attr-5ec17623] :not(.random-classname-f9b1d207) ::before', + '.random-classname-9f84728f', + '.random-classname-17332d99', + '[data-random-attr-b4f43f33]', + '.random-classname-eb6c35dd', + ':not(.random-classname-f9b1d207) ::before > .random-classname-9f84728f ::slotted > ::slotted >', + '::before .random-classname-17332d99 .random-classname-eb6c35dd :first-child > [data-random-attr-3a1d8c43]', + '.random-classname-e5f13a27', + '[data-random-attr-b4f43f33] .random-classname-eb6c35dd > .random-classname-e2534061 ::before :first-child .random-classname-504ae2b5 >', + '::before .random-classname-7ef38bd3 > .random-classname-277f4b7d .random-classname-3c820eb9', + '.random-classname-cdee5d53', + '.random-classname-c25d98fd', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-3c820eb9 .random-classname-cdee5d53 .random-classname-c25d98fd .random-classname-6b9e4581', + '::slotted ::slotted > ::before', + '.random-classname-3c820eb9 .random-classname-cdee5d53 .random-classname-c25d98fd :not(.random-classname-6b9e4581) .random-classname-b557fabf [data-random-attr-ca67b247]', + '.random-classname-b557fabf > .random-classname-eff8808d [data-random-attr-4056f1d5]', + '.random-classname-5b1c7fd9', + '.random-classname-218a8b73', + '[data-random-attr-c0b8c1d]', + ':last-child > :first-child ::slotted .random-classname-b540597b', + '::before .random-classname-34cfedf', + '::before .random-classname-7ef38bd3 > .random-classname-277f4b7d .random-classname-51f7e883', + ':not(.random-classname-7134e52f) > .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-ea848e69 .random-classname-1d2fbbad >', + '::before .random-classname-7ef38bd3 > .random-classname-277f4b7d .random-classname-51f7e883 .random-classname-4c1d3a67 .random-classname-60e9588b', + '.random-classname-7134e52f .random-classname-7ef38bd3 > .random-classname-277f4b7d .random-classname-ea848e69 ::before .random-classname-f89590f5 .random-classname-bdebb604 >', + '.random-classname-1a9d0778', + '.random-classname-b1e9376a', + '[data-random-attr-2f5fd62c=random-attr-value-bdee5b9b]', + '.random-classname-60e9588b .random-classname-bdebb604 .random-classname-1a9d0778 > .random-classname-497e5685', + '::placeholder .random-classname-b1e9376a ::slotted ::slotted', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-ea848e69 ::before .random-classname-f89590f5 .random-classname-bdebb604 .random-classname-b1e9376a .random-classname-497e5685 .random-classname-dd775789 :nth-child(13)', + '::slotted > :not(.random-classname-fc4f86cd) .random-classname-4c841270', + '.random-classname-dd775789 .random-classname-fc4f86cd > .random-classname-6a57180e > .random-classname-4abd225d', + '.random-classname-7ef38bd3 > :not(.random-classname-277f4b7d) :nth-child(8) >', + '.random-classname-2d8a84c3', + '.random-classname-af1fe1ed', + '::slotted .random-classname-beea2571', + '.random-classname-e94d2f2f', + '::before ::before :first-child', + '.random-classname-7134e52f .random-classname-7ef38bd3 > .random-classname-277f4b7d > .random-classname-f97922c0 .random-classname-af1fe1ed ::before .random-classname-e94d2f2f .random-classname-697b75d3 [data-random-attr-28ae8fdb]', + '.random-classname-fb68cd0d', + '.random-classname-ef0832c7', + '[data-random-attr-2813291]', + '.random-classname-737ea6eb', + '[data-random-attr-aa50ce55]', + '.random-classname-737ea6eb .random-classname-9019e459', + '.random-classname-7ef38bd3 .random-classname-1a64b4d7', + '.random-classname-9fbe6be5', + '.random-classname-57e3af5f', + '::slotted .random-classname-57e3af5f ::slotted', + ':last-child .random-classname-6f99cfb1', + '::before .random-classname-7ef38bd3 .random-classname-1a64b4d7 .random-classname-57e3af5f .random-classname-21156103 .random-classname-9035e10b .random-classname-b8c1b76f', + '.random-classname-f6662579', + '.random-classname-b7ae6213', + '.random-classname-b7ae6213 > .random-classname-153904f7', + '.random-classname-153904f7 .random-classname-ec53441', + ':not(::before) .random-classname-153904f7 ::slotted > .random-classname-ce62037f >', + '.random-classname-ec0e1c09', + '.random-classname-9035e10b .random-classname-b8c1b76f ::before :not(.random-classname-153904f7) ::slotted .random-classname-ce62037f ::slotted ::slotted', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-b61d1c95', + '::before .random-classname-7ef38bd3 ::before ::before', + '.random-classname-38786517', + '.random-classname-1272961', + '.random-classname-7ef38bd3 [data-random-attr-9a65938f] ::before .random-classname-1272961 :last-child >', + '.random-classname-e141563b .random-classname-aad679f', + '.random-classname-1272961 > :last-child :last-child .random-classname-cee6ee6d', + '.random-classname-aad679f .random-classname-cee6ee6d .random-classname-c69c854b', + '.random-classname-95a7faf', + '.random-classname-aad679f > .random-classname-c0d87d43 .random-classname-c69c854b :nth-child(9) .random-classname-11370b38', + '::before .random-classname-7ef38bd3 .random-classname-b61d1c95 ::before .random-classname-1272961 > :last-child :last-child > .random-classname-cee6ee6d .random-classname-c69c854b .random-classname-95a7faf .random-classname-11370b38 .random-classname-5bbe35ec', + '.random-classname-11370b38 > ::placeholder > .random-classname-ce9d1e0', + '::before .random-classname-5edd6d88', + '.random-classname-7134e52f .random-classname-5edd6d88 .random-classname-a89a57fa >', + '.random-classname-cc2c7e30 >', + '.random-classname-cef1bdce .random-classname-f888b6e2', + '::after > .random-classname-cc2c7e30 :not(::slotted) .random-classname-3453c3a1', + '.random-classname-7134e52f > .random-classname-5edd6d88 .random-classname-a89a57fa .random-classname-cef1bdce [data-random-attr-3040d736=random-attr-value-89bf651d] > .random-classname-3453c3a1 > .random-classname-2f222a7b', + '.random-classname-3453c3a1 :first-child .random-classname-98cb5fdf', + '.random-classname-593dd4ad', + '.random-classname-cc83698b', + '.random-classname-7134e52f .random-classname-db5787ef', + ':not(::before) .random-classname-ae36683d', + '.random-classname-7134e52f .random-classname-ea50ac9b >', + '::before .random-classname-a381cf85', + '.random-classname-36adf3ff', + '.random-classname-e5329fa3', + '.random-classname-7134e52f :not(.random-classname-59bcd387)', + '.random-classname-7134e52f .random-classname-6755c8b3', + ], +}; diff --git a/apps/stress-test/src/fixtures/m_2.js b/apps/stress-test/src/fixtures/m_2.js new file mode 100644 index 0000000000000..1a904b1689069 --- /dev/null +++ b/apps/stress-test/src/fixtures/m_2.js @@ -0,0 +1,7589 @@ +/* eslint-disable @fluentui/max-len */ +export default { + tree: { + value: { + name: '0-0', + classNames: ['.random-classname-7134e52f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '1-1', + classNames: ['.random-classname-7ef38bd3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-5', + classNames: ['.random-classname-277f4b7d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-3', + classNames: ['.random-classname-d7d1eab7', '.random-classname-fa45e001'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-63271ac5', '.random-classname-57d7a13f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '5-11', + classNames: ['.random-classname-b1643fc9', '.random-classname-6c6280e3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '6-3', + classNames: ['.random-classname-d75c28c7', '.random-classname-5e569891'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-11', + classNames: ['.random-classname-1406fceb'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '8-9', + classNames: ['.random-classname-fc9c0a59'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '9-7', + classNames: ['.random-classname-91c27e9d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-5', + classNames: ['.random-classname-338e2ad7'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-5', + classNames: [ + '.random-classname-b1f0b1e5', + '.random-classname-bc3be55f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-13', + classNames: ['.random-classname-c710b8e9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: [ + '.random-classname-196d4e2d', + '.random-classname-7d68f0e7', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-60f9370b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: [ + '.random-classname-e3057375', + '.random-classname-dfff6d6f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: [ + '.random-classname-db8b4b79', + '.random-classname-a6dc7813', + ], + attributes: [ + { + key: 'data-random-attr-a32a41bd', + selector: '[data-random-attr-a32a41bd]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: [ + '.random-classname-ee8f1a41', + '.random-classname-c66fda1b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-9c70d905'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: [ + '.random-classname-7e5397f', + '.random-classname-db14c209', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-9eb77d23'], + attributes: [ + { + key: 'data-random-attr-8412594d', + selector: '[data-random-attr-8412594d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-f25762d1'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-d66be295'], + attributes: [ + { + key: 'data-random-attr-8d8e498f', + selector: '[data-random-attr-8d8e498f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-ccf61c99'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-f6b7db17'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-5', + classNames: ['.random-classname-37740f61'], + attributes: [ + { + key: 'data-random-attr-acad2c3b', + selector: '[data-random-attr-acad2c3b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-2', + classNames: [ + '.random-classname-7b6f9025', + '.random-classname-b6db9d9f', + ], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-2', + classNames: ['.random-classname-7fbf1343'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-5', + classNames: ['.random-classname-e63fb127'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-7', + classNames: [ + '.random-classname-6c8e1ff1', + '.random-classname-a855db4b', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-c5ee35af', + '.random-classname-4247db9', + ], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-de8777fd', + '.random-classname-d8354b37', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-b4068e5b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-92711bf'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-3564b963'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-2c161f8d'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-5', + classNames: [ + '.random-classname-39d0456b', + '.random-classname-172870d5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-eb2731cf'], + attributes: [ + { + key: 'data-random-attr-185e6ed9', + selector: '[data-random-attr-185e6ed9]', + }, + ], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-5', + classNames: [ + '.random-classname-d1adcb57', + '.random-classname-7426a9a1', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-7', + classNames: [ + '.random-classname-2e08ae65', + '.random-classname-2cf95df', + ], + attributes: [ + { + key: 'data-random-attr-8dfe3d69', + selector: '[data-random-attr-8dfe3d69]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-3904daad', + '.random-classname-af2b167', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-260e8ff5'], + attributes: [ + { + key: 'data-random-attr-23413def', + selector: '[data-random-attr-23413def]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-4ebeff9', + '.random-classname-2ec71093', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-87d6ee3d'], + attributes: [ + { + key: 'data-random-attr-ca295b77', + selector: '[data-random-attr-ca295b77]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-4c844ec1'], + attributes: [ + { + key: 'data-random-attr-e82d829b', + selector: '[data-random-attr-e82d829b]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-6bdd29ff', + '.random-classname-10308689', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-5', + classNames: ['.random-classname-24aa35a3', '.random-classname-79c25cd'], + attributes: [ + { + key: 'data-random-attr-1ad2c987', + selector: '[data-random-attr-1ad2c987]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-6', + classNames: ['.random-classname-100549ab'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-11', + classNames: ['.random-classname-3baf3f15'], + attributes: [ + { + key: 'data-random-attr-58445a0f', + selector: '[data-random-attr-58445a0f]', + }, + ], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: ['.random-classname-49ad815d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: ['.random-classname-ecaffb97'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: [ + '.random-classname-c00b14bb', + '.random-classname-5ffc0ca5', + ], + attributes: [ + { + key: 'data-random-attr-d057ce1f', + selector: '[data-random-attr-d057ce1f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: ['.random-classname-6b5a0bc3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: [ + '.random-classname-23c1f1a7', + '.random-classname-72b8b471', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: [ + '.random-classname-92d27e35', + '.random-classname-3838862f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: ['.random-classname-4821a239'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: [ + '.random-classname-8d58a47d', + '.random-classname-a849abb7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: ['.random-classname-dab04901'], + attributes: [ + { + key: 'data-random-attr-f24b6db', + selector: '[data-random-attr-f24b6db]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-11', + classNames: [ + '.random-classname-252b93c5', + '.random-classname-8047823f', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-6', + classNames: ['.random-classname-94e46c0d'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-a4ff4191', + '.random-classname-4e1a8deb', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-6', + classNames: ['.random-classname-3525c24f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-3', + classNames: ['.random-classname-8959d359'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-7608aaf3', + '.random-classname-8aa0579d', + ], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-750268fb'], + attributes: [ + { + key: 'data-random-attr-e789aae5', + selector: '[data-random-attr-e789aae5]', + }, + ], + siblings: [':nth-child(11)'], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-6', + classNames: ['.random-classname-9a75ed86'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-5', + classNames: ['.random-classname-9fd61ea8'], + attributes: [ + { + key: 'data-random-attr-8b6ec61a', + value: 'random-attr-value-cc875eb1', + selector: + '[data-random-attr-8b6ec61a=random-attr-value-cc875eb1]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-a4c0ac75', + '.random-classname-85140e6f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-78059479'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-ddd2a913'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-fad63bf7', + '.random-classname-2b528341', + ], + attributes: [ + { + key: 'data-random-attr-152c2b1b', + selector: '[data-random-attr-152c2b1b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-6', + classNames: [ + '.random-classname-fbde5205', + '.random-classname-d6a61a7f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-9', + classNames: [ + '.random-classname-e1454b09', + '.random-classname-1dfdee23', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-9', + classNames: [ + '.random-classname-922ef24d', + '.random-classname-9339ca07', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-9', + classNames: ['.random-classname-f050122b'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-9', + classNames: [ + '.random-classname-36ce599', + '.random-classname-a52eb733', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-9', + classNames: [ + '.random-classname-c3d91c17', + '.random-classname-cdc3f861', + ], + attributes: [ + { + key: 'data-random-attr-9729fd3b', + selector: '[data-random-attr-9729fd3b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-9', + classNames: ['.random-classname-daf18925'], + attributes: [ + { + key: 'data-random-attr-f124fe9f', + selector: '[data-random-attr-f124fe9f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-9', + classNames: [ + '.random-classname-92d60443', + '.random-classname-13c90d6d', + ], + attributes: [ + { + key: 'data-random-attr-52b53227', + selector: '[data-random-attr-52b53227]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-9', + classNames: ['.random-classname-787c48f1'], + attributes: [ + { + key: 'data-random-attr-174aec4b', + selector: '[data-random-attr-174aec4b]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-9', + classNames: [ + '.random-classname-ca13d6af', + '.random-classname-7ed7c6b9', + ], + attributes: [ + { + key: 'data-random-attr-a6a4d553', + selector: '[data-random-attr-a6a4d553]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-6', + classNames: [ + '.random-classname-8a0f0c37', + '.random-classname-70aafd81', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-7', + classNames: [ + '.random-classname-218b5045', + '.random-classname-3f38f2bf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-bded0d49', + '.random-classname-508c2a63', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-4867aa47', + '.random-classname-f5791611', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-32e5d66b'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-ff3552cf'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-aba2f236', + '.random-classname-fabd76d8', + ], + attributes: [], + siblings: [':nth-child(6)'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-9073a765'], + attributes: [ + { + key: 'data-random-attr-e4e9f6df', + selector: '[data-random-attr-e4e9f6df]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-5', + classNames: ['.random-classname-f7a86083', '.random-classname-29cef3ad'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '11-2', + classNames: [ + '.random-classname-58d77331', + '.random-classname-f4a8d08b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-8', + classNames: [ + '.random-classname-911bc8f5', + '.random-classname-777deef', + ], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-8', + classNames: [ + '.random-classname-d5ff4193', + '.random-classname-d58b473d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-8', + classNames: [ + '.random-classname-5e341c77', + '.random-classname-1cf9b7c1', + ], + attributes: [ + { + key: 'data-random-attr-af6bd39b', + selector: '[data-random-attr-af6bd39b]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-8', + classNames: [ + '.random-classname-ca400aff', + '.random-classname-20530f89', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-8', + classNames: ['.random-classname-15cabecd'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-8', + classNames: [ + '.random-classname-ae91ca87', + '.random-classname-58df6051', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-8', + classNames: ['.random-classname-921bdaab'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-8', + classNames: [ + '.random-classname-f0b0f815', + '.random-classname-ece37b0f', + ], + attributes: [], + siblings: [':nth-child(3)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-2', + classNames: ['.random-classname-f6379818'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-5', + classNames: ['.random-classname-39ec310a'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-21bb1fde', + '.random-classname-b5dbfac0', + ], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-709599f4'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-f6c67b46'], + attributes: [ + { + key: 'data-random-attr-c5f4b268', + value: 'random-attr-value-351972a7', + selector: + '[data-random-attr-c5f4b268=random-attr-value-351972a7]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-c4c6f4cb'], + attributes: [ + { + key: 'data-random-attr-7808b735', + selector: '[data-random-attr-7808b735]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-5', + classNames: ['.random-classname-fa46eb39', '.random-classname-9021edd3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-9a55fd7d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-3', + classNames: ['.random-classname-e27eb201'], + attributes: [ + { + key: 'data-random-attr-5c2407db', + selector: '[data-random-attr-5c2407db]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-72d40cc5', + '.random-classname-c7fb633f', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-e6b162e3', + '.random-classname-589c050d', + ], + attributes: [ + { + key: 'data-random-attr-1df82ac7', + selector: '[data-random-attr-1df82ac7]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-5', + classNames: ['.random-classname-ca321eeb', '.random-classname-a5eb0655'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-5', + classNames: [ + '.random-classname-b2fb9c59', + '.random-classname-e125bf3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-7', + classNames: ['.random-classname-1ca2309d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-3532acd7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-bbe98721'], + attributes: [ + { + key: 'data-random-attr-c74239fb', + selector: '[data-random-attr-c74239fb]', + }, + ], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-579ccae9'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-df01802d', + '.random-classname-1e35f2e7', + ], + attributes: [ + { + key: 'data-random-attr-7fc087b1', + selector: '[data-random-attr-7fc087b1]', + }, + ], + siblings: [':nth-child(5)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-d4e73850'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-6db11602'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-5', + classNames: ['.random-classname-10149856'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-5877a1f8'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-5', + classNames: [ + '.random-classname-62bf35ea', + '.random-classname-1ad8ac', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '12-3', + classNames: [ + '.random-classname-1cb952d2', + '.random-classname-d35b4dd4', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-b0eeba26'], + attributes: [], + siblings: [':nth-child(14)'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-d768a32b', + '.random-classname-a46f5495', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-5', + classNames: ['.random-classname-7ac7ae99'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-7', + classNames: ['.random-classname-8596833'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-1dbe5d17'], + attributes: [ + { + key: 'data-random-attr-c177e161', + selector: '[data-random-attr-c177e161]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-18aace3b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: ['.random-classname-50b25f9f'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-faae266d', + '.random-classname-8ceeb327', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-26a153b5', + '.random-classname-547d77af', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-c6f0fb9', + '.random-classname-75c00653', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-5', + classNames: [ + '.random-classname-8aaccd37', + '.random-classname-c22b6681', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-3', + classNames: [ + '.random-classname-cb05c945', + '.random-classname-9c8ed3bf', + ], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-9785518d', + '.random-classname-b979ab47', + ], + attributes: [ + { + key: 'data-random-attr-4ab7bf11', + selector: '[data-random-attr-4ab7bf11]', + }, + ], + siblings: [':nth-child(13)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-9c015630'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '9-7', + classNames: ['.random-classname-e9ab4ee2'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '10-7', + classNames: ['.random-classname-d400ef36'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '11-7', + classNames: [ + '.random-classname-8de08aca', + '.random-classname-249c608c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-4', + classNames: [ + '.random-classname-57de359e', + '.random-classname-10d65680', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-4', + classNames: [ + '.random-classname-feedd1b4', + '.random-classname-150c4906', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '12-4', + classNames: [ + '.random-classname-66a9199a', + '.random-classname-41d567dc', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-4', + classNames: [ + '.random-classname-eaa4c96e', + '.random-classname-588caad0', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-7', + classNames: [ + '.random-classname-cd17c304', + '.random-classname-3af556d6', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-974b6478', + '.random-classname-2709c6a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-7', + classNames: ['.random-classname-190d832c'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '12-2', + classNames: [ + '.random-classname-98c95320', + '.random-classname-8d178952', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-2', + classNames: [ + '.random-classname-11ed16c8', + '.random-classname-44c4133a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-7', + classNames: ['.random-classname-8e59b27c'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '12-7', + classNames: [ + '.random-classname-f4714f70', + '.random-classname-cf29da22', + ], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-11948e76', + '.random-classname-9649d18', + ], + attributes: [ + { + key: 'data-random-attr-28707e0a', + value: 'random-attr-value-6b5755e1', + selector: + '[data-random-attr-28707e0a=random-attr-value-6b5755e1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-870cb6bb', + '.random-classname-c647fea5', + ], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-c48fedc3', + '.random-classname-4b6e32ed', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-1c34f3a7', + '.random-classname-3b5d0671', + ], + attributes: [ + { + key: 'data-random-attr-75c205cb', + selector: '[data-random-attr-75c205cb]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-510bc82f', + '.random-classname-7503439', + ], + attributes: [ + { + key: 'data-random-attr-797f1ed3', + selector: '[data-random-attr-797f1ed3]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-7', + classNames: [ + '.random-classname-2d852db7', + '.random-classname-a1b11b01', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-7', + classNames: [ + '.random-classname-dc2085c5', + '.random-classname-3ef3443f', + ], + attributes: [ + { + key: 'data-random-attr-d936dac9', + selector: '[data-random-attr-d936dac9]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-5', + classNames: ['.random-classname-ac779e0d'], + attributes: [], + siblings: [':nth-child(9)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-25b737bc', + '.random-classname-1a6b844e', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-ed1fa562', + '.random-classname-2c138ee4', + ], + attributes: [ + { + key: 'data-random-attr-25736db6', + value: 'random-attr-value-d7c8099d', + selector: + '[data-random-attr-25736db6=random-attr-value-d7c8099d]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-74287021', + '.random-classname-fc860afb', + ], + attributes: [ + { + key: 'data-random-attr-1ba79ce5', + selector: '[data-random-attr-1ba79ce5]', + }, + ], + siblings: [':nth-child(7)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-c4018c34'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-7', + classNames: [ + '.random-classname-2df0a8a8', + '.random-classname-148be01a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-3', + classNames: [ + '.random-classname-77e0725c', + '.random-classname-5bb4b7ee', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-63041d84'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-70831556', + '.random-classname-e5426f8', + ], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-7', + classNames: [ + '.random-classname-db052dac', + '.random-classname-2bc51fbe', + ], + attributes: [ + { + key: 'data-random-attr-76a65a0', + value: 'random-attr-value-edf3dc7f', + selector: '[data-random-attr-76a65a0=random-attr-value-edf3dc7f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-2d16d023'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-663fcc07', '.random-classname-f7485dd1'], + attributes: [ + { + key: 'data-random-attr-d485342b', + selector: '[data-random-attr-d485342b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-b8670d95'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-5', + classNames: [ + '.random-classname-c3067799', + '.random-classname-42081933', + ], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-feee248a'], + attributes: [ + { + key: 'data-random-attr-8bd7e04c', + value: 'random-attr-value-412f9f3b', + selector: + '[data-random-attr-8bd7e04c=random-attr-value-412f9f3b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-8ee17b25'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-904b7629', + '.random-classname-2f8fe643', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-a4ec3427'], + attributes: [], + siblings: [':nth-child(5)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-5b9c3690', '.random-classname-c48bee42'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-5', + classNames: ['.random-classname-5dc02ac4'], + attributes: [ + { + key: 'data-random-attr-316ad496', + value: 'random-attr-value-123582fd', + selector: + '[data-random-attr-316ad496=random-attr-value-123582fd]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-5', + classNames: ['.random-classname-130fcf81'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-58244245'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-3128b4bf'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-eec1f49'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-8972ea8d'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-5', + classNames: ['.random-classname-931cf86b'], + attributes: [ + { + key: 'data-random-attr-c31e9bd5', + selector: '[data-random-attr-c31e9bd5]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-2', + classNames: [ + '.random-classname-f299c9d9', + '.random-classname-59d86573', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-2', + classNames: ['.random-classname-d0708e57'], + attributes: [ + { + key: 'data-random-attr-48cd64a1', + selector: '[data-random-attr-48cd64a1]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-5', + classNames: [ + '.random-classname-76359965', + '.random-classname-34eab8df', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-2', + classNames: [ + '.random-classname-a7c5869', + '.random-classname-a9244283', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-2', + classNames: [ + '.random-classname-3b723467', + '.random-classname-4811c531', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-5', + classNames: [ + '.random-classname-c7a0f28b', + '.random-classname-73223af5', + ], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-3', + classNames: [ + '.random-classname-3f5ccaf9', + '.random-classname-39fba393', + ], + attributes: [ + { + key: 'data-random-attr-fa5ff93d', + selector: '[data-random-attr-fa5ff93d]', + }, + ], + siblings: [':nth-child(9)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-b001d82c', + '.random-classname-5fd7ae3e', + ], + attributes: [ + { + key: 'data-random-attr-bee07820', + value: 'random-attr-value-18d1ccff', + selector: + '[data-random-attr-bee07820=random-attr-value-18d1ccff]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-e54f88a3', + '.random-classname-c693f0cd', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-5', + classNames: ['.random-classname-a8f2b251'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-5', + classNames: [ + '.random-classname-5054fcab', + '.random-classname-7ca06a15', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-e27b5c19'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-8450f1b3', + '.random-classname-abc40c5d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-2f85be97'], + attributes: [ + { + key: 'data-random-attr-f9213ee1', + selector: '[data-random-attr-f9213ee1]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-67e3f7a5'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-118b7aa9'], + attributes: [ + { + key: 'data-random-attr-70dec3', + selector: '[data-random-attr-70dec3]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-e91474a7'], + attributes: [ + { + key: 'data-random-attr-5452f71', + selector: '[data-random-attr-5452f71]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-2', + classNames: ['.random-classname-26c116cb'], + attributes: [ + { + key: 'data-random-attr-7a612935', + selector: '[data-random-attr-7a612935]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-2', + classNames: ['.random-classname-ff3d7d39'], + attributes: [ + { + key: 'data-random-attr-63604fd3', + selector: '[data-random-attr-63604fd3]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-248eeb7', '.random-classname-a8478401'], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: [], + }, + children: [ + { + value: { + name: '11-4', + classNames: [ + '.random-classname-210b6160', + '.random-classname-1bd1f192', + ], + attributes: [ + { + key: 'data-random-attr-da91a94', + value: 'random-attr-value-e71044e3', + selector: '[data-random-attr-da91a94=random-attr-value-e71044e3]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-2', + classNames: [ + '.random-classname-c3a42cc7', + '.random-classname-1b513c91', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-2', + classNames: [ + '.random-classname-2b2c7855', + '.random-classname-b882254f', + ], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-4', + classNames: [ + '.random-classname-e4df6ab6', + '.random-classname-5af70358', + ], + attributes: [], + siblings: [':nth-child(12)'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-24cddbfb', + '.random-classname-3a2c95e5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-4', + classNames: ['.random-classname-11b5695f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-5', + classNames: ['.random-classname-bfb8dce9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-89b5bb03'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-8d5ed9b1', + '.random-classname-36e17b0b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-71ca5775', + '.random-classname-c1e9f16f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-26cc6f79', + '.random-classname-9dcd3c13', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-4', + classNames: [ + '.random-classname-e8ba5bd', + '.random-classname-4d687ef7', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-5', + classNames: ['.random-classname-7f791e1b'], + attributes: [], + siblings: [':nth-child(13)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-c5937d4', + '.random-classname-c0a63426', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-2163e48', + '.random-classname-be2126ba', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-1d9c188e'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-d3f66f0'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-e3a95da2', '.random-classname-79353124'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-cf75a498', + '.random-classname-2c60718a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-3', + classNames: ['.random-classname-77f8b54c'], + attributes: [ + { + key: 'data-random-attr-5847285e', + value: 'random-attr-value-34f7425', + selector: + '[data-random-attr-5847285e=random-attr-value-34f7425]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-6f447f29'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-d932d743', + '.random-classname-ae4586d', + ], + attributes: [ + { + key: 'data-random-attr-aaadb527', + selector: '[data-random-attr-aaadb527]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-829ec3f1', '.random-classname-14421f4b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-ff9dc5b5'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-3', + classNames: [ + '.random-classname-a049a1b9', + '.random-classname-8d826853', + ], + attributes: [ + { + key: 'data-random-attr-d70cdbfd', + selector: '[data-random-attr-d70cdbfd]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-b8344f37', + '.random-classname-f3583881', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-9413d25b', + '.random-classname-58e6bb45', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '9-7', + classNames: ['.random-classname-2941a849', '.random-classname-7b1a7d63'], + attributes: [ + { + key: 'data-random-attr-6384838d', + selector: '[data-random-attr-6384838d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-be611111', '.random-classname-1a3e896b'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-3', + classNames: [ + '.random-classname-da7592d9', + '.random-classname-5e2c1673', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-bd224da1', + '.random-classname-e913447b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: ['.random-classname-198c9265'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-3', + classNames: ['.random-classname-ba6e6169'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-c3283383', + '.random-classname-99053ead', + ], + attributes: [ + { + key: 'data-random-attr-6f24b567', + selector: '[data-random-attr-6f24b567]', + }, + ], + siblings: [':nth-child(5)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-2f474d0', + '.random-classname-522c0682', + ], + attributes: [ + { + key: 'data-random-attr-73272d04', + value: 'random-attr-value-16bfd493', + selector: + '[data-random-attr-73272d04=random-attr-value-16bfd493]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: ['.random-classname-4aec5f77'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-b33ec69b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '9-7', + classNames: ['.random-classname-2900adff', '.random-classname-9012aa89'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-3', + classNames: ['.random-classname-b5e3f9a3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-892e89cd', + '.random-classname-2066cd87', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-3', + classNames: ['.random-classname-b3925b51'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-738e2315', + '.random-classname-3458de0f', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-fdc5a2b3'], + attributes: [ + { + key: 'data-random-attr-8168e55d', + selector: '[data-random-attr-8168e55d]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-3', + classNames: ['.random-classname-4c4f27e1'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-a1e58bb'], + attributes: [ + { + key: 'data-random-attr-1323f0a5', + selector: '[data-random-attr-1323f0a5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-3', + classNames: ['.random-classname-4b9d521f'], + attributes: [ + { + key: 'data-random-attr-7b7683a9', + selector: '[data-random-attr-7b7683a9]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-b5c864ed'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-7d915871', + '.random-classname-e7c427cb', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-3', + classNames: ['.random-classname-e2ef0a2f', '.random-classname-720ec639'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-5dc580d3'], + attributes: [ + { + key: 'data-random-attr-4c26087d', + selector: '[data-random-attr-4c26087d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-3', + classNames: [ + '.random-classname-8641ed01', + '.random-classname-8939fadb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-41a577c5'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-b1e1ecc9', + '.random-classname-c185b5e3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '9-7', + classNames: ['.random-classname-449ad00d', '.random-classname-e2202dc7'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-b4c33155', '.random-classname-2f7e464f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-3', + classNames: [ + '.random-classname-85476ef3', + '.random-classname-97fbb9d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-99676fd7', + '.random-classname-80d24221', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: ['.random-classname-5019acfb'], + attributes: [ + { + key: 'data-random-attr-c6558ee5', + selector: '[data-random-attr-c6558ee5]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-3', + classNames: [ + '.random-classname-cc9ce5e9', + '.random-classname-f77bac03', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-ff6dcb2d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-7c402b1'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: [ + '.random-classname-6e159075', + '.random-classname-d00e926f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-2', + classNames: [ + '.random-classname-ded6b879', + '.random-classname-c6d36d13', + ], + attributes: [ + { + key: 'data-random-attr-153dfebd', + selector: '[data-random-attr-153dfebd]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-2', + classNames: ['.random-classname-b0482741'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '9-7', + classNames: ['.random-classname-75fc3605', '.random-classname-12519e7f'], + attributes: [ + { + key: 'data-random-attr-c8ef6f09', + selector: '[data-random-attr-c8ef6f09]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-3', + classNames: ['.random-classname-123fb223', '.random-classname-5409564d'], + attributes: [ + { + key: 'data-random-attr-e855ce07', + selector: '[data-random-attr-e855ce07]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '11-2', + classNames: [ + '.random-classname-50ca562b', + '.random-classname-a427f95', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-3', + classNames: ['.random-classname-3ea7ee8f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-6300999'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-6f28d1dd'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-2', + classNames: ['.random-classname-c745413b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-2', + classNames: ['.random-classname-eef2829f'], + attributes: [ + { + key: 'data-random-attr-8218829', + selector: '[data-random-attr-8218829]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-2', + classNames: ['.random-classname-5435716d'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-3', + classNames: ['.random-classname-8347304b', '.random-classname-d411feb5'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-b9525aaf', + '.random-classname-c68ceab9', + ], + attributes: [ + { + key: 'data-random-attr-f6299953', + selector: '[data-random-attr-f6299953]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-51e1037', + '.random-classname-f304a181', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '10-3', + classNames: ['.random-classname-5d4d3445', '.random-classname-402876bf'], + attributes: [ + { + key: 'data-random-attr-4f7b3149', + selector: '[data-random-attr-4f7b3149]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-3', + classNames: [ + '.random-classname-b5ba1c8d', + '.random-classname-b47ae47', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-3', + classNames: ['.random-classname-9b641a6b'], + attributes: [ + { + key: 'data-random-attr-3a4c0dd5', + selector: '[data-random-attr-3a4c0dd5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-4215d6cf'], + attributes: [ + { + key: 'data-random-attr-57355bd9', + selector: '[data-random-attr-57355bd9]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-9d03c773'], + attributes: [ + { + key: 'data-random-attr-40a4281d', + selector: '[data-random-attr-40a4281d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: ['.random-classname-62db36a1'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-3', + classNames: ['.random-classname-a9fb7adf'], + attributes: [ + { + key: 'data-random-attr-c8446a69', + selector: '[data-random-attr-c8446a69]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-d25f57ad', + '.random-classname-249b3667', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-60dc1731', + '.random-classname-caa9148b', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: ['.random-classname-9efa62ef'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-2', + classNames: [ + '.random-classname-ebc4ab3d', + '.random-classname-8a072077', + ], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-2', + classNames: ['.random-classname-3d0ac220'], + attributes: [ + { + key: 'data-random-attr-c82dd052', + value: 'random-attr-value-ffc53389', + selector: + '[data-random-attr-c82dd052=random-attr-value-ffc53389]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '9-7', + classNames: ['.random-classname-93fc6aa3', '.random-classname-a7ed22cd'], + attributes: [ + { + key: 'data-random-attr-6335ce87', + selector: '[data-random-attr-6335ce87]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-c69e1eab'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-3', + classNames: ['.random-classname-4b1fdc15'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-3', + classNames: [ + '.random-classname-ba88ee19', + '.random-classname-f5be53b3', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-73e84097', + '.random-classname-f4e110e1', + ], + attributes: [ + { + key: 'data-random-attr-ba2d29bb', + selector: '[data-random-attr-ba2d29bb]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-2b98b31f', + '.random-classname-e7458ca9', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: ['.random-classname-e6bec0c3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-3', + classNames: ['.random-classname-d82b7ded'], + attributes: [ + { + key: 'data-random-attr-741f76a7', + selector: '[data-random-attr-741f76a7]', + }, + ], + siblings: [':nth-child(7)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-972ff310', + '.random-classname-ecd15ec2', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-55c30d16', + '.random-classname-d497b4b8', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: ['.random-classname-34a896aa'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-cec40f7e'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-f1dfab60'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-2', + classNames: ['.random-classname-728ecb92', '.random-classname-dead0494'], + attributes: [ + { + key: 'data-random-attr-c18d5ee6', + value: 'random-attr-value-a8e2690d', + selector: '[data-random-attr-c18d5ee6=random-attr-value-a8e2690d]', + }, + ], + siblings: [':nth-child(13)'], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-135af6bc', '.random-classname-9c289b4e'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '11-2', + classNames: [ + '.random-classname-52f2de4', + '.random-classname-2dd364b6', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-3', + classNames: ['.random-classname-e1df0d58'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-45f24a0c'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-cd7f5b1e', + '.random-classname-55b21800', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-2', + classNames: ['.random-classname-4080eb34'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-3', + classNames: ['.random-classname-50521e86'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-665d871a', + '.random-classname-5b4bb15c', + ], + attributes: [ + { + key: 'data-random-attr-d0254eee', + value: 'random-attr-value-6104c975', + selector: + '[data-random-attr-d0254eee=random-attr-value-6104c975]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-45c50179', + '.random-classname-545d9e13', + ], + attributes: [ + { + key: 'data-random-attr-e71457bd', + selector: '[data-random-attr-e71457bd]', + }, + ], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '9-2', + classNames: ['.random-classname-7a15c01b', '.random-classname-239daf05'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-dd1a2323', '.random-classname-76d9ef4d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-3', + classNames: [ + '.random-classname-5306cf07', + '.random-classname-73bd58d1', + ], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-3', + classNames: [ + '.random-classname-477830f0', + '.random-classname-ebbeb7a2', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: [ + '.random-classname-6ac7ae98', + '.random-classname-61210b8a', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-3', + classNames: ['.random-classname-c6eee140'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: ['.random-classname-9cc7a874'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-53e468e8'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-3', + classNames: ['.random-classname-7aa169c'], + attributes: [ + { + key: 'data-random-attr-6cd9262e', + value: 'random-attr-value-32a37b5', + selector: '[data-random-attr-6cd9262e=random-attr-value-32a37b5]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-3fb433b9', + '.random-classname-754ca53', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-e0cbd137', '.random-classname-a2150a81'], + attributes: [ + { + key: 'data-random-attr-ba32745b', + selector: '[data-random-attr-ba32745b]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-da8e57bf', '.random-classname-1198ba49'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-170d5f63'], + attributes: [ + { + key: 'data-random-attr-1013b58d', + selector: '[data-random-attr-1013b58d]', + }, + ], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-268dab6b', + '.random-classname-c0d8c6d5', + ], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-265f7873', + '.random-classname-99c8011d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-86175157', '.random-classname-c9f81fa1'], + attributes: [ + { + key: 'data-random-attr-29b2e67b', + selector: '[data-random-attr-29b2e67b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-91268465', '.random-classname-fa69dbdf'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-c9bc1583'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-6bd5b767'], + attributes: [ + { + key: 'data-random-attr-a4d74031', + selector: '[data-random-attr-a4d74031]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-53f9e5f5', + '.random-classname-d68503ef', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-75d43693', '.random-classname-792d043d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-dbe5e177', '.random-classname-1220c4c1'], + attributes: [ + { + key: 'data-random-attr-66df689b', + selector: '[data-random-attr-66df689b]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-6b2a6fff'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-8f98dba3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-79c8cf87', + '.random-classname-5dfdad51', + ], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-93559515'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-cbfb200f'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-7c3b04b3', '.random-classname-9c1e975d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-cd3f8197'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-c93ffabb', + '.random-classname-c68fe2a5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-78d8141f', '.random-classname-e4f895a9'], + attributes: [ + { + key: 'data-random-attr-b12bb1c3', + selector: '[data-random-attr-b12bb1c3]', + }, + ], + siblings: [':nth-child(11)'], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-783910da', '.random-classname-6cbaa11c'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-e28a94ae'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-6bde8bc2'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-74d48a16'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-aa5b63aa', '.random-classname-a8a60c6c'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-b5052c7e'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-b147d060'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-539b3892', + '.random-classname-bf0cf994', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-f4f21be6'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-24fdaa7a'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-1cb98bbc'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-5041cb0', '.random-classname-27d65962'], + attributes: [ + { + key: 'data-random-attr-f76062e4', + value: 'random-attr-value-dbfed0f3', + selector: '[data-random-attr-f76062e4=random-attr-value-dbfed0f3]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-82b3f1d7'], + attributes: [ + { + key: 'data-random-attr-730c1421', + selector: '[data-random-attr-730c1421]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-679380e5', + '.random-classname-6f1a8c5f', + ], + attributes: [ + { + key: 'data-random-attr-6810f7e9', + selector: '[data-random-attr-6810f7e9]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-4a69fd2d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-eb1c77e7'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-5179ae0b', '.random-classname-da980275'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-4323d46f', '.random-classname-eb974a79'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-566bcf13'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-771af941', + '.random-classname-f6ea111b', + ], + attributes: [ + { + key: 'data-random-attr-90e32805', + selector: '[data-random-attr-90e32805]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-cc1c8109'], + attributes: [ + { + key: 'data-random-attr-4d789423', + selector: '[data-random-attr-4d789423]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-4dce884d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-3b5701d1'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-e51f782b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-268e308f', + '.random-classname-4ce99b99', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-c9eadd33', + '.random-classname-f30283dd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-4eb4a217', '.random-classname-acd76e61'], + attributes: [ + { + key: 'data-random-attr-a96ae33b', + selector: '[data-random-attr-a96ae33b]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-8d71449f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-333aa43'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-36453ef1'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-695d524b', + '.random-classname-1ce670b5', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-9bbf7cb9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-206ae6fd'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-5b3d9237'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-f2c7c55b', '.random-classname-b1062645'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-ff9a4349', '.random-classname-bb4cd063'], + attributes: [ + { + key: 'data-random-attr-2914e8d', + selector: '[data-random-attr-2914e8d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-b4fb047'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-cbbb3c6b', + '.random-classname-e4097fd5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-551e18cf'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-a3f2973'], + attributes: [ + { + key: 'data-random-attr-240fda1d', + selector: '[data-random-attr-240fda1d]', + }, + ], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-4288b77b', '.random-classname-85697d65'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-3d9c7c69'], + attributes: [ + { + key: 'data-random-attr-d64c0683', + selector: '[data-random-attr-d64c0683]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-437f89ad'], + attributes: [ + { + key: 'data-random-attr-54d43867', + selector: '[data-random-attr-54d43867]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-7dc1368b'], + attributes: [ + { + key: 'data-random-attr-26df1ef5', + selector: '[data-random-attr-26df1ef5]', + }, + ], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-18246793'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-29b95d3d', '.random-classname-5088a277'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-c6ee2dc1', '.random-classname-8c35b99b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-ac636485'], + attributes: [ + { + key: 'data-random-attr-bd2550ff', + selector: '[data-random-attr-bd2550ff]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-b8b94ca3'], + attributes: [ + { + key: 'data-random-attr-39d654cd', + selector: '[data-random-attr-39d654cd]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-741fd087'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-74f740ab'], + attributes: [ + { + key: 'data-random-attr-dc2f4e15', + selector: '[data-random-attr-dc2f4e15]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-9a32410f', '.random-classname-b6268019'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-a13bb5b3', '.random-classname-12f705d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-b5ac297'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-eebbdba5'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-48f9ea9', + '.random-classname-cb1ca2c3', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-563a78a7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-9ccdd371'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-1ec20d35', '.random-classname-f8c1ed2f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-500d13d3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-1e3a137d', + '.random-classname-98fff2b7', + ], + attributes: [ + { + key: 'data-random-attr-cc892801', + selector: '[data-random-attr-cc892801]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-6f73eddb', + '.random-classname-393ae2c5', + ], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-541087c9', '.random-classname-79fe08e3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-2c2c30c7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-de8be091', '.random-classname-9d1384eb'], + attributes: [], + siblings: [':nth-child(5)'], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-992597e4', '.random-classname-99975eb6'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-6a32324a', + '.random-classname-12b5f40c', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-38eb6200'], + attributes: [ + { + key: 'data-random-attr-e1ebdb32', + value: 'random-attr-value-16a100e9', + selector: + '[data-random-attr-e1ebdb32=random-attr-value-16a100e9]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-35e57f03', '.random-classname-631e162d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-54b7db1'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-4d09bf0b', '.random-classname-6acf3b75'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-c814756f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-dcfe0013', + '.random-classname-2c2d09bd', + ], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-939a6241'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '6-3', + classNames: ['.random-classname-88c2621b', '.random-classname-4dcca105'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-d95c417f', '.random-classname-a9890a09'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-cbb4d107', '.random-classname-1754aad1'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-5dd9aa95', '.random-classname-28e7518f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-242d8e33'], + attributes: [ + { + key: 'data-random-attr-38a55cdd', + selector: '[data-random-attr-38a55cdd]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-4531e317', + '.random-classname-a0e35761', + ], + attributes: [ + { + key: 'data-random-attr-503b43b', + selector: '[data-random-attr-503b43b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-a56f5825'], + attributes: [ + { + key: 'data-random-attr-1c96a59f', + selector: '[data-random-attr-1c96a59f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '6-3', + classNames: ['.random-classname-ce10a329', '.random-classname-aae69b43'], + attributes: [], + siblings: [':nth-child(13)'], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-b88a409c'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-f750af90'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-e22bcf42'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-96004596'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-9d1172a', + '.random-classname-bddb8bec', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-be2187e0', + '.random-classname-b1475c12', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-b6726914', '.random-classname-9efab766'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-37ae3dfa'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-83c103ce'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-80195ce2', '.random-classname-94dfb264'], + attributes: [], + siblings: [':nth-child(4)'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-1c5df1a1'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-17129ddf', '.random-classname-c51e8569'], + attributes: [ + { + key: 'data-random-attr-fe5ff783', + selector: '[data-random-attr-fe5ff783]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-ef96b967', + '.random-classname-6bf99231', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-a153478b', + '.random-classname-d86857f5', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-953e37f9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-c6f89893'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-f7ef6377'], + attributes: [], + siblings: [':nth-child(9)'], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-27403120', '.random-classname-e1581752'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-2ac90654'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-b2ab86a6'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-3d3fb4c8', + '.random-classname-1f16613a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-52b7307c'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-1817ad70', '.random-classname-b1c5e822'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-efd6bb18', '.random-classname-dc8e4c0a'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-48e96ade', '.random-classname-9e5f7dc0'], + attributes: [], + siblings: [':nth-child(8)'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-b42cc8ed'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-8fedf9a7'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-cbf86bcb', '.random-classname-6744635'], + attributes: [ + { + key: 'data-random-attr-71e58e2f', + selector: '[data-random-attr-71e58e2f]', + }, + ], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-7d336c7d'], + attributes: [ + { + key: 'data-random-attr-5f97b3b7', + selector: '[data-random-attr-5f97b3b7]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-138f3edb'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-185f5bc5'], + attributes: [ + { + key: 'data-random-attr-69568a3f', + selector: '[data-random-attr-69568a3f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-fa8379e3'], + attributes: [ + { + key: 'data-random-attr-f691340d', + selector: '[data-random-attr-f691340d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-68548991', '.random-classname-a74715eb'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-2e16ca4f', '.random-classname-3f581b59'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-1a9f1f9d', '.random-classname-f1073d7'], + attributes: [ + { + key: 'data-random-attr-cad5e621', + selector: '[data-random-attr-cad5e621]', + }, + ], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-19074e5f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-d1bb7003'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-a4a179e7'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-5c9dd00b', '.random-classname-a1aa7475'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-33e7dc79', '.random-classname-f8143113'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-bf6f62bd', '.random-classname-43ac43f7'], + attributes: [ + { + key: 'data-random-attr-eb7dcb41', + selector: '[data-random-attr-eb7dcb41]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-ea5a1a05'], + attributes: [ + { + key: 'data-random-attr-823d227f', + selector: '[data-random-attr-823d227f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-2ed99309'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-5823ba4d'], + attributes: [ + { + key: 'data-random-attr-f9b1d207', + selector: '[data-random-attr-f9b1d207]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-11849a2b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-15a96395', + '.random-classname-9f84728f', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-b4f43f33', '.random-classname-eb6c35dd'], + attributes: [ + { + key: 'data-random-attr-38732417', + selector: '[data-random-attr-38732417]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-e2534061'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-d2115125', '.random-classname-4100069f'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-f6e1d56d'], + attributes: [ + { + key: 'data-random-attr-e5f13a27', + selector: '[data-random-attr-e5f13a27]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-6f83744b'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-3c820eb9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-c25d98fd'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-6c6d1437'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-6b9e4581'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-fefe675b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-d34f1845'], + attributes: [ + { + key: 'data-random-attr-b557fabf', + selector: '[data-random-attr-b557fabf]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-57b263', '.random-classname-eff8808d'], + attributes: [ + { + key: 'data-random-attr-ca67b247', + selector: '[data-random-attr-ca67b247]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-8a5e5e11'], + attributes: [ + { + key: 'data-random-attr-a4225e6b', + selector: '[data-random-attr-a4225e6b]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-9365acf', '.random-classname-5b1c7fd9'], + attributes: [ + { + key: 'data-random-attr-218a8b73', + selector: '[data-random-attr-218a8b73]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-a2a21457', + '.random-classname-27a6daa1', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-aedb6f65'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-34cfedf', '.random-classname-ea848e69'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-51f7e883', '.random-classname-1d2fbbad'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-f20bb31', '.random-classname-60e9588b'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-dabce6ef'], + attributes: [ + { + key: 'data-random-attr-8e4a80f9', + selector: '[data-random-attr-8e4a80f9]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-343e0f3d', '.random-classname-e21a2477'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-9ab4ffc1'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-bdee5b9b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-12e712ff'], + attributes: [ + { + key: 'data-random-attr-dd775789', + selector: '[data-random-attr-dd775789]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-d3862ea3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-5419d287', '.random-classname-428ca851'], + attributes: [], + siblings: [':nth-child(13)'], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-59a09522'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-4917976', '.random-classname-becfc018'], + attributes: [ + { + key: 'data-random-attr-14be990a', + value: 'random-attr-value-2d10b4e1', + selector: '[data-random-attr-14be990a=random-attr-value-2d10b4e1]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-abffcda5'], + attributes: [ + { + key: 'data-random-attr-902e371f', + selector: '[data-random-attr-902e371f]', + }, + ], + siblings: [':nth-child(1)'], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-b4686346', '.random-classname-e536da68'], + attributes: [ + { + key: 'data-random-attr-6dc3b7da', + value: 'random-attr-value-beea2571', + selector: '[data-random-attr-6dc3b7da=random-attr-value-beea2571]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: ['.random-classname-cd0f7ccb'], + attributes: [ + { + key: 'data-random-attr-c0ca7f35', + selector: '[data-random-attr-c0ca7f35]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-e94d2f2f', + '.random-classname-93813339', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-350c57d', '.random-classname-ecf374b7'], + attributes: [ + { + key: 'data-random-attr-2b01fa01', + selector: '[data-random-attr-2b01fa01]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-327d4c5', '.random-classname-eb2a6b3f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-e3a399c9', '.random-classname-c8ceae3'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-2813291', '.random-classname-737ea6eb'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-aa50ce55', '.random-classname-8666eb4f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-9019e459'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-a8efe3f3', + '.random-classname-b5c0f89d', + ], + attributes: [ + { + key: 'data-random-attr-1a64b4d7', + selector: '[data-random-attr-1a64b4d7]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '12-1', + classNames: ['.random-classname-85d0c1fb'], + attributes: [ + { + key: 'data-random-attr-9fbe6be5', + selector: '[data-random-attr-9fbe6be5]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-56d12e9', '.random-classname-21156103'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-a809fae7'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-9035e10b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-f29ad75'], + attributes: [], + siblings: [':nth-child(13)'], + pseudos: [], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-1b5e1084', '.random-classname-9f388056'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-846d9dea', '.random-classname-a99d80ac'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-b99668a0', '.random-classname-1c34bad2'], + attributes: [], + siblings: [':nth-child(10)'], + pseudos: [], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-ab84534d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-3372d307', + '.random-classname-4c7bfcd1', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-b61d1c95', + '.random-classname-9a65938f', + ], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-435bc298'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-f2123f8a'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-f061b34c', '.random-classname-20ded65e'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-66057540', '.random-classname-fd0d9072'], + attributes: [ + { + key: 'data-random-attr-c1d7c74', + value: 'random-attr-value-c0d87d43', + selector: '[data-random-attr-c1d7c74=random-attr-value-c0d87d43]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-ce4abb27'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-c36fb9f1'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '9-1', + classNames: ['.random-classname-89f31bb5', '.random-classname-95a7faf'], + attributes: [ + { + key: 'data-random-attr-a13957b9', + selector: '[data-random-attr-a13957b9]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '10-1', + classNames: ['.random-classname-b20cf1fd'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-1', + classNames: [ + '.random-classname-783eae81', + '.random-classname-f29fb85b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-1', + classNames: [ + '.random-classname-59e99145', + '.random-classname-8ccddbbf', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-c1232363'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-f999b347'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-e2bd0711', '.random-classname-f75bef6b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '5-1', + classNames: ['.random-classname-9973aad5', '.random-classname-a7a87bcf'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '6-1', + classNames: ['.random-classname-89bf651d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '7-1', + classNames: ['.random-classname-3453c3a1', '.random-classname-2f222a7b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '8-1', + classNames: ['.random-classname-40a6865', '.random-classname-98cb5fdf'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-e113d983'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-593dd4ad', '.random-classname-7a67bb67'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-9cabe431', '.random-classname-cc83698b'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + selectors: [ + '::before >', + '.random-classname-7134e52f .random-classname-7ef38bd3', + '.random-classname-277f4b7d', + ':first-child', + '::before .random-classname-7ef38bd3 > .random-classname-277f4b7d :first-child .random-classname-57d7a13f >', + '.random-classname-b1643fc9', + '.random-classname-6c6280e3', + '::before', + '::before :not(.random-classname-7ef38bd3) > .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-57d7a13f > .random-classname-6c6280e3 .random-classname-5e569891', + '.random-classname-277f4b7d :first-child .random-classname-63271ac5 .random-classname-6c6280e3 .random-classname-d75c28c7 .random-classname-1406fceb', + '.random-classname-1406fceb ::slotted', + '.random-classname-fc9c0a59 .random-classname-91c27e9d', + '.random-classname-338e2ad7', + ':last-child', + '::slotted', + ':not(.random-classname-d75c28c7) ::slotted :not(.random-classname-fc9c0a59) .random-classname-91c27e9d .random-classname-338e2ad7 :not(.random-classname-b1f0b1e5)', + '::slotted >', + '.random-classname-196d4e2d', + '.random-classname-7d68f0e7', + '.random-classname-60f9370b', + '.random-classname-b1f0b1e5 .random-classname-e3057375 >', + '.random-classname-ee8f1a41', + '.random-classname-c66fda1b', + '.random-classname-9c70d905', + '.random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-338e2ad7 :not(.random-classname-b1f0b1e5) .random-classname-7e5397f', + '.random-classname-9eb77d23', + '[data-random-attr-8412594d]', + '.random-classname-7ef38bd3 > .random-classname-277f4b7d :first-child .random-classname-63271ac5 .random-classname-6c6280e3 .random-classname-d75c28c7 ::slotted .random-classname-fc9c0a59 .random-classname-91c27e9d :last-child .random-classname-b1f0b1e5 .random-classname-f25762d1', + '.random-classname-bc3be55f [data-random-attr-8d8e498f] >', + '.random-classname-91c27e9d > ::slotted .random-classname-b1f0b1e5 > :first-child', + '.random-classname-f6b7db17', + ':not(.random-classname-91c27e9d) :last-child .random-classname-37740f61', + '.random-classname-338e2ad7 [data-random-attr-acad2c3b] > .random-classname-b6db9d9f', + '.random-classname-7fbf1343', + '.random-classname-91c27e9d .random-classname-338e2ad7 .random-classname-e63fb127', + '.random-classname-c5ee35af >', + '.random-classname-e63fb127 :not(::before) >', + '::slotted > .random-classname-e63fb127 > ::before >', + '.random-classname-92711bf >', + '.random-classname-91c27e9d .random-classname-338e2ad7 :not(.random-classname-e63fb127) .random-classname-3564b963', + '.random-classname-e63fb127 :last-child', + ':not(.random-classname-338e2ad7) .random-classname-172870d5', + '.random-classname-eb2731cf', + '[data-random-attr-185e6ed9]', + '.random-classname-d1adcb57', + '.random-classname-7426a9a1', + '.random-classname-91c27e9d ::slotted > .random-classname-7426a9a1 .random-classname-2e08ae65', + '.random-classname-3904daad', + '.random-classname-af2b167', + '.random-classname-1406fceb .random-classname-fc9c0a59 > .random-classname-91c27e9d :last-child .random-classname-7426a9a1 .random-classname-260e8ff5', + '.random-classname-7426a9a1 :not(.random-classname-2ec71093) >', + '.random-classname-d1adcb57 :not(.random-classname-87d6ee3d)', + '.random-classname-4c844ec1', + '[data-random-attr-e82d829b]', + '.random-classname-d1adcb57 .random-classname-6bdd29ff >', + '::slotted > .random-classname-91c27e9d .random-classname-79c25cd', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 > .random-classname-63271ac5 ::before .random-classname-d75c28c7 :first-child .random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-24aa35a3 :not(.random-classname-100549ab)', + '::slotted ::slotted .random-classname-91c27e9d ::before > .random-classname-100549ab :not(::slotted)', + '.random-classname-91c27e9d [data-random-attr-1ad2c987] .random-classname-100549ab .random-classname-49ad815d >', + '.random-classname-b1643fc9 .random-classname-5e569891 .random-classname-1406fceb ::slotted .random-classname-91c27e9d > .random-classname-79c25cd .random-classname-100549ab ::before', + '.random-classname-100549ab > .random-classname-c00b14bb', + '.random-classname-100549ab ::before >', + '.random-classname-23c1f1a7', + '.random-classname-72b8b471', + '.random-classname-3838862f', + '.random-classname-91c27e9d .random-classname-24aa35a3 > .random-classname-100549ab > .random-classname-4821a239', + '.random-classname-8d58a47d', + '.random-classname-a849abb7', + '.random-classname-91c27e9d [data-random-attr-1ad2c987] .random-classname-100549ab .random-classname-dab04901', + '.random-classname-8047823f', + '.random-classname-94e46c0d', + ':first-child > ::before >', + '.random-classname-d75c28c7 > :first-child .random-classname-fc9c0a59 :not(.random-classname-91c27e9d) [data-random-attr-1ad2c987] .random-classname-3525c24f >', + '.random-classname-8959d359', + '.random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-24aa35a3 > .random-classname-3525c24f .random-classname-7608aaf3', + '::before .random-classname-3525c24f ::after >', + '.random-classname-1406fceb .random-classname-fc9c0a59 .random-classname-91c27e9d [data-random-attr-1ad2c987] .random-classname-9a75ed86', + '.random-classname-9fd61ea8', + '[data-random-attr-8b6ec61a=random-attr-value-cc875eb1]', + '.random-classname-9a75ed86 .random-classname-a4c0ac75', + '.random-classname-91c27e9d > ::before .random-classname-9a75ed86 .random-classname-78059479', + '.random-classname-ddd2a913', + '[data-random-attr-152c2b1b] >', + '.random-classname-63271ac5 .random-classname-6c6280e3 .random-classname-d75c28c7 :first-child .random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-24aa35a3 .random-classname-fbde5205', + '.random-classname-e1454b09', + '.random-classname-1dfdee23', + '.random-classname-922ef24d', + '.random-classname-9339ca07', + '.random-classname-d6a61a7f :first-child', + ':first-child .random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-24aa35a3 .random-classname-fbde5205 .random-classname-a52eb733 >', + '[data-random-attr-9729fd3b]', + '::before > .random-classname-d75c28c7 .random-classname-1406fceb .random-classname-fc9c0a59 .random-classname-91c27e9d [data-random-attr-1ad2c987] .random-classname-fbde5205 ::before', + '.random-classname-92d60443', + '.random-classname-13c90d6d', + '[data-random-attr-52b53227]', + '[data-random-attr-174aec4b]', + '::before .random-classname-7ef38bd3 > .random-classname-277f4b7d :first-child .random-classname-57d7a13f .random-classname-b1643fc9 .random-classname-5e569891 :first-child ::slotted .random-classname-91c27e9d ::before .random-classname-d6a61a7f ::before', + '.random-classname-218b5045', + '.random-classname-3f38f2bf', + ':first-child .random-classname-63271ac5 > .random-classname-b1643fc9 .random-classname-d75c28c7 ::slotted .random-classname-fc9c0a59 > .random-classname-91c27e9d > .random-classname-24aa35a3 ::slotted .random-classname-508c2a63', + '.random-classname-f5791611', + '.random-classname-32e5d66b', + '.random-classname-70aafd81 > :nth-child(7)', + '.random-classname-aba2f236', + '.random-classname-fabd76d8', + ':nth-child(6)', + '.random-classname-fc9c0a59 .random-classname-91c27e9d :not(:first-child)', + '.random-classname-58d77331', + '.random-classname-f4a8d08b', + '.random-classname-58d77331 .random-classname-911bc8f5', + '.random-classname-29cef3ad .random-classname-f4a8d08b .random-classname-d58b473d', + '.random-classname-b1643fc9 > .random-classname-d75c28c7 > :first-child .random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-29cef3ad .random-classname-58d77331 [data-random-attr-af6bd39b]', + '.random-classname-20530f89', + '.random-classname-15cabecd', + '.random-classname-f4a8d08b .random-classname-58df6051', + '.random-classname-921bdaab', + '.random-classname-f0b0f815', + '.random-classname-ece37b0f', + ':nth-child(3)', + '::placeholder', + '.random-classname-f6379818', + '.random-classname-f6379818 ::after', + '.random-classname-21bb1fde', + '.random-classname-b5dbfac0', + '.random-classname-709599f4', + '[data-random-attr-c5f4b268=random-attr-value-351972a7]', + '.random-classname-c4c6f4cb', + '[data-random-attr-7808b735]', + '.random-classname-fa46eb39', + '.random-classname-9021edd3', + '.random-classname-9a55fd7d', + '.random-classname-fa46eb39 .random-classname-9a55fd7d > .random-classname-e27eb201', + '::before > .random-classname-5e569891 > .random-classname-1406fceb ::slotted .random-classname-91c27e9d .random-classname-9021edd3 ::slotted > .random-classname-c7fb633f', + '.random-classname-e6b162e3', + '.random-classname-589c050d', + '[data-random-attr-1df82ac7]', + '.random-classname-a5eb0655', + '.random-classname-91c27e9d .random-classname-a5eb0655 .random-classname-b2fb9c59', + '::slotted .random-classname-91c27e9d ::slotted > .random-classname-e125bf3 > .random-classname-1ca2309d', + '.random-classname-3532acd7', + '.random-classname-ca321eeb > .random-classname-e125bf3 > [data-random-attr-c74239fb]', + '.random-classname-579ccae9', + '.random-classname-df01802d', + '.random-classname-1e35f2e7', + '[data-random-attr-7fc087b1]', + ':nth-child(5)', + '.random-classname-d4e73850', + '.random-classname-6db11602', + '::after', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-63271ac5 .random-classname-6c6280e3 .random-classname-d75c28c7 .random-classname-1406fceb .random-classname-fc9c0a59 .random-classname-91c27e9d > .random-classname-ca321eeb > .random-classname-10149856', + '::slotted .random-classname-10149856 :not(.random-classname-5877a1f8)', + '.random-classname-62bf35ea', + '.random-classname-1ad8ac', + '::slotted .random-classname-1ad8ac .random-classname-d35b4dd4 >', + '.random-classname-b0eeba26', + ':nth-child(14)', + '.random-classname-d768a32b', + '.random-classname-7ac7ae99', + '::slotted .random-classname-7ac7ae99 ::before', + '.random-classname-1dbe5d17', + '[data-random-attr-c177e161]', + '.random-classname-91c27e9d .random-classname-ca321eeb .random-classname-7ac7ae99 ::before', + '.random-classname-50b25f9f', + '.random-classname-1406fceb ::slotted > .random-classname-91c27e9d .random-classname-ca321eeb .random-classname-7ac7ae99 .random-classname-8ceeb327', + '.random-classname-fc9c0a59 > .random-classname-91c27e9d .random-classname-ca321eeb .random-classname-7ac7ae99 .random-classname-26a153b5', + '.random-classname-c6f0fb9', + '.random-classname-75c00653', + '.random-classname-8aaccd37', + '.random-classname-c22b6681', + '.random-classname-cb05c945', + '.random-classname-9c8ed3bf', + '.random-classname-63271ac5 ::before > .random-classname-d75c28c7 ::slotted .random-classname-fc9c0a59 .random-classname-91c27e9d > .random-classname-ca321eeb .random-classname-c22b6681 > .random-classname-9785518d', + '.random-classname-9c015630 >', + ':not(:first-child) > .random-classname-63271ac5 ::before :not(.random-classname-d75c28c7) > :first-child .random-classname-fc9c0a59 .random-classname-e9ab4ee2', + '.random-classname-6c6280e3 .random-classname-5e569891 :first-child ::slotted :last-child ::after >', + '.random-classname-8de08aca', + '.random-classname-5e569891 > :first-child ::slotted > :last-child ::after .random-classname-249c608c ::placeholder >', + '.random-classname-feedd1b4', + '.random-classname-150c4906', + ':last-child ::after .random-classname-249c608c .random-classname-41d567dc', + ':first-child :not(.random-classname-fc9c0a59) .random-classname-e9ab4ee2 .random-classname-d400ef36 > .random-classname-8de08aca ::placeholder', + '::after .random-classname-3af556d6', + '.random-classname-d75c28c7 .random-classname-1406fceb .random-classname-fc9c0a59 .random-classname-e9ab4ee2 .random-classname-d400ef36 .random-classname-cd17c304 .random-classname-974b6478 >', + '.random-classname-190d832c', + '.random-classname-190d832c .random-classname-98c95320', + '.random-classname-11ed16c8', + '.random-classname-44c4133a', + '.random-classname-8e59b27c', + '.random-classname-f4714f70', + '.random-classname-8e59b27c .random-classname-9649d18', + '::after > ::placeholder ::before', + '.random-classname-e9ab4ee2 .random-classname-d400ef36 .random-classname-8e59b27c .random-classname-c48fedc3', + '.random-classname-57d7a13f ::before > .random-classname-5e569891 .random-classname-1406fceb ::slotted :last-child ::after > ::placeholder .random-classname-3b5d0671 >', + '.random-classname-510bc82f', + '.random-classname-7503439', + '[data-random-attr-797f1ed3]', + '.random-classname-2d852db7', + '.random-classname-a1b11b01', + '.random-classname-dc2085c5', + '.random-classname-3ef3443f', + '[data-random-attr-d936dac9]', + '.random-classname-ac779e0d', + ':nth-child(9)', + '.random-classname-d400ef36 .random-classname-dc2085c5 .random-classname-25b737bc', + '::after :first-child :first-child >', + '.random-classname-1406fceb .random-classname-fc9c0a59 .random-classname-e9ab4ee2 .random-classname-d400ef36 > [data-random-attr-d936dac9] [data-random-attr-1ba79ce5]', + '::placeholder >', + '.random-classname-2df0a8a8', + '.random-classname-148be01a', + '.random-classname-63041d84', + '.random-classname-148be01a > .random-classname-e5426f8 >', + ':not(.random-classname-d400ef36) .random-classname-db052dac', + ':first-child ::slotted :last-child ::after ::before ::before >', + '.random-classname-663fcc07', + '.random-classname-f7485dd1', + '[data-random-attr-d485342b]', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-57d7a13f > ::before > .random-classname-5e569891 :first-child ::slotted :last-child > .random-classname-663fcc07 ::slotted', + ':nth-child(1)', + '.random-classname-feee248a', + '[data-random-attr-8bd7e04c=random-attr-value-412f9f3b]', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 > .random-classname-63271ac5 ::before .random-classname-d75c28c7 :not(::slotted) .random-classname-fc9c0a59 .random-classname-e9ab4ee2 .random-classname-f7485dd1 .random-classname-b8670d95 > .random-classname-8ee17b25', + '.random-classname-904b7629', + '.random-classname-2f8fe643', + '.random-classname-b8670d95 .random-classname-a4ec3427 >', + '.random-classname-c48bee42 >', + '.random-classname-130fcf81', + '.random-classname-d75c28c7 :first-child .random-classname-fc9c0a59 .random-classname-e9ab4ee2 > .random-classname-5b9c3690 [data-random-attr-316ad496=random-attr-value-123582fd] :not(.random-classname-58244245)', + '.random-classname-3128b4bf', + '.random-classname-e9ab4ee2 :not(.random-classname-5b9c3690) .random-classname-5dc02ac4 .random-classname-eec1f49', + ':last-child > :not(.random-classname-c48bee42) [data-random-attr-316ad496=random-attr-value-123582fd] :first-child', + '.random-classname-e9ab4ee2 .random-classname-5b9c3690 ::slotted >', + '.random-classname-f299c9d9', + '.random-classname-59d86573', + '.random-classname-d0708e57', + '.random-classname-5e569891 > .random-classname-1406fceb ::slotted :last-child .random-classname-c48bee42 :not(.random-classname-34eab8df) >', + '.random-classname-a7c5869', + '.random-classname-a9244283', + '.random-classname-3b723467', + '.random-classname-4811c531', + '.random-classname-c7a0f28b', + '.random-classname-73223af5', + '.random-classname-39fba393 >', + '.random-classname-b001d82c >', + '.random-classname-c48bee42 .random-classname-73223af5 .random-classname-e54f88a3', + '.random-classname-a8f2b251', + '.random-classname-a8f2b251 .random-classname-5054fcab >', + '.random-classname-a8f2b251 .random-classname-e27b5c19', + '::slotted :last-child .random-classname-c48bee42 .random-classname-a8f2b251 .random-classname-abc40c5d', + ':not(::slotted) .random-classname-fc9c0a59 .random-classname-e9ab4ee2 .random-classname-5b9c3690 .random-classname-a8f2b251 [data-random-attr-f9213ee1] >', + '.random-classname-277f4b7d .random-classname-d7d1eab7 .random-classname-57d7a13f .random-classname-b1643fc9 .random-classname-5e569891 ::slotted ::slotted :last-child .random-classname-c48bee42 .random-classname-a8f2b251 ::slotted', + '.random-classname-fc9c0a59 .random-classname-e9ab4ee2 .random-classname-118b7aa9', + ':not(:last-child) .random-classname-118b7aa9 [data-random-attr-5452f71]', + '.random-classname-e91474a7 [data-random-attr-7a612935]', + '[data-random-attr-63604fd3]', + '.random-classname-a8478401', + ':first-child ::slotted > :last-child :nth-child(1) ::before', + '.random-classname-2b2c7855', + '.random-classname-b882254f', + '.random-classname-5af70358', + '.random-classname-248eeb7 .random-classname-e4df6ab6 .random-classname-3a2c95e5', + '.random-classname-11b5695f', + '.random-classname-11b5695f .random-classname-bfb8dce9', + '.random-classname-89b5bb03', + '.random-classname-11b5695f > .random-classname-36e17b0b >', + '.random-classname-71ca5775', + '.random-classname-c1e9f16f', + '.random-classname-26cc6f79', + '.random-classname-9dcd3c13', + '.random-classname-e8ba5bd', + '.random-classname-4d687ef7', + ':last-child > .random-classname-248eeb7 :not(.random-classname-4d687ef7) .random-classname-7f791e1b', + '.random-classname-c5937d4', + '.random-classname-c0a63426', + '.random-classname-2163e48', + '.random-classname-be2126ba', + '.random-classname-e9ab4ee2 :nth-child(1) .random-classname-e8ba5bd > .random-classname-1d9c188e', + ':last-child > :nth-child(1) .random-classname-e8ba5bd .random-classname-d3f66f0', + '.random-classname-e3a95da2', + '.random-classname-79353124', + '.random-classname-2c60718a', + '.random-classname-77f8b54c', + '[data-random-attr-5847285e=random-attr-value-34f7425]', + '.random-classname-1406fceb ::slotted :last-child > ::placeholder .random-classname-2c60718a .random-classname-6f447f29 >', + '.random-classname-d932d743', + '.random-classname-ae4586d', + '[data-random-attr-aaadb527]', + '.random-classname-14421f4b', + '.random-classname-1406fceb .random-classname-fc9c0a59 > .random-classname-e9ab4ee2 .random-classname-829ec3f1 .random-classname-ff9dc5b5', + '.random-classname-a049a1b9', + '.random-classname-8d826853', + '[data-random-attr-d70cdbfd]', + '.random-classname-e9ab4ee2 .random-classname-829ec3f1 .random-classname-ff9dc5b5 .random-classname-b8344f37 >', + ':last-child .random-classname-9413d25b', + '.random-classname-2941a849', + ':not(.random-classname-1406fceb) ::slotted ::slotted ::slotted >', + '[data-random-attr-6384838d] :first-child :first-child', + '.random-classname-1a3e896b :not(.random-classname-5e2c1673) .random-classname-e913447b', + '.random-classname-198c9265', + '::slotted :first-child .random-classname-ba6e6169', + '.random-classname-198c9265 ::placeholder', + '.random-classname-522c0682', + '.random-classname-fa45e001 .random-classname-63271ac5 .random-classname-6c6280e3 > .random-classname-d75c28c7 ::slotted .random-classname-fc9c0a59 .random-classname-2941a849 .random-classname-be611111 .random-classname-4aec5f77', + '.random-classname-2900adff', + '.random-classname-9012aa89', + '::slotted > .random-classname-9012aa89 .random-classname-b5e3f9a3', + '.random-classname-892e89cd >', + ':first-child >', + '::slotted .random-classname-fc9c0a59 .random-classname-2900adff .random-classname-b5e3f9a3 .random-classname-892e89cd .random-classname-3458de0f', + '.random-classname-2066cd87 .random-classname-fdc5a2b3', + '::slotted .random-classname-fc9c0a59 > .random-classname-2900adff :not(.random-classname-4c4f27e1)', + '.random-classname-4c4f27e1 > [data-random-attr-1323f0a5]', + '.random-classname-4b9d521f', + '.random-classname-b5c864ed', + '.random-classname-a1e58bb ::before', + ':not(.random-classname-5e569891) :not(::slotted) > ::slotted > .random-classname-9012aa89 .random-classname-720ec639', + '.random-classname-d75c28c7 ::slotted > .random-classname-fc9c0a59 .random-classname-2900adff > .random-classname-e2ef0a2f .random-classname-5dc580d3 >', + '.random-classname-5dc580d3 .random-classname-8939fadb', + '.random-classname-41a577c5', + '.random-classname-b1e1ecc9', + '.random-classname-c185b5e3', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-d7d1eab7 .random-classname-63271ac5 ::before .random-classname-d75c28c7 .random-classname-1406fceb .random-classname-fc9c0a59 :last-child', + '.random-classname-b4c33155', + '.random-classname-2f7e464f', + '.random-classname-1406fceb .random-classname-fc9c0a59 .random-classname-449ad00d .random-classname-b4c33155 .random-classname-85476ef3 >', + '.random-classname-80d24221', + '.random-classname-5019acfb', + '[data-random-attr-c6558ee5]', + '.random-classname-cc9ce5e9', + '.random-classname-f77bac03', + '.random-classname-ff6dcb2d', + '.random-classname-b4c33155 > .random-classname-6e159075', + '.random-classname-e2202dc7 > .random-classname-2f7e464f > .random-classname-d00e926f .random-classname-c6d36d13', + '.random-classname-b0482741', + '.random-classname-75fc3605', + '.random-classname-12519e7f', + '[data-random-attr-c8ef6f09]', + '.random-classname-fc9c0a59 [data-random-attr-c8ef6f09] [data-random-attr-e855ce07] >', + '::slotted .random-classname-75fc3605 .random-classname-5409564d > .random-classname-a427f95 >', + '.random-classname-d75c28c7 :first-child > .random-classname-fc9c0a59 > .random-classname-12519e7f .random-classname-123fb223 .random-classname-50ca562b > :not(.random-classname-3ea7ee8f)', + '.random-classname-a427f95 :last-child', + '.random-classname-6f28d1dd', + ':not(.random-classname-57d7a13f) .random-classname-b1643fc9 .random-classname-5e569891 .random-classname-1406fceb > ::slotted > :not([data-random-attr-c8ef6f09]) .random-classname-5409564d > ::before', + '.random-classname-123fb223 .random-classname-c745413b [data-random-attr-8218829] >', + '.random-classname-6c6280e3 .random-classname-d75c28c7 :first-child .random-classname-fc9c0a59 .random-classname-75fc3605 > .random-classname-8347304b', + '.random-classname-c68ceab9', + '.random-classname-f304a181', + ':first-child ::slotted .random-classname-12519e7f ::slotted', + '::before .random-classname-d75c28c7 ::slotted .random-classname-fc9c0a59 [data-random-attr-c8ef6f09] [data-random-attr-4f7b3149] > .random-classname-b47ae47 >', + '[data-random-attr-3a4c0dd5]', + '.random-classname-5d4d3445 .random-classname-b47ae47 .random-classname-4215d6cf', + '.random-classname-1406fceb ::slotted [data-random-attr-c8ef6f09] ::slotted .random-classname-b47ae47 ::slotted >', + ':first-child .random-classname-63271ac5 > .random-classname-b1643fc9 .random-classname-d75c28c7 :first-child .random-classname-fc9c0a59 [data-random-attr-c8ef6f09] > [data-random-attr-4f7b3149] ::before', + '::before [data-random-attr-c8446a69]', + '.random-classname-d25f57ad', + '.random-classname-249b3667', + '::slotted > .random-classname-12519e7f ::slotted ::before .random-classname-60dc1731', + '[data-random-attr-4f7b3149] > ::slotted', + '::slotted > ::slotted [data-random-attr-c8ef6f09] .random-classname-402876bf :first-child .random-classname-8a072077', + '.random-classname-9efa62ef .random-classname-3d0ac220', + '.random-classname-fa45e001 .random-classname-57d7a13f .random-classname-6c6280e3 > :not(.random-classname-5e569891) ::slotted ::slotted > ::before', + '.random-classname-fc9c0a59 [data-random-attr-6335ce87] .random-classname-c69e1eab', + '::slotted .random-classname-a7ed22cd > .random-classname-c69e1eab ::slotted', + '.random-classname-277f4b7d :first-child .random-classname-63271ac5 > ::before .random-classname-d75c28c7 > .random-classname-1406fceb .random-classname-fc9c0a59 .random-classname-93fc6aa3 .random-classname-c69e1eab .random-classname-4b1fdc15 ::before', + '.random-classname-fc9c0a59 [data-random-attr-6335ce87] .random-classname-c69e1eab > .random-classname-4b1fdc15 .random-classname-2b98b31f', + '.random-classname-a7ed22cd > .random-classname-c69e1eab .random-classname-e6bec0c3', + '.random-classname-e6bec0c3 .random-classname-d82b7ded', + '.random-classname-5e569891 > .random-classname-1406fceb ::slotted > ::before .random-classname-c69e1eab .random-classname-e6bec0c3 ::after', + '.random-classname-55c30d16', + '.random-classname-d497b4b8', + '.random-classname-34a896aa', + '::slotted .random-classname-fc9c0a59 .random-classname-93fc6aa3 .random-classname-c69e1eab .random-classname-34a896aa > .random-classname-cec40f7e', + '.random-classname-f1dfab60', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-d7d1eab7 .random-classname-63271ac5 .random-classname-b1643fc9 .random-classname-d75c28c7 > ::slotted .random-classname-f1dfab60 [data-random-attr-c18d5ee6=random-attr-value-a8e2690d]', + '.random-classname-dead0494 .random-classname-9c289b4e', + '.random-classname-728ecb92 .random-classname-135af6bc .random-classname-52f2de4', + '.random-classname-e1df0d58', + '.random-classname-52f2de4 .random-classname-45f24a0c', + '.random-classname-55b21800 >', + '.random-classname-b1643fc9 .random-classname-d75c28c7 > :not(::slotted) .random-classname-f1dfab60 .random-classname-728ecb92 .random-classname-135af6bc .random-classname-4080eb34 >', + ':first-child > .random-classname-f1dfab60 :nth-child(13) ::placeholder .random-classname-4080eb34 :last-child', + '.random-classname-665d871a', + '.random-classname-5b4bb15c', + '[data-random-attr-d0254eee=random-attr-value-6104c975]', + '.random-classname-1406fceb > .random-classname-f1dfab60 .random-classname-dead0494 .random-classname-9c289b4e > .random-classname-4080eb34 > .random-classname-45c50179', + '.random-classname-7a15c01b', + '.random-classname-239daf05', + '::before > .random-classname-76d9ef4d', + '.random-classname-5306cf07', + '.random-classname-73bd58d1', + ':nth-child(7)', + '.random-classname-239daf05 .random-classname-76d9ef4d .random-classname-5306cf07 .random-classname-ebbeb7a2 >', + '.random-classname-dd1a2323 .random-classname-5306cf07 > .random-classname-6ac7ae98 >', + ':nth-child(7) ::placeholder', + ':first-child .random-classname-dd1a2323 .random-classname-9cc7a874', + '.random-classname-53e468e8', + '.random-classname-d75c28c7 .random-classname-1406fceb .random-classname-f1dfab60 .random-classname-7a15c01b .random-classname-dd1a2323 [data-random-attr-6cd9262e=random-attr-value-32a37b5]', + '.random-classname-3fb433b9', + '.random-classname-754ca53', + '[data-random-attr-ba32745b]', + '.random-classname-a2150a81 .random-classname-1198ba49', + '.random-classname-170d5f63', + '[data-random-attr-1013b58d]', + '.random-classname-5e569891 :first-child ::before > .random-classname-1198ba49 ::before ::before', + '.random-classname-265f7873', + '.random-classname-57d7a13f > .random-classname-b1643fc9 .random-classname-5e569891 .random-classname-1406fceb > .random-classname-86175157', + '.random-classname-63271ac5 > ::before .random-classname-d75c28c7 :first-child > [data-random-attr-29b2e67b] :first-child >', + '.random-classname-91268465 ::before >', + '.random-classname-6bd5b767', + '[data-random-attr-a4d74031]', + '::slotted ::before', + '.random-classname-75d43693', + '.random-classname-792d043d', + ':first-child .random-classname-792d043d ::before >', + '.random-classname-75d43693 [data-random-attr-66df689b] > .random-classname-6b2a6fff', + '::before ::before', + '.random-classname-79c8cf87', + '.random-classname-5dfdad51', + '.random-classname-1406fceb :not(.random-classname-93559515)', + '::before .random-classname-d75c28c7 :first-child > .random-classname-93559515 .random-classname-cbfb200f >', + '.random-classname-7c3b04b3', + '.random-classname-9c1e975d', + '.random-classname-cbfb200f .random-classname-7c3b04b3 .random-classname-cd3f8197', + '.random-classname-c68fe2a5', + '.random-classname-63271ac5 .random-classname-b1643fc9 .random-classname-d75c28c7 > .random-classname-1406fceb [data-random-attr-b12bb1c3]', + '.random-classname-783910da', + '.random-classname-6cbaa11c', + '.random-classname-b1643fc9 .random-classname-d75c28c7 > :not(:first-child) .random-classname-78d8141f .random-classname-783910da .random-classname-e28a94ae >', + '.random-classname-5e569891 ::slotted > :nth-child(11) .random-classname-6cbaa11c :last-child ::after', + '.random-classname-6bde8bc2 .random-classname-74d48a16', + '.random-classname-aa5b63aa', + '.random-classname-a8a60c6c', + '.random-classname-b5052c7e >', + '.random-classname-5e569891 ::slotted .random-classname-a8a60c6c :not(.random-classname-b5052c7e) .random-classname-b147d060', + '.random-classname-277f4b7d > :first-child .random-classname-63271ac5 .random-classname-b1643fc9 .random-classname-d75c28c7 ::slotted > .random-classname-aa5b63aa .random-classname-b5052c7e > .random-classname-b147d060 > .random-classname-539b3892', + '.random-classname-bf0cf994 ::after', + '::slotted :not(.random-classname-24fdaa7a)', + '.random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-d7d1eab7 > .random-classname-57d7a13f .random-classname-6c6280e3 > .random-classname-5e569891 :first-child .random-classname-24fdaa7a ::placeholder', + '.random-classname-24fdaa7a .random-classname-1cb98bbc [data-random-attr-f76062e4=random-attr-value-dbfed0f3]', + '.random-classname-27d65962 ::slotted', + '.random-classname-679380e5', + '.random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-57d7a13f .random-classname-6c6280e3 .random-classname-5e569891 .random-classname-4a69fd2d >', + '.random-classname-eb1c77e7', + '::before .random-classname-7ef38bd3 > .random-classname-277f4b7d :first-child .random-classname-57d7a13f .random-classname-6c6280e3 .random-classname-5e569891 .random-classname-4a69fd2d ::before .random-classname-da980275', + '.random-classname-4323d46f', + '.random-classname-566bcf13', + '[data-random-attr-90e32805]', + '.random-classname-cc1c8109', + '[data-random-attr-4d789423]', + '.random-classname-4dce884d', + '.random-classname-277f4b7d :first-child .random-classname-57d7a13f ::before :not(.random-classname-5e569891) [data-random-attr-4d789423] ::slotted .random-classname-3b5701d1', + '.random-classname-3b5701d1 .random-classname-e51f782b', + '.random-classname-3b5701d1 ::before > .random-classname-4ce99b99', + '.random-classname-3b5701d1 .random-classname-e51f782b > .random-classname-268e308f .random-classname-c9eadd33', + '.random-classname-57d7a13f ::before .random-classname-5e569891 ::before >', + '.random-classname-7ef38bd3 .random-classname-277f4b7d :first-child .random-classname-63271ac5 > .random-classname-b1643fc9 .random-classname-d75c28c7 :not([data-random-attr-a96ae33b]) :not(.random-classname-8d71449f)', + '.random-classname-333aa43', + ':not(.random-classname-36453ef1)', + '.random-classname-1ce670b5', + '.random-classname-9bbf7cb9', + '.random-classname-206ae6fd', + '.random-classname-5b3d9237', + '::before .random-classname-b1062645', + '.random-classname-f2c7c55b .random-classname-bb4cd063', + '.random-classname-f2c7c55b > .random-classname-ff9a4349 ::before', + ':not(.random-classname-5b3d9237) .random-classname-f2c7c55b .random-classname-bb4cd063 .random-classname-b4fb047 .random-classname-cbbb3c6b', + '.random-classname-551e18cf :first-child', + '.random-classname-85697d65 >', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d :first-child > .random-classname-63271ac5 > .random-classname-6c6280e3 .random-classname-d75c28c7 .random-classname-551e18cf .random-classname-a3f2973 ::slotted .random-classname-3d9c7c69', + '.random-classname-437f89ad', + '[data-random-attr-54d43867]', + '.random-classname-d75c28c7 > .random-classname-551e18cf :first-child > .random-classname-85697d65 > .random-classname-3d9c7c69 > :first-child > :last-child', + '.random-classname-18246793', + '.random-classname-29b95d3d', + '.random-classname-5088a277', + '.random-classname-5088a277 .random-classname-8c35b99b', + '.random-classname-ac636485', + '[data-random-attr-39d654cd]', + '.random-classname-741fd087', + '::before .random-classname-5e569891 [data-random-attr-dc2f4e15]', + '.random-classname-9a32410f', + '.random-classname-b6268019', + '.random-classname-a13bb5b3', + '.random-classname-12f705d', + '.random-classname-9a32410f > .random-classname-a13bb5b3 ::slotted', + '.random-classname-5e569891 [data-random-attr-dc2f4e15] .random-classname-b6268019 .random-classname-12f705d :first-child ::slotted', + ':first-child .random-classname-eebbdba5 ::before', + '.random-classname-563a78a7', + '.random-classname-7134e52f > .random-classname-7ef38bd3 > .random-classname-277f4b7d :first-child .random-classname-63271ac5 .random-classname-b1643fc9 .random-classname-d75c28c7 > .random-classname-563a78a7 .random-classname-9ccdd371', + '.random-classname-563a78a7 ::slotted ::before', + '.random-classname-1ec20d35 .random-classname-500d13d3', + '::slotted .random-classname-1ec20d35 .random-classname-500d13d3 [data-random-attr-cc892801]', + '.random-classname-6f73eddb', + '.random-classname-393ae2c5', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-57d7a13f .random-classname-6c6280e3 > .random-classname-5e569891 > .random-classname-541087c9', + '.random-classname-277f4b7d :first-child .random-classname-63271ac5 .random-classname-b1643fc9 .random-classname-d75c28c7 ::before .random-classname-2c2c30c7', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d > :first-child .random-classname-57d7a13f ::before :not(.random-classname-5e569891) > .random-classname-541087c9 :not(.random-classname-2c2c30c7) .random-classname-9d1384eb', + '.random-classname-992597e4', + '.random-classname-99975eb6', + '.random-classname-992597e4 ::placeholder', + '.random-classname-38eb6200', + '.random-classname-35e57f03 .random-classname-54b7db1 >', + '.random-classname-57d7a13f .random-classname-6c6280e3 .random-classname-5e569891 .random-classname-631e162d .random-classname-54b7db1 .random-classname-6acf3b75 >', + '.random-classname-35e57f03 .random-classname-54b7db1 .random-classname-4d09bf0b .random-classname-c814756f', + '.random-classname-57d7a13f ::before > .random-classname-5e569891 .random-classname-35e57f03 > .random-classname-54b7db1 .random-classname-6acf3b75 :not(::before) :not(.random-classname-2c2d09bd)', + '.random-classname-939a6241', + '.random-classname-57d7a13f .random-classname-6c6280e3 .random-classname-4dcca105', + '.random-classname-a9890a09 > ::slotted', + '::slotted :not(::before)', + '.random-classname-242d8e33', + '[data-random-attr-38a55cdd]', + '.random-classname-4531e317', + '.random-classname-a0e35761', + '[data-random-attr-503b43b]', + '.random-classname-a56f5825', + '[data-random-attr-1c96a59f]', + '.random-classname-ce10a329', + '.random-classname-b88a409c', + '.random-classname-f750af90', + ':not(.random-classname-6c6280e3) > .random-classname-aae69b43 ::placeholder :not(.random-classname-f750af90) ::after', + '.random-classname-96004596', + '.random-classname-f750af90 :not(::after) ::after .random-classname-9d1172a', + '.random-classname-bddb8bec .random-classname-be2187e0 >', + '.random-classname-d7d1eab7 .random-classname-57d7a13f ::after', + '.random-classname-37ae3dfa', + '.random-classname-83c103ce', + '.random-classname-80195ce2', + '.random-classname-94dfb264', + ':nth-child(4)', + '.random-classname-1c5df1a1', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-63271ac5 .random-classname-b6726914 :not(.random-classname-37ae3dfa) .random-classname-83c103ce .random-classname-80195ce2 :last-child .random-classname-17129ddf >', + '.random-classname-7ef38bd3 .random-classname-277f4b7d :first-child .random-classname-57d7a13f > .random-classname-b6726914 > :first-child ::after ::slotted > ::before ::before > .random-classname-6bf99231', + '.random-classname-a153478b', + '.random-classname-d86857f5', + '.random-classname-953e37f9', + '.random-classname-953e37f9 .random-classname-c6f89893', + '::before > .random-classname-f7ef6377', + '.random-classname-63271ac5 .random-classname-953e37f9 :not(.random-classname-c6f89893) :nth-child(9) .random-classname-27403120 >', + '.random-classname-2ac90654', + '.random-classname-27403120 .random-classname-2ac90654 > .random-classname-b2ab86a6', + '.random-classname-1f16613a', + ':not(.random-classname-7134e52f) .random-classname-7ef38bd3 .random-classname-277f4b7d :not(.random-classname-d7d1eab7) .random-classname-63271ac5 .random-classname-953e37f9 :not(.random-classname-c6f89893) .random-classname-f7ef6377 > .random-classname-27403120 > .random-classname-2ac90654 .random-classname-b2ab86a6 .random-classname-3d3fb4c8 .random-classname-52b7307c >', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-d7d1eab7 .random-classname-57d7a13f .random-classname-b1c5e822 >', + '.random-classname-efd6bb18', + '.random-classname-dc8e4c0a', + '::after ::slotted >', + '.random-classname-7134e52f > .random-classname-7ef38bd3 .random-classname-277f4b7d :not(:first-child) .random-classname-63271ac5 :first-child > ::after :nth-child(8) .random-classname-b42cc8ed', + ':not(::before)', + '.random-classname-48e96ade > .random-classname-b42cc8ed .random-classname-8fedf9a7 [data-random-attr-71e58e2f]', + '.random-classname-57d7a13f ::placeholder > .random-classname-efd6bb18 ::slotted > .random-classname-b42cc8ed ::before :last-child [data-random-attr-5f97b3b7]', + ':not(::slotted) ::before .random-classname-138f3edb', + '.random-classname-185f5bc5', + '[data-random-attr-69568a3f]', + '.random-classname-68548991', + '.random-classname-a74715eb', + '.random-classname-2e16ca4f', + '.random-classname-277f4b7d :not(.random-classname-fa45e001) .random-classname-57d7a13f ::before [data-random-attr-f691340d] .random-classname-68548991 > .random-classname-2e16ca4f .random-classname-1a9f1f9d', + '[data-random-attr-f691340d] .random-classname-68548991 :not(.random-classname-3f581b59) :last-child > :not(.random-classname-19074e5f)', + '::before :last-child', + '.random-classname-a4a179e7 >', + ':not(.random-classname-7ef38bd3) .random-classname-277f4b7d > .random-classname-fa45e001 .random-classname-57d7a13f ::slotted', + '.random-classname-7134e52f .random-classname-7ef38bd3 > .random-classname-277f4b7d .random-classname-d7d1eab7 .random-classname-63271ac5 .random-classname-a1aa7475 .random-classname-33e7dc79', + '::before .random-classname-7ef38bd3 > .random-classname-277f4b7d .random-classname-d7d1eab7 .random-classname-57d7a13f > :not(.random-classname-a1aa7475) > .random-classname-f8143113 > ::slotted', + '[data-random-attr-eb7dcb41] .random-classname-ea5a1a05', + '.random-classname-2ed99309 .random-classname-5823ba4d', + '.random-classname-11849a2b', + '[data-random-attr-eb7dcb41] .random-classname-ea5a1a05 .random-classname-2ed99309 > [data-random-attr-f9b1d207] :not(.random-classname-11849a2b) ::before', + '.random-classname-b4f43f33', + '.random-classname-eb6c35dd', + '[data-random-attr-38732417]', + '.random-classname-e2534061', + ':not(:first-child) .random-classname-57d7a13f > .random-classname-b4f43f33 ::slotted > ::slotted >', + '.random-classname-63271ac5 .random-classname-eb6c35dd .random-classname-e2534061 :first-child > [data-random-attr-e5f13a27]', + '.random-classname-6f83744b', + '[data-random-attr-38732417] .random-classname-e2534061 > .random-classname-d2115125 ::before :first-child .random-classname-3c820eb9 >', + '::slotted .random-classname-f6e1d56d ::slotted > ::slotted .random-classname-c25d98fd', + '.random-classname-f6e1d56d :not(.random-classname-6f83744b) .random-classname-3c820eb9 .random-classname-c25d98fd .random-classname-6c6d1437', + '.random-classname-6b9e4581', + '.random-classname-7134e52f .random-classname-7ef38bd3 > .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-63271ac5 > .random-classname-6b9e4581 .random-classname-fefe675b', + '.random-classname-fefe675b > .random-classname-d34f1845 >', + '[data-random-attr-ca67b247]', + '[data-random-attr-b557fabf] > [data-random-attr-ca67b247] [data-random-attr-a4225e6b]', + '.random-classname-9365acf', + '.random-classname-5b1c7fd9', + '[data-random-attr-218a8b73]', + '[data-random-attr-ca67b247] > :last-child ::before .random-classname-27a6daa1', + '::slotted .random-classname-aedb6f65', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d :first-child > .random-classname-57d7a13f .random-classname-ea848e69', + ':not(.random-classname-63271ac5) > .random-classname-34cfedf .random-classname-51f7e883', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-d7d1eab7 > .random-classname-57d7a13f .random-classname-ea848e69 .random-classname-1d2fbbad .random-classname-f20bb31', + '.random-classname-277f4b7d .random-classname-fa45e001 .random-classname-63271ac5 .random-classname-34cfedf > ::slotted :first-child ::slotted', + '.random-classname-60e9588b > .random-classname-dabce6ef .random-classname-e21a2477', + ':first-child > ::slotted .random-classname-343e0f3d .random-classname-9ab4ffc1 >', + '.random-classname-7134e52f .random-classname-7ef38bd3 > .random-classname-277f4b7d :first-child .random-classname-63271ac5 .random-classname-34cfedf .random-classname-51f7e883 .random-classname-f20bb31 ::slotted .random-classname-343e0f3d .random-classname-9ab4ffc1 .random-classname-bdee5b9b .random-classname-12e712ff', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d :first-child .random-classname-57d7a13f > ::before', + '.random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-63271ac5 .random-classname-d3862ea3 .random-classname-5419d287', + '.random-classname-57d7a13f ::before ::after :last-child', + '.random-classname-7134e52f .random-classname-7ef38bd3 > .random-classname-277f4b7d > .random-classname-fa45e001 .random-classname-63271ac5 .random-classname-d3862ea3 :nth-child(13) .random-classname-59a09522 [data-random-attr-14be990a=random-attr-value-2d10b4e1]', + '.random-classname-b4686346', + '.random-classname-e536da68', + '[data-random-attr-6dc3b7da=random-attr-value-beea2571]', + '.random-classname-cd0f7ccb', + '[data-random-attr-c0ca7f35]', + '.random-classname-cd0f7ccb .random-classname-93813339', + '.random-classname-57d7a13f .random-classname-ecf374b7', + '.random-classname-327d4c5', + '.random-classname-eb2a6b3f', + '::slotted .random-classname-eb2a6b3f ::slotted', + ':first-child .random-classname-2813291', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-d7d1eab7 .random-classname-57d7a13f .random-classname-ecf374b7 .random-classname-eb2a6b3f .random-classname-c8ceae3 .random-classname-737ea6eb .random-classname-8666eb4f', + '.random-classname-7ef38bd3 .random-classname-277f4b7d :first-child .random-classname-63271ac5 :not(.random-classname-350c57d) .random-classname-327d4c5 .random-classname-e3a399c9 > .random-classname-2813291 .random-classname-aa50ce55 > .random-classname-9019e459', + '.random-classname-57d7a13f ::slotted .random-classname-eb2a6b3f :not(::slotted) .random-classname-737ea6eb .random-classname-8666eb4f .random-classname-9019e459 ::before', + ':first-child .random-classname-2813291 .random-classname-aa50ce55 .random-classname-9019e459 [data-random-attr-1a64b4d7] .random-classname-85d0c1fb', + '.random-classname-277f4b7d .random-classname-56d12e9', + '.random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-21156103 > .random-classname-a809fae7', + '.random-classname-9035e10b', + '.random-classname-9035e10b .random-classname-f29ad75', + '::before > .random-classname-9035e10b :nth-child(13) .random-classname-9f388056', + '.random-classname-f29ad75 .random-classname-9f388056 .random-classname-a99d80ac', + '.random-classname-b99668a0', + '.random-classname-f29ad75 > .random-classname-1b5e1084 .random-classname-a99d80ac :nth-child(10) .random-classname-ab84534d', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-56d12e9 ::before > .random-classname-9035e10b :nth-child(13) > .random-classname-9f388056 .random-classname-a99d80ac .random-classname-b99668a0 .random-classname-ab84534d .random-classname-4c7bfcd1', + '.random-classname-ab84534d > ::slotted > .random-classname-b61d1c95', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-435bc298', + '.random-classname-f2123f8a', + '.random-classname-20ded65e >', + '.random-classname-f061b34c .random-classname-66057540', + '.random-classname-f2123f8a > .random-classname-20ded65e :not(::before) .random-classname-ce4abb27', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d > .random-classname-435bc298 .random-classname-f2123f8a .random-classname-f061b34c [data-random-attr-c1d7c74=random-attr-value-c0d87d43] > .random-classname-ce4abb27 > .random-classname-c36fb9f1', + '.random-classname-95a7faf', + '.random-classname-b20cf1fd', + '.random-classname-f29fb85b', + '.random-classname-f2123f8a .random-classname-f061b34c :not([data-random-attr-c1d7c74=random-attr-value-c0d87d43]) > .random-classname-ce4abb27 .random-classname-c36fb9f1 > [data-random-attr-a13957b9] .random-classname-b20cf1fd > .random-classname-783eae81 .random-classname-8ccddbbf', + '.random-classname-f999b347', + '.random-classname-e2bd0711', + '.random-classname-f75bef6b', + '.random-classname-9973aad5', + '.random-classname-a7a87bcf', + '.random-classname-89bf651d', + '.random-classname-89bf651d .random-classname-3453c3a1', + '.random-classname-40a6865', + '.random-classname-98cb5fdf', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-e113d983', + '::before .random-classname-7ef38bd3 .random-classname-7a67bb67 >', + '.random-classname-9cabe431', + ], +}; diff --git a/apps/stress-test/src/fixtures/s_1.js b/apps/stress-test/src/fixtures/s_1.js new file mode 100644 index 0000000000000..f8fb3e84fba98 --- /dev/null +++ b/apps/stress-test/src/fixtures/s_1.js @@ -0,0 +1,4316 @@ +/* eslint-disable @fluentui/max-len */ +export default { + tree: { + value: { + name: '0-0', + classNames: ['.random-classname-7134e52f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '1-11', + classNames: ['.random-classname-7ef38bd3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-3', + classNames: ['.random-classname-277f4b7d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-7', + classNames: ['.random-classname-d7d1eab7', '.random-classname-fa45e001'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-9', + classNames: ['.random-classname-63271ac5', '.random-classname-57d7a13f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-b1643fc9', '.random-classname-6c6280e3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-d75c28c7', '.random-classname-5e569891'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-1406fceb'], + attributes: [ + { + key: 'data-random-attr-73399455', + selector: '[data-random-attr-73399455]', + }, + ], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-6082f9f3', '.random-classname-91c27e9d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-338e2ad7'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-f5c697fb'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-b1f0b1e5'], + attributes: [ + { + key: 'data-random-attr-bc3be55f', + selector: '[data-random-attr-bc3be55f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-c710b8e9'], + attributes: [ + { + key: 'data-random-attr-15c5f703', + selector: '[data-random-attr-15c5f703]', + }, + ], + siblings: [':nth-child(3)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-8429335c', '.random-classname-d51820ee'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-11d8bc02'], + attributes: [], + siblings: [':nth-child(14)'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-8a2d7af7'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-c66fda1b'], + attributes: [ + { + key: 'data-random-attr-9c70d905', + selector: '[data-random-attr-9c70d905]', + }, + ], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-9eb77d23', '.random-classname-8412594d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-11', + classNames: ['.random-classname-835cc907'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-f25762d1', '.random-classname-f3b812b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-d66be295'], + attributes: [ + { + key: 'data-random-attr-8d8e498f', + selector: '[data-random-attr-8d8e498f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-8880633'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-f6b7db17', '.random-classname-37740f61'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-7b6f9025', '.random-classname-b6db9d9f'], + attributes: [ + { + key: 'data-random-attr-aeb85b29', + selector: '[data-random-attr-aeb85b29]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-7fbf1343'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-8307f46d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-6c8e1ff1', '.random-classname-a855db4b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-f834e1b5', '.random-classname-c5ee35af'], + attributes: [], + siblings: [':nth-child(11)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-f8b45d96'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-3ad3d938', '.random-classname-cb7aaf2a'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-e45f6ffe', '.random-classname-a8205fe0'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-4cb2c114', '.random-classname-2f14cf66'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '4-11', + classNames: ['.random-classname-ba1dd5fa'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-ef1e1bce'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-a87bf4e2'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-ec960a64'], + attributes: [], + siblings: [':nth-child(12)'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-7426a9a1', '.random-classname-6c04007b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-2e08ae65'], + attributes: [ + { + key: 'data-random-attr-2cf95df', + selector: '[data-random-attr-2cf95df]', + }, + ], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-3904daad', '.random-classname-af2b167'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-5532bf8b', '.random-classname-260e8ff5'], + attributes: [ + { + key: 'data-random-attr-23413def', + selector: '[data-random-attr-23413def]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-2ec71093', '.random-classname-87d6ee3d'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-e82d829b'], + attributes: [ + { + key: 'data-random-attr-67331585', + selector: '[data-random-attr-67331585]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-6bdd29ff'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-10308689'], + attributes: [ + { + key: 'data-random-attr-24aa35a3', + selector: '[data-random-attr-24aa35a3]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-5', + classNames: ['.random-classname-79c25cd'], + attributes: [ + { + key: 'data-random-attr-1ad2c987', + selector: '[data-random-attr-1ad2c987]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-100549ab', '.random-classname-3baf3f15'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-58445a0f', '.random-classname-29150119'], + attributes: [ + { + key: 'data-random-attr-6f0adeb3', + selector: '[data-random-attr-6f0adeb3]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-ecaffb97'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-5fef83e1'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-5ffc0ca5', '.random-classname-d057ce1f'], + attributes: [ + { + key: 'data-random-attr-3f225fa9', + selector: '[data-random-attr-3f225fa9]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-11', + classNames: ['.random-classname-99a400ed'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-72b8b471'], + attributes: [ + { + key: 'data-random-attr-3cfe3cb', + selector: '[data-random-attr-3cfe3cb]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-3838862f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-4821a239', '.random-classname-9748bcd3'], + attributes: [ + { + key: 'data-random-attr-8d58a47d', + selector: '[data-random-attr-8d58a47d]', + }, + ], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-f24b6db'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-8047823f'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-94e46c0d', '.random-classname-76c829c7'], + attributes: [], + siblings: [':nth-child(3)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-a446ca4e'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-f47c4b62'], + attributes: [ + { + key: 'data-random-attr-a3e524e4', + value: 'random-attr-value-7608aaf3', + selector: '[data-random-attr-a3e524e4=random-attr-value-7608aaf3]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-8aa0579d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-cd0e9e21', '.random-classname-750268fb'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-e789aae5'], + attributes: [ + { + key: 'data-random-attr-8fb4465f', + selector: '[data-random-attr-8fb4465f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-5', + classNames: ['.random-classname-dc64c1e9', '.random-classname-557be803'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-4325672d'], + attributes: [], + siblings: [':nth-child(9)'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-ce52485c', '.random-classname-25c2fdee'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-650ae902'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-db0b384'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-5b6f1cf8', '.random-classname-305368ea'], + attributes: [], + siblings: [':nth-child(8)'], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-d6a61a7f'], + attributes: [ + { + key: 'data-random-attr-e1454b09', + selector: '[data-random-attr-e1454b09]', + }, + ], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-9339ca07'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-f990bd1'], + attributes: [ + { + key: 'data-random-attr-f050122b', + selector: '[data-random-attr-f050122b]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-220b6a8f', '.random-classname-36ce599'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-a52eb733'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-7', + classNames: ['.random-classname-c5256ddd'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-cdc3f861', '.random-classname-9729fd3b'], + attributes: [ + { + key: 'data-random-attr-daf18925', + selector: '[data-random-attr-daf18925]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-f124fe9f', '.random-classname-c0056429'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-92d60443', '.random-classname-13c90d6d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-787c48f1', '.random-classname-174aec4b'], + attributes: [ + { + key: 'data-random-attr-2191ab5', + selector: '[data-random-attr-2191ab5]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-7ed7c6b9'], + attributes: [], + siblings: [':nth-child(11)'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-6f6f7c2a', '.random-classname-d7b838ec'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-493a84e0', '.random-classname-d7b26112'], + attributes: [ + { + key: 'data-random-attr-a0e4b614', + value: 'random-attr-value-508c2a63', + selector: '[data-random-attr-a0e4b614=random-attr-value-508c2a63]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-2', + classNames: ['.random-classname-fdbbb88d'], + attributes: [ + { + key: 'data-random-attr-4867aa47', + selector: '[data-random-attr-4867aa47]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-2', + classNames: ['.random-classname-32e5d66b', '.random-classname-fe8129d5'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-a18e37d9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '3-6', + classNames: ['.random-classname-877cc41d', '.random-classname-10800c57'], + attributes: [], + siblings: [':nth-child(13)'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-8', + classNames: ['.random-classname-bec0989e'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-8', + classNames: ['.random-classname-307456b2'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-8', + classNames: ['.random-classname-533b0c06', '.random-classname-9ced4128'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '4-8', + classNames: ['.random-classname-d70e52dc', '.random-classname-49abec6e'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-8', + classNames: ['.random-classname-25af7f82', '.random-classname-cc6e0e04'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '4-8', + classNames: ['.random-classname-87d8df78'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-8', + classNames: ['.random-classname-900acf6a'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-8', + classNames: ['.random-classname-c55b743e', '.random-classname-6e062e20'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-6', + classNames: ['.random-classname-f5d15ba6', '.random-classname-c1c551c8'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-f7b7063a', '.random-classname-28101d7c'], + attributes: [ + { + key: 'data-random-attr-1bac300e', + value: 'random-attr-value-f0b0f815', + selector: '[data-random-attr-1bac300e=random-attr-value-f0b0f815]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-6', + classNames: ['.random-classname-adfdca19', '.random-classname-ccf38fb3'], + attributes: [], + siblings: [':nth-child(9)'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-6', + classNames: ['.random-classname-39ec310a', '.random-classname-60c20cc'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-6', + classNames: ['.random-classname-21bb1fde', '.random-classname-b5dbfac0'], + attributes: [ + { + key: 'data-random-attr-7da5b1f2', + value: 'random-attr-value-36168a9', + selector: '[data-random-attr-7da5b1f2=random-attr-value-36168a9]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-6', + classNames: ['.random-classname-e37719ed', '.random-classname-351972a7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-6', + classNames: ['.random-classname-8fd8dd71'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-6', + classNames: ['.random-classname-c4c6f4cb', '.random-classname-7808b735'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-6', + classNames: ['.random-classname-7d80272f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-6', + classNames: ['.random-classname-fa46eb39', '.random-classname-9021edd3'], + attributes: [], + siblings: [':nth-child(3)'], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-99e3636c'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-6', + classNames: ['.random-classname-9c79b7e'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-3ee51792', '.random-classname-66f53094'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-64a36308'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-d083697a'], + attributes: [ + { + key: 'data-random-attr-30a8a2bc', + value: 'random-attr-value-ca321eeb', + selector: '[data-random-attr-30a8a2bc=random-attr-value-ca321eeb]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-6', + classNames: ['.random-classname-4b55e34f'], + attributes: [ + { + key: 'data-random-attr-b2fb9c59', + selector: '[data-random-attr-b2fb9c59]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-5', + classNames: ['.random-classname-1ca2309d', '.random-classname-3532acd7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-bbe98721'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-dac6a3e5'], + attributes: [ + { + key: 'data-random-attr-8470a75f', + selector: '[data-random-attr-8470a75f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-579ccae9', '.random-classname-c8b5d903'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-1e35f2e7', '.random-classname-7fc087b1'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-63e5590b', '.random-classname-1d1fe575'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '2-7', + classNames: ['.random-classname-8363dd79', '.random-classname-394cda13'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-2292f3bd'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-3642fcf7', '.random-classname-b379ec41'], + attributes: [ + { + key: 'data-random-attr-18ec7c1b', + selector: '[data-random-attr-18ec7c1b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-4aefcb05', '.random-classname-c8aafb7f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-9f59d409'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-7', + classNames: ['.random-classname-21eb448', '.random-classname-9e1f0cba'], + attributes: [ + { + key: 'data-random-attr-511267fc', + value: 'random-attr-value-d768a32b', + selector: '[data-random-attr-511267fc=random-attr-value-d768a32b]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '3-5', + classNames: ['.random-classname-bacc8b8f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-7', + classNames: ['.random-classname-7ac7ae99'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-4bf046dd'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-1dbe5d17', '.random-classname-c177e161'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-18aace3b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-5c178225'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-db366d29'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-8ceeb327', '.random-classname-cace71f1'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-26a153b5'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-547d77af'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-75c00653'], + attributes: [ + { + key: 'data-random-attr-dc8229fd', + selector: '[data-random-attr-dc8229fd]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-8aaccd37'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-1205305b'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-707a9649', '.random-classname-5379b63'], + attributes: [], + siblings: [':nth-child(3)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-e68d6d3c', '.random-classname-970ed5ce'], + attributes: [ + { + key: 'data-random-attr-9c015630', + value: 'random-attr-value-1b8773cf', + selector: '[data-random-attr-9c015630=random-attr-value-1b8773cf]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-7', + classNames: ['.random-classname-fa200d9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-8008b473', '.random-classname-bc109d1d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-75dc7ba1', '.random-classname-d483a27b'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-286e4f69', '.random-classname-6aa45183'], + attributes: [ + { + key: 'data-random-attr-54bd0cad', + selector: '[data-random-attr-54bd0cad]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-53429c31'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-7acd01f5'], + attributes: [], + siblings: [':nth-child(5)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-cd17c304', '.random-classname-3af556d6'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-2709c6a'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-5', + classNames: ['.random-classname-190d832c', '.random-classname-51ff913e'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-8d178952'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-9bf918a6'], + attributes: [], + siblings: [':nth-child(12)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-bab70951', '.random-classname-a2366bab'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-8dc69c0f'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-7', + classNames: ['.random-classname-3b43335d'], + attributes: [ + { + key: 'data-random-attr-247a7d97', + selector: '[data-random-attr-247a7d97]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-870cb6bb'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-7', + classNames: ['.random-classname-9372901f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-198471a9', '.random-classname-c48fedc3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-4b6e32ed', '.random-classname-1c34f3a7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-3b5d0671', '.random-classname-75c205cb'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-3fe2f035', '.random-classname-510bc82f'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-de77567d', '.random-classname-2d852db7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-a1b11b01'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-7', + classNames: ['.random-classname-dc2085c5', '.random-classname-3ef3443f'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '3-3', + classNames: ['.random-classname-4e1ed3e3', '.random-classname-ac779e0d'], + attributes: [ + { + key: 'data-random-attr-dcec2bc7', + selector: '[data-random-attr-dcec2bc7]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-737c9391', '.random-classname-984dafeb'], + attributes: [], + siblings: [':nth-child(13)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-2c138ee4', '.random-classname-25736db6'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-d5c0fe58', '.random-classname-4a5fb14a'], + attributes: [ + { + key: 'data-random-attr-3262cb0c', + value: 'random-attr-value-fc860afb', + selector: '[data-random-attr-3262cb0c=random-attr-value-fc860afb]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-aa71085f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-c8b8d3e9', '.random-classname-7f73ca03'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-ed4273e7', '.random-classname-e55db0b1'], + attributes: [ + { + key: 'data-random-attr-eb616a0b', + selector: '[data-random-attr-eb616a0b]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-6609506f'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-c94b0b13', '.random-classname-42fd4cbd'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-17055541', '.random-classname-e1b0cd1b'], + attributes: [ + { + key: 'data-random-attr-19a54405', + selector: '[data-random-attr-19a54405]', + }, + ], + siblings: [':nth-child(7)'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-7', + classNames: ['.random-classname-889042d4', '.random-classname-f0f07726'], + attributes: [ + { + key: 'data-random-attr-3b307948', + value: 'random-attr-value-663fcc07', + selector: '[data-random-attr-3b307948=random-attr-value-663fcc07]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '3-5', + classNames: ['.random-classname-d485342b', '.random-classname-b8670d95'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-5', + classNames: ['.random-classname-c3067799', '.random-classname-42081933'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-dfdf1fdd', '.random-classname-14679e17'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-8ee17b25'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-e583c09f', '.random-classname-904b7629'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-c7b73f6d', '.random-classname-a4ec3427'], + attributes: [ + { + key: 'data-random-attr-f3849af1', + selector: '[data-random-attr-f3849af1]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-f5cd8cb5'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-3cea58b9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-123582fd'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-5', + classNames: ['.random-classname-130fcf81', '.random-classname-868a815b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-3128b4bf', '.random-classname-eec1f49'], + attributes: [ + { + key: 'data-random-attr-63670c63', + selector: '[data-random-attr-63670c63]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-8972ea8d', '.random-classname-4a4fac47'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-85a6811', '.random-classname-931cf86b'], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-9f70fbe2', '.random-classname-8adba964'], + attributes: [ + { + key: 'data-random-attr-ed12ec36', + value: 'random-attr-value-e1c8761d', + selector: '[data-random-attr-ed12ec36=random-attr-value-e1c8761d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-d0708e57'], + attributes: [ + { + key: 'data-random-attr-48cd64a1', + selector: '[data-random-attr-48cd64a1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-a149737b'], + attributes: [], + siblings: [':nth-child(11)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-7fca30b2'], + attributes: [ + { + key: 'data-random-attr-f23a46b4', + value: 'random-attr-value-a9244283', + selector: '[data-random-attr-f23a46b4=random-attr-value-a9244283]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-3b723467', '.random-classname-4811c531'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-73223af5', '.random-classname-7eb120ef'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-5', + classNames: ['.random-classname-39fba393', '.random-classname-fa5ff93d'], + attributes: [ + { + key: 'data-random-attr-e959e77', + selector: '[data-random-attr-e959e77]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-4f4759b', '.random-classname-ddd8085'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-d0442189'], + attributes: [ + { + key: 'data-random-attr-e54f88a3', + selector: '[data-random-attr-e54f88a3]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-c693f0cd', '.random-classname-a15bcc87'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-a8f2b251'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-7', + classNames: ['.random-classname-5054fcab', '.random-classname-7ca06a15'], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: [], + }, + children: [ + { + value: { + name: '3-3', + classNames: ['.random-classname-e1d596a4', '.random-classname-cf538b76'], + attributes: [ + { + key: 'data-random-attr-4765a218', + value: 'random-attr-value-2f85be97', + selector: '[data-random-attr-4765a218=random-attr-value-2f85be97]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-4', + classNames: ['.random-classname-a91387bb'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-4', + classNames: ['.random-classname-67e3f7a5'], + attributes: [], + siblings: [':nth-child(9)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-4', + classNames: ['.random-classname-ade483f4'], + attributes: [], + siblings: [':nth-child(6)'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-4', + classNames: ['.random-classname-5452f71'], + attributes: [ + { + key: 'data-random-attr-26c116cb', + selector: '[data-random-attr-26c116cb]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-c2db692f', '.random-classname-ff3d7d39'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-e9bcaf7d'], + attributes: [ + { + key: 'data-random-attr-248eeb7', + selector: '[data-random-attr-248eeb7]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-92ea9db', '.random-classname-f110fec5'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-f52f253f'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-e71044e3', '.random-classname-2077370d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-2', + classNames: ['.random-classname-c3a42cc7', '.random-classname-1b513c91'], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-2', + classNames: ['.random-classname-e5efedb0', '.random-classname-1a9f5262'], + attributes: [ + { + key: 'data-random-attr-ef88c3e4', + value: 'random-attr-value-5b1bdf3', + selector: '[data-random-attr-ef88c3e4=random-attr-value-5b1bdf3]', + }, + ], + siblings: [':nth-child(13)'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-7', + classNames: ['.random-classname-bcd4fe4a', '.random-classname-c17ea00c'], + attributes: [ + { + key: 'data-random-attr-9c0c211e', + value: 'random-attr-value-3a2c95e5', + selector: '[data-random-attr-9c0c211e=random-attr-value-3a2c95e5]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '3-5', + classNames: ['.random-classname-bfb8dce9', '.random-classname-89b5bb03'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-2612f4e7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-8d5ed9b1', '.random-classname-36e17b0b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-5', + classNames: ['.random-classname-c1e9f16f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-26cc6f79', '.random-classname-9dcd3c13'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-e8ba5bd'], + attributes: [ + { + key: 'data-random-attr-4d687ef7', + selector: '[data-random-attr-4d687ef7]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-7f791e1b', '.random-classname-f7febd05'], + attributes: [ + { + key: 'data-random-attr-5680bd7f', + selector: '[data-random-attr-5680bd7f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-832ee609', '.random-classname-dce94123'], + attributes: [], + siblings: [':nth-child(3)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-e3cd91fc', '.random-classname-1d9c188e'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-e3a95da2'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-64f689f6', '.random-classname-cf75a498'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-2c60718a'], + attributes: [ + { + key: 'data-random-attr-77f8b54c', + value: 'random-attr-value-20b8703b', + selector: '[data-random-attr-77f8b54c=random-attr-value-20b8703b]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-bf99219f'], + attributes: [ + { + key: 'data-random-attr-6f447f29', + selector: '[data-random-attr-6f447f29]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-d932d743'], + attributes: [ + { + key: 'data-random-attr-ae4586d', + selector: '[data-random-attr-ae4586d]', + }, + ], + siblings: [':nth-child(3)'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-4319ec9c'], + attributes: [ + { + key: 'data-random-attr-aa956c2e', + value: 'random-attr-value-ff9dc5b5', + selector: '[data-random-attr-aa956c2e=random-attr-value-ff9dc5b5]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-a049a1b9', '.random-classname-8d826853'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-b8344f37', '.random-classname-f3583881'], + attributes: [ + { + key: 'data-random-attr-9413d25b', + selector: '[data-random-attr-9413d25b]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-d0695bf', '.random-classname-2941a849'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-6384838d', '.random-classname-ae9ad47'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '2-1', + classNames: ['.random-classname-1a3e896b', '.random-classname-c06354d5'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '3-3', + classNames: ['.random-classname-da7592d9', '.random-classname-5e2c1673'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-88a44f1d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-718ecf57'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-bd224da1'], + attributes: [], + siblings: [':nth-child(5)'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-f8231db2', '.random-classname-321abbb4'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-31cac306', '.random-classname-37911028'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-38a2339a', '.random-classname-149f91dc'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-e932836e', '.random-classname-2f474d0'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-73272d04'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '2-3', + classNames: ['.random-classname-8b18366a', '.random-classname-3b0a2d2c'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-304b9d20', '.random-classname-94b26352'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-af6492a6'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-33b8a0c8'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-e9ba2d3a', '.random-classname-9628dc7c'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-29ae1970', '.random-classname-fce33422'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-5579cba4'], + attributes: [ + { + key: 'data-random-attr-c1c68876', + value: 'random-attr-value-8168e55d', + selector: '[data-random-attr-c1c68876=random-attr-value-8168e55d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-4c4f27e1'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-a1e58bb'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-1323f0a5', '.random-classname-4b9d521f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-7b7683a9'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-b5c864ed', '.random-classname-abb7f5a7'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-e7c427cb', '.random-classname-b7836235'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-e2ef0a2f', '.random-classname-720ec639'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-4c26087d', '.random-classname-4dd0afb7'], + attributes: [ + { + key: 'data-random-attr-8641ed01', + selector: '[data-random-attr-8641ed01]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-41a577c5', '.random-classname-faaf063f'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '2-1', + classNames: ['.random-classname-b875b208'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-3', + classNames: ['.random-classname-2bd907a'], + attributes: [ + { + key: 'data-random-attr-c71061bc', + value: 'random-attr-value-6a90d1eb', + selector: '[data-random-attr-c71061bc=random-attr-value-6a90d1eb]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-2f7e464f', '.random-classname-7d38f759'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-97fbb9d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-80d24221', '.random-classname-5019acfb'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-ca3dca5f', '.random-classname-cc9ce5e9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-f77bac03'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-d8a775e7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-7c402b1', '.random-classname-56658c0b'], + attributes: [ + { + key: 'data-random-attr-6e159075', + selector: '[data-random-attr-6e159075]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-d00e926f'], + attributes: [ + { + key: 'data-random-attr-ded6b879', + selector: '[data-random-attr-ded6b879]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-3', + classNames: ['.random-classname-c6d36d13', '.random-classname-153dfebd'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: [], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-c515d7ac'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-fe40afa0', '.random-classname-2a2199d2'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-a6d00348'], + attributes: [ + { + key: 'data-random-attr-579033ba', + value: 'random-attr-value-3087afd1', + selector: '[data-random-attr-579033ba=random-attr-value-3087afd1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-3', + classNames: ['.random-classname-50ca562b', '.random-classname-a427f95'], + attributes: [ + { + key: 'data-random-attr-3ea7ee8f', + selector: '[data-random-attr-3ea7ee8f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-2', + classNames: ['.random-classname-6300999', '.random-classname-78f17b33'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-2', + classNames: ['.random-classname-18062017'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-6ceb9c61'], + attributes: [ + { + key: 'data-random-attr-c745413b', + selector: '[data-random-attr-c745413b]', + }, + ], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-2', + classNames: ['.random-classname-8218829', '.random-classname-2a59c843'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-2', + classNames: ['.random-classname-5435716d'], + attributes: [ + { + key: 'data-random-attr-ae333627', + selector: '[data-random-attr-ae333627]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-81cecf1'], + attributes: [ + { + key: 'data-random-attr-8347304b', + selector: '[data-random-attr-8347304b]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-b9525aaf'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-f6299953', '.random-classname-bb0834fd'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '3-2', + classNames: ['.random-classname-f304a181', '.random-classname-4aa1235b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-2', + classNames: ['.random-classname-5d4d3445', '.random-classname-402876bf'], + attributes: [ + { + key: 'data-random-attr-4f7b3149', + selector: '[data-random-attr-4f7b3149]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-2', + classNames: ['.random-classname-5c51ee63', '.random-classname-b5ba1c8d'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-2', + classNames: ['.random-classname-9b641a6b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-4215d6cf', '.random-classname-57355bd9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-9d03c773', '.random-classname-40a4281d'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-8e6f0c9e', '.random-classname-2bb84580'], + attributes: [ + { + key: 'data-random-attr-10f00ab2', + value: 'random-attr-value-c8446a69', + selector: '[data-random-attr-10f00ab2=random-attr-value-c8446a69]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-c8b02483', '.random-classname-d25f57ad'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-3', + classNames: ['.random-classname-249b3667', '.random-classname-60dc1731'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-2', + classNames: ['.random-classname-caa9148b'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-53715cf9'], + attributes: [], + siblings: [':nth-child(13)'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-415a036a'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-3f23e83e'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-2', + classNames: ['.random-classname-c82dd052', '.random-classname-d45c2754'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-bca84fa6', '.random-classname-a55c65c8'], + attributes: [ + { + key: 'data-random-attr-e1a33a3a', + value: 'random-attr-value-6a960451', + selector: '[data-random-attr-e1a33a3a=random-attr-value-6a960451]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-4b1fdc15'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-ba88ee19', '.random-classname-f5be53b3'], + attributes: [ + { + key: 'data-random-attr-4c31be5d', + selector: '[data-random-attr-4c31be5d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-73e84097', '.random-classname-f4e110e1'], + attributes: [ + { + key: 'data-random-attr-ba2d29bb', + selector: '[data-random-attr-ba2d29bb]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-2b98b31f', '.random-classname-e7458ca9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-2', + classNames: ['.random-classname-e6bec0c3', '.random-classname-d82b7ded'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-741f76a7'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-2', + classNames: ['.random-classname-c8cb38cb', '.random-classname-87499b35'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-efc40f39', '.random-classname-78aeb1d3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-95b3617d', '.random-classname-201c70b7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-cba05601', '.random-classname-3a494bdb'], + attributes: [ + { + key: 'data-random-attr-5dddf0c5', + selector: '[data-random-attr-5dddf0c5]', + }, + ], + siblings: [':nth-child(13)'], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-c18d5ee6', '.random-classname-480e7708'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '2-3', + classNames: ['.random-classname-9c289b4e'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-e7faac62'], + attributes: [ + { + key: 'data-random-attr-52f2de4', + value: 'random-attr-value-c7611ff3', + selector: '[data-random-attr-52f2de4=random-attr-value-c7611ff3]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-e1abb0d7'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-502287e5', '.random-classname-e40a2b5f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-7f64eee9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-d8c59d03', '.random-classname-3d9e42d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-e48d2bb1', '.random-classname-59ed9d0b'], + attributes: [ + { + key: 'data-random-attr-6104c975', + selector: '[data-random-attr-6104c975]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-45c50179', '.random-classname-545d9e13'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-4f9e00f7', '.random-classname-5ff9041'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-239daf05', '.random-classname-31667f7f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-693f809', '.random-classname-dd1a2323'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-5306cf07', '.random-classname-73bd58d1'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: [], + }, + children: [ + { + value: { + name: '2-2', + classNames: ['.random-classname-477830f0', '.random-classname-ebbeb7a2'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '3-2', + classNames: ['.random-classname-c74483f6'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-6ac7ae98'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-2', + classNames: ['.random-classname-ce54625e'], + attributes: [], + siblings: [':nth-child(8)'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-2', + classNames: ['.random-classname-3304b943', '.random-classname-33aa8a6d'], + attributes: [ + { + key: 'data-random-attr-bf7cb727', + selector: '[data-random-attr-bf7cb727]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-2', + classNames: ['.random-classname-13ff15f1', '.random-classname-9a50414b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-2', + classNames: ['.random-classname-32a37b5'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '3-3', + classNames: ['.random-classname-3fb433b9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-754ca53'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-e0cbd137', '.random-classname-a2150a81'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-f557ad45'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-da8e57bf'], + attributes: [], + siblings: [':nth-child(9)'], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-a28a5988'], + attributes: [ + { + key: 'data-random-attr-1a9223fa', + value: 'random-attr-value-539a6311', + selector: '[data-random-attr-1a9223fa=random-attr-value-539a6311]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-268dab6b'], + attributes: [ + { + key: 'data-random-attr-c0d8c6d5', + selector: '[data-random-attr-c0d8c6d5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-1', + classNames: ['.random-classname-1f77f7cf', '.random-classname-f8d924d9'], + attributes: [ + { + key: 'data-random-attr-265f7873', + selector: '[data-random-attr-265f7873]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-86175157'], + attributes: [ + { + key: 'data-random-attr-c9f81fa1', + selector: '[data-random-attr-c9f81fa1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-29b2e67b', '.random-classname-91268465'], + attributes: [ + { + key: 'data-random-attr-fa69dbdf', + selector: '[data-random-attr-fa69dbdf]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-c9bc1583', '.random-classname-85dd70ad'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '2-1', + classNames: ['.random-classname-e633258b'], + attributes: [ + { + key: 'data-random-attr-53f9e5f5', + selector: '[data-random-attr-53f9e5f5]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-7d1a5f9'], + attributes: [ + { + key: 'data-random-attr-75d43693', + selector: '[data-random-attr-75d43693]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-792d043d', '.random-classname-dbe5e177'], + attributes: [ + { + key: 'data-random-attr-1220c4c1', + selector: '[data-random-attr-1220c4c1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + selectors: [ + '::before >', + '.random-classname-7134e52f .random-classname-7ef38bd3', + '.random-classname-277f4b7d', + ':first-child', + '::before .random-classname-7ef38bd3 > .random-classname-277f4b7d :first-child .random-classname-57d7a13f >', + '.random-classname-b1643fc9', + '.random-classname-6c6280e3', + '::before', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d > .random-classname-fa45e001 .random-classname-5e569891', + '.random-classname-1406fceb', + '[data-random-attr-73399455]', + ':last-child', + ':first-child .random-classname-91c27e9d', + ':first-child .random-classname-338e2ad7', + ':first-child .random-classname-f5c697fb', + '.random-classname-b1f0b1e5', + '.random-classname-7ef38bd3 > .random-classname-277f4b7d > .random-classname-fa45e001 ::placeholder >', + '.random-classname-8429335c', + '.random-classname-d51820ee', + '::after', + '.random-classname-277f4b7d > .random-classname-8429335c ::before >', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-d51820ee .random-classname-8a2d7af7 >', + '.random-classname-277f4b7d > .random-classname-d51820ee ::before', + '.random-classname-9eb77d23', + '.random-classname-8412594d', + '.random-classname-835cc907', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d :not(.random-classname-9eb77d23) .random-classname-f25762d1', + '.random-classname-d66be295', + '[data-random-attr-8d8e498f]', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-9eb77d23 .random-classname-8880633', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-8412594d ::slotted', + '.random-classname-9eb77d23 > .random-classname-b6db9d9f >', + '::before .random-classname-7ef38bd3 > .random-classname-277f4b7d .random-classname-8412594d > .random-classname-7fbf1343', + '.random-classname-8307f46d', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-8412594d > .random-classname-a855db4b', + '.random-classname-9eb77d23 .random-classname-c5ee35af', + '.random-classname-277f4b7d .random-classname-8412594d .random-classname-f8b45d96', + '.random-classname-e45f6ffe >', + '.random-classname-277f4b7d :not(::after) >', + '.random-classname-277f4b7d > .random-classname-4cb2c114 > ::after >', + '.random-classname-ef1e1bce >', + '.random-classname-7ef38bd3 .random-classname-277f4b7d :not(.random-classname-2f14cf66) .random-classname-a87bf4e2', + '.random-classname-2f14cf66 :nth-child(12)', + ':not(.random-classname-4cb2c114) .random-classname-6c04007b', + '.random-classname-2e08ae65', + '[data-random-attr-2cf95df]', + '::slotted', + '.random-classname-3904daad', + '.random-classname-af2b167', + '.random-classname-7ef38bd3 .random-classname-277f4b7d > .random-classname-2f14cf66 .random-classname-5532bf8b', + '.random-classname-2ec71093', + '.random-classname-87d6ee3d', + '.random-classname-7134e52f > .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-2f14cf66 .random-classname-e82d829b', + '.random-classname-277f4b7d :not(.random-classname-4cb2c114) > .random-classname-6bdd29ff', + '.random-classname-277f4b7d :not(.random-classname-10308689)', + '.random-classname-79c25cd', + '[data-random-attr-1ad2c987]', + '.random-classname-10308689 .random-classname-100549ab >', + '.random-classname-277f4b7d > [data-random-attr-24aa35a3] .random-classname-29150119', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-10308689 :not(.random-classname-ecaffb97)', + '[data-random-attr-24aa35a3] > ::slotted', + '[data-random-attr-3f225fa9]', + '::before > .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-d057ce1f ::slotted >', + '.random-classname-3838862f', + '.random-classname-277f4b7d [data-random-attr-3f225fa9] :last-child', + '::before .random-classname-7ef38bd3 > .random-classname-277f4b7d .random-classname-d057ce1f ::before', + '.random-classname-8047823f', + '.random-classname-7ef38bd3 .random-classname-277f4b7d > ::slotted :nth-child(3)', + '.random-classname-a446ca4e', + '.random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-d057ce1f [data-random-attr-a3e524e4=random-attr-value-7608aaf3]', + '.random-classname-7ef38bd3 .random-classname-277f4b7d > .random-classname-5ffc0ca5 > .random-classname-8aa0579d', + '.random-classname-cd0e9e21', + '.random-classname-750268fb', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-e789aae5', + '[data-random-attr-8fb4465f] .random-classname-557be803 >', + '.random-classname-4325672d', + ':nth-child(9)', + '[data-random-attr-8fb4465f] > ::after >', + '.random-classname-7134e52f .random-classname-7ef38bd3 :not(.random-classname-e789aae5) .random-classname-ce52485c .random-classname-650ae902 >', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-e789aae5 > ::after .random-classname-5b6f1cf8', + '.random-classname-7ef38bd3 [data-random-attr-8fb4465f] ::before >', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-e789aae5 :first-child .random-classname-9339ca07', + '.random-classname-f990bd1', + '[data-random-attr-f050122b]', + '.random-classname-d6a61a7f .random-classname-220b6a8f', + '::before > .random-classname-7ef38bd3 [data-random-attr-8fb4465f] .random-classname-a52eb733', + '.random-classname-c5256ddd', + '[data-random-attr-daf18925] >', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-e789aae5 .random-classname-a52eb733 .random-classname-f124fe9f', + '.random-classname-92d60443 >', + '.random-classname-a52eb733 > [data-random-attr-2191ab5]', + '.random-classname-a52eb733 :nth-child(11)', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-e789aae5 .random-classname-a52eb733 .random-classname-d7b838ec >', + '[data-random-attr-8fb4465f] .random-classname-d7b26112', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-e789aae5 .random-classname-d7b26112 ::before', + '.random-classname-32e5d66b', + '.random-classname-fe8129d5', + '.random-classname-7134e52f > .random-classname-7ef38bd3 .random-classname-a18e37d9', + '::before .random-classname-7ef38bd3 ::slotted .random-classname-877cc41d >', + '.random-classname-7134e52f .random-classname-7ef38bd3 > .random-classname-a18e37d9 :nth-child(13) .random-classname-bec0989e', + ':not(.random-classname-877cc41d) :first-child >', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-a18e37d9 .random-classname-877cc41d > .random-classname-533b0c06', + ':not(::slotted) > :nth-child(13) ::after', + '.random-classname-7ef38bd3 .random-classname-a18e37d9 > :not(.random-classname-10800c57) ::placeholder', + '.random-classname-87d8df78', + ':nth-child(13) .random-classname-900acf6a', + '.random-classname-c55b743e', + '.random-classname-6e062e20', + '.random-classname-7ef38bd3 .random-classname-a18e37d9 .random-classname-f5d15ba6', + '::before .random-classname-7ef38bd3 ::slotted > .random-classname-c1c551c8 .random-classname-28101d7c', + '.random-classname-a18e37d9 .random-classname-adfdca19', + '::slotted .random-classname-ccf38fb3 .random-classname-60c20cc', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-a18e37d9 :nth-child(9) [data-random-attr-7da5b1f2=random-attr-value-36168a9]', + '.random-classname-7ef38bd3 ::slotted > :nth-child(9) .random-classname-351972a7', + '.random-classname-8fd8dd71', + '.random-classname-adfdca19 .random-classname-7808b735', + '.random-classname-7d80272f', + '.random-classname-fa46eb39', + '.random-classname-9021edd3', + ':nth-child(3)', + '::placeholder', + '.random-classname-99e3636c', + '::slotted ::after', + '.random-classname-3ee51792', + '.random-classname-66f53094', + '.random-classname-64a36308', + '[data-random-attr-30a8a2bc=random-attr-value-ca321eeb]', + '.random-classname-4b55e34f', + '[data-random-attr-b2fb9c59]', + '.random-classname-1ca2309d', + '.random-classname-3532acd7', + '.random-classname-bbe98721', + '.random-classname-a18e37d9 [data-random-attr-b2fb9c59] > .random-classname-dac6a3e5', + '::before .random-classname-7ef38bd3 ::slotted .random-classname-4b55e34f > .random-classname-c8b5d903', + ':not(.random-classname-a18e37d9) .random-classname-4b55e34f :not(.random-classname-1e35f2e7)', + '.random-classname-1d1fe575', + '.random-classname-7134e52f .random-classname-1d1fe575 .random-classname-8363dd79', + '::before ::slotted > .random-classname-394cda13 > .random-classname-2292f3bd', + '.random-classname-3642fcf7', + '.random-classname-b379ec41', + '[data-random-attr-18ec7c1b]', + '::before > ::slotted > .random-classname-394cda13 .random-classname-2292f3bd > .random-classname-c8aafb7f', + '.random-classname-9f59d409', + '.random-classname-21eb448', + '.random-classname-9e1f0cba', + '[data-random-attr-511267fc=random-attr-value-d768a32b]', + '.random-classname-bacc8b8f', + '.random-classname-7ac7ae99', + '.random-classname-7134e52f .random-classname-1d1fe575 .random-classname-21eb448 > .random-classname-bacc8b8f > .random-classname-4bf046dd', + '::before .random-classname-63e5590b :last-child .random-classname-bacc8b8f .random-classname-c177e161', + '[data-random-attr-511267fc=random-attr-value-d768a32b] .random-classname-bacc8b8f .random-classname-18aace3b', + '::before ::slotted .random-classname-9e1f0cba > .random-classname-bacc8b8f ::slotted', + '.random-classname-db366d29', + '.random-classname-8ceeb327', + '.random-classname-26a153b5', + '.random-classname-9e1f0cba .random-classname-26a153b5 ::before', + '.random-classname-75c00653', + '[data-random-attr-dc8229fd]', + '::slotted :last-child .random-classname-26a153b5 ::before', + '.random-classname-1205305b', + '::before > ::slotted .random-classname-9e1f0cba .random-classname-1205305b .random-classname-5379b63', + '.random-classname-7134e52f ::slotted .random-classname-21eb448 .random-classname-970ed5ce', + '.random-classname-e68d6d3c > .random-classname-fa200d9', + '.random-classname-8008b473', + '.random-classname-bc109d1d', + '.random-classname-75dc7ba1', + '.random-classname-d483a27b', + '.random-classname-7134e52f ::slotted > .random-classname-21eb448 .random-classname-970ed5ce > .random-classname-286e4f69', + '::before > ::slotted :last-child .random-classname-970ed5ce > ::slotted', + '.random-classname-7134e52f :not(.random-classname-1d1fe575) > [data-random-attr-511267fc=random-attr-value-d768a32b] .random-classname-e68d6d3c .random-classname-7acd01f5', + '.random-classname-cd17c304', + '.random-classname-7134e52f .random-classname-63e5590b .random-classname-21eb448 .random-classname-2709c6a', + '.random-classname-190d832c', + '.random-classname-51ff913e', + ':not(.random-classname-1d1fe575) [data-random-attr-511267fc=random-attr-value-d768a32b] .random-classname-2709c6a > .random-classname-8d178952', + '.random-classname-2709c6a :nth-child(12)', + '.random-classname-7134e52f .random-classname-63e5590b .random-classname-21eb448 > .random-classname-2709c6a :first-child', + '.random-classname-2709c6a .random-classname-8dc69c0f', + '.random-classname-7134e52f > .random-classname-63e5590b .random-classname-3b43335d', + '.random-classname-9372901f', + '.random-classname-c48fedc3', + '.random-classname-7134e52f .random-classname-1d1fe575 :first-child .random-classname-870cb6bb .random-classname-4b6e32ed >', + '::before .random-classname-75c205cb', + '.random-classname-870cb6bb .random-classname-3fe2f035', + '.random-classname-de77567d', + '.random-classname-2d852db7', + '.random-classname-a1b11b01', + '.random-classname-dc2085c5', + '.random-classname-dc2085c5 .random-classname-ac779e0d', + '.random-classname-3ef3443f > .random-classname-4e1ed3e3 ::placeholder', + '.random-classname-1d1fe575 .random-classname-dc2085c5 [data-random-attr-dcec2bc7] .random-classname-2c138ee4', + '::before ::slotted .random-classname-dc2085c5 > .random-classname-ac779e0d .random-classname-4a5fb14a >', + '.random-classname-7134e52f .random-classname-1d1fe575 .random-classname-3ef3443f .random-classname-aa71085f >', + '.random-classname-c8b8d3e9', + '.random-classname-7f73ca03', + '.random-classname-ed4273e7', + '.random-classname-e55db0b1', + '[data-random-attr-eb616a0b]', + '.random-classname-6609506f', + '.random-classname-1d1fe575 .random-classname-dc2085c5 .random-classname-c94b0b13', + '.random-classname-3ef3443f ::slotted :nth-child(7) >', + '.random-classname-7134e52f > .random-classname-1d1fe575 [data-random-attr-3b307948=random-attr-value-663fcc07]', + '::before > .random-classname-63e5590b .random-classname-f0f07726 .random-classname-d485342b', + '.random-classname-c3067799', + '.random-classname-42081933', + '.random-classname-8ee17b25', + '.random-classname-b8670d95 > .random-classname-904b7629 >', + ':not(.random-classname-d485342b) .random-classname-c7b73f6d', + '::before ::slotted :first-child ::slotted >', + '.random-classname-f5cd8cb5 .random-classname-3cea58b9', + '::before ::slotted > .random-classname-f0f07726 ::slotted', + '.random-classname-3128b4bf', + '.random-classname-eec1f49', + '[data-random-attr-63670c63]', + '.random-classname-8972ea8d', + '.random-classname-4a4fac47', + '.random-classname-f0f07726 > ::slotted .random-classname-85a6811', + '.random-classname-9f70fbe2', + '.random-classname-8adba964', + '[data-random-attr-ed12ec36=random-attr-value-e1c8761d]', + '.random-classname-d0708e57', + '[data-random-attr-48cd64a1]', + '.random-classname-7134e52f .random-classname-63e5590b [data-random-attr-3b307948=random-attr-value-663fcc07] .random-classname-d0708e57 > .random-classname-a149737b', + '.random-classname-7fca30b2', + '[data-random-attr-f23a46b4=random-attr-value-a9244283]', + '.random-classname-d0708e57 .random-classname-4811c531 >', + '::before ::slotted :first-child ::before >', + ':not(::slotted) [data-random-attr-3b307948=random-attr-value-663fcc07] .random-classname-73223af5 [data-random-attr-e959e77]', + '.random-classname-4f4759b', + '.random-classname-ddd8085', + '.random-classname-d0442189', + '[data-random-attr-e54f88a3]', + '.random-classname-c693f0cd', + '.random-classname-a15bcc87', + '[data-random-attr-3b307948=random-attr-value-663fcc07] .random-classname-7eb120ef > .random-classname-a8f2b251', + '.random-classname-5054fcab', + '.random-classname-7ca06a15', + ':nth-child(1)', + '.random-classname-e1d596a4', + '.random-classname-a91387bb', + '.random-classname-63e5590b :not(:nth-child(1)) [data-random-attr-4765a218=random-attr-value-2f85be97] .random-classname-67e3f7a5', + '.random-classname-63e5590b > :not(:nth-child(1)) .random-classname-cf538b76 :nth-child(6)', + '.random-classname-5054fcab .random-classname-e1d596a4 ::before >', + '.random-classname-c2db692f', + '.random-classname-ff3d7d39', + '.random-classname-e9bcaf7d', + '::before ::slotted .random-classname-7ca06a15 .random-classname-c2db692f :not(.random-classname-f110fec5) >', + '.random-classname-f52f253f', + '.random-classname-e71044e3', + '.random-classname-2077370d', + '.random-classname-c3a42cc7', + '.random-classname-1b513c91', + '.random-classname-1a9f5262 >', + '.random-classname-bcd4fe4a >', + '.random-classname-1d1fe575 ::slotted .random-classname-bfb8dce9', + '.random-classname-2612f4e7', + '.random-classname-c17ea00c .random-classname-8d5ed9b1 >', + '.random-classname-36e17b0b .random-classname-c1e9f16f', + '::before .random-classname-63e5590b ::slotted .random-classname-36e17b0b .random-classname-9dcd3c13', + '.random-classname-7134e52f .random-classname-1d1fe575 [data-random-attr-9c0c211e=random-attr-value-3a2c95e5] ::before [data-random-attr-4d687ef7] >', + '.random-classname-7f791e1b', + '.random-classname-f7febd05', + '[data-random-attr-5680bd7f]', + '.random-classname-832ee609 >', + '::before .random-classname-1d1fe575 ::slotted .random-classname-e3cd91fc', + '.random-classname-e3a95da2', + '.random-classname-e3cd91fc .random-classname-cf75a498', + '.random-classname-bcd4fe4a ::after .random-classname-2c60718a', + ':not(::slotted) ::slotted [data-random-attr-6f447f29]', + '.random-classname-bf99219f [data-random-attr-ae4586d]', + '[data-random-attr-aa956c2e=random-attr-value-ff9dc5b5]', + '.random-classname-8d826853', + '::before ::slotted > ::slotted :last-child ::before', + '.random-classname-6384838d', + '.random-classname-ae9ad47', + '.random-classname-c06354d5', + '.random-classname-6384838d .random-classname-1a3e896b .random-classname-5e2c1673', + '.random-classname-88a44f1d', + '.random-classname-1a3e896b .random-classname-718ecf57', + '.random-classname-bd224da1', + '.random-classname-718ecf57 > .random-classname-321abbb4 >', + '.random-classname-31cac306', + '.random-classname-37911028', + '.random-classname-38a2339a', + '.random-classname-149f91dc', + '.random-classname-e932836e', + '.random-classname-2f474d0', + ':not(::before) .random-classname-73272d04', + '::after .random-classname-8b18366a', + '.random-classname-304b9d20', + '.random-classname-94b26352', + '::after ::placeholder .random-classname-304b9d20 > .random-classname-af6492a6', + '::after > ::placeholder .random-classname-304b9d20 .random-classname-33b8a0c8', + '.random-classname-e9ba2d3a', + '.random-classname-9628dc7c', + '.random-classname-fce33422', + '.random-classname-5579cba4', + '[data-random-attr-c1c68876=random-attr-value-8168e55d]', + '::before ::after > .random-classname-fce33422 [data-random-attr-c1c68876=random-attr-value-8168e55d] .random-classname-4c4f27e1 >', + '.random-classname-a1e58bb', + '.random-classname-4b9d521f', + '.random-classname-7134e52f :first-child .random-classname-7b7683a9', + ':last-child .random-classname-b5c864ed', + ':first-child .random-classname-7b7683a9 .random-classname-b5c864ed .random-classname-e7c427cb >', + ':first-child .random-classname-e2ef0a2f', + '.random-classname-4c26087d', + '::before ::placeholder >', + '.random-classname-7134e52f :nth-child(7) > .random-classname-b875b208', + '.random-classname-2bd907a', + '[data-random-attr-c71061bc=random-attr-value-6a90d1eb]', + '.random-classname-2f7e464f', + '::before ::placeholder .random-classname-b875b208 ::slotted', + '.random-classname-7134e52f :nth-child(7) .random-classname-b875b208 .random-classname-97fbb9d .random-classname-5019acfb', + '::slotted .random-classname-cc9ce5e9', + '.random-classname-7134e52f .random-classname-41a577c5 .random-classname-b875b208 .random-classname-97fbb9d .random-classname-f77bac03', + '.random-classname-d8a775e7', + '.random-classname-7c402b1', + '.random-classname-56658c0b', + '[data-random-attr-6e159075]', + '::before [data-random-attr-ded6b879]', + '.random-classname-7134e52f .random-classname-d00e926f > :nth-child(7)', + '.random-classname-c515d7ac', + '.random-classname-fe40afa0', + '.random-classname-2a2199d2', + '::before > [data-random-attr-ded6b879] > [data-random-attr-579033ba=random-attr-value-3087afd1]', + '.random-classname-7134e52f .random-classname-d00e926f .random-classname-a6d00348 .random-classname-50ca562b', + '.random-classname-50ca562b .random-classname-78f17b33 >', + '.random-classname-18062017', + '.random-classname-6ceb9c61', + '[data-random-attr-c745413b]', + '.random-classname-6ceb9c61 .random-classname-8218829 >', + '::slotted > [data-random-attr-ae333627]', + '.random-classname-81cecf1', + '.random-classname-b9525aaf', + '.random-classname-d00e926f ::slotted', + ':not(::before) > [data-random-attr-ded6b879] > ::slotted .random-classname-4aa1235b', + '.random-classname-7134e52f .random-classname-d00e926f > ::slotted .random-classname-f304a181 > .random-classname-5d4d3445 >', + '[data-random-attr-ded6b879] .random-classname-f6299953 .random-classname-4aa1235b .random-classname-b5ba1c8d', + '.random-classname-9b641a6b', + '.random-classname-4215d6cf', + '.random-classname-57355bd9', + '.random-classname-7134e52f .random-classname-d00e926f .random-classname-f6299953 .random-classname-9b641a6b :nth-child(7)', + '::before [data-random-attr-ded6b879] ::slotted > ::before > [data-random-attr-10f00ab2=random-attr-value-c8446a69]', + '.random-classname-7134e52f .random-classname-c8b02483 >', + '.random-classname-249b3667', + '.random-classname-60dc1731', + '.random-classname-caa9148b >', + '.random-classname-60dc1731 ::slotted ::after', + '.random-classname-415a036a', + '.random-classname-249b3667 > .random-classname-c82dd052', + '.random-classname-d25f57ad > .random-classname-60dc1731 > .random-classname-d45c2754 .random-classname-a55c65c8', + '.random-classname-4b1fdc15', + '.random-classname-ba88ee19', + '.random-classname-f5be53b3', + '[data-random-attr-4c31be5d]', + '.random-classname-4b1fdc15 [data-random-attr-4c31be5d] [data-random-attr-ba2d29bb] >', + '::before .random-classname-d25f57ad > .random-classname-e7458ca9 >', + '.random-classname-e6bec0c3', + '.random-classname-d82b7ded', + '.random-classname-741f76a7', + '.random-classname-7134e52f .random-classname-c8b02483 .random-classname-2b98b31f .random-classname-87499b35', + '::before .random-classname-d25f57ad .random-classname-e7458ca9 .random-classname-87499b35 .random-classname-78aeb1d3', + '.random-classname-95b3617d', + '.random-classname-201c70b7', + ':not([data-random-attr-5dddf0c5])', + '.random-classname-7134e52f :last-child', + ':not(.random-classname-480e7708) :last-child', + '.random-classname-c18d5ee6 .random-classname-9c289b4e [data-random-attr-52f2de4=random-attr-value-c7611ff3] >', + '.random-classname-7134e52f :last-child .random-classname-9c289b4e .random-classname-e7faac62 > .random-classname-502287e5', + '::before .random-classname-7f64eee9', + '.random-classname-3d9e42d', + '::before ::after .random-classname-3d9e42d ::slotted', + '.random-classname-7134e52f :last-child ::slotted [data-random-attr-6104c975] > .random-classname-545d9e13 >', + '.random-classname-4f9e00f7', + '.random-classname-5ff9041', + '.random-classname-4f9e00f7 .random-classname-239daf05', + '.random-classname-693f809', + '.random-classname-dd1a2323', + '.random-classname-5306cf07', + '.random-classname-73bd58d1', + ':nth-child(7)', + '::before .random-classname-73bd58d1 .random-classname-477830f0 >', + '.random-classname-c74483f6', + '.random-classname-6ac7ae98', + '.random-classname-7134e52f :nth-child(7) > .random-classname-477830f0 ::before', + '.random-classname-3304b943', + '.random-classname-ebbeb7a2 > :nth-child(8) .random-classname-13ff15f1 >', + '.random-classname-32a37b5', + '.random-classname-3fb433b9', + '::before > :not(.random-classname-5306cf07) ::slotted .random-classname-3fb433b9 :last-child', + '.random-classname-e0cbd137', + '.random-classname-e0cbd137 > :not(.random-classname-f557ad45)', + ':not(.random-classname-da8e57bf)', + '::placeholder > [data-random-attr-1a9223fa=random-attr-value-539a6311]', + '.random-classname-7134e52f .random-classname-268dab6b', + '::before [data-random-attr-c0d8c6d5] > ::before', + '.random-classname-7134e52f .random-classname-268dab6b [data-random-attr-265f7873] :not(.random-classname-86175157)', + '[data-random-attr-c9f81fa1] .random-classname-91268465', + '.random-classname-7134e52f .random-classname-c9bc1583', + '.random-classname-7d1a5f9', + '[data-random-attr-75d43693]', + '::slotted [data-random-attr-75d43693] .random-classname-dbe5e177', + ], +}; diff --git a/apps/stress-test/src/fixtures/s_2.js b/apps/stress-test/src/fixtures/s_2.js new file mode 100644 index 0000000000000..4edf4624a5d58 --- /dev/null +++ b/apps/stress-test/src/fixtures/s_2.js @@ -0,0 +1,3787 @@ +/* eslint-disable @fluentui/max-len */ +export default { + tree: { + value: { + name: '0-0', + classNames: ['.random-classname-7134e52f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '1-9', + classNames: ['.random-classname-7ef38bd3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-3', + classNames: ['.random-classname-277f4b7d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-3', + classNames: ['.random-classname-d7d1eab7', '.random-classname-fa45e001'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-63271ac5', '.random-classname-57d7a13f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-b1643fc9', '.random-classname-6c6280e3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-5', + classNames: ['.random-classname-d75c28c7', '.random-classname-5e569891'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-1406fceb'], + attributes: [ + { + key: 'data-random-attr-73399455', + selector: '[data-random-attr-73399455]', + }, + ], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-6082f9f3', '.random-classname-91c27e9d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-338e2ad7'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-f5c697fb'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-b1f0b1e5'], + attributes: [ + { + key: 'data-random-attr-bc3be55f', + selector: '[data-random-attr-bc3be55f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-9', + classNames: ['.random-classname-c710b8e9'], + attributes: [ + { + key: 'data-random-attr-15c5f703', + selector: '[data-random-attr-15c5f703]', + }, + ], + siblings: [':nth-child(3)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-8429335c', '.random-classname-d51820ee'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-11d8bc02'], + attributes: [], + siblings: [':nth-child(14)'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-8a2d7af7'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-c66fda1b'], + attributes: [ + { + key: 'data-random-attr-9c70d905', + selector: '[data-random-attr-9c70d905]', + }, + ], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-9eb77d23', '.random-classname-8412594d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-835cc907'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-f25762d1', '.random-classname-f3b812b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-d66be295'], + attributes: [ + { + key: 'data-random-attr-8d8e498f', + selector: '[data-random-attr-8d8e498f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-8880633'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '3-10', + classNames: ['.random-classname-f6b7db17'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-10', + classNames: ['.random-classname-acad2c3b', '.random-classname-7b6f9025'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-10', + classNames: ['.random-classname-b6db9d9f'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-10', + classNames: ['.random-classname-7fbf1343', '.random-classname-8307f46d'], + attributes: [ + { + key: 'data-random-attr-e63fb127', + selector: '[data-random-attr-e63fb127]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-10', + classNames: ['.random-classname-a855db4b', '.random-classname-f834e1b5'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-10', + classNames: ['.random-classname-4247db9', '.random-classname-400da453'], + attributes: [ + { + key: 'data-random-attr-de8777fd', + selector: '[data-random-attr-de8777fd]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-10', + classNames: ['.random-classname-8e8e9481'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-10', + classNames: ['.random-classname-b4068e5b'], + attributes: [ + { + key: 'data-random-attr-cbb4d745', + selector: '[data-random-attr-cbb4d745]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-10', + classNames: ['.random-classname-92711bf', '.random-classname-67438449'], + attributes: [], + siblings: [':nth-child(3)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-10', + classNames: ['.random-classname-5ee5bb88'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '4-10', + classNames: ['.random-classname-2298433c'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-10', + classNames: ['.random-classname-ef1e1bce', '.random-classname-8b3e8c30'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-ec960a64', '.random-classname-a3f8f536'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-10', + classNames: ['.random-classname-fcc5f0ca', '.random-classname-1ab4b68c'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '4-11', + classNames: ['.random-classname-10390c80'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-be10e7b4'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-6bb3fc28'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-d07fff9a'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-774e0d0', '.random-classname-11c35282'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-ed585904'], + attributes: [ + { + key: 'data-random-attr-8b805cd6', + value: 'random-attr-value-87d6ee3d', + selector: '[data-random-attr-8b805cd6=random-attr-value-87d6ee3d]', + }, + ], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-e82d829b', '.random-classname-67331585'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-10308689', '.random-classname-24aa35a3'], + attributes: [ + { + key: 'data-random-attr-79c25cd', + selector: '[data-random-attr-79c25cd]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-f36bb751', '.random-classname-100549ab'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-29150119'], + attributes: [ + { + key: 'data-random-attr-6f0adeb3', + selector: '[data-random-attr-6f0adeb3]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-11', + classNames: ['.random-classname-49ad815d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-10', + classNames: ['.random-classname-ecaffb97'], + attributes: [ + { + key: 'data-random-attr-5fef83e1', + selector: '[data-random-attr-5fef83e1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-6', + classNames: ['.random-classname-c00b14bb'], + attributes: [ + { + key: 'data-random-attr-5ffc0ca5', + selector: '[data-random-attr-5ffc0ca5]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-6', + classNames: ['.random-classname-3f225fa9', '.random-classname-6b5a0bc3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-6', + classNames: ['.random-classname-99a400ed', '.random-classname-23c1f1a7'], + attributes: [ + { + key: 'data-random-attr-72b8b471', + selector: '[data-random-attr-72b8b471]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-6', + classNames: ['.random-classname-92d27e35'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-6', + classNames: ['.random-classname-3838862f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-6', + classNames: ['.random-classname-9748bcd3', '.random-classname-8d58a47d'], + attributes: [ + { + key: 'data-random-attr-a849abb7', + selector: '[data-random-attr-a849abb7]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-10', + classNames: ['.random-classname-f24b6db'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-5', + classNames: ['.random-classname-8047823f', '.random-classname-d01bc8c9'], + attributes: [], + siblings: [':nth-child(3)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-5c5a9e08', '.random-classname-19ad5c7a'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-b8ae0dbc'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-a446ca4e'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-f47c4b62'], + attributes: [], + siblings: [':nth-child(8)'], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-10', + classNames: ['.random-classname-affe6bd7', '.random-classname-cd0e9e21'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-8', + classNames: ['.random-classname-e789aae5'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-8', + classNames: ['.random-classname-dc64c1e9'], + attributes: [ + { + key: 'data-random-attr-557be803', + selector: '[data-random-attr-557be803]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-8', + classNames: ['.random-classname-4325672d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-8', + classNames: ['.random-classname-cc875eb1', '.random-classname-906d480b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-8', + classNames: ['.random-classname-a4c0ac75'], + attributes: [ + { + key: 'data-random-attr-85140e6f', + selector: '[data-random-attr-85140e6f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-8', + classNames: ['.random-classname-78059479', '.random-classname-ddd2a913'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-8', + classNames: ['.random-classname-2b528341'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-8', + classNames: ['.random-classname-fbde5205', '.random-classname-d6a61a7f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-10', + classNames: ['.random-classname-1dfdee23'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-922ef24d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-10', + classNames: ['.random-classname-f990bd1'], + attributes: [ + { + key: 'data-random-attr-f050122b', + selector: '[data-random-attr-f050122b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-891b9b95', '.random-classname-220b6a8f'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-c5256ddd'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-c3d91c17'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-10', + classNames: ['.random-classname-cdc3f861', '.random-classname-9729fd3b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-daf18925'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-10', + classNames: ['.random-classname-f124fe9f'], + attributes: [], + siblings: [':nth-child(11)'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-618adcc6', '.random-classname-a8a30fe8'], + attributes: [ + { + key: 'data-random-attr-876d095a', + value: 'random-attr-value-787c48f1', + selector: '[data-random-attr-876d095a=random-attr-value-787c48f1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-174aec4b', '.random-classname-2191ab5'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-ca13d6af', '.random-classname-7ed7c6b9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-a5f2d0fd', '.random-classname-8a0f0c37'], + attributes: [ + { + key: 'data-random-attr-70aafd81', + selector: '[data-random-attr-70aafd81]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '3-8', + classNames: ['.random-classname-218b5045'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-5', + classNames: ['.random-classname-508c2a63', '.random-classname-fdbbb88d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-f5791611', '.random-classname-32e5d66b'], + attributes: [ + { + key: 'data-random-attr-fe8129d5', + selector: '[data-random-attr-fe8129d5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-ff3552cf'], + attributes: [ + { + key: 'data-random-attr-a18e37d9', + selector: '[data-random-attr-a18e37d9]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-877cc41d', '.random-classname-10800c57'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-72c1d17b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-8', + classNames: ['.random-classname-e4e9f6df', '.random-classname-84444669'], + attributes: [ + { + key: 'data-random-attr-f7a86083', + selector: '[data-random-attr-f7a86083]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-2', + classNames: ['.random-classname-19593267', '.random-classname-58d77331'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-2', + classNames: ['.random-classname-f4a8d08b'], + attributes: [], + siblings: [':nth-child(3)'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-8', + classNames: ['.random-classname-25af7f82', '.random-classname-cc6e0e04'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-87d8df78', '.random-classname-900acf6a'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-262d2e2c', '.random-classname-c55b743e'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-18f81c52'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-8', + classNames: ['.random-classname-7d385354'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '4-5', + classNames: ['.random-classname-c1c551c8', '.random-classname-f7b7063a'], + attributes: [], + siblings: [':nth-child(12)'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-ece37b0f', '.random-classname-adfdca19'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-ccf38fb3', '.random-classname-9fe65a5d'], + attributes: [ + { + key: 'data-random-attr-be333c97', + selector: '[data-random-attr-be333c97]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-9409e5bb', '.random-classname-9e5005a5'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-36168a9', '.random-classname-9832fcc3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-8', + classNames: ['.random-classname-e37719ed', '.random-classname-351972a7'], + attributes: [ + { + key: 'data-random-attr-8fd8dd71', + selector: '[data-random-attr-8fd8dd71]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-7808b735', '.random-classname-7d80272f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-8', + classNames: ['.random-classname-9021edd3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-9a55fd7d', '.random-classname-bf856cb7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-e27eb201'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-5c2407db', '.random-classname-72d40cc5'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-8', + classNames: ['.random-classname-e6b162e3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-5', + classNames: ['.random-classname-589c050d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-7c0bea91', '.random-classname-ca321eeb'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-7b13f862'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-d83259e4'], + attributes: [ + { + key: 'data-random-attr-3ebb70b6', + value: 'random-attr-value-1ca2309d', + selector: '[data-random-attr-3ebb70b6=random-attr-value-1ca2309d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-bbe98721'], + attributes: [ + { + key: 'data-random-attr-c74239fb', + selector: '[data-random-attr-c74239fb]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-8', + classNames: ['.random-classname-8470a75f', '.random-classname-579ccae9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-7', + classNames: ['.random-classname-c8b5d903'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-1e35f2e7'], + attributes: [ + { + key: 'data-random-attr-7fc087b1', + selector: '[data-random-attr-7fc087b1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-63e5590b', '.random-classname-1d1fe575'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-8363dd79', '.random-classname-394cda13'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-2292f3bd', '.random-classname-3642fcf7'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-18ec7c1b', '.random-classname-4aefcb05'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-7', + classNames: ['.random-classname-c8aafb7f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-9', + classNames: ['.random-classname-9f59d409'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-1', + classNames: ['.random-classname-f2c85f23'], + attributes: [ + { + key: 'data-random-attr-846f8b4d', + selector: '[data-random-attr-846f8b4d]', + }, + ], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '3-3', + classNames: ['.random-classname-d768a32b'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-5', + classNames: ['.random-classname-bacc8b8f', '.random-classname-7ac7ae99'], + attributes: [ + { + key: 'data-random-attr-8596833', + selector: '[data-random-attr-8596833]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-1dbe5d17'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-c177e161'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-5c178225'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-50b25f9f', '.random-classname-db366d29'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-1d70f543'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-faae266d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-cace71f1'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-2', + classNames: ['.random-classname-547d77af', '.random-classname-c6f0fb9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-2', + classNames: ['.random-classname-dc8229fd'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-9', + classNames: ['.random-classname-8aaccd37'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '2-4', + classNames: ['.random-classname-1205305b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-3', + classNames: ['.random-classname-cb05c945', '.random-classname-9c8ed3bf'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-2', + classNames: ['.random-classname-707a9649', '.random-classname-5379b63'], + attributes: [], + siblings: [':nth-child(3)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '4-2', + classNames: ['.random-classname-e68d6d3c'], + attributes: [], + siblings: [':nth-child(6)'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-1b8773cf'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-6', + classNames: ['.random-classname-fa200d9', '.random-classname-8008b473'], + attributes: [ + { + key: 'data-random-attr-bc109d1d', + selector: '[data-random-attr-bc109d1d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-6', + classNames: ['.random-classname-75dc7ba1', '.random-classname-d483a27b'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-6', + classNames: ['.random-classname-286e4f69'], + attributes: [ + { + key: 'data-random-attr-6aa45183', + selector: '[data-random-attr-6aa45183]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-6', + classNames: ['.random-classname-7983b367', '.random-classname-53429c31'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-6', + classNames: ['.random-classname-588caad0', '.random-classname-570fac82'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-6', + classNames: ['.random-classname-3af556d6', '.random-classname-974b6478'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-190d832c', '.random-classname-51ff913e'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-49234854', '.random-classname-9bf918a6'], + attributes: [ + { + key: 'data-random-attr-11ed16c8', + value: 'random-attr-value-d614cb87', + selector: '[data-random-attr-11ed16c8=random-attr-value-d614cb87]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-4', + classNames: ['.random-classname-a2366bab'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '3-4', + classNames: ['.random-classname-8dc69c0f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-796040b3', '.random-classname-3b43335d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-4', + classNames: ['.random-classname-247a7d97', '.random-classname-6b5755e1'], + attributes: [ + { + key: 'data-random-attr-870cb6bb', + selector: '[data-random-attr-870cb6bb]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-4', + classNames: ['.random-classname-9372901f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-4', + classNames: ['.random-classname-c48fedc3', '.random-classname-4b6e32ed'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-4', + classNames: ['.random-classname-1c34f3a7', '.random-classname-3b5d0671'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-4', + classNames: ['.random-classname-3fe2f035', '.random-classname-510bc82f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-4', + classNames: ['.random-classname-7503439', '.random-classname-797f1ed3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-2d852db7', '.random-classname-a1b11b01'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-4', + classNames: ['.random-classname-dc2085c5', '.random-classname-3ef3443f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-5', + classNames: ['.random-classname-d936dac9', '.random-classname-4e1ed3e3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-dcec2bc7'], + attributes: [ + { + key: 'data-random-attr-737c9391', + selector: '[data-random-attr-737c9391]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-984dafeb', '.random-classname-5639bf55'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-71ca044f', '.random-classname-9816559'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-38a00cf3', '.random-classname-d7c8099d'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-4', + classNames: ['.random-classname-fc860afb', '.random-classname-1ba79ce5'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-aa71085f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-7f73ca03', '.random-classname-7d01992d'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-e55db0b1', '.random-classname-eb616a0b'], + attributes: [ + { + key: 'data-random-attr-dc231e75', + selector: '[data-random-attr-dc231e75]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-6609506f', '.random-classname-8da62679'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-4', + classNames: ['.random-classname-4c73bdf7', '.random-classname-17055541'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-e1b0cd1b'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-5', + classNames: ['.random-classname-412bfd2', '.random-classname-889042d4'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-f0f07726'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-c5a619ba', '.random-classname-c9e5fcfc'], + attributes: [], + siblings: [':nth-child(4)'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-c3067799'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-dfdf1fdd', '.random-classname-14679e17'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-9', + classNames: ['.random-classname-412f9f3b', '.random-classname-8ee17b25'], + attributes: [ + { + key: 'data-random-attr-e583c09f', + selector: '[data-random-attr-e583c09f]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '2-5', + classNames: ['.random-classname-2f8fe643'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-3', + classNames: ['.random-classname-c7b73f6d'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-a9c18f2e', '.random-classname-5b9c3690'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-5dc02ac4', '.random-classname-316ad496'], + attributes: [], + siblings: [':nth-child(4)'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-868a815b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-58244245', '.random-classname-3128b4bf'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-63670c63', '.random-classname-8972ea8d'], + attributes: [ + { + key: 'data-random-attr-4a4fac47', + selector: '[data-random-attr-4a4fac47]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-931cf86b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-501d94cf'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-f299c9d9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-e1c8761d', '.random-classname-d0708e57'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-a149737b', '.random-classname-76359965'], + attributes: [ + { + key: 'data-random-attr-34eab8df', + selector: '[data-random-attr-34eab8df]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-a7c5869', '.random-classname-a9244283'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-49cf25ad', '.random-classname-3b723467'], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: [], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-2fd1a66e', '.random-classname-7a968fd0'], + attributes: [ + { + key: 'data-random-attr-75e3d982', + value: 'random-attr-value-3f5ccaf9', + selector: '[data-random-attr-75e3d982=random-attr-value-3f5ccaf9]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-39fba393'], + attributes: [ + { + key: 'data-random-attr-fa5ff93d', + selector: '[data-random-attr-fa5ff93d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-e959e77'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-4f4759b'], + attributes: [ + { + key: 'data-random-attr-ddd8085', + selector: '[data-random-attr-ddd8085]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-d0442189', '.random-classname-e54f88a3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '3-5', + classNames: ['.random-classname-a15bcc87', '.random-classname-a8f2b251'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-2', + classNames: ['.random-classname-7ca06a15', '.random-classname-4aedbd0f'], + attributes: [ + { + key: 'data-random-attr-e27b5c19', + selector: '[data-random-attr-e27b5c19]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-2', + classNames: ['.random-classname-abc40c5d', '.random-classname-2f85be97'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-a91387bb'], + attributes: [ + { + key: 'data-random-attr-67e3f7a5', + selector: '[data-random-attr-67e3f7a5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-c8e5f11f', '.random-classname-118b7aa9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-70dec3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-61894bed', '.random-classname-e91474a7'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-26c116cb', '.random-classname-7a612935'], + attributes: [ + { + key: 'data-random-attr-c2db692f', + selector: '[data-random-attr-c2db692f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-63604fd3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-e9bcaf7d'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-5', + classNames: ['.random-classname-a8478401'], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-1bd1f192'], + attributes: [ + { + key: 'data-random-attr-da91a94', + value: 'random-attr-value-e71044e3', + selector: '[data-random-attr-da91a94=random-attr-value-e71044e3]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-c3a42cc7', '.random-classname-1b513c91'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-2b2c7855'], + attributes: [ + { + key: 'data-random-attr-b882254f', + selector: '[data-random-attr-b882254f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-5b1bdf3', '.random-classname-4c11e29d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-5', + classNames: ['.random-classname-99e72ed7'], + attributes: [], + siblings: [':nth-child(13)'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-9c0c211e', '.random-classname-97c8ce00'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-b4e82732', '.random-classname-33980134'], + attributes: [], + siblings: [':nth-child(4)'], + pseudos: [], + }, + children: [ + { + value: { + name: '3-2', + classNames: ['.random-classname-2612f4e7', '.random-classname-8d5ed9b1'], + attributes: [ + { + key: 'data-random-attr-36e17b0b', + selector: '[data-random-attr-36e17b0b]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-c1e9f16f', '.random-classname-26cc6f79'], + attributes: [ + { + key: 'data-random-attr-9dcd3c13', + selector: '[data-random-attr-9dcd3c13]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-4d687ef7', '.random-classname-e5f4be41'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-f7febd05'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-2', + classNames: ['.random-classname-5680bd7f', '.random-classname-832ee609'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-5', + classNames: ['.random-classname-555cbd4d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-4968cd07', '.random-classname-e1b606d1'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-f7a5c52b'], + attributes: [ + { + key: 'data-random-attr-5502c695', + selector: '[data-random-attr-5502c695]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-6c294099', '.random-classname-623aca33'], + attributes: [ + { + key: 'data-random-attr-10f1f8dd', + selector: '[data-random-attr-10f1f8dd]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-5', + classNames: ['.random-classname-b7d4df17', '.random-classname-10bb361'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-bf99219f', '.random-classname-6f447f29'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '3-3', + classNames: ['.random-classname-ae4586d', '.random-classname-aaadb527'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-829ec3f1', '.random-classname-14421f4b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-ff9dc5b5'], + attributes: [ + { + key: 'data-random-attr-3c1cb9af', + selector: '[data-random-attr-3c1cb9af]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-8d826853'], + attributes: [ + { + key: 'data-random-attr-d70cdbfd', + selector: '[data-random-attr-d70cdbfd]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-b8344f37'], + attributes: [ + { + key: 'data-random-attr-f3583881', + selector: '[data-random-attr-f3583881]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-58e6bb45'], + attributes: [ + { + key: 'data-random-attr-d0695bf', + selector: '[data-random-attr-d0695bf]', + }, + ], + siblings: [':nth-child(7)'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-4967c366', '.random-classname-ef58cf88'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-3ed2973c', '.random-classname-e7cf8fce'], + attributes: [ + { + key: 'data-random-attr-de142030', + value: 'random-attr-value-acf7b5cf', + selector: '[data-random-attr-de142030=random-attr-value-acf7b5cf]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-9', + classNames: ['.random-classname-5e2c1673', '.random-classname-88a44f1d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '2-3', + classNames: ['.random-classname-bd224da1', '.random-classname-e913447b'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-c2d119df', '.random-classname-ba6e6169'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-99053ead', '.random-classname-6f24b567'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-c744ee31'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-1b23038b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-a1b73f5'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-16bfd493', '.random-classname-f180523d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-4aec5f77', '.random-classname-42b1f2c1'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-b33ec69b', '.random-classname-8a08f985'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-2900adff', '.random-classname-9012aa89'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-892e89cd'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-ac778dab', '.random-classname-738e2315'], + attributes: [], + siblings: [':nth-child(11)'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-5579cba4', '.random-classname-c1c68876'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-3755180a'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-8b509fcc'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-9', + classNames: ['.random-classname-8196f6de', '.random-classname-740e9c0'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [ + { + value: { + name: '2-1', + classNames: ['.random-classname-9569f8f4', '.random-classname-611d3246'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-3', + classNames: ['.random-classname-2af78168'], + attributes: [ + { + key: 'data-random-attr-3df5f6da', + value: 'random-attr-value-7d915871', + selector: '[data-random-attr-3df5f6da=random-attr-value-7d915871]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-b7836235'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-e2ef0a2f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-720ec639', '.random-classname-5dc580d3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-4c26087d'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-8641ed01', '.random-classname-8939fadb'], + attributes: [ + { + key: 'data-random-attr-41a577c5', + selector: '[data-random-attr-41a577c5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-faaf063f', '.random-classname-b1e1ecc9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-c185b5e3', '.random-classname-449ad00d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-9', + classNames: ['.random-classname-389e591', '.random-classname-6a90d1eb'], + attributes: [ + { + key: 'data-random-attr-b4c33155', + selector: '[data-random-attr-b4c33155]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '2-3', + classNames: ['.random-classname-7d38f759', '.random-classname-85476ef3'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-80d24221', '.random-classname-5019acfb'], + attributes: [ + { + key: 'data-random-attr-c6558ee5', + selector: '[data-random-attr-c6558ee5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-ca3dca5f', '.random-classname-cc9ce5e9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-f77bac03'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-d8a775e7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-7c402b1', '.random-classname-56658c0b'], + attributes: [ + { + key: 'data-random-attr-6e159075', + selector: '[data-random-attr-6e159075]', + }, + ], + siblings: [':nth-child(9)'], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-397c0f56', '.random-classname-e48930f8'], + attributes: [ + { + key: 'data-random-attr-71ba9cea', + value: 'random-attr-value-b0482741', + selector: '[data-random-attr-71ba9cea=random-attr-value-b0482741]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-2', + classNames: ['.random-classname-75fc3605'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-2', + classNames: ['.random-classname-c8ef6f09'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-123fb223', '.random-classname-5409564d'], + attributes: [ + { + key: 'data-random-attr-e855ce07', + selector: '[data-random-attr-e855ce07]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-3', + classNames: ['.random-classname-3087afd1'], + attributes: [ + { + key: 'data-random-attr-50ca562b', + selector: '[data-random-attr-50ca562b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-a427f95'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-6300999'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-2', + classNames: ['.random-classname-6f28d1dd', '.random-classname-18062017'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '4-2', + classNames: ['.random-classname-c745413b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-49616d25', '.random-classname-eef2829f'], + attributes: [ + { + key: 'data-random-attr-8218829', + selector: '[data-random-attr-8218829]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-5435716d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-ae333627'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-d411feb5'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-9', + classNames: ['.random-classname-c68ceab9'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '2-2', + classNames: ['.random-classname-bb0834fd'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-f304a181'], + attributes: [ + { + key: 'data-random-attr-4aa1235b', + selector: '[data-random-attr-4aa1235b]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '4-2', + classNames: ['.random-classname-402876bf'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-2', + classNames: ['.random-classname-5c51ee63', '.random-classname-b5ba1c8d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '2-2', + classNames: ['.random-classname-fccbba11', '.random-classname-9b641a6b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-1', + classNames: ['.random-classname-3a4c0dd5'], + attributes: [ + { + key: 'data-random-attr-4215d6cf', + selector: '[data-random-attr-4215d6cf]', + }, + ], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '4-2', + classNames: ['.random-classname-40a4281d'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '4-2', + classNames: ['.random-classname-8e6f0c9e', '.random-classname-2bb84580'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: '1-9', + classNames: ['.random-classname-e8f30b4'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '2-1', + classNames: ['.random-classname-781a5528'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-2', + classNames: ['.random-classname-400cc09a'], + attributes: [ + { + key: 'data-random-attr-1ca2a6dc', + value: 'random-attr-value-caa9148b', + selector: '[data-random-attr-1ca2a6dc=random-attr-value-caa9148b]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-2', + classNames: ['.random-classname-9efa62ef'], + attributes: [ + { + key: 'data-random-attr-53715cf9', + selector: '[data-random-attr-53715cf9]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-2', + classNames: ['.random-classname-ebc4ab3d'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-2', + classNames: ['.random-classname-3f23e83e', '.random-classname-3d0ac220'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-3', + classNames: ['.random-classname-d45c2754'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-bca84fa6'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-3', + classNames: ['.random-classname-a55c65c8', '.random-classname-e1a33a3a'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + selectors: [ + '::before >', + '.random-classname-7134e52f .random-classname-7ef38bd3', + '.random-classname-277f4b7d', + ':first-child', + '::before .random-classname-7ef38bd3 > .random-classname-277f4b7d :first-child .random-classname-57d7a13f >', + '.random-classname-b1643fc9', + '.random-classname-6c6280e3', + '::before', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d > .random-classname-6c6280e3 .random-classname-5e569891', + '.random-classname-1406fceb', + '[data-random-attr-73399455]', + ':last-child', + '::before .random-classname-91c27e9d', + '::before .random-classname-338e2ad7', + '::before .random-classname-f5c697fb', + '.random-classname-b1f0b1e5', + '.random-classname-7ef38bd3 > .random-classname-277f4b7d > [data-random-attr-bc3be55f] ::placeholder >', + '.random-classname-8429335c', + '.random-classname-d51820ee', + '::after', + '.random-classname-277f4b7d > [data-random-attr-bc3be55f] ::before >', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-b1f0b1e5 .random-classname-8a2d7af7 >', + '.random-classname-277f4b7d > [data-random-attr-bc3be55f] ::before', + '.random-classname-9eb77d23', + '.random-classname-8412594d', + '.random-classname-835cc907', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d :not(.random-classname-b1f0b1e5) .random-classname-f25762d1', + '.random-classname-d66be295', + '[data-random-attr-8d8e498f]', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-8880633', + '::before .random-classname-7ef38bd3 ::before ::before', + '.random-classname-acad2c3b', + '.random-classname-7b6f9025', + '::before .random-classname-7ef38bd3 ::before > ::before > :last-child', + '[data-random-attr-e63fb127] >', + '.random-classname-a855db4b', + '.random-classname-f834e1b5', + '::slotted', + '.random-classname-4247db9', + '.random-classname-400da453', + '[data-random-attr-de8777fd]', + '.random-classname-8e8e9481', + ':not(.random-classname-8880633) .random-classname-f6b7db17 .random-classname-b4068e5b', + '::before ::before > .random-classname-67438449', + '.random-classname-5ee5bb88', + '::placeholder', + '::before ::before .random-classname-2298433c', + '.random-classname-ec960a64 >', + '.random-classname-8880633 :not(::placeholder) >', + '::before > .random-classname-fcc5f0ca > ::placeholder >', + '.random-classname-be10e7b4 >', + '.random-classname-7ef38bd3 ::before :not(.random-classname-1ab4b68c) .random-classname-6bb3fc28', + '.random-classname-1ab4b68c :first-child', + ':not(.random-classname-fcc5f0ca) .random-classname-11c35282', + '.random-classname-ed585904', + '[data-random-attr-8b805cd6=random-attr-value-87d6ee3d]', + '.random-classname-e82d829b', + '.random-classname-67331585', + '.random-classname-7ef38bd3 .random-classname-8880633 > .random-classname-1ab4b68c .random-classname-10308689', + '.random-classname-f36bb751', + '.random-classname-100549ab', + '.random-classname-7134e52f > .random-classname-7ef38bd3 .random-classname-8880633 .random-classname-1ab4b68c .random-classname-29150119', + '::before :not(.random-classname-fcc5f0ca) > .random-classname-49ad815d', + '.random-classname-8880633 :not(.random-classname-ecaffb97)', + '.random-classname-c00b14bb', + '[data-random-attr-5ffc0ca5]', + '.random-classname-ecaffb97 .random-classname-3f225fa9 >', + '::before > [data-random-attr-5fef83e1] .random-classname-23c1f1a7', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-8880633 .random-classname-ecaffb97 :not(.random-classname-92d27e35)', + '[data-random-attr-5fef83e1] > ::before', + '[data-random-attr-a849abb7]', + '::before .random-classname-7ef38bd3 ::before ::before >', + '.random-classname-8047823f', + '.random-classname-d01bc8c9', + ':nth-child(3)', + '.random-classname-19ad5c7a', + '.random-classname-7ef38bd3 .random-classname-8880633 .random-classname-f24b6db .random-classname-b8ae0dbc >', + '::before .random-classname-7ef38bd3 > ::before ::before ::after', + '.random-classname-f47c4b62', + ':nth-child(8)', + '::before .random-classname-7ef38bd3 > ::before :first-child', + '.random-classname-e789aae5', + '.random-classname-7ef38bd3 ::before .random-classname-affe6bd7 [data-random-attr-557be803]', + '.random-classname-7ef38bd3 .random-classname-8880633 > .random-classname-affe6bd7 > .random-classname-4325672d', + '.random-classname-cc875eb1', + '.random-classname-906d480b', + '.random-classname-7ef38bd3 .random-classname-8880633 :first-child .random-classname-a4c0ac75', + '.random-classname-ddd2a913', + '.random-classname-2b528341', + '.random-classname-cd0e9e21 > ::before >', + '.random-classname-7134e52f :not(.random-classname-7ef38bd3) .random-classname-8880633 .random-classname-1dfdee23 >', + '.random-classname-922ef24d', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-8880633 .random-classname-f990bd1', + '::before .random-classname-7ef38bd3 > ::before > [data-random-attr-f050122b] ::slotted', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-8880633 .random-classname-f990bd1 .random-classname-c5256ddd', + '.random-classname-c3d91c17 >', + '.random-classname-8880633 .random-classname-cdc3f861', + '.random-classname-7ef38bd3 > ::before .random-classname-9729fd3b .random-classname-daf18925', + '.random-classname-f124fe9f', + ':nth-child(11)', + '[data-random-attr-876d095a=random-attr-value-787c48f1] >', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-8880633 .random-classname-f124fe9f .random-classname-174aec4b', + '.random-classname-ca13d6af >', + '.random-classname-7ef38bd3 > [data-random-attr-70aafd81]', + '.random-classname-8a0f0c37 :first-child', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-a5f2d0fd .random-classname-218b5045 .random-classname-fdbbb88d >', + '::before .random-classname-32e5d66b', + '.random-classname-7134e52f .random-classname-7ef38bd3 [data-random-attr-70aafd81] :first-child ::slotted', + '.random-classname-877cc41d', + '.random-classname-10800c57', + '.random-classname-7ef38bd3 .random-classname-a5f2d0fd > :first-child .random-classname-72c1d17b', + '::before .random-classname-7ef38bd3 ::slotted ::before', + '.random-classname-7ef38bd3 [data-random-attr-70aafd81] > [data-random-attr-f7a86083] .random-classname-19593267', + ':not(.random-classname-84444669) :nth-child(3) >', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-a5f2d0fd > .random-classname-25af7f82', + ':not(.random-classname-7ef38bd3) > ::slotted ::placeholder .random-classname-900acf6a', + '.random-classname-7ef38bd3 [data-random-attr-70aafd81] > :not(.random-classname-cc6e0e04) ::after', + '.random-classname-18f81c52', + '.random-classname-a5f2d0fd .random-classname-7d385354', + '.random-classname-c1c551c8', + '.random-classname-f7b7063a', + ':nth-child(12)', + '[data-random-attr-70aafd81] .random-classname-7d385354 .random-classname-ece37b0f', + '::before .random-classname-7ef38bd3 .random-classname-8a0f0c37 > ::placeholder .random-classname-9fe65a5d', + '.random-classname-7d385354 .random-classname-9409e5bb', + '::slotted ::placeholder .random-classname-9832fcc3', + '.random-classname-7134e52f .random-classname-7ef38bd3 [data-random-attr-70aafd81] [data-random-attr-8fd8dd71]', + '::before .random-classname-7ef38bd3 > .random-classname-8a0f0c37 .random-classname-351972a7 .random-classname-7d80272f', + '.random-classname-9021edd3', + '.random-classname-9021edd3 .random-classname-bf856cb7', + '.random-classname-e27eb201', + '.random-classname-5c2407db', + '.random-classname-72d40cc5', + '.random-classname-e6b162e3', + '.random-classname-e6b162e3 ::slotted', + '.random-classname-7c0bea91', + '.random-classname-ca321eeb', + ':nth-child(7)', + '.random-classname-7b13f862', + '[data-random-attr-3ebb70b6=random-attr-value-1ca2309d]', + '.random-classname-bbe98721', + '[data-random-attr-c74239fb]', + '.random-classname-8470a75f', + '.random-classname-579ccae9', + '.random-classname-c8b5d903', + '.random-classname-a5f2d0fd .random-classname-8470a75f > .random-classname-1e35f2e7', + '::before .random-classname-7ef38bd3 ::slotted .random-classname-579ccae9 > .random-classname-1d1fe575', + ':not([data-random-attr-70aafd81]) .random-classname-8470a75f :not(.random-classname-8363dd79)', + '.random-classname-3642fcf7', + '.random-classname-a5f2d0fd .random-classname-8470a75f .random-classname-18ec7c1b', + '::before .random-classname-7ef38bd3 ::slotted > .random-classname-579ccae9 > .random-classname-c8aafb7f', + '.random-classname-9f59d409', + '::before > .random-classname-9f59d409 > [data-random-attr-846f8b4d]', + '.random-classname-d768a32b', + '.random-classname-bacc8b8f', + '.random-classname-7ac7ae99', + '[data-random-attr-8596833]', + '.random-classname-1dbe5d17', + '.random-classname-c177e161', + '.random-classname-7134e52f .random-classname-9f59d409 .random-classname-f2c85f23 > .random-classname-d768a32b > .random-classname-5c178225', + '::before .random-classname-9f59d409 ::before :last-child .random-classname-db366d29', + '.random-classname-9f59d409 :first-child .random-classname-1d70f543', + '::before .random-classname-9f59d409 [data-random-attr-846f8b4d] > .random-classname-1d70f543 ::slotted', + '.random-classname-cace71f1', + '.random-classname-547d77af', + '.random-classname-dc8229fd', + '::before ::before', + '.random-classname-1205305b', + '.random-classname-cb05c945', + '.random-classname-9c8ed3bf', + '.random-classname-e68d6d3c', + ':nth-child(6)', + '.random-classname-1205305b > .random-classname-1b8773cf', + '::before .random-classname-1205305b :not(.random-classname-1b8773cf) ::slotted', + '.random-classname-75dc7ba1', + '.random-classname-d483a27b', + '.random-classname-286e4f69', + '[data-random-attr-6aa45183]', + '.random-classname-8aaccd37 > .random-classname-1205305b .random-classname-1b8773cf :nth-child(7)', + '.random-classname-588caad0', + '.random-classname-570fac82', + '.random-classname-3af556d6', + '.random-classname-974b6478', + '.random-classname-190d832c', + '.random-classname-51ff913e', + '.random-classname-7134e52f .random-classname-8aaccd37 > .random-classname-1205305b .random-classname-190d832c > .random-classname-49234854', + '::before ::before > ::before', + '.random-classname-7134e52f .random-classname-8aaccd37 .random-classname-a2366bab .random-classname-8dc69c0f', + '.random-classname-796040b3', + '.random-classname-3b43335d', + '.random-classname-247a7d97', + '.random-classname-c48fedc3', + '::before .random-classname-6b5755e1 .random-classname-3b5d0671', + '.random-classname-3fe2f035', + '::before ::before ::before ::before >', + '.random-classname-a2366bab > :not(::before) :first-child', + '::before ::before ::before .random-classname-3ef3443f', + ':not(.random-classname-7134e52f) .random-classname-8aaccd37 .random-classname-a2366bab > .random-classname-dc2085c5 ::before', + '::before .random-classname-3ef3443f [data-random-attr-737c9391]', + '.random-classname-7134e52f .random-classname-8aaccd37 .random-classname-a2366bab .random-classname-dc2085c5 .random-classname-984dafeb >', + '.random-classname-3ef3443f .random-classname-9816559', + '.random-classname-dc2085c5 .random-classname-38a00cf3', + '.random-classname-fc860afb', + '.random-classname-1ba79ce5', + '.random-classname-aa71085f', + '.random-classname-7f73ca03', + '.random-classname-aa71085f .random-classname-eb616a0b', + '.random-classname-1ba79ce5 > ::before ::before', + '.random-classname-7134e52f .random-classname-8aaccd37 .random-classname-4c73bdf7', + '::before > ::before .random-classname-17055541 > :nth-child(7)', + '.random-classname-412bfd2', + '.random-classname-889042d4', + ':nth-child(7) > :first-child', + '.random-classname-8aaccd37 .random-classname-4c73bdf7 .random-classname-e1b0cd1b :nth-child(4) >', + '.random-classname-c3067799', + '.random-classname-4c73bdf7 .random-classname-e1b0cd1b .random-classname-dfdf1fdd', + '::before :first-child >', + '.random-classname-7134e52f [data-random-attr-e583c09f] .random-classname-2f8fe643', + '::before .random-classname-8ee17b25 .random-classname-2f8fe643 .random-classname-c7b73f6d', + '.random-classname-868a815b', + '.random-classname-2f8fe643 > .random-classname-3128b4bf >', + ':not(.random-classname-58244245) .random-classname-63670c63', + '::before :first-child .random-classname-2f8fe643 .random-classname-3128b4bf ::before >', + '.random-classname-501d94cf', + '::before .random-classname-8ee17b25 > .random-classname-2f8fe643 ::slotted', + '.random-classname-a149737b', + '.random-classname-76359965', + '[data-random-attr-34eab8df]', + '.random-classname-a7c5869', + '.random-classname-a9244283', + '::before > .random-classname-8ee17b25 .random-classname-49cf25ad', + '.random-classname-2fd1a66e', + '.random-classname-7a968fd0', + '[data-random-attr-75e3d982=random-attr-value-3f5ccaf9]', + '.random-classname-39fba393', + '[data-random-attr-fa5ff93d]', + '.random-classname-7134e52f [data-random-attr-e583c09f] .random-classname-3b723467 [data-random-attr-75e3d982=random-attr-value-3f5ccaf9] > .random-classname-e959e77', + '.random-classname-4f4759b', + '[data-random-attr-ddd8085]', + '.random-classname-412f9f3b .random-classname-e54f88a3 >', + '::before :first-child .random-classname-d0442189 ::slotted >', + ':not([data-random-attr-e583c09f]) .random-classname-e54f88a3 .random-classname-a15bcc87 [data-random-attr-e27b5c19]', + '.random-classname-abc40c5d', + '.random-classname-2f85be97', + '.random-classname-a91387bb', + '[data-random-attr-67e3f7a5]', + '.random-classname-c8e5f11f', + '.random-classname-118b7aa9', + '[data-random-attr-e583c09f] .random-classname-e54f88a3 > .random-classname-70dec3', + '.random-classname-61894bed', + '.random-classname-e91474a7', + '.random-classname-26c116cb', + '.random-classname-63604fd3', + '.random-classname-7134e52f :not([data-random-attr-e583c09f]) .random-classname-d0442189 .random-classname-e9bcaf7d', + '.random-classname-8ee17b25 > :not(::before) :first-child :nth-child(1)', + '.random-classname-d0442189 .random-classname-e9bcaf7d ::before >', + '.random-classname-c3a42cc7', + '.random-classname-1b513c91', + '.random-classname-2b2c7855', + '::before .random-classname-8ee17b25 .random-classname-e54f88a3 :first-child :not(.random-classname-4c11e29d) >', + '.random-classname-99e72ed7', + '.random-classname-9c0c211e', + '.random-classname-97c8ce00', + '.random-classname-b4e82732', + '.random-classname-33980134', + ':nth-child(4)', + '.random-classname-8d5ed9b1 >', + '.random-classname-c1e9f16f >', + '.random-classname-33980134 :first-child .random-classname-4d687ef7', + '.random-classname-f7febd05', + '.random-classname-b4e82732 .random-classname-5680bd7f >', + '.random-classname-832ee609 .random-classname-555cbd4d', + '::before :first-child .random-classname-b4e82732 .random-classname-832ee609 .random-classname-e1b606d1', + '.random-classname-7134e52f [data-random-attr-e583c09f] .random-classname-33980134 ::slotted [data-random-attr-5502c695] >', + '.random-classname-6c294099', + '.random-classname-623aca33', + '[data-random-attr-10f1f8dd]', + '.random-classname-b7d4df17 >', + '::before :first-child .random-classname-bf99219f', + '.random-classname-ae4586d >', + '.random-classname-aaadb527 .random-classname-14421f4b', + '.random-classname-412f9f3b ::slotted .random-classname-ff9dc5b5', + ':not(::slotted) .random-classname-ff9dc5b5 [data-random-attr-d70cdbfd]', + '.random-classname-ff9dc5b5 [data-random-attr-f3583881]', + '[data-random-attr-d0695bf]', + '.random-classname-ef58cf88', + '::before :first-child > ::slotted :last-child ::before', + '.random-classname-bd224da1', + '.random-classname-e913447b', + '.random-classname-ba6e6169', + '.random-classname-bd224da1 .random-classname-c2d119df .random-classname-6f24b567', + '.random-classname-c744ee31', + '.random-classname-c2d119df .random-classname-1b23038b', + '.random-classname-a1b73f5', + '.random-classname-a1b73f5 > .random-classname-f180523d >', + '.random-classname-4aec5f77', + '.random-classname-42b1f2c1', + '.random-classname-b33ec69b', + '.random-classname-8a08f985', + '.random-classname-2900adff', + '.random-classname-9012aa89', + '::before :not(.random-classname-88a44f1d) .random-classname-892e89cd', + '.random-classname-5579cba4', + '.random-classname-c1c68876', + '::slotted ::before .random-classname-ac778dab > .random-classname-3755180a', + '::slotted > ::before .random-classname-ac778dab .random-classname-8b509fcc', + '.random-classname-8196f6de', + '.random-classname-740e9c0', + '.random-classname-611d3246', + '.random-classname-2af78168', + '[data-random-attr-3df5f6da=random-attr-value-7d915871]', + '::before ::placeholder > .random-classname-611d3246 [data-random-attr-3df5f6da=random-attr-value-7d915871] .random-classname-b7836235 >', + '.random-classname-e2ef0a2f', + '.random-classname-5dc580d3', + '.random-classname-7134e52f ::placeholder > .random-classname-9569f8f4 .random-classname-e2ef0a2f .random-classname-4c26087d', + '.random-classname-8641ed01', + '.random-classname-8939fadb', + '[data-random-attr-41a577c5]', + '.random-classname-7134e52f .random-classname-8196f6de .random-classname-9569f8f4 .random-classname-faaf063f >', + '.random-classname-b1e1ecc9 .random-classname-c185b5e3', + '.random-classname-389e591', + '::before ::slotted ::slotted >', + '.random-classname-7134e52f [data-random-attr-b4c33155] :first-child .random-classname-5019acfb >', + '.random-classname-85476ef3 :not([data-random-attr-c6558ee5]) .random-classname-cc9ce5e9', + '.random-classname-f77bac03', + '::slotted [data-random-attr-c6558ee5] .random-classname-d8a775e7', + '[data-random-attr-b4c33155] ::after', + '.random-classname-e48930f8', + '.random-classname-7134e52f .random-classname-389e591 :nth-child(9) .random-classname-397c0f56 .random-classname-75fc3605', + '.random-classname-c8ef6f09', + '.random-classname-123fb223', + '.random-classname-5409564d', + '[data-random-attr-e855ce07]', + '::before .random-classname-6a90d1eb > [data-random-attr-e855ce07] [data-random-attr-50ca562b]', + '.random-classname-7134e52f > .random-classname-389e591 :not(.random-classname-123fb223) .random-classname-3087afd1 .random-classname-a427f95', + ':last-child >', + '.random-classname-7134e52f [data-random-attr-b4c33155] [data-random-attr-e855ce07] .random-classname-6300999 .random-classname-18062017', + '.random-classname-c745413b', + '.random-classname-49616d25', + '.random-classname-eef2829f', + '[data-random-attr-8218829]', + '.random-classname-5435716d', + '.random-classname-c68ceab9', + '::slotted >', + '.random-classname-f304a181', + '.random-classname-402876bf', + '::before ::slotted', + '::before > :last-child .random-classname-9b641a6b', + '.random-classname-7134e52f .random-classname-c68ceab9 > .random-classname-fccbba11 > :last-child', + '.random-classname-40a4281d', + '.random-classname-fccbba11 > .random-classname-3a4c0dd5 > .random-classname-2bb84580', + '.random-classname-e8f30b4', + '.random-classname-7134e52f .random-classname-e8f30b4 > .random-classname-781a5528', + ':first-child > .random-classname-781a5528 [data-random-attr-1ca2a6dc=random-attr-value-caa9148b]', + '.random-classname-9efa62ef', + '[data-random-attr-53715cf9]', + '::before :first-child .random-classname-781a5528 [data-random-attr-1ca2a6dc=random-attr-value-caa9148b] .random-classname-ebc4ab3d', + '.random-classname-3f23e83e', + '.random-classname-3d0ac220', + ':last-child .random-classname-d45c2754', + '.random-classname-bca84fa6', + '.random-classname-e1a33a3a', + ], +}; diff --git a/apps/stress-test/src/fixtures/xl_1.js b/apps/stress-test/src/fixtures/xl_1.js new file mode 100644 index 0000000000000..19e55e46889d5 --- /dev/null +++ b/apps/stress-test/src/fixtures/xl_1.js @@ -0,0 +1,19895 @@ +/* eslint-disable @fluentui/max-len */ +export default { + tree: { + value: { + name: '0-0', + classNames: ['.random-classname-7134e52f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '1-11', + classNames: ['.random-classname-7ef38bd3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-3', + classNames: ['.random-classname-277f4b7d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-7', + classNames: ['.random-classname-d7d1eab7', '.random-classname-fa45e001'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-9', + classNames: ['.random-classname-63271ac5', '.random-classname-57d7a13f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '5-3', + classNames: ['.random-classname-b1643fc9', '.random-classname-6c6280e3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '6-3', + classNames: ['.random-classname-d75c28c7', '.random-classname-5e569891'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-3', + classNames: ['.random-classname-1406fceb'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '8-5', + classNames: ['.random-classname-fc9c0a59'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '9-3', + classNames: ['.random-classname-91c27e9d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-7', + classNames: ['.random-classname-338e2ad7'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-13', + classNames: [ + '.random-classname-b1f0b1e5', + '.random-classname-bc3be55f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-5', + classNames: ['.random-classname-c710b8e9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '13-3', + classNames: [ + '.random-classname-196d4e2d', + '.random-classname-7d68f0e7', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '14-2', + classNames: ['.random-classname-60f9370b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '15-12', + classNames: [ + '.random-classname-e3057375', + '.random-classname-dfff6d6f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '16-13', + classNames: [ + '.random-classname-db8b4b79', + '.random-classname-a6dc7813', + ], + attributes: [ + { + key: 'data-random-attr-a32a41bd', + selector: '[data-random-attr-a32a41bd]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '17-1', + classNames: [ + '.random-classname-ee8f1a41', + '.random-classname-c66fda1b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '18-11', + classNames: [ + '.random-classname-9c70d905', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '19-11', + classNames: [ + '.random-classname-7e5397f', + '.random-classname-db14c209', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '20-12', + classNames: [ + '.random-classname-9eb77d23', + ], + attributes: [ + { + key: + 'data-random-attr-8412594d', + selector: + '[data-random-attr-8412594d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '21-2', + classNames: [ + '.random-classname-f25762d1', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '22-3', + classNames: [ + '.random-classname-d66be295', + ], + attributes: [ + { + key: + 'data-random-attr-8d8e498f', + selector: + '[data-random-attr-8d8e498f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '23-12', + classNames: [ + '.random-classname-ccf61c99', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '24-13', + classNames: [ + '.random-classname-f6b7db17', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '25-13', + classNames: [ + '.random-classname-37740f61', + ], + attributes: [ + { + key: + 'data-random-attr-acad2c3b', + selector: + '[data-random-attr-acad2c3b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-7b6f9025', + '.random-classname-b6db9d9f', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '27-6', + classNames: [ + '.random-classname-7fbf1343', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '28-6', + classNames: [ + '.random-classname-e63fb127', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '29-9', + classNames: [ + '.random-classname-6c8e1ff1', + '.random-classname-a855db4b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-c5ee35af', + '.random-classname-4247db9', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '31-5', + classNames: [ + '.random-classname-de8777fd', + '.random-classname-d8354b37', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '32-7', + classNames: [ + '.random-classname-b4068e5b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '33-1', + classNames: [ + '.random-classname-92711bf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '34-7', + classNames: [ + '.random-classname-3564b963', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-9', + classNames: [ + '.random-classname-2c161f8d', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '36-3', + classNames: [ + '.random-classname-39d0456b', + '.random-classname-172870d5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-9', + classNames: [ + '.random-classname-eb2731cf', + ], + attributes: [ + { + key: + 'data-random-attr-185e6ed9', + selector: + '[data-random-attr-185e6ed9]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '38-7', + classNames: [ + '.random-classname-d1adcb57', + '.random-classname-7426a9a1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-2e08ae65', + '.random-classname-2cf95df', + ], + attributes: [ + { + key: + 'data-random-attr-8dfe3d69', + selector: + '[data-random-attr-8dfe3d69]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-3904daad', + '.random-classname-af2b167', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '41-1', + classNames: [ + '.random-classname-260e8ff5', + ], + attributes: [ + { + key: + 'data-random-attr-23413def', + selector: + '[data-random-attr-23413def]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '42-11', + classNames: [ + '.random-classname-4ebeff9', + '.random-classname-2ec71093', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '43-9', + classNames: [ + '.random-classname-87d6ee3d', + ], + attributes: [ + { + key: + 'data-random-attr-ca295b77', + selector: + '[data-random-attr-ca295b77]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '44-3', + classNames: [ + '.random-classname-4c844ec1', + ], + attributes: [ + { + key: + 'data-random-attr-e82d829b', + selector: + '[data-random-attr-e82d829b]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '45-7', + classNames: [ + '.random-classname-6bdd29ff', + '.random-classname-10308689', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '46-8', + classNames: [ + '.random-classname-24aa35a3', + '.random-classname-79c25cd', + ], + attributes: [ + { + key: + 'data-random-attr-1ad2c987', + selector: + '[data-random-attr-1ad2c987]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '47-2', + classNames: [ + '.random-classname-100549ab', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '48-10', + classNames: [ + '.random-classname-3baf3f15', + '.random-classname-58445a0f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '49-1', + classNames: [ + '.random-classname-29150119', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '50-2', + classNames: [ + '.random-classname-6f0adeb3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '51-1', + classNames: [ + '.random-classname-ecaffb97', + '.random-classname-5fef83e1', + ], + attributes: [ + { + key: + 'data-random-attr-c00b14bb', + selector: + '[data-random-attr-c00b14bb]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '52-10', + classNames: [ + '.random-classname-d057ce1f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '53-7', + classNames: [ + '.random-classname-6b5a0bc3', + '.random-classname-99a400ed', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '54-1', + classNames: [ + '.random-classname-72b8b471', + '.random-classname-3cfe3cb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '55-7', + classNames: [ + '.random-classname-92d27e35', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '56-7', + classNames: [ + '.random-classname-4821a239', + '.random-classname-9748bcd3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '57-7', + classNames: [ + '.random-classname-8d58a47d', + ], + attributes: [ + { + key: + 'data-random-attr-a849abb7', + selector: + '[data-random-attr-a849abb7]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '58-4', + classNames: [ + '.random-classname-dab04901', + '.random-classname-f24b6db', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '59-1', + classNames: [ + '.random-classname-d01bc8c9', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '60-6', + classNames: [ + '.random-classname-5c5a9e08', + '.random-classname-19ad5c7a', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '61-7', + classNames: [ + '.random-classname-a446ca4e', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '62-5', + classNames: [ + '.random-classname-6dcfbeb0', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '63-3', + classNames: [ + '.random-classname-f47c4b62', + '.random-classname-a3e524e4', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '64-9', + classNames: [ + '.random-classname-1351174a', + ], + attributes: [ + { + key: + 'data-random-attr-ea67210c', + value: + 'random-attr-value-750268fb', + selector: + '[data-random-attr-ea67210c=random-attr-value-750268fb]', + }, + ], + siblings: [ + ':nth-child(7)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '65-3', + classNames: [ + '.random-classname-8290a234', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '66-5', + classNames: [ + '.random-classname-9a75ed86', + ], + attributes: [ + { + key: + 'data-random-attr-9fd61ea8', + value: + 'random-attr-value-a8ed71e7', + selector: + '[data-random-attr-9fd61ea8=random-attr-value-a8ed71e7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '67-9', + classNames: [ + '.random-classname-906d480b', + '.random-classname-a4c0ac75', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '68-7', + classNames: [ + '.random-classname-85140e6f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '69-3', + classNames: [ + '.random-classname-78059479', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '70-3', + classNames: [ + '.random-classname-1d4c9abd', + '.random-classname-fad63bf7', + ], + attributes: [ + { + key: + 'data-random-attr-2b528341', + selector: + '[data-random-attr-2b528341]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '71-7', + classNames: [ + '.random-classname-152c2b1b', + '.random-classname-fbde5205', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '72-9', + classNames: [ + '.random-classname-d6a61a7f', + '.random-classname-e1454b09', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '73-5', + classNames: [ + '.random-classname-1dfdee23', + '.random-classname-922ef24d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '74-3', + classNames: [ + '.random-classname-f990bd1', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '75-3', + classNames: [ + '.random-classname-220b6a8f', + '.random-classname-36ce599', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '76-7', + classNames: [ + '.random-classname-c5256ddd', + '.random-classname-c3d91c17', + ], + attributes: [ + { + key: + 'data-random-attr-cdc3f861', + selector: + '[data-random-attr-cdc3f861]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '77-7', + classNames: [ + '.random-classname-9729fd3b', + ], + attributes: [ + { + key: + 'data-random-attr-daf18925', + selector: + '[data-random-attr-daf18925]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '78-9', + classNames: [ + '.random-classname-c0056429', + '.random-classname-92d60443', + ], + attributes: [ + { + key: + 'data-random-attr-13c90d6d', + selector: + '[data-random-attr-13c90d6d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '79-9', + classNames: [ + '.random-classname-52b53227', + ], + attributes: [ + { + key: + 'data-random-attr-787c48f1', + selector: + '[data-random-attr-787c48f1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '80-3', + classNames: [ + '.random-classname-2191ab5', + '.random-classname-ca13d6af', + ], + attributes: [ + { + key: + 'data-random-attr-7ed7c6b9', + selector: + '[data-random-attr-7ed7c6b9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '81-3', + classNames: [ + '.random-classname-a5f2d0fd', + '.random-classname-8a0f0c37', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '82-9', + classNames: [ + '.random-classname-2683df5b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '83-5', + classNames: [ + '.random-classname-218b5045', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '84-9', + classNames: [ + '.random-classname-bded0d49', + '.random-classname-508c2a63', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '85-1', + classNames: [ + '.random-classname-f5791611', + '.random-classname-32e5d66b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '86-4', + classNames: [ + '.random-classname-fe8129d5', + '.random-classname-ff3552cf', + ], + attributes: [ + { + key: + 'data-random-attr-a18e37d9', + selector: + '[data-random-attr-a18e37d9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '87-4', + classNames: [ + '.random-classname-877cc41d', + '.random-classname-10800c57', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '88-8', + classNames: [ + '.random-classname-bec0989e', + '.random-classname-ffddb180', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '89-7', + classNames: [ + '.random-classname-307456b2', + '.random-classname-8355cb4', + ], + attributes: [ + { + key: + 'data-random-attr-533b0c06', + value: + 'random-attr-value-29cef3ad', + selector: + '[data-random-attr-533b0c06=random-attr-value-29cef3ad]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '90-6', + classNames: [ + '.random-classname-58d77331', + '.random-classname-f4a8d08b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '91-3', + classNames: [ + '.random-classname-777deef', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '92-7', + classNames: [ + '.random-classname-86d838f9', + '.random-classname-d5ff4193', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '93-6', + classNames: [ + '.random-classname-d58b473d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '94-4', + classNames: [ + '.random-classname-5e341c77', + '.random-classname-1cf9b7c1', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '95-4', + classNames: [ + '.random-classname-ca400aff', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '96-4', + classNames: [ + '.random-classname-20530f89', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '97-7', + classNames: [ + '.random-classname-15cabecd', + '.random-classname-ae91ca87', + ], + attributes: [], + siblings: [ + ':nth-child(5)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '98-5', + classNames: [ + '.random-classname-1bac300e', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '99-8', + classNames: [ + '.random-classname-3250ea70', + ], + attributes: [ + { + key: + 'data-random-attr-eb7b2d22', + value: + 'random-attr-value-adfdca19', + selector: + '[data-random-attr-eb7b2d22=random-attr-value-adfdca19]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '100-7', + classNames: [ + '.random-classname-9fe65a5d', + ], + attributes: [ + { + key: + 'data-random-attr-be333c97', + selector: + '[data-random-attr-be333c97]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '101-5', + classNames: [ + '.random-classname-9409e5bb', + '.random-classname-9e5005a5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '102-3', + classNames: [ + '.random-classname-9b432f1f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '103-5', + classNames: [ + '.random-classname-9832fcc3', + ], + attributes: [ + { + key: + 'data-random-attr-e37719ed', + selector: + '[data-random-attr-e37719ed]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '104-7', + classNames: [ + '.random-classname-351972a7', + '.random-classname-8fd8dd71', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '105-1', + classNames: [ + '.random-classname-7808b735', + '.random-classname-7d80272f', + ], + attributes: [ + { + key: + 'data-random-attr-fa46eb39', + selector: + '[data-random-attr-fa46eb39]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '106-3', + classNames: [ + '.random-classname-9a55fd7d', + '.random-classname-bf856cb7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '107-5', + classNames: [ + '.random-classname-5c2407db', + '.random-classname-72d40cc5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '108-7', + classNames: [ + '.random-classname-c7fb633f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '109-1', + classNames: [ + '.random-classname-2b751c9', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '110-3', + classNames: [ + '.random-classname-e6b162e3', + ], + attributes: [ + { + key: + 'data-random-attr-589c050d', + selector: + '[data-random-attr-589c050d]', + }, + ], + siblings: [ + ':nth-child(5)', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '111-5', + classNames: [ + '.random-classname-7e3f274e', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '112-7', + classNames: [ + '.random-classname-7b13f862', + '.random-classname-d83259e4', + ], + attributes: [ + { + key: + 'data-random-attr-3ebb70b6', + value: + 'random-attr-value-1ca2309d', + selector: + '[data-random-attr-3ebb70b6=random-attr-value-1ca2309d]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '113-1', + classNames: [ + '.random-classname-bbe98721', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '114-3', + classNames: [ + '.random-classname-c74239fb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '115-5', + classNames: [ + '.random-classname-8470a75f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '116-7', + classNames: [ + '.random-classname-579ccae9', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '117-1', + classNames: [ + '.random-classname-c8b5d903', + '.random-classname-df01802d', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '118-3', + classNames: [ + '.random-classname-63e5590b', + '.random-classname-1d1fe575', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '119-5', + classNames: [ + '.random-classname-ac6caf6f', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '120-7', + classNames: [ + '.random-classname-5877a1f8', + '.random-classname-62bf35ea', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '121-1', + classNames: [ + '.random-classname-d88702be', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '122-3', + classNames: [ + '.random-classname-68fd40a0', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '123-5', + classNames: [ + '.random-classname-d35b4dd4', + ], + attributes: [ + { + key: + 'data-random-attr-b0eeba26', + value: + 'random-attr-value-846f8b4d', + selector: + '[data-random-attr-b0eeba26=random-attr-value-846f8b4d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '124-7', + classNames: [ + '.random-classname-2edacb07', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '125-1', + classNames: [ + '.random-classname-d768a32b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '126-4', + classNames: [ + '.random-classname-7ac7ae99', + '.random-classname-8596833', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '127-3', + classNames: [ + '.random-classname-c177e161', + '.random-classname-18aace3b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '128-5', + classNames: [ + '.random-classname-5c178225', + '.random-classname-50b25f9f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '129-7', + classNames: [ + '.random-classname-1d70f543', + '.random-classname-faae266d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '130-3', + classNames: [ + '.random-classname-cace71f1', + '.random-classname-ee43fd4b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '131-2', + classNames: [ + '.random-classname-c6f0fb9', + '.random-classname-75c00653', + ], + attributes: [ + { + key: + 'data-random-attr-dc8229fd', + selector: + '[data-random-attr-dc8229fd]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-2', + classNames: [ + '.random-classname-c22b6681', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-4', + classNames: [ + '.random-classname-1205305b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-2', + classNames: [ + '.random-classname-9c8ed3bf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-5379b63', + '.random-classname-9785518d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-2', + classNames: [ + '.random-classname-b979ab47', + '.random-classname-4ab7bf11', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-b27de2d5', + '.random-classname-1b8773cf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-8008b473', + '.random-classname-bc109d1d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-60164d57', + '.random-classname-75dc7ba1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-4', + classNames: [ + '.random-classname-7882a065', + '.random-classname-f04857df', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-7', + classNames: [ + '.random-classname-286e4f69', + '.random-classname-6aa45183', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-54bd0cad', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-53429c31', + '.random-classname-c022e18b', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-7', + classNames: [ + '.random-classname-bfa881f9', + '.random-classname-29bb7293', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-7663a03d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-7', + classNames: [ + '.random-classname-80d320c1', + '.random-classname-b3ae249b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-53e6ebff', + '.random-classname-30599889', + ], + attributes: [ + { + key: + 'data-random-attr-123f17a3', + selector: + '[data-random-attr-123f17a3]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-d01d57cd', + '.random-classname-d614cb87', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-d656b115', + '.random-classname-8dc69c0f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-7', + classNames: [ + '.random-classname-bbca9319', + '.random-classname-796040b3', + ], + attributes: [ + { + key: + 'data-random-attr-3b43335d', + selector: + '[data-random-attr-3b43335d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-6b5755e1', + '.random-classname-870cb6bb', + ], + attributes: [ + { + key: + 'data-random-attr-c647fea5', + selector: + '[data-random-attr-c647fea5]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-198471a9', + '.random-classname-c48fedc3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-1c34f3a7', + '.random-classname-3b5d0671', + ], + attributes: [ + { + key: + 'data-random-attr-75c205cb', + selector: + '[data-random-attr-75c205cb]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-7', + classNames: [ + '.random-classname-510bc82f', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-797f1ed3', + '.random-classname-de77567d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-a1b11b01', + '.random-classname-aa2758db', + ], + attributes: [ + { + key: + 'data-random-attr-dc2085c5', + selector: + '[data-random-attr-dc2085c5]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-d936dac9', + '.random-classname-4e1ed3e3', + ], + attributes: [ + { + key: + 'data-random-attr-ac779e0d', + selector: + '[data-random-attr-ac779e0d]', + }, + ], + siblings: [ + ':nth-child(9)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-25b737bc', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-4ee688b0', + '.random-classname-ed1fa562', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-7', + classNames: [ + '.random-classname-2c138ee4', + '.random-classname-25736db6', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-3262cb0c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-8a20841e', + '.random-classname-bed22900', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-c4018c34', + '.random-classname-92186786', + ], + attributes: [ + { + key: + 'data-random-attr-2df0a8a8', + value: + 'random-attr-value-ed4273e7', + selector: + '[data-random-attr-2df0a8a8=random-attr-value-ed4273e7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-eb616a0b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-6609506f', + '.random-classname-8da62679', + ], + attributes: [ + { + key: + 'data-random-attr-c94b0b13', + selector: + '[data-random-attr-c94b0b13]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-7', + classNames: [ + '.random-classname-42fd4cbd', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-17055541', + '.random-classname-e1b0cd1b', + ], + attributes: [ + { + key: + 'data-random-attr-19a54405', + selector: + '[data-random-attr-19a54405]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-edf3dc7f', + ], + attributes: [ + { + key: + 'data-random-attr-a5525d09', + selector: + '[data-random-attr-a5525d09]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-2d16d023', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-663fcc07', + '.random-classname-f7485dd1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-b8670d95', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-4', + classNames: [ + '.random-classname-42081933', + '.random-classname-dfdf1fdd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-5', + classNames: [ + '.random-classname-14679e17', + ], + attributes: [ + { + key: + 'data-random-attr-a28fca61', + selector: + '[data-random-attr-a28fca61]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-8ee17b25', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-904b7629', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-2f8fe643', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-c7b73f6d', + ], + attributes: [], + siblings: [ + ':nth-child(7)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-916fd79c', + ], + attributes: [], + siblings: [ + ':nth-child(4)', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-5', + classNames: [ + '.random-classname-3cea58b9', + ], + attributes: [ + { + key: + 'data-random-attr-bd5f3753', + selector: + '[data-random-attr-bd5f3753]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-ea0e8e37', + '.random-classname-130fcf81', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-58244245', + ], + attributes: [ + { + key: + 'data-random-attr-3128b4bf', + selector: + '[data-random-attr-3128b4bf]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-63670c63', + '.random-classname-8972ea8d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-5', + classNames: [ + '.random-classname-4a4fac47', + '.random-classname-85a6811', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-c31e9bd5', + '.random-classname-501d94cf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-f299c9d9', + '.random-classname-59d86573', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-5', + classNames: [ + '.random-classname-915bd7ca', + '.random-classname-98ae358c', + ], + attributes: [ + { + key: + 'data-random-attr-f82fd29e', + value: + 'random-attr-value-76359965', + selector: + '[data-random-attr-f82fd29e=random-attr-value-76359965]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-4', + classNames: [ + '.random-classname-a7c5869', + '.random-classname-a9244283', + ], + attributes: [ + { + key: + 'data-random-attr-49cf25ad', + selector: + '[data-random-attr-49cf25ad]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-4', + classNames: [ + '.random-classname-4811c531', + '.random-classname-c7a0f28b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-4', + classNames: [ + '.random-classname-7eb120ef', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-4', + classNames: [ + '.random-classname-3f5ccaf9', + '.random-classname-39fba393', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-5', + classNames: [ + '.random-classname-e959e77', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-81089c1', + '.random-classname-4f4759b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-ddd8085', + ], + attributes: [ + { + key: + 'data-random-attr-18d1ccff', + selector: + '[data-random-attr-18d1ccff]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-e54f88a3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-4', + classNames: [ + '.random-classname-a15bcc87', + ], + attributes: [ + { + key: + 'data-random-attr-a8f2b251', + selector: + '[data-random-attr-a8f2b251]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-7ca06a15', + ], + attributes: [ + { + key: + 'data-random-attr-4aedbd0f', + selector: + '[data-random-attr-4aedbd0f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-e27b5c19', + ], + attributes: [ + { + key: + 'data-random-attr-8450f1b3', + selector: + '[data-random-attr-8450f1b3]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-2f85be97', + ], + attributes: [ + { + key: + 'data-random-attr-f9213ee1', + selector: + '[data-random-attr-f9213ee1]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-67e3f7a5', + '.random-classname-c8e5f11f', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-70dec3', + '.random-classname-61894bed', + ], + attributes: [ + { + key: + 'data-random-attr-e91474a7', + selector: + '[data-random-attr-e91474a7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-4', + classNames: [ + '.random-classname-26c116cb', + '.random-classname-7a612935', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-4', + classNames: [ + '.random-classname-ff3d7d39', + '.random-classname-63604fd3', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-4', + classNames: [ + '.random-classname-248eeb7', + '.random-classname-a8478401', + ], + attributes: [], + siblings: [ + ':nth-child(1)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-4', + classNames: [ + '.random-classname-210b6160', + '.random-classname-1bd1f192', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-da91a94', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-2ddfe4e6', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-c2b0ed08', + ], + attributes: [], + siblings: [ + ':nth-child(8)', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '132-2', + classNames: [ + '.random-classname-2b2c7855', + '.random-classname-b882254f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-4', + classNames: [ + '.random-classname-1ceb2e59', + '.random-classname-5b1bdf3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-4c11e29d', + '.random-classname-99e72ed7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-85cb5921', + '.random-classname-24cddbfb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-11b5695f', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-ad25b22d', + '.random-classname-2612f4e7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-4', + classNames: [ + '.random-classname-8d5ed9b1', + '.random-classname-36e17b0b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-4', + classNames: [ + '.random-classname-c1e9f16f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-4', + classNames: [ + '.random-classname-26cc6f79', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-4', + classNames: [ + '.random-classname-9dcd3c13', + '.random-classname-e8ba5bd', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-e5f4be41', + '.random-classname-7f791e1b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-f7febd05', + ], + attributes: [ + { + key: + 'data-random-attr-5680bd7f', + selector: + '[data-random-attr-5680bd7f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-dce94123', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-555cbd4d', + '.random-classname-4968cd07', + ], + attributes: [ + { + key: + 'data-random-attr-e1b606d1', + selector: + '[data-random-attr-e1b606d1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-4', + classNames: [ + '.random-classname-f7a5c52b', + '.random-classname-5502c695', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-391acd8f', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-623aca33', + '.random-classname-10f1f8dd', + ], + attributes: [ + { + key: + 'data-random-attr-b7d4df17', + selector: + '[data-random-attr-b7d4df17]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-10bb361', + '.random-classname-20b8703b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-34f7425', + '.random-classname-bf99219f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-d932d743', + '.random-classname-ae4586d', + ], + attributes: [ + { + key: + 'data-random-attr-aaadb527', + selector: + '[data-random-attr-aaadb527]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-14421f4b', + '.random-classname-ff9dc5b5', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-8d826853', + '.random-classname-d70cdbfd', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-9413d25b', + '.random-classname-58e6bb45', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-4', + classNames: [ + '.random-classname-d0695bf', + ], + attributes: [], + siblings: [ + ':nth-child(7)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-4967c366', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-ef58cf88', + '.random-classname-d14609fa', + ], + attributes: [ + { + key: + 'data-random-attr-3ed2973c', + value: + 'random-attr-value-1a3e896b', + selector: + '[data-random-attr-3ed2973c=random-attr-value-1a3e896b]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-da7592d9', + '.random-classname-5e2c1673', + ], + attributes: [ + { + key: + 'data-random-attr-88a44f1d', + selector: + '[data-random-attr-88a44f1d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-bd224da1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-198c9265', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-ba6e6169', + '.random-classname-c3283383', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-99053ead', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-6f24b567', + '.random-classname-c744ee31', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-4', + classNames: [ + '.random-classname-1b23038b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-31b3c1ef', + '.random-classname-95f513f9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-f180523d', + ], + attributes: [ + { + key: + 'data-random-attr-4aec5f77', + selector: + '[data-random-attr-4aec5f77]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-b33ec69b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-8a08f985', + ], + attributes: [ + { + key: + 'data-random-attr-2900adff', + selector: + '[data-random-attr-2900adff]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-9012aa89', + ], + attributes: [ + { + key: + 'data-random-attr-b5e3f9a3', + selector: + '[data-random-attr-b5e3f9a3]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-2066cd87', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-76a6470e', + '.random-classname-29ae1970', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-5579cba4', + '.random-classname-c1c68876', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '131-2', + classNames: [ + '.random-classname-3aa718', + ], + attributes: [ + { + key: + 'data-random-attr-3755180a', + value: + 'random-attr-value-4c4f27e1', + selector: + '[data-random-attr-3755180a=random-attr-value-4c4f27e1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '132-3', + classNames: [ + '.random-classname-1323f0a5', + '.random-classname-4b9d521f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-7b7683a9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-b5c864ed', + '.random-classname-abb7f5a7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-7d915871', + '.random-classname-e7c427cb', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-720ec639', + '.random-classname-5dc580d3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-4dd0afb7', + '.random-classname-8641ed01', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-8939fadb', + '.random-classname-41a577c5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-faaf063f', + ], + attributes: [ + { + key: + 'data-random-attr-b1e1ecc9', + selector: + '[data-random-attr-b1e1ecc9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-449ad00d', + '.random-classname-e2202dc7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-389e591', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '132-3', + classNames: [ + '.random-classname-b4c33155', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '133-3', + classNames: [ + '.random-classname-7d38f759', + '.random-classname-85476ef3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-97fbb9d', + '.random-classname-99676fd7', + ], + attributes: [ + { + key: + 'data-random-attr-80d24221', + selector: + '[data-random-attr-80d24221]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-c6558ee5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-cc9ce5e9', + '.random-classname-f77bac03', + ], + attributes: [ + { + key: + 'data-random-attr-ff6dcb2d', + selector: + '[data-random-attr-ff6dcb2d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-d8a775e7', + '.random-classname-7c402b1', + ], + attributes: [ + { + key: + 'data-random-attr-56658c0b', + selector: + '[data-random-attr-56658c0b]', + }, + ], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-3', + classNames: [ + '.random-classname-e85b9d02', + '.random-classname-1ea78784', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-397c0f56', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-e48930f8', + ], + attributes: [], + siblings: [ + ':nth-child(10)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-2456f1b', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-aeb62cd4', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-a6d00348', + ], + attributes: [ + { + key: + 'data-random-attr-579033ba', + value: + 'random-attr-value-3087afd1', + selector: + '[data-random-attr-579033ba=random-attr-value-3087afd1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-a427f95', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-78f17b33', + '.random-classname-6f28d1dd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-18062017', + '.random-classname-6ceb9c61', + ], + attributes: [ + { + key: + 'data-random-attr-c745413b', + selector: + '[data-random-attr-c745413b]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-3', + classNames: [ + '.random-classname-eef2829f', + '.random-classname-8218829', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-2', + classNames: [ + '.random-classname-5435716d', + '.random-classname-ae333627', + ], + attributes: [ + { + key: + 'data-random-attr-81cecf1', + selector: + '[data-random-attr-81cecf1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-d411feb5', + '.random-classname-b9525aaf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-f6299953', + ], + attributes: [ + { + key: + 'data-random-attr-bb0834fd', + selector: + '[data-random-attr-bb0834fd]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-51e1037', + ], + attributes: [ + { + key: + 'data-random-attr-f304a181', + selector: + '[data-random-attr-f304a181]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-2', + classNames: [ + '.random-classname-4aa1235b', + ], + attributes: [ + { + key: + 'data-random-attr-5d4d3445', + selector: + '[data-random-attr-5d4d3445]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-4f7b3149', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '132-3', + classNames: [ + '.random-classname-b47ae47', + ], + attributes: [ + { + key: + 'data-random-attr-fccbba11', + selector: + '[data-random-attr-fccbba11]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '133-3', + classNames: [ + '.random-classname-3a4c0dd5', + '.random-classname-4215d6cf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-57355bd9', + '.random-classname-9d03c773', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-53711057', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-f2878b65', + '.random-classname-a9fb7adf', + ], + attributes: [], + siblings: [ + ':nth-child(1)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-781a5528', + ], + attributes: [ + { + key: + 'data-random-attr-400cc09a', + value: + 'random-attr-value-60dc1731', + selector: + '[data-random-attr-400cc09a=random-attr-value-60dc1731]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-caa9148b', + '.random-classname-cfb8acf5', + ], + attributes: [ + { + key: + 'data-random-attr-9efa62ef', + selector: + '[data-random-attr-9efa62ef]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-d0080593', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-ebc4ab3d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-c0b75bc1', + '.random-classname-ce8d179b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-94738eff', + '.random-classname-ffc53389', + ], + attributes: [ + { + key: + 'data-random-attr-93fc6aa3', + selector: + '[data-random-attr-93fc6aa3]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-3', + classNames: [ + '.random-classname-6335ce87', + '.random-classname-6a960451', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-2', + classNames: [ + '.random-classname-c69e1eab', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-4b1fdc15', + ], + attributes: [ + { + key: + 'data-random-attr-5a07ff0f', + selector: + '[data-random-attr-5a07ff0f]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-4c31be5d', + '.random-classname-73e84097', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-2', + classNames: [ + '.random-classname-ba2d29bb', + '.random-classname-5807e9a5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-2b98b31f', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-3', + classNames: [ + '.random-classname-e6bec0c3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-d82b7ded', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-741f76a7', + '.random-classname-34418171', + ], + attributes: [ + { + key: + 'data-random-attr-c8cb38cb', + selector: + '[data-random-attr-c8cb38cb]', + }, + ], + siblings: [ + ':nth-child(9)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-ecd15ec2', + '.random-classname-4056f44', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-d497b4b8', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '130-3', + classNames: [ + '.random-classname-34a896aa', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-2', + classNames: [ + '.random-classname-cec40f7e', + '.random-classname-f1dfab60', + ], + attributes: [ + { + key: + 'data-random-attr-728ecb92', + value: + 'random-attr-value-d40d75c9', + selector: + '[data-random-attr-728ecb92=random-attr-value-d40d75c9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '132-2', + classNames: [ + '.random-classname-a8e2690d', + '.random-classname-48602ec7', + ], + attributes: [ + { + key: + 'data-random-attr-bc268e91', + selector: + '[data-random-attr-bc268e91]', + }, + ], + siblings: [ + ':nth-child(11)', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '133-3', + classNames: [ + '.random-classname-e7faac62', + '.random-classname-52f2de4', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '134-2', + classNames: [ + '.random-classname-5f9b984a', + '.random-classname-45f24a0c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-cd7f5b1e', + '.random-classname-55b21800', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-4080eb34', + '.random-classname-50521e86', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-2', + classNames: [ + '.random-classname-5b4bb15c', + '.random-classname-d0254eee', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-6ad73c84', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-a4e1b5f8', + ], + attributes: [], + siblings: [ + ':nth-child(2)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-7a15c01b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-3', + classNames: [ + '.random-classname-31667f7f', + ], + attributes: [ + { + key: + 'data-random-attr-693f809', + selector: + '[data-random-attr-693f809]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-2', + classNames: [ + '.random-classname-76d9ef4d', + '.random-classname-5306cf07', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-eff2e72b', + '.random-classname-68263895', + ], + attributes: [ + { + key: + 'data-random-attr-88790f8f', + selector: + '[data-random-attr-88790f8f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-962c2c33', + '.random-classname-8a83aadd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-44fb6117', + ], + attributes: [ + { + key: + 'data-random-attr-762f8561', + selector: + '[data-random-attr-762f8561]', + }, + ], + siblings: [ + ':nth-child(7)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-2', + classNames: [ + '.random-classname-79f5dc72', + '.random-classname-9cc7a874', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-898cca5a', + '.random-classname-7aa169c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-3', + classNames: [ + '.random-classname-6cd9262e', + '.random-classname-a872e590', + ], + attributes: [ + { + key: + 'data-random-attr-ed297542', + value: + 'random-attr-value-3fb433b9', + selector: + '[data-random-attr-ed297542=random-attr-value-3fb433b9]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-754ca53', + '.random-classname-4e278dfd', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-a2150a81', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '132-2', + classNames: [ + '.random-classname-f557ad45', + ], + attributes: [ + { + key: + 'data-random-attr-da8e57bf', + selector: + '[data-random-attr-da8e57bf]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-170d5f63', + '.random-classname-1013b58d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-539a6311', + '.random-classname-268dab6b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-c0d8c6d5', + '.random-classname-1f77f7cf', + ], + attributes: [ + { + key: + 'data-random-attr-f8d924d9', + selector: + '[data-random-attr-f8d924d9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '131-2', + classNames: [ + '.random-classname-99c8011d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-c9f81fa1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-91268465', + '.random-classname-fa69dbdf', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-c9bc1583', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-85dd70ad', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '130-3', + classNames: [ + '.random-classname-a4d74031', + '.random-classname-e633258b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-53f9e5f5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-7d1a5f9', + '.random-classname-75d43693', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-792d043d', + '.random-classname-dbe5e177', + ], + attributes: [ + { + key: + 'data-random-attr-1220c4c1', + selector: + '[data-random-attr-1220c4c1]', + }, + ], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-351de720', + '.random-classname-861d3d52', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-1a971c54', + ], + attributes: [], + siblings: [ + ':nth-child(6)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '129-7', + classNames: [ + '.random-classname-79c8cf87', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-aec8afab', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-cbfb200f', + '.random-classname-8be5b719', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-7c3b04b3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-9c1e975d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-cd3f8197', + '.random-classname-82d6f9e1', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-c93ffabb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '129-7', + classNames: [ + '.random-classname-78d8141f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-e4f895a9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-58b296ed', + '.random-classname-524af7a7', + ], + attributes: [ + { + key: + 'data-random-attr-b955aa71', + selector: + '[data-random-attr-b955aa71]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-79b3d435', + ], + attributes: [ + { + key: + 'data-random-attr-6de24c2f', + selector: + '[data-random-attr-6de24c2f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-c41be2d3', + '.random-classname-5664ba7d', + ], + attributes: [ + { + key: + 'data-random-attr-892c31b7', + selector: + '[data-random-attr-892c31b7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-2c5c9cdb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-d5ba69c5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '129-7', + classNames: [ + '.random-classname-da1cfec9', + '.random-classname-7afc97e3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-dd4e020d', + '.random-classname-6642fc7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-d5273791', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-44e3f3eb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-ee42884f', + '.random-classname-64808959', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-dbfed0f3', + '.random-classname-9fc76d9d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-82b3f1d7', + '.random-classname-730c1421', + ], + attributes: [ + { + key: + 'data-random-attr-efbd4efb', + selector: + '[data-random-attr-efbd4efb]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '129-7', + classNames: [ + '.random-classname-6f1a8c5f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-3d938e03', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-b3ba54b1', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-5179ae0b', + '.random-classname-da980275', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-eb974a79', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-140eb0bd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-70dec1f7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '129-7', + classNames: [ + '.random-classname-f6ea111b', + '.random-classname-90e32805', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-cc1c8109', + '.random-classname-4d789423', + ], + attributes: [ + { + key: + 'data-random-attr-4dce884d', + selector: + '[data-random-attr-4dce884d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-997bd007', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-e51f782b', + '.random-classname-feadf195', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-268e308f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-c9eadd33', + ], + attributes: [ + { + key: + 'data-random-attr-f30283dd', + selector: + '[data-random-attr-f30283dd]', + }, + ], + siblings: [ + ':nth-child(7)', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-9e28ff5e', + '.random-classname-bab68640', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '129-7', + classNames: [ + '.random-classname-d3bf1d74', + ], + attributes: [ + { + key: + 'data-random-attr-9c704ac6', + value: + 'random-attr-value-3943a36d', + selector: + '[data-random-attr-9c704ac6=random-attr-value-3943a36d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-ee8a3827', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-1ce670b5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-9bbf7cb9', + '.random-classname-d103fb53', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-206ae6fd', + '.random-classname-5b3d9237', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-90897381', + ], + attributes: [ + { + key: + 'data-random-attr-f2c7c55b', + selector: + '[data-random-attr-f2c7c55b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-b1062645', + '.random-classname-ec3838bf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '128-5', + classNames: [ + '.random-classname-ff9a4349', + '.random-classname-bb4cd063', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-2914e8d', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-cbbb3c6b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-551e18cf', + '.random-classname-4f60edd9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-240fda1d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-19819257', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-4288b77b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-c41c3cdf', + '.random-classname-3d9c7c69', + ], + attributes: [ + { + key: + 'data-random-attr-d64c0683', + selector: + '[data-random-attr-d64c0683]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '128-5', + classNames: [ + '.random-classname-437f89ad', + '.random-classname-54d43867', + ], + attributes: [ + { + key: + 'data-random-attr-23366931', + selector: + '[data-random-attr-23366931]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-7dc1368b', + '.random-classname-26df1ef5', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-4315eef9', + '.random-classname-18246793', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-5088a277', + '.random-classname-c6ee2dc1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-ac636485', + '.random-classname-bd2550ff', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-39d654cd', + '.random-classname-741fd087', + ], + attributes: [ + { + key: + 'data-random-attr-1dc95651', + selector: + '[data-random-attr-1dc95651]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-74f740ab', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-9a32410f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '128-5', + classNames: [ + '.random-classname-b6268019', + '.random-classname-a13bb5b3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-b5ac297', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-8630e2e1', + '.random-classname-4756cbbb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-eebbdba5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-48f9ea9', + '.random-classname-cb1ca2c3', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-b1c89dda', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-db2ab61c', + '.random-classname-aa1471ae', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-67b9bd10', + '.random-classname-4c5fb8c2', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '128-5', + classNames: [ + '.random-classname-d05abeb8', + '.random-classname-b00230aa', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-507a497e', + '.random-classname-c003f560', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-5a00ee94', + ], + attributes: [ + { + key: + 'data-random-attr-840ad8e6', + value: + 'random-attr-value-71dd9b0d', + selector: + '[data-random-attr-840ad8e6=random-attr-value-71dd9b0d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-2c2c30c7', + '.random-classname-de8be091', + ], + attributes: [ + { + key: + 'data-random-attr-9d1384eb', + selector: + '[data-random-attr-9d1384eb]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-2d5f5c55', + ], + attributes: [ + { + key: + 'data-random-attr-560aa94f', + selector: + '[data-random-attr-560aa94f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-b7a5259', + '.random-classname-d32081f3', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-8a3efd21', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-9ca879e5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '127-3', + classNames: [ + '.random-classname-7b6eed5f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-35e57f03', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-6afcf8e7', + '.random-classname-54b7db1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-6acf3b75', + '.random-classname-c814756f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-604d9379', + '.random-classname-dcfe0013', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-bce382f7', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-3607b0be', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-6d9de0d2', + '.random-classname-6d450bd4', + ], + attributes: [], + siblings: [ + ':nth-child(6)', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-1754aad1', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '127-3', + classNames: [ + '.random-classname-28e7518f', + '.random-classname-199c6499', + ], + attributes: [ + { + key: + 'data-random-attr-242d8e33', + selector: + '[data-random-attr-242d8e33]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-4531e317', + '.random-classname-a0e35761', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-503b43b', + '.random-classname-a56f5825', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-ce10a329', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-aae69b43', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-4b5bb927', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-b146a9b5', + '.random-classname-168b3daf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-6aaec5b9', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-63372c53', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '126-4', + classNames: [ + '.random-classname-c1d23ffd', + '.random-classname-84735337', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-4e61dc81', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-20589f45', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-852619bf', + '.random-classname-a97fcc49', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-1d32e78d', + '.random-classname-2af9b147', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-9aeccd6b', + '.random-classname-33de38d5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-eaccb6d9', + '.random-classname-58a2da73', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-6f7bb31d', + '.random-classname-1dafd357', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-1c5df1a1', + '.random-classname-1662887b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-c51e8569', + '.random-classname-fe5ff783', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '126-4', + classNames: [ + '.random-classname-ef96b967', + '.random-classname-6bf99231', + ], + attributes: [ + { + key: + 'data-random-attr-a153478b', + selector: + '[data-random-attr-a153478b]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-953e37f9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-8d69b63d', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-2ff3812c', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-27403120', + '.random-classname-e1581752', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-b2ab86a6', + '.random-classname-3d3fb4c8', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-1f16613a', + '.random-classname-52b7307c', + ], + attributes: [ + { + key: + 'data-random-attr-76cbbb0e', + value: + 'random-attr-value-b5ad0715', + selector: + '[data-random-attr-76cbbb0e=random-attr-value-b5ad0715]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-c94b4919', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-74c066b3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-3e3a0397', + ], + attributes: [ + { + key: + 'data-random-attr-8eeecbe1', + selector: + '[data-random-attr-8eeecbe1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '126-4', + classNames: [ + '.random-classname-608bd4a5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-9b22d61f', + '.random-classname-d60aa7a9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-b42cc8ed', + '.random-classname-8fedf9a7', + ], + attributes: [ + { + key: + 'data-random-attr-6ea9fc71', + selector: + '[data-random-attr-6ea9fc71]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-cbf86bcb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-71e58e2f', + '.random-classname-4a3bea39', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-5f97b3b7', + ], + attributes: [ + { + key: + 'data-random-attr-a8139101', + selector: + '[data-random-attr-a8139101]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-185f5bc5', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-3ed795e6', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-bb0dc47a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-a6b2b5bc', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '124-7', + classNames: [ + '.random-classname-31b9b24e', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '125-1', + classNames: [ + '.random-classname-da0ae6b0', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '126-1', + classNames: [ + '.random-classname-69e9b362', + '.random-classname-3a7ecce4', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-13711c58', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-de6b7f4a', + '.random-classname-3c35c90c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-69b2321e', + '.random-classname-c0860700', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-124ec832', + '.random-classname-f6344a34', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-342046a8', + '.random-classname-d6c32e1a', + ], + attributes: [ + { + key: + 'data-random-attr-9e6af05c', + value: + 'random-attr-value-5c9dd00b', + selector: + '[data-random-attr-9e6af05c=random-attr-value-5c9dd00b]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-33e7dc79', + '.random-classname-f8143113', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-bf6f62bd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-43ac43f7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-3f9eb31b', + ], + attributes: [ + { + key: + 'data-random-attr-ea5a1a05', + selector: + '[data-random-attr-ea5a1a05]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '124-7', + classNames: [ + '.random-classname-823d227f', + '.random-classname-2ed99309', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '125-1', + classNames: [ + '.random-classname-5823ba4d', + '.random-classname-f9b1d207', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '126-1', + classNames: [ + '.random-classname-15a96395', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-42243a24', + '.random-classname-e9ff7af6', + ], + attributes: [ + { + key: + 'data-random-attr-90f8bd98', + value: + 'random-attr-value-38732417', + selector: + '[data-random-attr-90f8bd98=random-attr-value-38732417]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-67a0853b', + '.random-classname-d2115125', + ], + attributes: [], + siblings: [ + ':nth-child(9)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-3b6a0774', + '.random-classname-a85cc4c6', + ], + attributes: [ + { + key: + 'data-random-attr-989537e8', + value: + 'random-attr-value-e5f13a27', + selector: + '[data-random-attr-989537e8=random-attr-value-e5f13a27]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-fdfd90f1', + ], + attributes: [ + { + key: + 'data-random-attr-6f83744b', + selector: + '[data-random-attr-6f83744b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-504ae2b5', + '.random-classname-cd0deaf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-cdee5d53', + '.random-classname-c25d98fd', + ], + attributes: [ + { + key: + 'data-random-attr-6c6d1437', + selector: + '[data-random-attr-6c6d1437]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-fefe675b', + '.random-classname-d34f1845', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-b557fabf', + '.random-classname-9f495549', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-ca67b247', + '.random-classname-8a5e5e11', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '124-7', + classNames: [ + '.random-classname-a4225e6b', + '.random-classname-4056f1d5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '125-1', + classNames: [ + '.random-classname-9365acf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '126-1', + classNames: [ + '.random-classname-5b1c7fd9', + '.random-classname-218a8b73', + ], + attributes: [ + { + key: + 'data-random-attr-c0b8c1d', + selector: + '[data-random-attr-c0b8c1d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-27a6daa1', + ], + attributes: [ + { + key: + 'data-random-attr-b540597b', + selector: + '[data-random-attr-b540597b]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-34cfedf', + '.random-classname-ea848e69', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-1d2fbbad', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-f20bb31', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-60e9588b', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-dabce6ef', + '.random-classname-8e4a80f9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-343e0f3d', + '.random-classname-e21a2477', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-cc2c5c3e', + '.random-classname-c14f5620', + ], + attributes: [], + siblings: [ + ':nth-child(14)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-d3862ea3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '124-7', + classNames: [ + '.random-classname-fc4f86cd', + '.random-classname-5419d287', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '125-1', + classNames: [ + '.random-classname-db6062ab', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '126-1', + classNames: [ + '.random-classname-afcec015', + '.random-classname-8b6c830f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-55541219', + ], + attributes: [ + { + key: + 'data-random-attr-6c917b3', + selector: + '[data-random-attr-6c917b3]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-75dd4497', + '.random-classname-2d10b4e1', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-902e371f', + '.random-classname-e969b0a9', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-f657aa7', + '.random-classname-beea2571', + ], + attributes: [ + { + key: + 'data-random-attr-cd0f7ccb', + selector: + '[data-random-attr-cd0f7ccb]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-c0ca7f35', + '.random-classname-e94d2f2f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-93813339', + '.random-classname-697b75d3', + ], + attributes: [ + { + key: + 'data-random-attr-350c57d', + selector: + '[data-random-attr-350c57d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-2b01fa01', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-327d4c5', + '.random-classname-eb2a6b3f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-e3a399c9', + '.random-classname-c8ceae3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '124-7', + classNames: [ + '.random-classname-ef0832c7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '125-1', + classNames: [ + '.random-classname-737ea6eb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '126-1', + classNames: [ + '.random-classname-aa50ce55', + '.random-classname-8666eb4f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-9019e459', + '.random-classname-a8efe3f3', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-c4d0cf21', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-9fbe6be5', + '.random-classname-57e3af5f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-56d12e9', + '.random-classname-21156103', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-a809fae7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-6f99cfb1', + ], + attributes: [ + { + key: + 'data-random-attr-9035e10b', + selector: + '[data-random-attr-9035e10b]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-b8c1b76f', + '.random-classname-f6662579', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-5dd5bbbd', + ], + attributes: [], + siblings: [ + ':nth-child(9)', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-7427eabe', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '124-7', + classNames: [ + '.random-classname-1c34bad2', + ], + attributes: [ + { + key: + 'data-random-attr-9532f5d4', + value: + 'random-attr-value-1fabe723', + selector: + '[data-random-attr-9532f5d4=random-attr-value-1fabe723]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '125-1', + classNames: [ + '.random-classname-ab84534d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '126-1', + classNames: [ + '.random-classname-4c7bfcd1', + '.random-classname-68bd2b2b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-9a65938f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-d5adf699', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-9b570edd', + '.random-classname-38786517', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-1272961', + ], + attributes: [ + { + key: + 'data-random-attr-e141563b', + selector: + '[data-random-attr-e141563b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-a0574a25', + '.random-classname-aad679f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-98ceb529', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-cee6ee6d', + '.random-classname-ce4abb27', + ], + attributes: [ + { + key: + 'data-random-attr-c36fb9f1', + selector: + '[data-random-attr-c36fb9f1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-c69c854b', + ], + attributes: [ + { + key: + 'data-random-attr-89f31bb5', + selector: + '[data-random-attr-89f31bb5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-95a7faf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '123-5', + classNames: [ + '.random-classname-21298e53', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '124-1', + classNames: [ + '.random-classname-b20cf1fd', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '125-1', + classNames: [ + '.random-classname-783eae81', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '126-1', + classNames: [ + '.random-classname-8ccddbbf', + ], + attributes: [ + { + key: + 'data-random-attr-70f6de49', + selector: + '[data-random-attr-70f6de49]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-c1232363', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-ae2198d', + '.random-classname-f999b347', + ], + attributes: [ + { + key: + 'data-random-attr-e2bd0711', + selector: + '[data-random-attr-e2bd0711]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-f75bef6b', + '.random-classname-9973aad5', + ], + attributes: [], + siblings: [ + ':nth-child(5)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '123-5', + classNames: [ + '.random-classname-3040d736', + '.random-classname-5d45a3d8', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '123-5', + classNames: [ + '.random-classname-5f5b088c', + '.random-classname-641b1d9e', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '123-5', + classNames: [ + '.random-classname-798179b4', + ], + attributes: [ + { + key: + 'data-random-attr-d0e63106', + value: + 'random-attr-value-593dd4ad', + selector: + '[data-random-attr-d0e63106=random-attr-value-593dd4ad]', + }, + ], + siblings: [ + ':nth-child(7)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '122-3', + classNames: [ + '.random-classname-49bbb16e', + '.random-classname-1a0bd2d0', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '122-3', + classNames: [ + '.random-classname-b356b04', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '120-7', + classNames: [ + '.random-classname-f0af8c78', + '.random-classname-c3ef046a', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '120-7', + classNames: [ + '.random-classname-2270793e', + '.random-classname-86b27b20', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '120-7', + classNames: [ + '.random-classname-2662f152', + '.random-classname-554af054', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '120-7', + classNames: [ + '.random-classname-24fb3ec8', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '120-7', + classNames: [ + '.random-classname-af7c7b3a', + '.random-classname-7765a7c', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '120-7', + classNames: [ + '.random-classname-d1447770', + ], + attributes: [], + siblings: [ + ':nth-child(4)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '119-5', + classNames: [ + '.random-classname-6755c8b3', + '.random-classname-4f39fb5d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '119-5', + classNames: [ + '.random-classname-c2448597', + '.random-classname-f0969de1', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '119-5', + classNames: [ + '.random-classname-fbb33ebb', + '.random-classname-6117c6a5', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '119-5', + classNames: [ + '.random-classname-960775c3', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '118-3', + classNames: [ + '.random-classname-e4a0fba7', + '.random-classname-1d8e4e71', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '118-3', + classNames: [ + '.random-classname-ddc4b835', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '116-7', + classNames: [ + '.random-classname-6ef8d02f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '116-7', + classNames: [ + '.random-classname-16f8a6d3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '116-7', + classNames: [ + '.random-classname-40921e7d', + ], + attributes: [ + { + key: + 'data-random-attr-511335b7', + selector: + '[data-random-attr-511335b7]', + }, + ], + siblings: [ + ':nth-child(13)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '116-7', + classNames: [ + '.random-classname-e8306460', + '.random-classname-8854ec92', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '116-7', + classNames: [ + '.random-classname-aa54cd94', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '116-7', + classNames: [ + '.random-classname-9765008', + '.random-classname-44edde7a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '115-5', + classNames: [ + '.random-classname-e4fbdfbc', + '.random-classname-cb1e6c4e', + ], + attributes: [], + siblings: [ + ':nth-child(12)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '115-5', + classNames: [ + '.random-classname-8dbfad59', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '115-5', + classNames: [ + '.random-classname-fa06d19d', + '.random-classname-be7cf5d7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '115-5', + classNames: [ + '.random-classname-133492fb', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '114-3', + classNames: [ + '.random-classname-65a91be9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '114-3', + classNames: [ + '.random-classname-3a12612d', + '.random-classname-85367be7', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '112-7', + classNames: [ + '.random-classname-f7d1f20b', + '.random-classname-434ce675', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '112-7', + classNames: [ + '.random-classname-37c86e79', + '.random-classname-2bcc9313', + ], + attributes: [ + { + key: + 'data-random-attr-976014bd', + selector: + '[data-random-attr-976014bd]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '112-7', + classNames: [ + '.random-classname-4189c5f7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '112-7', + classNames: [ + '.random-classname-5c63551b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '112-7', + classNames: [ + '.random-classname-cdcae47f', + '.random-classname-7126a509', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '112-7', + classNames: [ + '.random-classname-c61a5823', + '.random-classname-f308ec4d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '111-5', + classNames: [ + '.random-classname-c5a5a5d1', + '.random-classname-55f9bc2b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '111-5', + classNames: [ + '.random-classname-298ab48f', + '.random-classname-e50cbf99', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '111-5', + classNames: [ + '.random-classname-d865e7dd', + '.random-classname-5541a617', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '111-5', + classNames: [ + '.random-classname-81e6273b', + '.random-classname-a0414325', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '110-3', + classNames: [ + '.random-classname-5d03be29', + '.random-classname-4f176e43', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '110-3', + classNames: [ + '.random-classname-14683c27', + '.random-classname-df45e2f1', + ], + attributes: [ + { + key: + 'data-random-attr-15b9964b', + selector: + '[data-random-attr-15b9964b]', + }, + ], + siblings: [ + ':nth-child(11)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '108-7', + classNames: [ + '.random-classname-b955d2c4', + '.random-classname-2f96bc96', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '108-7', + classNames: [ + '.random-classname-7acd8aec', + ], + attributes: [ + { + key: + 'data-random-attr-ce8daefe', + value: + 'random-attr-value-44280a45', + selector: + '[data-random-attr-ce8daefe=random-attr-value-44280a45]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '108-7', + classNames: [ + '.random-classname-ae886749', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '108-7', + classNames: [ + '.random-classname-ab729463', + '.random-classname-fdefb28d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '108-7', + classNames: [ + '.random-classname-237fb011', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '108-7', + classNames: [ + '.random-classname-a499806b', + ], + attributes: [ + { + key: + 'data-random-attr-cf3463d5', + selector: + '[data-random-attr-cf3463d5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '107-5', + classNames: [ + '.random-classname-de5e9ccf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '107-5', + classNames: [ + '.random-classname-62e5ed73', + '.random-classname-78973e1d', + ], + attributes: [ + { + key: + 'data-random-attr-6ed29657', + selector: + '[data-random-attr-6ed29657]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '107-5', + classNames: [ + '.random-classname-9407fb7b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '107-5', + classNames: [ + '.random-classname-eedd6165', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '106-3', + classNames: [ + '.random-classname-e78dc0df', + ], + attributes: [ + { + key: + 'data-random-attr-4efca069', + selector: + '[data-random-attr-4efca069]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '106-3', + classNames: [ + '.random-classname-bbb3ca83', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '104-7', + classNames: [ + '.random-classname-a49b0d31', + '.random-classname-f4217a8b', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '104-7', + classNames: [ + '.random-classname-f63628ef', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '104-7', + classNames: [ + '.random-classname-b50f12f9', + '.random-classname-be8d2b93', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '104-7', + classNames: [ + '.random-classname-bc0bd1c1', + '.random-classname-e3b6fd9b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '104-7', + classNames: [ + '.random-classname-15b8d4ff', + '.random-classname-8ba86989', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '104-7', + classNames: [ + '.random-classname-8323d487', + '.random-classname-58dffa51', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '103-5', + classNames: [ + '.random-classname-f658dc70', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '103-5', + classNames: [ + '.random-classname-1fb1ef22', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '103-5', + classNames: [ + '.random-classname-bd3dca18', + '.random-classname-c6fb330a', + ], + attributes: [ + { + key: + 'data-random-attr-f9ac72cc', + value: + 'random-attr-value-d5da0fbb', + selector: + '[data-random-attr-f9ac72cc=random-attr-value-d5da0fbb]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '103-5', + classNames: [ + '.random-classname-9210f91f', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '102-3', + classNames: [ + '.random-classname-8e0866c3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '102-3', + classNames: [ + '.random-classname-f7213ed', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '101-5', + classNames: [ + '.random-classname-1a967771', + ], + attributes: [ + { + key: + 'data-random-attr-2f499ecb', + selector: + '[data-random-attr-2f499ecb]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '101-5', + classNames: [ + '.random-classname-ed62f135', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '101-5', + classNames: [ + '.random-classname-4ee9ad44', + '.random-classname-5cb7fb16', + ], + attributes: [ + { + key: + 'data-random-attr-81d0d2b8', + value: + 'random-attr-value-9bf6f6b7', + selector: + '[data-random-attr-81d0d2b8=random-attr-value-9bf6f6b7]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '101-5', + classNames: [ + '.random-classname-3ba4c6c5', + '.random-classname-c9e2d3f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '100-7', + classNames: [ + '.random-classname-2c6abc9', + '.random-classname-252bcce3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '100-7', + classNames: [ + '.random-classname-10f434c7', + ], + attributes: [ + { + key: + 'data-random-attr-a8068491', + selector: + '[data-random-attr-a8068491]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '100-7', + classNames: [ + '.random-classname-91f9c8eb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '100-7', + classNames: [ + '.random-classname-79d24055', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '100-7', + classNames: [ + '.random-classname-f7d32d4f', + '.random-classname-c8497659', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '100-7', + classNames: [ + '.random-classname-c8cf45f3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '99-8', + classNames: [ + '.random-classname-b5936d7', + '.random-classname-24f2a121', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '99-8', + classNames: [ + '.random-classname-d9645de5', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '99-8', + classNames: [ + '.random-classname-cbc924e9', + ], + attributes: [ + { + key: + 'data-random-attr-1a554303', + selector: + '[data-random-attr-1a554303]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '99-8', + classNames: [ + '.random-classname-4c26fce7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '99-8', + classNames: [ + '.random-classname-a372030b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '99-8', + classNames: [ + '.random-classname-f27ef96f', + '.random-classname-880eb779', + ], + attributes: [ + { + key: + 'data-random-attr-646ec413', + selector: + '[data-random-attr-646ec413]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '99-8', + classNames: [ + '.random-classname-d89e86f7', + '.random-classname-f7800641', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '98-5', + classNames: [ + '.random-classname-e24ba61b', + '.random-classname-9dda8505', + ], + attributes: [], + siblings: [ + ':nth-child(1)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '98-5', + classNames: [ + '.random-classname-f3a41c26', + '.random-classname-ab146648', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '98-5', + classNames: [ + '.random-classname-d9da39fc', + '.random-classname-d857008e', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '98-5', + classNames: [ + '.random-classname-f6dec5a2', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '97-7', + classNames: [ + '.random-classname-18d6d924', + ], + attributes: [ + { + key: + 'data-random-attr-9f0e71f6', + value: + 'random-attr-value-3298c0dd', + selector: + '[data-random-attr-9f0e71f6=random-attr-value-3298c0dd]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '97-7', + classNames: [ + '.random-classname-16fafb61', + ], + attributes: [ + { + key: + 'data-random-attr-598ef83b', + selector: + '[data-random-attr-598ef83b]', + }, + ], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '97-7', + classNames: [ + '.random-classname-49516a72', + '.random-classname-77406674', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '97-7', + classNames: [ + '.random-classname-d3ba06e8', + '.random-classname-425a185a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '97-7', + classNames: [ + '.random-classname-df3a949c', + '.random-classname-3884542e', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '97-7', + classNames: [ + '.random-classname-7da08342', + '.random-classname-89e287c4', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '96-4', + classNames: [ + '.random-classname-5863996', + ], + attributes: [ + { + key: + 'data-random-attr-3c6e1538', + value: + 'random-attr-value-3cf25737', + selector: + '[data-random-attr-3c6e1538=random-attr-value-3cf25737]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '96-4', + classNames: [ + '.random-classname-4ee5a5b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '96-4', + classNames: [ + '.random-classname-e7fdf049', + ], + attributes: [ + { + key: + 'data-random-attr-cf460563', + selector: + '[data-random-attr-cf460563]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '95-4', + classNames: [ + '.random-classname-59214b8d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '95-4', + classNames: [ + '.random-classname-dca65911', + '.random-classname-bbdb116b', + ], + attributes: [ + { + key: + 'data-random-attr-71991cd5', + selector: + '[data-random-attr-71991cd5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '95-4', + classNames: [ + '.random-classname-bd58bdcf', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '94-4', + classNames: [ + '.random-classname-fb599e73', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '94-4', + classNames: [ + '.random-classname-6893171d', + ], + attributes: [ + { + key: + 'data-random-attr-d610d757', + selector: + '[data-random-attr-d610d757]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '94-4', + classNames: [ + '.random-classname-ff545a65', + '.random-classname-ff9421df', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '93-6', + classNames: [ + '.random-classname-3fc606ad', + '.random-classname-8c48bd67', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '93-6', + classNames: [ + '.random-classname-b6ee3631', + '.random-classname-e7c38b8b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '93-6', + classNames: [ + '.random-classname-90f53bf5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '93-6', + classNames: [ + '.random-classname-2c75bf9', + '.random-classname-3f715c93', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '93-6', + classNames: [ + '.random-classname-5b931a3d', + '.random-classname-d1326777', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '92-7', + classNames: [ + '.random-classname-ba214e9b', + '.random-classname-3e74c185', + ], + attributes: [ + { + key: + 'data-random-attr-c007b5ff', + selector: + '[data-random-attr-c007b5ff]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '92-7', + classNames: [ + '.random-classname-611781a3', + '.random-classname-d31351cd', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '92-7', + classNames: [ + '.random-classname-869fa351', + '.random-classname-861c15ab', + ], + attributes: [ + { + key: + 'data-random-attr-20beb15', + selector: + '[data-random-attr-20beb15]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '92-7', + classNames: [ + '.random-classname-6ec66d19', + '.random-classname-d3fb2ab3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '92-7', + classNames: [ + '.random-classname-d95f0797', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '92-7', + classNames: [ + '.random-classname-6f04e0bb', + '.random-classname-4833b8a5', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '91-3', + classNames: [ + '.random-classname-4edecba9', + '.random-classname-258d57c3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '91-3', + classNames: [ + '.random-classname-94d12ced', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '90-6', + classNames: [ + '.random-classname-d063fda7', + ], + attributes: [ + { + key: + 'data-random-attr-4602a071', + selector: + '[data-random-attr-4602a071]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '90-6', + classNames: [ + '.random-classname-b06cafcb', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '90-6', + classNames: [ + '.random-classname-d0a90e39', + '.random-classname-37f08d3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '90-6', + classNames: [ + '.random-classname-dd9eb7b7', + '.random-classname-40253501', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '90-6', + classNames: [ + '.random-classname-a9593fc5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '89-7', + classNames: [ + '.random-classname-cc3e0e3f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '89-7', + classNames: [ + '.random-classname-4bc13de3', + ], + attributes: [ + { + key: + 'data-random-attr-aac7980d', + selector: + '[data-random-attr-aac7980d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '89-7', + classNames: [ + '.random-classname-d35f2d91', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '89-7', + classNames: [ + '.random-classname-e888f955', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '89-7', + classNames: [ + '.random-classname-30ef4e4f', + '.random-classname-cfb73f59', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '89-7', + classNames: [ + '.random-classname-bdfe839d', + '.random-classname-10f977d7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '88-8', + classNames: [ + '.random-classname-970834fb', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '88-8', + classNames: [ + '.random-classname-9de61e34', + '.random-classname-7e74c986', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '88-8', + classNames: [ + '.random-classname-a34d621a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '88-8', + classNames: [ + '.random-classname-b057445c', + '.random-classname-459d59ee', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '88-8', + classNames: [ + '.random-classname-f4bd0502', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '88-8', + classNames: [ + '.random-classname-497ff756', + '.random-classname-9e7d58f8', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '88-8', + classNames: [ + '.random-classname-50787fac', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '87-4', + classNames: [ + '.random-classname-5eb9d7a0', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '87-4', + classNames: [ + '.random-classname-8e6dd4d4', + '.random-classname-60add926', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '87-4', + classNames: [ + '.random-classname-7e6e2b48', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '86-4', + classNames: [ + '.random-classname-45589bba', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '86-4', + classNames: [ + '.random-classname-ad75cefc', + '.random-classname-b985d8e', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '86-4', + classNames: [ + '.random-classname-eecf72a2', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '84-9', + classNames: [ + '.random-classname-ff7b6ef6', + ], + attributes: [ + { + key: + 'data-random-attr-ab7cd198', + value: + 'random-attr-value-25202817', + selector: + '[data-random-attr-ab7cd198=random-attr-value-25202817]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '84-9', + classNames: [ + '.random-classname-783bc93b', + '.random-classname-75013525', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '84-9', + classNames: [ + '.random-classname-7319d029', + '.random-classname-c2215043', + ], + attributes: [], + siblings: [ + ':nth-child(5)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '84-9', + classNames: [ + '.random-classname-5227a55a', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '84-9', + classNames: [ + '.random-classname-4b2c312e', + '.random-classname-ad392890', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '84-9', + classNames: [ + '.random-classname-98033cc4', + '.random-classname-b229b696', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '84-9', + classNames: [ + '.random-classname-4d479a38', + '.random-classname-cb41182a', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '84-9', + classNames: [ + '.random-classname-520c40e0', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '83-5', + classNames: [ + '.random-classname-29b77d12', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '83-5', + classNames: [ + '.random-classname-9d446866', + '.random-classname-af4dbc88', + ], + attributes: [ + { + key: + 'data-random-attr-67227efa', + value: + 'random-attr-value-9e310211', + selector: + '[data-random-attr-67227efa=random-attr-value-9e310211]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '83-5', + classNames: [ + '.random-classname-4d20a26b', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '83-5', + classNames: [ + '.random-classname-5496decf', + '.random-classname-ad43a3d9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '82-9', + classNames: [ + '.random-classname-e9b2f01d', + '.random-classname-fe131857', + ], + attributes: [], + siblings: [ + ':nth-child(5)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '82-9', + classNames: [ + '.random-classname-c32d6d80', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '82-9', + classNames: [ + '.random-classname-e7a772b2', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '82-9', + classNames: [ + '.random-classname-7702d8b4', + ], + attributes: [ + { + key: + 'data-random-attr-7171e806', + value: + 'random-attr-value-a401fad', + selector: + '[data-random-attr-7171e806=random-attr-value-a401fad]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '82-9', + classNames: [ + '.random-classname-b7699c8b', + '.random-classname-bb274f5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '82-9', + classNames: [ + '.random-classname-3763a4f9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '82-9', + classNames: [ + '.random-classname-aef7733d', + ], + attributes: [ + { + key: + 'data-random-attr-666d2877', + selector: + '[data-random-attr-666d2877]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '82-9', + classNames: [ + '.random-classname-7d8f9f9b', + '.random-classname-9f643a85', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '81-3', + classNames: [ + '.random-classname-eb4ff2a3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '81-3', + classNames: [ + '.random-classname-12f1eacd', + ], + attributes: [], + siblings: [ + ':nth-child(7)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '80-3', + classNames: [ + '.random-classname-eaab197c', + '.random-classname-668c8c0e', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '80-3', + classNames: [ + '.random-classname-43934922', + '.random-classname-df43a8a4', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '79-9', + classNames: [ + '.random-classname-a6fbd418', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '79-9', + classNames: [ + '.random-classname-93561ccc', + '.random-classname-1e227bde', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '79-9', + classNames: [ + '.random-classname-3434cdf2', + '.random-classname-831f15f4', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '79-9', + classNames: [ + '.random-classname-c929ebda', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '79-9', + classNames: [ + '.random-classname-93939fae', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '79-9', + classNames: [ + '.random-classname-51371b10', + '.random-classname-deac6c2', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '79-9', + classNames: [ + '.random-classname-bf2b1744', + ], + attributes: [ + { + key: + 'data-random-attr-29fef516', + value: + 'random-attr-value-e32e297d', + selector: + '[data-random-attr-29fef516=random-attr-value-e32e297d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '79-9', + classNames: [ + '.random-classname-a39e01', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '78-9', + classNames: [ + '.random-classname-62b1b8c5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '78-9', + classNames: [ + '.random-classname-3179bdc9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '78-9', + classNames: [ + '.random-classname-502f310d', + ], + attributes: [ + { + key: + 'data-random-attr-11f036c7', + selector: + '[data-random-attr-11f036c7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '78-9', + classNames: [ + '.random-classname-7884eaeb', + '.random-classname-1be3b255', + ], + attributes: [ + { + key: + 'data-random-attr-2a4f6f4f', + selector: + '[data-random-attr-2a4f6f4f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '78-9', + classNames: [ + '.random-classname-b2bea7f3', + '.random-classname-5db05c9d', + ], + attributes: [ + { + key: + 'data-random-attr-df5db8d7', + selector: + '[data-random-attr-df5db8d7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '78-9', + classNames: [ + '.random-classname-ad7805fb', + '.random-classname-c99a4fe5', + ], + attributes: [ + { + key: + 'data-random-attr-dffd335f', + selector: + '[data-random-attr-dffd335f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '78-9', + classNames: [ + '.random-classname-e9b536e9', + '.random-classname-a1a52503', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '78-9', + classNames: [ + '.random-classname-d753fee7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '77-7', + classNames: [ + '.random-classname-6be250b', + '.random-classname-278e9175', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '77-7', + classNames: [ + '.random-classname-f54c3b6f', + '.random-classname-95474979', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '77-7', + classNames: [ + '.random-classname-633f2613', + ], + attributes: [ + { + key: + 'data-random-attr-86d71fbd', + selector: + '[data-random-attr-86d71fbd]', + }, + ], + siblings: [ + ':nth-child(1)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '77-7', + classNames: [ + '.random-classname-a03ed4ac', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '77-7', + classNames: [ + '.random-classname-b1c2fca0', + '.random-classname-56d26ed2', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '77-7', + classNames: [ + '.random-classname-ff9bf048', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '76-7', + classNames: [ + '.random-classname-422563fc', + '.random-classname-e50dba8e', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '76-7', + classNames: [ + '.random-classname-fd7b58f0', + ], + attributes: [ + { + key: + 'data-random-attr-f6341fa2', + value: + 'random-attr-value-98811a99', + selector: + '[data-random-attr-f6341fa2=random-attr-value-98811a99]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '76-7', + classNames: [ + '.random-classname-ea91b433', + '.random-classname-7e6a72dd', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '76-7', + classNames: [ + '.random-classname-625ecd61', + '.random-classname-edec9a3b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '76-7', + classNames: [ + '.random-classname-e60aeb9f', + '.random-classname-e4fad929', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '76-7', + classNames: [ + '.random-classname-c6ec4143', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '75-3', + classNames: [ + '.random-classname-b958bf27', + ], + attributes: [ + { + key: + 'data-random-attr-d9205df1', + selector: + '[data-random-attr-d9205df1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '75-3', + classNames: [ + '.random-classname-7328c94b', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '74-3', + classNames: [ + '.random-classname-7a2903af', + '.random-classname-30fe7bb9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '74-3', + classNames: [ + '.random-classname-83255fd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '73-5', + classNames: [ + '.random-classname-51c9d937', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '73-5', + classNames: [ + '.random-classname-bb4cfc5b', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '73-5', + classNames: [ + '.random-classname-8e950249', + '.random-classname-378e763', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '73-5', + classNames: [ + '.random-classname-9409b747', + '.random-classname-f81fab11', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '72-9', + classNames: [ + '.random-classname-3c4e8ed5', + '.random-classname-b418ffcf', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '72-9', + classNames: [ + '.random-classname-6bcd0073', + ], + attributes: [ + { + key: + 'data-random-attr-8bf6c91d', + selector: + '[data-random-attr-8bf6c91d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '72-9', + classNames: [ + '.random-classname-f6d95957', + '.random-classname-b4ef67a1', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '72-9', + classNames: [ + '.random-classname-e4d16e7b', + ], + attributes: [ + { + key: + 'data-random-attr-d12e4c65', + selector: + '[data-random-attr-d12e4c65]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '72-9', + classNames: [ + '.random-classname-95debb69', + '.random-classname-b0ab9d83', + ], + attributes: [ + { + key: + 'data-random-attr-cede38ad', + selector: + '[data-random-attr-cede38ad]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '72-9', + classNames: [ + '.random-classname-a539bf67', + ], + attributes: [ + { + key: + 'data-random-attr-3ac08831', + selector: + '[data-random-attr-3ac08831]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '72-9', + classNames: [ + '.random-classname-7313ad8b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '72-9', + classNames: [ + '.random-classname-846a0bef', + '.random-classname-e2e3edf9', + ], + attributes: [ + { + key: + 'data-random-attr-66c5be93', + selector: + '[data-random-attr-66c5be93]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '71-7', + classNames: [ + '.random-classname-8e6be977', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '71-7', + classNames: [ + '.random-classname-3e01f09b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '71-7', + classNames: [ + '.random-classname-77f7b385', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '71-7', + classNames: [ + '.random-classname-a8200489', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '71-7', + classNames: [ + '.random-classname-3a6252c8', + '.random-classname-3bb8af3a', + ], + attributes: [ + { + key: + 'data-random-attr-9de4ae7c', + value: + 'random-attr-value-68ad37ab', + selector: + '[data-random-attr-9de4ae7c=random-attr-value-68ad37ab]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '71-7', + classNames: [ + '.random-classname-9524280f', + '.random-classname-d6dbff19', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '70-3', + classNames: [ + '.random-classname-3ab08cb3', + '.random-classname-54955f5d', + ], + attributes: [ + { + key: + 'data-random-attr-3898997', + selector: + '[data-random-attr-3898997]', + }, + ], + siblings: [ + ':nth-child(3)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '70-3', + classNames: [ + '.random-classname-a0e55bc0', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '69-3', + classNames: [ + '.random-classname-3db2baf2', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '69-3', + classNames: [ + '.random-classname-e06c8af4', + '.random-classname-c2479446', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '68-7', + classNames: [ + '.random-classname-d76578da', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '68-7', + classNames: [ + '.random-classname-4897cae', + '.random-classname-96f20010', + ], + attributes: [ + { + key: + 'data-random-attr-5897f3c2', + value: + 'random-attr-value-1537a039', + selector: + '[data-random-attr-5897f3c2=random-attr-value-1537a039]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '68-7', + classNames: [ + '.random-classname-72156ad3', + '.random-classname-9cff827d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '68-7', + classNames: [ + '.random-classname-38860701', + '.random-classname-618724db', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '68-7', + classNames: [ + '.random-classname-f7ae31c5', + ], + attributes: [ + { + key: + 'data-random-attr-f949d03f', + selector: + '[data-random-attr-f949d03f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '68-7', + classNames: [ + '.random-classname-1d781fe3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '67-9', + classNames: [ + '.random-classname-ce1437c7', + '.random-classname-ab3c7f91', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '67-9', + classNames: [ + '.random-classname-f3f3904f', + ], + attributes: [ + { + key: + 'data-random-attr-853ed159', + selector: + '[data-random-attr-853ed159]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '67-9', + classNames: [ + '.random-classname-8685f9d7', + '.random-classname-33935c21', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '67-9', + classNames: [ + '.random-classname-352d945f', + ], + attributes: [ + { + key: + 'data-random-attr-c1813fe9', + selector: + '[data-random-attr-c1813fe9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '67-9', + classNames: [ + '.random-classname-4bfac52d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '67-9', + classNames: [ + '.random-classname-bb907fe7', + ], + attributes: [ + { + key: + 'data-random-attr-c3339cb1', + selector: + '[data-random-attr-c3339cb1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '67-9', + classNames: [ + '.random-classname-1641ca75', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '67-9', + classNames: [ + '.random-classname-72399279', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '66-5', + classNames: [ + '.random-classname-496d5713', + '.random-classname-ccf178bd', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '66-5', + classNames: [ + '.random-classname-121c991b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '66-5', + classNames: [ + '.random-classname-c16687f', + '.random-classname-9470c909', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '66-5', + classNames: [ + '.random-classname-da83504d', + '.random-classname-34b3d807', + ], + attributes: [ + { + key: + 'data-random-attr-963449d1', + selector: + '[data-random-attr-963449d1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '65-3', + classNames: [ + '.random-classname-29fbb995', + ], + attributes: [ + { + key: + 'data-random-attr-70c7388f', + selector: + '[data-random-attr-70c7388f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '65-3', + classNames: [ + '.random-classname-12706533', + '.random-classname-90094bdd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '64-9', + classNames: [ + '.random-classname-280eaa17', + '.random-classname-4426b661', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '64-9', + classNames: [ + '.random-classname-d0512725', + '.random-classname-da0c4c9f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '64-9', + classNames: [ + '.random-classname-133b3243', + '.random-classname-431c6b6d', + ], + attributes: [ + { + key: + 'data-random-attr-16864027', + selector: + '[data-random-attr-16864027]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '64-9', + classNames: [ + '.random-classname-ee8686f1', + '.random-classname-4255da4b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '64-9', + classNames: [ + '.random-classname-69d838b5', + '.random-classname-8606a4af', + ], + attributes: [ + { + key: + 'data-random-attr-e429c4b9', + selector: + '[data-random-attr-e429c4b9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '64-9', + classNames: [ + '.random-classname-1395aefd', + '.random-classname-25b9a37', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '64-9', + classNames: [ + '.random-classname-1189ee45', + ], + attributes: [ + { + key: + 'data-random-attr-bf1740bf', + selector: + '[data-random-attr-bf1740bf]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '64-9', + classNames: [ + '.random-classname-33d85863', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '63-3', + classNames: [ + '.random-classname-820fb847', + '.random-classname-7a725411', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '63-3', + classNames: [ + '.random-classname-1db7c46b', + '.random-classname-849f47d5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '62-5', + classNames: [ + '.random-classname-ebdf20cf', + '.random-classname-f3af35d9', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '62-5', + classNames: [ + '.random-classname-d0639a57', + ], + attributes: [ + { + key: + 'data-random-attr-389050a1', + selector: + '[data-random-attr-389050a1]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '62-5', + classNames: [ + '.random-classname-b2914565', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '62-5', + classNames: [ + '.random-classname-595b8e83', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '61-7', + classNames: [ + '.random-classname-dc584067', + '.random-classname-cc3fb131', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '61-7', + classNames: [ + '.random-classname-4d18e6f5', + '.random-classname-a858acef', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '61-7', + classNames: [ + '.random-classname-2d35ef93', + '.random-classname-1f2c253d', + ], + attributes: [ + { + key: + 'data-random-attr-592eaa77', + selector: + '[data-random-attr-592eaa77]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '61-7', + classNames: [ + '.random-classname-e76975c1', + '.random-classname-b78419b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '61-7', + classNames: [ + '.random-classname-228c58ff', + '.random-classname-e6ba8d89', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '61-7', + classNames: [ + '.random-classname-671b1ccd', + '.random-classname-ce67d887', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '60-6', + classNames: [ + '.random-classname-df27070', + '.random-classname-4544a322', + ], + attributes: [ + { + key: + 'data-random-attr-69b012a4', + value: + 'random-attr-value-93d13db3', + selector: + '[data-random-attr-69b012a4=random-attr-value-93d13db3]', + }, + ], + siblings: [ + ':nth-child(7)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '60-6', + classNames: [ + '.random-classname-f2e4670a', + '.random-classname-254fc6cc', + ], + attributes: [], + siblings: [ + ':nth-child(8)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '60-6', + classNames: [ + '.random-classname-b5067d1f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '60-6', + classNames: [ + '.random-classname-4557e6a9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '60-6', + classNames: [ + '.random-classname-39c677ed', + '.random-classname-454680a7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '58-4', + classNames: [ + '.random-classname-33ede2cb', + '.random-classname-e643d535', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '58-4', + classNames: [ + '.random-classname-efd4e939', + '.random-classname-42269bd3', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '58-4', + classNames: [ + '.random-classname-9b8898aa', + '.random-classname-b68a096c', + ], + attributes: [], + siblings: [ + ':nth-child(8)', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '57-7', + classNames: [ + '.random-classname-efbccfc9', + '.random-classname-e89990e3', + ], + attributes: [ + { + key: + 'data-random-attr-1b6a630d', + selector: + '[data-random-attr-1b6a630d]', + }, + ], + siblings: [ + ':nth-child(9)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '57-7', + classNames: [ + '.random-classname-3d90c8bc', + '.random-classname-c1283d4e', + ], + attributes: [ + { + key: + 'data-random-attr-abf8a9b0', + value: + 'random-attr-value-9ddbb14f', + selector: + '[data-random-attr-abf8a9b0=random-attr-value-9ddbb14f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '57-7', + classNames: [ + '.random-classname-e6be09f3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '57-7', + classNames: [ + '.random-classname-16723ad7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '57-7', + classNames: [ + '.random-classname-d363a7fb', + '.random-classname-f06041e5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '57-7', + classNames: [ + '.random-classname-8ba1f55f', + '.random-classname-df3148e9', + ], + attributes: [ + { + key: + 'data-random-attr-37050703', + selector: + '[data-random-attr-37050703]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '56-7', + classNames: [ + '.random-classname-35cede2d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '56-7', + classNames: [ + '.random-classname-c99100e7', + '.random-classname-67e4c5b1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '56-7', + classNames: [ + '.random-classname-9b990375', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '56-7', + classNames: [ + '.random-classname-9e0fdb79', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '56-7', + classNames: [ + '.random-classname-7e2fd1bd', + ], + attributes: [], + siblings: [ + ':nth-child(9)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '56-7', + classNames: [ + '.random-classname-8b6898be', + '.random-classname-61d146a0', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '55-7', + classNames: [ + '.random-classname-e2d948d2', + ], + attributes: [ + { + key: + 'data-random-attr-eadcb3d4', + value: + 'random-attr-value-a8fe8d23', + selector: + '[data-random-attr-eadcb3d4=random-attr-value-a8fe8d23]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '55-7', + classNames: [ + '.random-classname-56bbe94d', + '.random-classname-50cd907', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '55-7', + classNames: [ + '.random-classname-f264912b', + '.random-classname-e477295', + ], + attributes: [ + { + key: + 'data-random-attr-d540598f', + selector: + '[data-random-attr-d540598f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '55-7', + classNames: [ + '.random-classname-9f42ac99', + '.random-classname-e0d31633', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '55-7', + classNames: [ + '.random-classname-c4abeb17', + '.random-classname-63529f61', + ], + attributes: [ + { + key: + 'data-random-attr-1e5a3c3b', + selector: + '[data-random-attr-1e5a3c3b]', + }, + ], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '55-7', + classNames: [ + '.random-classname-77491e72', + '.random-classname-34763a74', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '53-7', + classNames: [ + '.random-classname-c5831ae8', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '53-7', + classNames: [ + '.random-classname-83484c5a', + '.random-classname-b72ae89c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '53-7', + classNames: [ + '.random-classname-845bc82e', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '53-7', + classNames: [ + '.random-classname-b0553742', + '.random-classname-53dd5bc4', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '53-7', + classNames: [ + '.random-classname-e04c2d96', + '.random-classname-2ccc2938', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '53-7', + classNames: [ + '.random-classname-b74633ec', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '52-10', + classNames: [ + '.random-classname-a922afe0', + ], + attributes: [], + siblings: [ + ':nth-child(2)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '52-10', + classNames: [ + '.random-classname-ddbbc963', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '52-10', + classNames: [ + '.random-classname-174faf8d', + '.random-classname-5fd9b947', + ], + attributes: [ + { + key: + 'data-random-attr-b528fd11', + selector: + '[data-random-attr-b528fd11]', + }, + ], + siblings: [ + ':nth-child(5)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '52-10', + classNames: [ + '.random-classname-7614dc30', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '52-10', + classNames: [ + '.random-classname-22295a64', + '.random-classname-72f8c536', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '52-10', + classNames: [ + '.random-classname-9239c1d8', + '.random-classname-605ac0ca', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '52-10', + classNames: [ + '.random-classname-5bd0cb9e', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '52-10', + classNames: [ + '.random-classname-a9e35c80', + '.random-classname-dfa639b2', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '52-10', + classNames: [ + '.random-classname-45b837b4', + ], + attributes: [ + { + key: + 'data-random-attr-dd519f06', + value: + 'random-attr-value-86866aad', + selector: + '[data-random-attr-dd519f06=random-attr-value-86866aad]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '50-2', + classNames: [ + '.random-classname-ee73cf8b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '48-10', + classNames: [ + '.random-classname-368b4def', + '.random-classname-de907ff9', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '48-10', + classNames: [ + '.random-classname-802a2093', + '.random-classname-5bfc7e3d', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '48-10', + classNames: [ + '.random-classname-6abadec1', + ], + attributes: [ + { + key: + 'data-random-attr-f5f2929b', + selector: + '[data-random-attr-f5f2929b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '48-10', + classNames: [ + '.random-classname-d00aa585', + '.random-classname-99eb39ff', + ], + attributes: [], + siblings: [ + ':nth-child(1)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '48-10', + classNames: [ + '.random-classname-2af96ea6', + '.random-classname-680ddcc8', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '48-10', + classNames: [ + '.random-classname-7f93d87c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '48-10', + classNames: [ + '.random-classname-20d6a30e', + ], + attributes: [ + { + key: + 'data-random-attr-4aad570', + value: + 'random-attr-value-62166a0f', + selector: + '[data-random-attr-4aad570=random-attr-value-62166a0f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '48-10', + classNames: [ + '.random-classname-1b75eeb3', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '48-10', + classNames: [ + '.random-classname-16ee13e1', + '.random-classname-89d824bb', + ], + attributes: [ + { + key: + 'data-random-attr-ca1b9ca5', + selector: + '[data-random-attr-ca1b9ca5]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '47-2', + classNames: [ + '.random-classname-fec91bc3', + '.random-classname-57b590ed', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '46-8', + classNames: [ + '.random-classname-6d1a01a7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '46-8', + classNames: [ + '.random-classname-39b4471', + '.random-classname-9520f3cb', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '46-8', + classNames: [ + '.random-classname-3c92962f', + '.random-classname-5563239', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '46-8', + classNames: [ + '.random-classname-e2bbccd3', + '.random-classname-360e347d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '46-8', + classNames: [ + '.random-classname-c7e5bbb7', + '.random-classname-4e76d901', + ], + attributes: [ + { + key: + 'data-random-attr-58f9c6db', + selector: + '[data-random-attr-58f9c6db]', + }, + ], + siblings: [ + ':nth-child(5)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '46-8', + classNames: [ + '.random-classname-28988b94', + '.random-classname-ba8d7de6', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '46-8', + classNames: [ + '.random-classname-7c46ee08', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '45-7', + classNames: [ + '.random-classname-d9b75dbc', + '.random-classname-4c2c9a4e', + ], + attributes: [ + { + key: + 'data-random-attr-5b460eb0', + value: + 'random-attr-value-3807d24f', + selector: + '[data-random-attr-5b460eb0=random-attr-value-3807d24f]', + }, + ], + siblings: [ + ':nth-child(13)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '45-7', + classNames: [ + '.random-classname-24114458', + '.random-classname-2685e74a', + ], + attributes: [ + { + key: + 'data-random-attr-1304710c', + value: + 'random-attr-value-2df78fb', + selector: + '[data-random-attr-1304710c=random-attr-value-2df78fb]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '45-7', + classNames: [ + '.random-classname-80393ae5', + '.random-classname-f35a565f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '45-7', + classNames: [ + '.random-classname-2efaf803', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '45-7', + classNames: [ + '.random-classname-115581e7', + '.random-classname-9ef9eeb1', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '45-7', + classNames: [ + '.random-classname-8a7e1e6f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '44-3', + classNames: [ + '.random-classname-a8ca2479', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '44-3', + classNames: [ + '.random-classname-2a922abd', + ], + attributes: [ + { + key: + 'data-random-attr-3d824bf7', + selector: + '[data-random-attr-3d824bf7]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '43-9', + classNames: [ + '.random-classname-84a91341', + '.random-classname-ab113b1b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '43-9', + classNames: [ + '.random-classname-fed42a7f', + '.random-classname-756ddb09', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '43-9', + classNames: [ + '.random-classname-84fe23', + ], + attributes: [ + { + key: + 'data-random-attr-2718824d', + selector: + '[data-random-attr-2718824d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '43-9', + classNames: [ + '.random-classname-5129da07', + '.random-classname-38d39bd1', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '43-9', + classNames: [ + '.random-classname-cb372b95', + '.random-classname-2dfd7a8f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '43-9', + classNames: [ + '.random-classname-65b9c733', + '.random-classname-5ab2fddd', + ], + attributes: [ + { + key: + 'data-random-attr-de0d2c17', + selector: + '[data-random-attr-de0d2c17]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '43-9', + classNames: [ + '.random-classname-4fe28861', + '.random-classname-f9170d3b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '43-9', + classNames: [ + '.random-classname-32311925', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '42-11', + classNames: [ + '.random-classname-95f5f429', + '.random-classname-c2651443', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '42-11', + classNames: [ + '.random-classname-ea2d4227', + '.random-classname-1c7ed8f1', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '42-11', + classNames: [ + '.random-classname-c8bbfc4b', + '.random-classname-477caab5', + ], + attributes: [], + siblings: [ + ':nth-child(9)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '42-11', + classNames: [ + '.random-classname-784e10c4', + '.random-classname-7bfaa96', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '42-11', + classNames: [ + '.random-classname-10f5ae38', + '.random-classname-e85c4c2a', + ], + attributes: [], + siblings: [ + ':nth-child(10)', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '42-11', + classNames: [ + '.random-classname-fc7702bf', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '42-11', + classNames: [ + '.random-classname-eb35488d', + '.random-classname-3d67ba47', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '42-11', + classNames: [ + '.random-classname-ab2cb9d5', + '.random-classname-243762cf', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '42-11', + classNames: [ + '.random-classname-23581373', + '.random-classname-d99a541d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '42-11', + classNames: [ + '.random-classname-f3fe22a1', + '.random-classname-b8bee17b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-72b006df', + '.random-classname-c9c4d669', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-999083ad', + '.random-classname-efe14267', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-90f58f5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-3f01eeef', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-4ebcc8f9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-5bf0d73d', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-d70e39b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-2c8e1aff', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-db59b6a3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-ebd44ecd', + '.random-classname-eaa1da87', + ], + attributes: [ + { + key: + 'data-random-attr-4539f051', + selector: + '[data-random-attr-4539f051]', + }, + ], + siblings: [ + ':nth-child(5)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-a4c5fd22', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-a26c7ca4', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-3c67e818', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '39-5', + classNames: [ + '.random-classname-2f9970cc', + '.random-classname-d8c4efde', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '38-7', + classNames: [ + '.random-classname-92164ac0', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '38-7', + classNames: [ + '.random-classname-54e481f2', + '.random-classname-9bcce9f4', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '38-7', + classNames: [ + '.random-classname-df0a4b46', + ], + attributes: [], + siblings: [ + ':nth-child(12)', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '38-7', + classNames: [ + '.random-classname-d65804cb', + ], + attributes: [ + { + key: + 'data-random-attr-b28c4735', + selector: + '[data-random-attr-b28c4735]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '38-7', + classNames: [ + '.random-classname-e5bb7b39', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '38-7', + classNames: [ + '.random-classname-354b8d7d', + '.random-classname-cb617cb7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '37-9', + classNames: [ + '.random-classname-363917db', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '37-9', + classNames: [ + '.random-classname-df59733f', + '.random-classname-bd8fe1c9', + ], + attributes: [ + { + key: + 'data-random-attr-936872e3', + selector: + '[data-random-attr-936872e3]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '37-9', + classNames: [ + '.random-classname-a735950d', + '.random-classname-b1183ac7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '37-9', + classNames: [ + '.random-classname-9dcb2eeb', + '.random-classname-d7b69655', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '37-9', + classNames: [ + '.random-classname-a6382c59', + '.random-classname-e4cd6bf3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '37-9', + classNames: [ + '.random-classname-3096bcd7', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '37-9', + classNames: [ + '.random-classname-58b9d400', + '.random-classname-22d1d32', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '37-9', + classNames: [ + '.random-classname-2a80fa86', + '.random-classname-87cdb3a8', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '36-3', + classNames: [ + '.random-classname-3f6c231a', + '.random-classname-600ad5c', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '36-3', + classNames: [ + '.random-classname-da458850', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '35-9', + classNames: [ + '.random-classname-482bb884', + '.random-classname-db5c6856', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '35-9', + classNames: [ + '.random-classname-d99ff1f8', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '35-9', + classNames: [ + '.random-classname-582028ac', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '35-9', + classNames: [ + '.random-classname-df2f90a0', + '.random-classname-b8b022d2', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '35-9', + classNames: [ + '.random-classname-d6a8a26', + '.random-classname-e9b0448', + ], + attributes: [ + { + key: + 'data-random-attr-8efdcba', + value: + 'random-attr-value-d0b944d1', + selector: + '[data-random-attr-8efdcba=random-attr-value-d0b944d1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '35-9', + classNames: [ + '.random-classname-7b11b32b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '35-9', + classNames: [ + '.random-classname-8afe9b8f', + ], + attributes: [ + { + key: + 'data-random-attr-69943e99', + selector: + '[data-random-attr-69943e99]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '35-9', + classNames: [ + '.random-classname-b1247833', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '34-7', + classNames: [ + '.random-classname-84326d17', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '34-7', + classNames: [ + '.random-classname-6ad7de3b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '34-7', + classNames: [ + '.random-classname-4d971225', + '.random-classname-15a86f9f', + ], + attributes: [ + { + key: + 'data-random-attr-cf66fd29', + selector: + '[data-random-attr-cf66fd29]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '34-7', + classNames: [ + '.random-classname-2c1fb66d', + '.random-classname-80a6c327', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '34-7', + classNames: [ + '.random-classname-9ff50d4b', + ], + attributes: [ + { + key: + 'data-random-attr-9644e3b5', + selector: + '[data-random-attr-9644e3b5]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '34-7', + classNames: [ + '.random-classname-ef039fb9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '32-7', + classNames: [ + '.random-classname-5097b9fd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '32-7', + classNames: [ + '.random-classname-6ca8dd37', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '32-7', + classNames: [ + '.random-classname-143a405b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '32-7', + classNames: [ + '.random-classname-4e0ce3bf', + '.random-classname-6a732649', + ], + attributes: [ + { + key: + 'data-random-attr-de0eab63', + selector: + '[data-random-attr-de0eab63]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '32-7', + classNames: [ + '.random-classname-2ab9bb47', + '.random-classname-93c24f11', + ], + attributes: [ + { + key: + 'data-random-attr-79b8776b', + selector: + '[data-random-attr-79b8776b]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '32-7', + classNames: [ + '.random-classname-44c983cf', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '31-5', + classNames: [ + '.random-classname-afd5cbd8', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '31-5', + classNames: [ + '.random-classname-1f19b08c', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '31-5', + classNames: [ + '.random-classname-d500a680', + '.random-classname-c9413b2', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '31-5', + classNames: [ + '.random-classname-191521b4', + '.random-classname-f9c01906', + ], + attributes: [ + { + key: + 'data-random-attr-336ed628', + value: + 'random-attr-value-ec4bc367', + selector: + '[data-random-attr-336ed628=random-attr-value-ec4bc367]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-7f152c31', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-5d0091f5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-d1bc8fef', + '.random-classname-75cd11f9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-af09303d', + ], + attributes: [ + { + key: + 'data-random-attr-2a0eed77', + selector: + '[data-random-attr-2a0eed77]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-b89b0c1', + ], + attributes: [ + { + key: + 'data-random-attr-61f3349b', + selector: + '[data-random-attr-61f3349b]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-ea74fbff', + '.random-classname-21e22889', + ], + attributes: [ + { + key: + 'data-random-attr-192627a3', + selector: + '[data-random-attr-192627a3]', + }, + ], + siblings: [ + ':nth-child(9)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '29-9', + classNames: [ + '.random-classname-c593027c', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '29-9', + classNames: [ + '.random-classname-c3179f70', + '.random-classname-7fb4aa22', + ], + attributes: [], + siblings: [ + ':nth-child(14)', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '29-9', + classNames: [ + '.random-classname-910e8d97', + '.random-classname-ced5e5e1', + ], + attributes: [ + { + key: + 'data-random-attr-3159c6bb', + selector: + '[data-random-attr-3159c6bb]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '29-9', + classNames: [ + '.random-classname-2288a01f', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '29-9', + classNames: [ + '.random-classname-4c088846', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '29-9', + classNames: [ + '.random-classname-a33b4768', + ], + attributes: [ + { + key: + 'data-random-attr-4ddbacda', + value: + 'random-attr-value-98bf9671', + selector: + '[data-random-attr-4ddbacda=random-attr-value-98bf9671]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '29-9', + classNames: [ + '.random-classname-79315cb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '29-9', + classNames: [ + '.random-classname-24a68035', + '.random-classname-1de5d82f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '28-6', + classNames: [ + '.random-classname-2104c439', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '28-6', + classNames: [ + '.random-classname-6bace67d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '28-6', + classNames: [ + '.random-classname-25a13db7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '28-6', + classNames: [ + '.random-classname-147c68db', + '.random-classname-200815c5', + ], + attributes: [], + siblings: [ + ':nth-child(5)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '28-6', + classNames: [ + '.random-classname-ae82f7e6', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '27-6', + classNames: [ + '.random-classname-f28e467a', + '.random-classname-e94087bc', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '27-6', + classNames: [ + '.random-classname-8d1544e', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '27-6', + classNames: [ + '.random-classname-237a7562', + '.random-classname-30c6dee4', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '27-6', + classNames: [ + '.random-classname-30933db6', + '.random-classname-1c814e58', + ], + attributes: [ + { + key: + 'data-random-attr-9c14814a', + value: + 'random-attr-value-f5370021', + selector: + '[data-random-attr-9c14814a=random-attr-value-f5370021]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '27-6', + classNames: [ + '.random-classname-3697185f', + '.random-classname-7b9963e9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-8023292d', + '.random-classname-8e2a83e7', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-5427a0b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-b3f3606f', + '.random-classname-9aeab679', + ], + attributes: [ + { + key: + 'data-random-attr-af4e1b13', + selector: + '[data-random-attr-af4e1b13]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-e79fcdf7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-1815dd1b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-7ea1ec7f', + '.random-classname-35faed09', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-c01de023', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-43db44d', + '.random-classname-9cafdc07', + ], + attributes: [ + { + key: + 'data-random-attr-ad02edd1', + selector: + '[data-random-attr-ad02edd1]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-f029d95', + '.random-classname-fc43bc8f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-40130799', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-19ecafdd', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-d12e5a61', + ], + attributes: [ + { + key: + 'data-random-attr-839caf3b', + selector: + '[data-random-attr-839caf3b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-1aa10b25', + ], + attributes: [ + { + key: + 'data-random-attr-7eb9d09f', + selector: + '[data-random-attr-7eb9d09f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-4f9ef643', + '.random-classname-db68cf6d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-f4e44427', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-ef321e4b', + '.random-classname-8fb11cb5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-cdbee8b9', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-1fc4b838', + ], + attributes: [ + { + key: + 'data-random-attr-46a1e62a', + value: + 'random-attr-value-ce765f81', + selector: + '[data-random-attr-46a1e62a=random-attr-value-ce765f81]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-98ff915b', + ], + attributes: [ + { + key: + 'data-random-attr-192bd245', + selector: + '[data-random-attr-192bd245]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-4724af49', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-37cfbc47', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-57a4f811', + '.random-classname-3716086b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-7d9fa4cf', + '.random-classname-3b3659d9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '25-13', + classNames: [ + '.random-classname-5866061d', + '.random-classname-3e349e57', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-b4fbf4a1', + '.random-classname-47c6837b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-d0852965', + ], + attributes: [ + { + key: + 'data-random-attr-eb30c8df', + selector: + '[data-random-attr-eb30c8df]', + }, + ], + siblings: [ + ':nth-child(5)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-4855606', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-89901b28', + '.random-classname-69f4769a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-dc01ccdc', + '.random-classname-be3f766e', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-b9d0c804', + ], + attributes: [ + { + key: + 'data-random-attr-16e5a3d6', + value: + 'random-attr-value-e545893d', + selector: + '[data-random-attr-16e5a3d6=random-attr-value-e545893d]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-379859b', + '.random-classname-65751085', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-e39fdcff', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-400cb189', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-211d80cd', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-21cd4251', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-217fcd0f', + '.random-classname-86a7ec19', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-6859ce97', + '.random-classname-32dfcee1', + ], + attributes: [ + { + key: + 'data-random-attr-c3a097bb', + selector: + '[data-random-attr-c3a097bb]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-ac3c011f', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-465adbed', + '.random-classname-c72c84a7', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-964b935', + '.random-classname-f3f5792f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-47320d39', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-47935fd3', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-fece1401', + ], + attributes: [ + { + key: + 'data-random-attr-3c3b9db', + selector: + '[data-random-attr-3c3b9db]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-6f388ec5', + '.random-classname-f50d353f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-1af2f3c9', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-628c537a', + ], + attributes: [ + { + key: + 'data-random-attr-fca31cbc', + value: + 'random-attr-value-dc8650eb', + selector: + '[data-random-attr-fca31cbc=random-attr-value-dc8650eb]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '23-12', + classNames: [ + '.random-classname-4824354f', + ], + attributes: [ + { + key: + 'data-random-attr-aca7be59', + selector: + '[data-random-attr-aca7be59]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: '22-3', + classNames: [ + '.random-classname-ebcf729d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '22-3', + classNames: [ + '.random-classname-adcb3ed7', + '.random-classname-1d19e921', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '21-2', + classNames: [ + '.random-classname-c36aebfb', + ], + attributes: [], + siblings: [':nth-child(5)'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-9476f732', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-b40b7486', + '.random-classname-c8103da8', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-c4f13d1a', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-b10964ee', + ], + attributes: [ + { + key: + 'data-random-attr-fcd95250', + value: + 'random-attr-value-b414016f', + selector: + '[data-random-attr-fcd95250=random-attr-value-b414016f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-a250ff79', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-b29135bd', + '.random-classname-14d48ef7', + ], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-92f90cbe', + '.random-classname-a9dddaa0', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-78887d4', + '.random-classname-13a20426', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-c9128e48', + ], + attributes: [], + siblings: [':last-child'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-2011e88e', + '.random-classname-83c5b6f0', + ], + attributes: [], + siblings: [':nth-child(2)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '20-12', + classNames: [ + '.random-classname-db85da33', + '.random-classname-9d3f88dd', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-85ea4361', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-294f0425', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-2d0f319f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-9ff50f29', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-f181e743', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-d5e86d', + '.random-classname-56e5c527', + ], + attributes: [ + { + key: 'data-random-attr-d96153f1', + selector: + '[data-random-attr-d96153f1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-c6732f4b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-c3c155b5', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-df5e31b9', + '.random-classname-15d57853', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '19-11', + classNames: [ + '.random-classname-72b05f37', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-b6c8e25b', + ], + attributes: [ + { + key: 'data-random-attr-d42e4b45', + selector: + '[data-random-attr-d42e4b45]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-9fba3849', + '.random-classname-84718d63', + ], + attributes: [ + { + key: 'data-random-attr-57be138d', + selector: + '[data-random-attr-57be138d]', + }, + ], + siblings: [':nth-child(7)'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-2b155fce', + ], + attributes: [ + { + key: 'data-random-attr-ddea7030', + value: 'random-attr-value-deb9c5cf', + selector: + '[data-random-attr-ddea7030=random-attr-value-deb9c5cf]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-39872673', + ], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-6b92df57', + '.random-classname-bf90dda1', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-bfd0547b', + '.random-classname-4e1c2265', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-8d5729df', + '.random-classname-1aaef169', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-6f86cead', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-3f977e31', + '.random-classname-b564138b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-c0cf03f5', + ], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '16-13', + classNames: [ + '.random-classname-6ca220d6', + '.random-classname-aaf4be78', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: ['.random-classname-8995066a'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: ['.random-classname-d3459b3e'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: [ + '.random-classname-b2c93352', + '.random-classname-34848254', + ], + attributes: [ + { + key: 'data-random-attr-a00062a6', + value: 'random-attr-value-25f819cd', + selector: + '[data-random-attr-a00062a6=random-attr-value-25f819cd]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: ['.random-classname-9136dd87'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: [ + '.random-classname-e0c09dab', + '.random-classname-b989b315', + ], + attributes: [ + { + key: 'data-random-attr-4f2aee0f', + selector: '[data-random-attr-4f2aee0f]', + }, + ], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: ['.random-classname-96d6755d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: [ + '.random-classname-5c4db7e1', + '.random-classname-94eb68bb', + ], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: ['.random-classname-5c6148f4'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: [ + '.random-classname-5acec6da', + '.random-classname-9ef7c71c', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: [ + '.random-classname-62375e10', + '.random-classname-72b01c2', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '16-13', + classNames: [ + '.random-classname-2f9d6016', + '.random-classname-438c7fb8', + ], + attributes: [], + siblings: [':nth-child(8)'], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '15-12', + classNames: ['.random-classname-fa0d07c5'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: [ + '.random-classname-a77a7cc9', + '.random-classname-36fcc5e3', + ], + attributes: [ + { + key: 'data-random-attr-19f4600d', + selector: '[data-random-attr-19f4600d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: [ + '.random-classname-bc347591', + '.random-classname-1ee9e1eb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: [ + '.random-classname-454ec155', + '.random-classname-4360564f', + ], + attributes: [ + { + key: 'data-random-attr-5b358759', + selector: '[data-random-attr-5b358759]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: ['.random-classname-bb7d4b9d'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: ['.random-classname-2e60d221'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: [ + '.random-classname-9ef6bcfb', + '.random-classname-c8051ee5', + ], + attributes: [ + { + key: 'data-random-attr-7ee3da5f', + selector: '[data-random-attr-7ee3da5f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: [ + '.random-classname-b1fabc03', + '.random-classname-470f5b2d', + ], + attributes: [ + { + key: 'data-random-attr-b20f85e7', + selector: '[data-random-attr-b20f85e7]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: ['.random-classname-733692b1'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: ['.random-classname-b9e92075'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '15-12', + classNames: [ + '.random-classname-6678a26f', + '.random-classname-c89b4879', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '14-2', + classNames: [ + '.random-classname-eb838ebd', + '.random-classname-3ccd4ff7', + ], + attributes: [], + siblings: [':nth-child(11)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '13-3', + classNames: [ + '.random-classname-9432ffa0', + '.random-classname-bbd869d2', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '13-3', + classNames: ['.random-classname-be4bc126'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-cb0c5348', + '.random-classname-702103ba', + ], + attributes: [ + { + key: 'data-random-attr-b12276fc', + value: 'random-attr-value-9533662b', + selector: + '[data-random-attr-b12276fc=random-attr-value-9533662b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-755e0f95', + '.random-classname-5b99fe8f', + ], + attributes: [ + { + key: 'data-random-attr-9fbc9999', + selector: '[data-random-attr-9fbc9999]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: ['.random-classname-4db661dd'], + attributes: [ + { + key: 'data-random-attr-633a3017', + selector: '[data-random-attr-633a3017]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-5', + classNames: [ + '.random-classname-480a2c61', + '.random-classname-ea32513b', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-13', + classNames: [ + '.random-classname-57121829', + '.random-classname-3ae8d843', + ], + attributes: [ + { + key: 'data-random-attr-2c67016d', + selector: '[data-random-attr-2c67016d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: ['.random-classname-b6ab4627'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: ['.random-classname-c2758eb5'], + attributes: [], + siblings: [':nth-child(13)'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: [ + '.random-classname-c8959e96', + '.random-classname-a1e3c238', + ], + attributes: [ + { + key: 'data-random-attr-84b7802a', + value: 'random-attr-value-9aeb3181', + selector: + '[data-random-attr-84b7802a=random-attr-value-9aeb3181]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: ['.random-classname-92d4c445'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: ['.random-classname-ce6686bf'], + attributes: [ + { + key: 'data-random-attr-433c149', + selector: '[data-random-attr-433c149]', + }, + ], + siblings: [':nth-child(5)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: ['.random-classname-6b93e488'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: [ + '.random-classname-a7d2e6fa', + '.random-classname-d93c7c3c', + ], + attributes: [ + { + key: 'data-random-attr-fe03bcce', + value: 'random-attr-value-ff79dd5', + selector: '[data-random-attr-fe03bcce=random-attr-value-ff79dd5]', + }, + ], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: [ + '.random-classname-a09ed773', + '.random-classname-dbc1b81d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: ['.random-classname-d9b52057'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: ['.random-classname-fb89c6a1'], + attributes: [ + { + key: 'data-random-attr-c2de257b', + selector: '[data-random-attr-c2de257b]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '11-13', + classNames: [ + '.random-classname-88c18adf', + '.random-classname-86c4fa69', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-cb20e7ad', '.random-classname-6c234667'], + attributes: [], + siblings: [':nth-child(5)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-fbb5306e'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-964a9d0'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-65883204', '.random-classname-8d129dd6'], + attributes: [ + { + key: 'data-random-attr-da234378', + value: 'random-attr-value-f3d33077', + selector: '[data-random-attr-da234378=random-attr-value-f3d33077]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-6e2debc1'], + attributes: [ + { + key: 'data-random-attr-6d92279b', + selector: '[data-random-attr-6d92279b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '10-7', + classNames: ['.random-classname-b9f00285'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '9-3', + classNames: ['.random-classname-6c0dc389', '.random-classname-a3a37aa3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '9-3', + classNames: ['.random-classname-86f6b2cd', '.random-classname-9045de87'], + attributes: [ + { + key: 'data-random-attr-6ff09451', + selector: '[data-random-attr-6ff09451]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '8-5', + classNames: ['.random-classname-1b5b6c15', '.random-classname-b91a0f0f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '8-5', + classNames: ['.random-classname-7b357e19', '.random-classname-ab6963b3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '8-5', + classNames: ['.random-classname-33df4e5d', '.random-classname-453c5097'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '8-5', + classNames: ['.random-classname-b53a39bb', '.random-classname-456779a5'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '7-3', + classNames: ['.random-classname-a5561ca9', '.random-classname-d36dd0c3'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '7-3', + classNames: ['.random-classname-c4641171', '.random-classname-db5c48cb'], + attributes: [], + siblings: [':nth-child(9)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '6-3', + classNames: ['.random-classname-df50bf44', '.random-classname-ab3add16'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '6-3', + classNames: ['.random-classname-a3566aa'], + attributes: [ + { + key: 'data-random-attr-f0a6076c', + value: 'random-attr-value-555e5bdb', + selector: '[data-random-attr-f0a6076c=random-attr-value-555e5bdb]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '5-3', + classNames: ['.random-classname-508580c5', '.random-classname-47d0f73f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '5-3', + classNames: ['.random-classname-fb3636e3', '.random-classname-7bf90d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-cc803ec7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-fb111e91'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-ddc97a55', '.random-classname-7ee0774f'], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-705f5d58'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-f10684a'], + attributes: [ + { + key: 'data-random-attr-94cf9a0c', + value: 'random-attr-value-8d868dfb', + selector: '[data-random-attr-94cf9a0c=random-attr-value-8d868dfb]', + }, + ], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-cd057ee9', '.random-classname-4b84ad03'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-f63fbbb1'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '4-9', + classNames: ['.random-classname-b48ead0b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-97185975'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-9dc99179', '.random-classname-9320ae13'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-6f8a10f7'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-213ad01b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-ded48f7f', '.random-classname-91fc8809'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '3-7', + classNames: ['.random-classname-d7037f4d'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-7c37e8d1', '.random-classname-149bf72b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-69ab1f8f'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-dc97fe98', '.random-classname-e065db8a'], + attributes: [ + { + key: 'data-random-attr-71a3af4c', + value: 'random-attr-value-5803223b', + selector: '[data-random-attr-71a3af4c=random-attr-value-5803223b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-4b96f625'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-58132129', '.random-classname-3bd3c943'], + attributes: [], + siblings: [':nth-child(11)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-676b669c'], + attributes: [ + { + key: 'data-random-attr-9c36f62e', + value: 'random-attr-value-1bcdc7b5', + selector: '[data-random-attr-9c36f62e=random-attr-value-1bcdc7b5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-88860baf', '.random-classname-db48c3b9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-a027da53'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-73c7e137', '.random-classname-c03b9a81'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-e51f3d45'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-50e46f63', '.random-classname-8cd458d'], + attributes: [], + siblings: [':nth-child(11)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-eb51113c'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + selectors: [ + '::before >', + '.random-classname-7134e52f .random-classname-7ef38bd3', + '.random-classname-277f4b7d', + ':first-child', + '::before .random-classname-7ef38bd3 > .random-classname-277f4b7d :first-child .random-classname-57d7a13f >', + '.random-classname-b1643fc9', + '.random-classname-6c6280e3', + '::before', + '::before :not(.random-classname-7ef38bd3) > .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-57d7a13f > .random-classname-6c6280e3 .random-classname-5e569891', + '.random-classname-277f4b7d :first-child .random-classname-63271ac5 .random-classname-6c6280e3 .random-classname-d75c28c7 .random-classname-1406fceb', + '.random-classname-1406fceb ::slotted', + '.random-classname-fc9c0a59 .random-classname-91c27e9d', + '.random-classname-338e2ad7', + ':last-child', + '::slotted', + ':not(.random-classname-d75c28c7) ::slotted :not(.random-classname-fc9c0a59) .random-classname-91c27e9d .random-classname-338e2ad7 :not(.random-classname-b1f0b1e5)', + '::slotted >', + '.random-classname-196d4e2d', + '.random-classname-7d68f0e7', + '.random-classname-60f9370b', + '.random-classname-60f9370b .random-classname-e3057375 >', + '.random-classname-ee8f1a41', + '.random-classname-c66fda1b', + '.random-classname-9c70d905', + '.random-classname-e3057375 .random-classname-db8b4b79 .random-classname-ee8f1a41 :not(.random-classname-9c70d905) .random-classname-7e5397f', + '.random-classname-9eb77d23', + '[data-random-attr-8412594d]', + ':last-child > .random-classname-b1f0b1e5 .random-classname-c710b8e9 .random-classname-196d4e2d .random-classname-60f9370b .random-classname-e3057375 [data-random-attr-a32a41bd] .random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f [data-random-attr-8412594d] .random-classname-f25762d1', + '::slotted [data-random-attr-8d8e498f] >', + '.random-classname-9eb77d23 > .random-classname-f25762d1 .random-classname-d66be295 > :first-child', + '.random-classname-f6b7db17', + ':not(.random-classname-ccf61c99) .random-classname-f6b7db17 .random-classname-37740f61', + '.random-classname-f6b7db17 [data-random-attr-acad2c3b] > .random-classname-b6db9d9f', + '.random-classname-7fbf1343', + '.random-classname-b6db9d9f ::before .random-classname-e63fb127', + '.random-classname-c5ee35af >', + ':first-child :not(::before) >', + ':first-child > .random-classname-de8777fd > ::before >', + '.random-classname-92711bf >', + '.random-classname-d8354b37 ::before :not(::before) .random-classname-3564b963', + '.random-classname-3564b963 :last-child', + ':not(.random-classname-2c161f8d) .random-classname-172870d5', + '.random-classname-eb2731cf', + '[data-random-attr-185e6ed9]', + '.random-classname-d1adcb57', + '.random-classname-7426a9a1', + '.random-classname-39d0456b .random-classname-eb2731cf > .random-classname-7426a9a1 .random-classname-2e08ae65', + '.random-classname-3904daad', + '.random-classname-af2b167', + '.random-classname-39d0456b :first-child > .random-classname-7426a9a1 [data-random-attr-8dfe3d69] :first-child .random-classname-260e8ff5', + '[data-random-attr-23413def] :not(.random-classname-2ec71093) >', + '.random-classname-4ebeff9 :not(.random-classname-87d6ee3d)', + '.random-classname-4c844ec1', + '[data-random-attr-e82d829b]', + '.random-classname-4c844ec1 .random-classname-6bdd29ff >', + '.random-classname-4c844ec1 > .random-classname-10308689 .random-classname-79c25cd', + '.random-classname-de8777fd .random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 > :last-child .random-classname-39d0456b .random-classname-eb2731cf ::slotted .random-classname-2e08ae65 > .random-classname-3904daad .random-classname-260e8ff5 .random-classname-4ebeff9 .random-classname-87d6ee3d .random-classname-4c844ec1 .random-classname-6bdd29ff .random-classname-24aa35a3 :not(.random-classname-100549ab)', + '.random-classname-58445a0f', + '[data-random-attr-1ad2c987] .random-classname-100549ab .random-classname-3baf3f15 .random-classname-29150119 >', + '[data-random-attr-ca295b77] .random-classname-4c844ec1 .random-classname-10308689 .random-classname-79c25cd .random-classname-100549ab > .random-classname-58445a0f .random-classname-29150119 ::before', + '.random-classname-6f0adeb3 > .random-classname-ecaffb97', + '::before ::before >', + '.random-classname-6b5a0bc3', + '.random-classname-99a400ed', + '.random-classname-3cfe3cb', + '.random-classname-d057ce1f ::slotted > .random-classname-72b8b471 > .random-classname-92d27e35', + '.random-classname-4821a239', + '.random-classname-9748bcd3', + '.random-classname-72b8b471 .random-classname-92d27e35 .random-classname-4821a239 .random-classname-8d58a47d', + '.random-classname-f24b6db', + '.random-classname-d01bc8c9', + ':nth-child(3)', + ':nth-child(3) > ::after >', + '.random-classname-4821a239 > .random-classname-8d58a47d :last-child :not(.random-classname-d01bc8c9) .random-classname-5c5a9e08 .random-classname-a446ca4e >', + '.random-classname-6dcfbeb0', + '.random-classname-d01bc8c9 ::after .random-classname-a446ca4e > .random-classname-6dcfbeb0 .random-classname-f47c4b62', + '.random-classname-6dcfbeb0 ::after ::placeholder >', + '.random-classname-a446ca4e .random-classname-6dcfbeb0 :first-child :nth-child(7) .random-classname-8290a234', + '.random-classname-9a75ed86', + '[data-random-attr-9fd61ea8=random-attr-value-a8ed71e7]', + '::before .random-classname-906d480b', + '.random-classname-8290a234 > ::before .random-classname-a4c0ac75 .random-classname-85140e6f', + '.random-classname-78059479', + '[data-random-attr-2b528341] >', + '.random-classname-1351174a .random-classname-8290a234 ::before .random-classname-906d480b .random-classname-85140e6f .random-classname-78059479 [data-random-attr-2b528341] .random-classname-152c2b1b', + '.random-classname-d6a61a7f', + '.random-classname-e1454b09', + '.random-classname-1dfdee23', + '.random-classname-922ef24d', + '::slotted :first-child', + '.random-classname-fad63bf7 .random-classname-152c2b1b .random-classname-d6a61a7f .random-classname-922ef24d .random-classname-f990bd1 .random-classname-36ce599 >', + '[data-random-attr-cdc3f861]', + '[data-random-attr-2b528341] > .random-classname-152c2b1b .random-classname-d6a61a7f .random-classname-922ef24d :first-child ::slotted .random-classname-c3d91c17 ::slotted', + '.random-classname-c0056429', + '.random-classname-92d60443', + '[data-random-attr-13c90d6d]', + '[data-random-attr-787c48f1]', + ':not(::slotted) > :nth-child(3) ::after .random-classname-a446ca4e .random-classname-6dcfbeb0 ::after ::placeholder :not(.random-classname-8290a234) [data-random-attr-9fd61ea8=random-attr-value-a8ed71e7] .random-classname-a4c0ac75 .random-classname-85140e6f :last-child > .random-classname-1d4c9abd .random-classname-fbde5205 .random-classname-e1454b09 .random-classname-1dfdee23 .random-classname-f990bd1 .random-classname-36ce599 .random-classname-c3d91c17 .random-classname-9729fd3b [data-random-attr-13c90d6d] ::slotted ::slotted', + '.random-classname-c0056429 .random-classname-52b53227 > :not([data-random-attr-7ed7c6b9]) ::before', + '.random-classname-2683df5b', + '.random-classname-2683df5b .random-classname-218b5045', + '.random-classname-bded0d49', + '.random-classname-508c2a63', + '.random-classname-218b5045 :first-child .random-classname-f5791611', + '.random-classname-2683df5b ::slotted .random-classname-508c2a63 > .random-classname-32e5d66b .random-classname-ff3552cf', + '.random-classname-fe8129d5 .random-classname-877cc41d', + '::slotted .random-classname-10800c57 .random-classname-ffddb180', + '.random-classname-2683df5b > .random-classname-218b5045 > :first-child .random-classname-f5791611 [data-random-attr-a18e37d9] .random-classname-10800c57 .random-classname-bec0989e [data-random-attr-533b0c06=random-attr-value-29cef3ad]', + '.random-classname-f4a8d08b', + '.random-classname-777deef', + '.random-classname-777deef .random-classname-d5ff4193', + '.random-classname-d58b473d', + '.random-classname-5e341c77', + '.random-classname-1cf9b7c1', + '.random-classname-ca400aff', + '.random-classname-ca400aff ::slotted', + '.random-classname-15cabecd', + '.random-classname-ae91ca87', + ':nth-child(5)', + '.random-classname-1bac300e', + '[data-random-attr-eb7b2d22=random-attr-value-adfdca19]', + '.random-classname-9fe65a5d', + '[data-random-attr-be333c97]', + '.random-classname-9409e5bb', + '.random-classname-9e5005a5', + '.random-classname-9b432f1f', + '.random-classname-9409e5bb .random-classname-9b432f1f > .random-classname-9832fcc3', + ':nth-child(5) > .random-classname-1bac300e > .random-classname-3250ea70 .random-classname-9fe65a5d .random-classname-9e5005a5 ::before [data-random-attr-e37719ed] > .random-classname-8fd8dd71', + '.random-classname-7808b735', + '.random-classname-7d80272f', + '[data-random-attr-fa46eb39]', + '.random-classname-bf856cb7', + '.random-classname-7808b735 .random-classname-bf856cb7 .random-classname-5c2407db', + '.random-classname-8fd8dd71 :last-child ::before > .random-classname-72d40cc5 > .random-classname-c7fb633f', + '.random-classname-2b751c9', + '.random-classname-c7fb633f > .random-classname-2b751c9 > [data-random-attr-589c050d]', + '.random-classname-7e3f274e', + '.random-classname-7b13f862', + '.random-classname-d83259e4', + '[data-random-attr-3ebb70b6=random-attr-value-1ca2309d]', + '.random-classname-bbe98721', + '.random-classname-c74239fb', + '.random-classname-8fd8dd71 .random-classname-7808b735 .random-classname-9a55fd7d .random-classname-5c2407db .random-classname-c7fb633f .random-classname-2b751c9 .random-classname-e6b162e3 .random-classname-7e3f274e .random-classname-7b13f862 .random-classname-bbe98721 > .random-classname-c74239fb > .random-classname-8470a75f', + '::before .random-classname-8470a75f :not(.random-classname-579ccae9)', + '.random-classname-c8b5d903', + '.random-classname-df01802d', + '.random-classname-579ccae9 .random-classname-df01802d .random-classname-1d1fe575 >', + '.random-classname-ac6caf6f', + '::placeholder', + '.random-classname-5877a1f8', + '.random-classname-d88702be', + '::after .random-classname-d88702be ::placeholder', + '.random-classname-d35b4dd4', + '[data-random-attr-b0eeba26=random-attr-value-846f8b4d]', + '.random-classname-d88702be ::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before', + '.random-classname-d768a32b', + '.random-classname-d88702be ::placeholder > [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before .random-classname-d768a32b .random-classname-8596833', + '.random-classname-d35b4dd4 > .random-classname-2edacb07 .random-classname-d768a32b .random-classname-7ac7ae99 .random-classname-c177e161', + '.random-classname-5c178225', + '.random-classname-50b25f9f', + '.random-classname-1d70f543', + '.random-classname-faae266d', + '.random-classname-cace71f1', + '.random-classname-ee43fd4b', + '.random-classname-d35b4dd4 .random-classname-2edacb07 > :last-child .random-classname-7ac7ae99 .random-classname-c177e161 ::before > .random-classname-1d70f543 .random-classname-cace71f1 > .random-classname-c6f0fb9', + '.random-classname-c22b6681 >', + ':not(.random-classname-c177e161) > .random-classname-50b25f9f ::slotted :not(:last-child) > [data-random-attr-dc8229fd] .random-classname-c22b6681 .random-classname-1205305b', + '.random-classname-faae266d .random-classname-ee43fd4b .random-classname-75c00653 .random-classname-c22b6681 :last-child ::before >', + '.random-classname-5379b63', + '.random-classname-5c178225 > .random-classname-faae266d ::slotted > :first-child .random-classname-c22b6681 :last-child ::slotted >', + '.random-classname-b27de2d5', + '.random-classname-1b8773cf', + '.random-classname-c22b6681 :last-child ::slotted .random-classname-bc109d1d', + '.random-classname-cace71f1 :not(.random-classname-c6f0fb9) .random-classname-c22b6681 .random-classname-1205305b > .random-classname-4ab7bf11 ::slotted', + '.random-classname-c22b6681 .random-classname-f04857df', + '::before .random-classname-1d70f543 :last-child [data-random-attr-dc8229fd] .random-classname-c22b6681 .random-classname-7882a065 .random-classname-286e4f69 >', + '.random-classname-54bd0cad', + '.random-classname-286e4f69 .random-classname-53429c31', + '.random-classname-bfa881f9', + '.random-classname-29bb7293', + '.random-classname-7663a03d', + '.random-classname-80d320c1', + '.random-classname-80d320c1 .random-classname-30599889', + '.random-classname-f04857df > .random-classname-80d320c1 ::slotted', + '.random-classname-c22b6681 .random-classname-7882a065 :last-child .random-classname-d656b115', + '.random-classname-8596833 .random-classname-18aace3b > ::before .random-classname-1d70f543 .random-classname-ee43fd4b .random-classname-75c00653 .random-classname-c22b6681 > .random-classname-f04857df .random-classname-796040b3 >', + '.random-classname-6b5755e1', + '.random-classname-870cb6bb', + '[data-random-attr-c647fea5]', + '.random-classname-198471a9', + '.random-classname-c48fedc3', + '.random-classname-1c34f3a7', + '.random-classname-3b5d0671', + '[data-random-attr-75c205cb]', + '.random-classname-510bc82f', + '.random-classname-7882a065 .random-classname-510bc82f .random-classname-797f1ed3', + '.random-classname-f04857df :last-child :last-child >', + ':last-child [data-random-attr-dc8229fd] .random-classname-c22b6681 .random-classname-7882a065 > .random-classname-510bc82f [data-random-attr-ac779e0d]', + '::placeholder >', + '.random-classname-4ee688b0', + '.random-classname-ed1fa562', + '.random-classname-3262cb0c', + '.random-classname-25736db6 > .random-classname-bed22900 >', + ':not(.random-classname-2c138ee4) .random-classname-c4018c34', + '::slotted :first-child .random-classname-c22b6681 .random-classname-f04857df ::placeholder ::before >', + '.random-classname-6609506f', + '.random-classname-8da62679', + '[data-random-attr-c94b0b13]', + '::placeholder > [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before :last-child .random-classname-8596833 .random-classname-18aace3b > ::before > .random-classname-faae266d .random-classname-ee43fd4b .random-classname-75c00653 .random-classname-c22b6681 > .random-classname-f04857df ::slotted', + '.random-classname-17055541', + '.random-classname-e1b0cd1b', + '[data-random-attr-19a54405]', + '.random-classname-edf3dc7f', + '[data-random-attr-a5525d09]', + '.random-classname-d35b4dd4 .random-classname-2edacb07 .random-classname-d768a32b :first-child > .random-classname-c177e161 ::before ::slotted :not(:last-child) [data-random-attr-dc8229fd] .random-classname-c22b6681 .random-classname-7882a065 .random-classname-42fd4cbd > .random-classname-2d16d023', + '.random-classname-663fcc07', + '.random-classname-f7485dd1', + '.random-classname-42fd4cbd .random-classname-b8670d95 >', + '.random-classname-dfdf1fdd >', + '.random-classname-8ee17b25', + '::slotted .random-classname-cace71f1 .random-classname-c6f0fb9 .random-classname-c22b6681 > .random-classname-42081933 [data-random-attr-a28fca61] :not(.random-classname-904b7629)', + '.random-classname-2f8fe643', + '.random-classname-c22b6681 :not(.random-classname-42081933) .random-classname-14679e17 .random-classname-c7b73f6d', + '.random-classname-c22b6681 > :not(.random-classname-dfdf1fdd) [data-random-attr-a28fca61] :nth-child(4)', + '.random-classname-c22b6681 .random-classname-42081933 ::before >', + '.random-classname-ea0e8e37', + '.random-classname-130fcf81', + '.random-classname-58244245', + '.random-classname-ee43fd4b > .random-classname-75c00653 .random-classname-c22b6681 .random-classname-dfdf1fdd .random-classname-3cea58b9 :not(.random-classname-8972ea8d) >', + '.random-classname-4a4fac47', + '.random-classname-85a6811', + '.random-classname-c31e9bd5', + '.random-classname-501d94cf', + '.random-classname-f299c9d9', + '.random-classname-59d86573', + ':nth-child(13)', + '.random-classname-98ae358c >', + '.random-classname-a7c5869 >', + '.random-classname-dfdf1fdd :first-child .random-classname-4811c531', + '.random-classname-7eb120ef', + '.random-classname-98ae358c .random-classname-3f5ccaf9 >', + '.random-classname-42081933 .random-classname-e959e77', + ':first-child .random-classname-c22b6681 .random-classname-dfdf1fdd .random-classname-e959e77 .random-classname-4f4759b', + ':not(:last-child) [data-random-attr-dc8229fd] .random-classname-c22b6681 .random-classname-42081933 .random-classname-e959e77 [data-random-attr-18d1ccff] >', + '.random-classname-d768a32b .random-classname-8596833 .random-classname-18aace3b .random-classname-5c178225 .random-classname-faae266d .random-classname-ee43fd4b .random-classname-75c00653 .random-classname-c22b6681 .random-classname-dfdf1fdd .random-classname-e959e77 ::before', + '.random-classname-c6f0fb9 .random-classname-c22b6681 .random-classname-a15bcc87', + ':not(.random-classname-c22b6681) .random-classname-a15bcc87 [data-random-attr-4aedbd0f]', + '.random-classname-7ca06a15 [data-random-attr-8450f1b3]', + '[data-random-attr-f9213ee1]', + '.random-classname-c8e5f11f', + '::slotted :first-child > .random-classname-c22b6681 ::slotted ::before', + '.random-classname-ff3d7d39', + '.random-classname-63604fd3', + '.random-classname-a8478401', + '.random-classname-a15bcc87 ::before .random-classname-1bd1f192', + '.random-classname-da91a94', + '.random-classname-da91a94 .random-classname-2ddfe4e6', + '.random-classname-c2b0ed08', + ':first-child > .random-classname-b882254f >', + '.random-classname-1ceb2e59', + '.random-classname-5b1bdf3', + '.random-classname-4c11e29d', + '.random-classname-99e72ed7', + '.random-classname-85cb5921', + '.random-classname-24cddbfb', + '.random-classname-b882254f > .random-classname-5b1bdf3 :not(.random-classname-99e72ed7) .random-classname-11b5695f', + '.random-classname-ad25b22d', + '.random-classname-2612f4e7', + '.random-classname-8d5ed9b1', + '.random-classname-36e17b0b', + '.random-classname-2b2c7855 .random-classname-1ceb2e59 .random-classname-ad25b22d > .random-classname-c1e9f16f', + '.random-classname-b882254f > .random-classname-5b1bdf3 .random-classname-2612f4e7 .random-classname-26cc6f79', + '.random-classname-9dcd3c13', + '.random-classname-e8ba5bd', + '.random-classname-7f791e1b', + '.random-classname-f7febd05', + '[data-random-attr-5680bd7f]', + '::slotted :first-child .random-classname-b882254f > .random-classname-5b1bdf3 .random-classname-7f791e1b .random-classname-dce94123 >', + '.random-classname-555cbd4d', + '.random-classname-4968cd07', + '[data-random-attr-e1b606d1]', + '.random-classname-5502c695', + '.random-classname-cace71f1 .random-classname-c6f0fb9 > .random-classname-2b2c7855 .random-classname-f7a5c52b .random-classname-391acd8f', + '.random-classname-623aca33', + '.random-classname-10f1f8dd', + '[data-random-attr-b7d4df17]', + '[data-random-attr-dc8229fd] .random-classname-2b2c7855 .random-classname-f7a5c52b .random-classname-10bb361 >', + '.random-classname-20b8703b .random-classname-34f7425', + '.random-classname-d932d743', + ':not(.random-classname-b882254f) .random-classname-5502c695 .random-classname-20b8703b ::before >', + '.random-classname-2b2c7855 .random-classname-f7a5c52b :last-child', + '.random-classname-5502c695 :not(.random-classname-d70cdbfd) .random-classname-58e6bb45', + '.random-classname-d0695bf', + '.random-classname-b882254f :nth-child(7) .random-classname-4967c366', + '.random-classname-4967c366 ::slotted', + '.random-classname-5e2c1673', + '.random-classname-c177e161 .random-classname-50b25f9f .random-classname-faae266d > .random-classname-cace71f1 .random-classname-c6f0fb9 .random-classname-2b2c7855 .random-classname-d0695bf .random-classname-da7592d9 .random-classname-bd224da1', + '.random-classname-ba6e6169', + '.random-classname-c3283383', + '.random-classname-b882254f > :nth-child(7) .random-classname-99053ead', + '.random-classname-6f24b567 >', + ':last-child >', + '::slotted :last-child [data-random-attr-dc8229fd] .random-classname-2b2c7855 .random-classname-1b23038b .random-classname-95f513f9', + '::slotted .random-classname-f180523d', + '.random-classname-c6f0fb9 .random-classname-2b2c7855 > .random-classname-1b23038b :not(.random-classname-b33ec69b)', + '.random-classname-b33ec69b > [data-random-attr-2900adff]', + '.random-classname-9012aa89', + '.random-classname-2066cd87', + '.random-classname-1b23038b ::placeholder', + ':not(:first-child) :not(.random-classname-b882254f) > :last-child > ::placeholder .random-classname-c1c68876', + ':first-child .random-classname-c177e161 > .random-classname-50b25f9f .random-classname-faae266d > :last-child .random-classname-3aa718 >', + '.random-classname-3aa718 .random-classname-4b9d521f', + '.random-classname-7b7683a9', + '.random-classname-b5c864ed', + '.random-classname-abb7f5a7', + ':first-child .random-classname-c177e161 .random-classname-5c178225 .random-classname-1d70f543 :last-child ::slotted .random-classname-1323f0a5 .random-classname-7b7683a9 .random-classname-b5c864ed :first-child', + '.random-classname-720ec639', + '.random-classname-5dc580d3', + '.random-classname-3aa718 .random-classname-1323f0a5 .random-classname-7b7683a9 .random-classname-720ec639 .random-classname-4dd0afb7 >', + '.random-classname-41a577c5', + '.random-classname-faaf063f', + '[data-random-attr-b1e1ecc9]', + '.random-classname-449ad00d', + '.random-classname-e2202dc7', + '.random-classname-389e591', + '.random-classname-b4c33155 > .random-classname-7d38f759', + '[data-random-attr-3755180a=random-attr-value-4c4f27e1] > ::slotted > .random-classname-85476ef3 .random-classname-99676fd7', + '.random-classname-c6558ee5', + '.random-classname-cc9ce5e9', + '.random-classname-f77bac03', + '[data-random-attr-ff6dcb2d]', + '.random-classname-7d38f759 [data-random-attr-80d24221] [data-random-attr-56658c0b] >', + '.random-classname-ee43fd4b .random-classname-3aa718 ::slotted > .random-classname-1ea78784 >', + '.random-classname-5c178225 .random-classname-faae266d > .random-classname-cace71f1 > [data-random-attr-3755180a=random-attr-value-4c4f27e1] .random-classname-b4c33155 .random-classname-e85b9d02 > :not(.random-classname-397c0f56)', + '.random-classname-397c0f56 :nth-child(10)', + '.random-classname-2456f1b', + ':not(::before) .random-classname-1d70f543 .random-classname-ee43fd4b .random-classname-3aa718 > ::slotted > :not(.random-classname-1ea78784) .random-classname-397c0f56 > ::placeholder', + '.random-classname-b4c33155 .random-classname-e85b9d02 [data-random-attr-579033ba=random-attr-value-3087afd1] >', + '.random-classname-faae266d :last-child [data-random-attr-3755180a=random-attr-value-4c4f27e1] .random-classname-b4c33155 .random-classname-e85b9d02 > .random-classname-78f17b33', + '.random-classname-6ceb9c61', + '.random-classname-8218829', + '[data-random-attr-3755180a=random-attr-value-4c4f27e1] ::slotted .random-classname-8218829 ::slotted', + '::slotted :last-child ::slotted .random-classname-b4c33155 ::slotted [data-random-attr-81cecf1] > .random-classname-b9525aaf >', + '[data-random-attr-bb0834fd]', + '::slotted .random-classname-5435716d .random-classname-51e1037', + '.random-classname-1d70f543 ::slotted ::slotted ::slotted .random-classname-8218829 ::slotted >', + '.random-classname-c177e161 ::before > .random-classname-1d70f543 :last-child [data-random-attr-3755180a=random-attr-value-4c4f27e1] .random-classname-b4c33155 ::slotted > .random-classname-4aa1235b ::before', + '::slotted [data-random-attr-fccbba11]', + '.random-classname-3a4c0dd5', + '.random-classname-4215d6cf', + '::slotted > [data-random-attr-3755180a=random-attr-value-4c4f27e1] ::slotted .random-classname-4215d6cf .random-classname-57355bd9', + '.random-classname-57355bd9 > ::slotted', + '.random-classname-ee43fd4b > .random-classname-3aa718 ::slotted .random-classname-4215d6cf .random-classname-9d03c773 .random-classname-a9fb7adf', + '.random-classname-3a4c0dd5 .random-classname-781a5528', + '.random-classname-faae266d ::slotted [data-random-attr-3755180a=random-attr-value-4c4f27e1] > :not([data-random-attr-fccbba11]) .random-classname-4215d6cf [data-random-attr-400cc09a=random-attr-value-60dc1731] > ::before', + '.random-classname-3a4c0dd5 .random-classname-781a5528 .random-classname-d0080593', + '.random-classname-b47ae47 .random-classname-4215d6cf > [data-random-attr-400cc09a=random-attr-value-60dc1731] ::slotted', + '.random-classname-2edacb07 ::slotted .random-classname-7ac7ae99 > .random-classname-c177e161 ::before > .random-classname-1d70f543 .random-classname-cace71f1 ::slotted ::slotted .random-classname-3a4c0dd5 ::before', + '::slotted :last-child [data-random-attr-3755180a=random-attr-value-4c4f27e1] > [data-random-attr-fccbba11] .random-classname-6335ce87', + '[data-random-attr-fccbba11] > .random-classname-6a960451 .random-classname-c69e1eab', + '.random-classname-c69e1eab .random-classname-4b1fdc15', + '::slotted > ::slotted .random-classname-3aa718 > .random-classname-b47ae47 .random-classname-6a960451 .random-classname-c69e1eab ::before', + '.random-classname-ba2d29bb', + '.random-classname-5807e9a5', + '.random-classname-2b98b31f', + '::before .random-classname-1d70f543 .random-classname-cace71f1 [data-random-attr-3755180a=random-attr-value-4c4f27e1] ::slotted > .random-classname-e6bec0c3', + '.random-classname-d82b7ded', + '.random-classname-c74239fb .random-classname-8470a75f .random-classname-579ccae9 :last-child .random-classname-63e5590b .random-classname-ac6caf6f > ::after .random-classname-d88702be .random-classname-68fd40a0 .random-classname-d35b4dd4 .random-classname-2edacb07 :last-child > :first-child .random-classname-c177e161 .random-classname-50b25f9f .random-classname-1d70f543 :last-child .random-classname-3aa718 [data-random-attr-fccbba11] > .random-classname-e6bec0c3 .random-classname-d82b7ded [data-random-attr-c8cb38cb]', + '.random-classname-4056f44 >', + '.random-classname-1d70f543 .random-classname-cace71f1 > :not(::slotted) .random-classname-b47ae47 .random-classname-e6bec0c3 .random-classname-d82b7ded .random-classname-d497b4b8 >', + ':last-child > ::slotted .random-classname-18aace3b ::before .random-classname-1d70f543 :first-child', + '.random-classname-cec40f7e', + '.random-classname-f1dfab60', + '[data-random-attr-728ecb92=random-attr-value-d40d75c9]', + '.random-classname-18aace3b > .random-classname-50b25f9f .random-classname-1d70f543 :first-child > .random-classname-f1dfab60 > .random-classname-a8e2690d', + '.random-classname-e7faac62', + '.random-classname-52f2de4', + '::after', + '::after > .random-classname-45f24a0c', + '.random-classname-cd7f5b1e', + '.random-classname-55b21800', + '.random-classname-a8e2690d .random-classname-52f2de4 .random-classname-45f24a0c .random-classname-50521e86 >', + ':nth-child(11) .random-classname-e7faac62 > .random-classname-5b4bb15c >', + '::placeholder ::placeholder', + ':last-child :last-child .random-classname-a4e1b5f8', + '.random-classname-7a15c01b', + '::before .random-classname-1d70f543 .random-classname-34a896aa .random-classname-cec40f7e :nth-child(11) [data-random-attr-693f809]', + '.random-classname-76d9ef4d', + '.random-classname-5306cf07', + '[data-random-attr-88790f8f]', + '::before .random-classname-8a83aadd', + '.random-classname-44fb6117', + '[data-random-attr-762f8561]', + ':nth-child(7)', + '.random-classname-faae266d :first-child ::slotted > .random-classname-48602ec7 [data-random-attr-693f809] ::after', + '.random-classname-898cca5a', + '.random-classname-faae266d > :first-child .random-classname-f1dfab60 ::after > .random-classname-6cd9262e', + '.random-classname-faae266d > .random-classname-34a896aa .random-classname-cec40f7e .random-classname-48602ec7 > [data-random-attr-ed297542=random-attr-value-3fb433b9] :last-child >', + '.random-classname-754ca53 ::slotted >', + '.random-classname-f557ad45', + '[data-random-attr-da8e57bf]', + '::before ::slotted', + '.random-classname-539a6311', + '.random-classname-268dab6b', + '.random-classname-1013b58d .random-classname-268dab6b ::slotted >', + '.random-classname-faae266d .random-classname-34a896aa > .random-classname-99c8011d', + '::slotted ::slotted', + '.random-classname-91268465', + '.random-classname-fa69dbdf', + '.random-classname-91268465 :not(.random-classname-c9bc1583)', + '.random-classname-99c8011d .random-classname-c9f81fa1 .random-classname-fa69dbdf > .random-classname-c9bc1583 .random-classname-85dd70ad >', + '.random-classname-a4d74031', + '.random-classname-e633258b', + '::slotted .random-classname-a4d74031 .random-classname-53f9e5f5', + '.random-classname-75d43693', + '.random-classname-1d70f543 .random-classname-a4d74031 .random-classname-53f9e5f5 > .random-classname-7d1a5f9 [data-random-attr-1220c4c1]', + '.random-classname-351de720', + '.random-classname-861d3d52', + '.random-classname-a4d74031 .random-classname-53f9e5f5 > :not(.random-classname-7d1a5f9) .random-classname-792d043d .random-classname-351de720 .random-classname-1a971c54 >', + '::before ::slotted > ::slotted .random-classname-18aace3b .random-classname-50b25f9f ::before', + '.random-classname-79c8cf87 .random-classname-aec8afab', + '.random-classname-cbfb200f', + '.random-classname-8be5b719', + '.random-classname-7c3b04b3 >', + '::before ::before .random-classname-8be5b719 :not(.random-classname-7c3b04b3) .random-classname-9c1e975d', + '.random-classname-d768a32b > :first-child .random-classname-c177e161 .random-classname-5c178225 .random-classname-79c8cf87 .random-classname-aec8afab > .random-classname-cbfb200f .random-classname-7c3b04b3 > .random-classname-9c1e975d > .random-classname-cd3f8197', + '.random-classname-82d6f9e1 ::before', + '::before :not(.random-classname-78d8141f)', + '::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before > ::slotted ::slotted > .random-classname-18aace3b .random-classname-50b25f9f .random-classname-78d8141f ::slotted', + '.random-classname-78d8141f .random-classname-e4f895a9 [data-random-attr-b955aa71]', + '.random-classname-524af7a7 ::before', + '.random-classname-c41be2d3', + '.random-classname-5c178225 .random-classname-78d8141f ::slotted ::slotted [data-random-attr-6de24c2f] ::before .random-classname-2c5c9cdb >', + '.random-classname-d5ba69c5', + '::before .random-classname-8470a75f .random-classname-579ccae9 .random-classname-df01802d .random-classname-1d1fe575 ::placeholder .random-classname-5877a1f8 .random-classname-d88702be > ::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before :last-child .random-classname-8596833 .random-classname-18aace3b .random-classname-50b25f9f .random-classname-7afc97e3', + '.random-classname-dd4e020d', + '.random-classname-6642fc7', + '[data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before :last-child ::slotted :not(.random-classname-18aace3b) .random-classname-50b25f9f .random-classname-7afc97e3 .random-classname-6642fc7 .random-classname-d5273791', + '.random-classname-d5273791 .random-classname-44e3f3eb', + '.random-classname-d5273791 ::before > .random-classname-64808959', + '.random-classname-d5273791 .random-classname-44e3f3eb > .random-classname-ee42884f .random-classname-dbfed0f3', + '::before .random-classname-64808959 .random-classname-9fc76d9d ::before >', + '.random-classname-68fd40a0 .random-classname-d35b4dd4 .random-classname-2edacb07 :last-child > :first-child .random-classname-c177e161 :not(::before) :not(.random-classname-6f1a8c5f)', + '.random-classname-3d938e03', + ':not(.random-classname-b3ba54b1)', + '.random-classname-da980275', + '.random-classname-eb974a79', + '.random-classname-140eb0bd', + '.random-classname-70dec1f7', + '.random-classname-50b25f9f .random-classname-90e32805', + '.random-classname-f6ea111b .random-classname-4d789423', + '.random-classname-f6ea111b > .random-classname-cc1c8109 ::before', + ':not(.random-classname-50b25f9f) .random-classname-f6ea111b .random-classname-4d789423 .random-classname-997bd007 .random-classname-e51f782b', + '.random-classname-268e308f :nth-child(7)', + '.random-classname-bab68640 >', + ':not(.random-classname-63e5590b) :nth-child(3) .random-classname-5877a1f8 .random-classname-d88702be .random-classname-68fd40a0 > .random-classname-d35b4dd4 > .random-classname-2edacb07 ::slotted .random-classname-7ac7ae99 .random-classname-c177e161 ::before .random-classname-d3bf1d74', + '::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before :last-child > ::slotted .random-classname-18aace3b > .random-classname-5c178225 [data-random-attr-9c704ac6=random-attr-value-3943a36d] .random-classname-ee8a3827', + '.random-classname-d3bf1d74 .random-classname-ee8a3827 .random-classname-1ce670b5', + '.random-classname-d103fb53', + '.random-classname-9bbf7cb9 .random-classname-206ae6fd', + '.random-classname-d103fb53 .random-classname-5b3d9237 [data-random-attr-f2c7c55b]', + '.random-classname-b1062645', + '.random-classname-ec3838bf', + '.random-classname-ff9a4349', + '.random-classname-bb4cd063', + '.random-classname-c177e161 > .random-classname-ff9a4349 ::before', + '.random-classname-d768a32b ::slotted .random-classname-18aace3b .random-classname-bb4cd063 :last-child ::before', + ':last-child .random-classname-cbbb3c6b ::slotted', + '.random-classname-240fda1d', + '.random-classname-d88702be .random-classname-68fd40a0 .random-classname-d35b4dd4 > .random-classname-2edacb07 :last-child > .random-classname-7ac7ae99 > .random-classname-c177e161 .random-classname-ff9a4349 :last-child .random-classname-cbbb3c6b ::slotted > .random-classname-240fda1d .random-classname-19819257', + '.random-classname-c41c3cdf', + '.random-classname-3d9c7c69', + '[data-random-attr-d64c0683]', + '::slotted .random-classname-8596833 .random-classname-18aace3b [data-random-attr-23366931]', + '.random-classname-7dc1368b', + '.random-classname-26df1ef5', + '::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before :last-child ::slotted .random-classname-18aace3b .random-classname-54d43867 > .random-classname-26df1ef5 > .random-classname-4315eef9', + ':first-child .random-classname-c177e161 [data-random-attr-23366931] .random-classname-7dc1368b .random-classname-18246793 ::slotted', + '.random-classname-d88702be ::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before :last-child > .random-classname-8596833 .random-classname-18aace3b [data-random-attr-23366931] :not(.random-classname-26df1ef5) > .random-classname-4315eef9 :not(.random-classname-c6ee2dc1) .random-classname-bd2550ff', + '[data-random-attr-1dc95651]', + '.random-classname-74f740ab', + '.random-classname-9a32410f', + '.random-classname-b6268019 .random-classname-b5ac297 >', + '.random-classname-d768a32b ::slotted .random-classname-18aace3b .random-classname-a13bb5b3 .random-classname-b5ac297 .random-classname-4756cbbb >', + '.random-classname-b6268019 .random-classname-b5ac297 .random-classname-8630e2e1 .random-classname-eebbdba5', + ':last-child .random-classname-8596833 > .random-classname-18aace3b .random-classname-b6268019 > .random-classname-b5ac297 .random-classname-4756cbbb :not(::slotted) :not(.random-classname-cb1ca2c3)', + '.random-classname-b1c89dda', + '.random-classname-cb1ca2c3 .random-classname-b1c89dda .random-classname-aa1471ae', + '.random-classname-18aace3b > ::after', + '::after :not(::placeholder)', + '.random-classname-5a00ee94', + '[data-random-attr-840ad8e6=random-attr-value-71dd9b0d]', + '.random-classname-2c2c30c7', + '.random-classname-de8be091', + '[data-random-attr-9d1384eb]', + '.random-classname-2d5f5c55', + '[data-random-attr-560aa94f]', + '.random-classname-b7a5259', + '.random-classname-8a3efd21', + '.random-classname-9ca879e5', + ':not([data-random-attr-b0eeba26=random-attr-value-846f8b4d]) > ::before :last-child :not(.random-classname-8596833) ::before', + '.random-classname-35e57f03', + '::slotted :not(::before) ::before .random-classname-6afcf8e7', + '.random-classname-54b7db1 .random-classname-6acf3b75 >', + '.random-classname-6afcf8e7 .random-classname-c814756f ::before', + '.random-classname-bce382f7', + '.random-classname-3607b0be', + '.random-classname-6d9de0d2', + '.random-classname-6d450bd4', + ':nth-child(6)', + '.random-classname-1754aad1', + '.random-classname-c8b5d903 .random-classname-63e5590b :nth-child(3) .random-classname-62bf35ea .random-classname-d88702be .random-classname-68fd40a0 :not(.random-classname-d35b4dd4) .random-classname-2edacb07 :last-child .random-classname-7ac7ae99 .random-classname-28e7518f >', + '.random-classname-1d1fe575 .random-classname-ac6caf6f ::after .random-classname-d88702be > ::placeholder > [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before ::slotted > ::slotted ::before > .random-classname-a0e35761', + '.random-classname-503b43b', + '.random-classname-a56f5825', + '.random-classname-ce10a329', + '.random-classname-ce10a329 .random-classname-aae69b43', + '::before > .random-classname-4b5bb927', + '.random-classname-a56f5825 .random-classname-ce10a329 :not(.random-classname-aae69b43) :first-child .random-classname-b146a9b5 >', + '.random-classname-6aaec5b9', + '.random-classname-b146a9b5 .random-classname-6aaec5b9 > .random-classname-63372c53', + '.random-classname-84735337', + '.random-classname-7e3f274e [data-random-attr-3ebb70b6=random-attr-value-1ca2309d] .random-classname-bbe98721 .random-classname-c74239fb > :not(.random-classname-8470a75f) .random-classname-579ccae9 :last-child :not(.random-classname-63e5590b) .random-classname-ac6caf6f .random-classname-5877a1f8 :not(.random-classname-d88702be) .random-classname-68fd40a0 > .random-classname-d35b4dd4 > .random-classname-2edacb07 ::slotted .random-classname-c1d23ffd .random-classname-4e61dc81 >', + '.random-classname-579ccae9 .random-classname-df01802d .random-classname-1d1fe575 ::placeholder .random-classname-62bf35ea > .random-classname-d88702be > ::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before > :last-child .random-classname-84735337 ::slotted .random-classname-20589f45', + '.random-classname-c1d23ffd .random-classname-4e61dc81 .random-classname-20589f45 ::slotted', + '.random-classname-20589f45 > .random-classname-852619bf .random-classname-1d32e78d', + '.random-classname-d35b4dd4 .random-classname-2edacb07 :not(::slotted) .random-classname-c1d23ffd .random-classname-4e61dc81 .random-classname-20589f45 .random-classname-a97fcc49 :not(.random-classname-2af9b147) > .random-classname-9aeccd6b', + '::before .random-classname-33de38d5 > .random-classname-58a2da73', + '.random-classname-6f7bb31d', + '.random-classname-1dafd357 ::slotted', + '.random-classname-c51e8569', + ':nth-child(3) :not(.random-classname-62bf35ea) .random-classname-d88702be ::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before > .random-classname-d768a32b .random-classname-ef96b967', + '.random-classname-d35b4dd4 .random-classname-2edacb07 :not(:last-child) :last-child > :not(.random-classname-953e37f9)', + '::slotted :nth-child(13)', + '.random-classname-2ff3812c >', + ':not(:last-child) ::slotted > :nth-child(13) ::placeholder ::after', + ':last-child .random-classname-6bf99231 > .random-classname-953e37f9 .random-classname-8d69b63d .random-classname-2ff3812c .random-classname-e1581752 .random-classname-b2ab86a6', + ':not(::before) ::slotted ::slotted > ::slotted :nth-child(13) ::placeholder > :not(.random-classname-e1581752) > .random-classname-3d3fb4c8 > ::slotted', + '.random-classname-c94b4919', + '.random-classname-74c066b3 .random-classname-3e3a0397', + '.random-classname-608bd4a5', + '.random-classname-68fd40a0 .random-classname-d35b4dd4 .random-classname-2edacb07 > :last-child :not(.random-classname-608bd4a5) ::slotted', + '.random-classname-b42cc8ed', + '.random-classname-8fedf9a7', + '[data-random-attr-6ea9fc71]', + '.random-classname-cbf86bcb', + ':not(.random-classname-608bd4a5) ::slotted > .random-classname-b42cc8ed ::before > ::before >', + '::slotted .random-classname-8fedf9a7 .random-classname-cbf86bcb :first-child > [data-random-attr-a8139101]', + '.random-classname-185f5bc5', + '[data-random-attr-6ea9fc71] .random-classname-cbf86bcb > .random-classname-71e58e2f ::slotted :nth-child(11) .random-classname-3ed795e6 >', + '::before .random-classname-5f97b3b7 ::after > ::after .random-classname-bb0dc47a', + '.random-classname-5f97b3b7 :not(.random-classname-185f5bc5) .random-classname-3ed795e6 .random-classname-bb0dc47a .random-classname-a6b2b5bc', + '.random-classname-31b9b24e', + '.random-classname-c7fb633f > .random-classname-2b751c9 .random-classname-e6b162e3 .random-classname-7e3f274e .random-classname-7b13f862 .random-classname-bbe98721 :not(.random-classname-c74239fb) .random-classname-8470a75f .random-classname-579ccae9 > .random-classname-c8b5d903 .random-classname-63e5590b ::placeholder .random-classname-62bf35ea > .random-classname-d88702be .random-classname-68fd40a0 .random-classname-d35b4dd4 > .random-classname-31b9b24e .random-classname-da0ae6b0', + '[data-random-attr-b0eeba26=random-attr-value-846f8b4d] > .random-classname-31b9b24e .random-classname-da0ae6b0 .random-classname-3a7ecce4', + '::placeholder .random-classname-13711c58', + ':not(.random-classname-d88702be) ::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] .random-classname-31b9b24e .random-classname-da0ae6b0 ::placeholder > .random-classname-13711c58 .random-classname-3c35c90c', + ':not(.random-classname-69b2321e) >', + '.random-classname-d88702be ::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] .random-classname-31b9b24e .random-classname-da0ae6b0 .random-classname-69e9b362 > .random-classname-13711c58 .random-classname-3c35c90c .random-classname-c0860700 .random-classname-124ec832', + '.random-classname-13711c58 .random-classname-de6b7f4a .random-classname-69b2321e .random-classname-124ec832 > .random-classname-342046a8', + '.random-classname-f6344a34 > :first-child .random-classname-f8143113', + ':first-child > .random-classname-342046a8 .random-classname-33e7dc79 .random-classname-bf6f62bd >', + '.random-classname-d88702be .random-classname-68fd40a0 .random-classname-d35b4dd4 .random-classname-31b9b24e > .random-classname-da0ae6b0 ::placeholder .random-classname-13711c58 .random-classname-de6b7f4a .random-classname-69b2321e .random-classname-124ec832 [data-random-attr-9e6af05c=random-attr-value-5c9dd00b] .random-classname-33e7dc79 .random-classname-bf6f62bd .random-classname-43ac43f7 .random-classname-3f9eb31b', + '.random-classname-d88702be ::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::slotted', + '.random-classname-5877a1f8 .random-classname-d88702be .random-classname-68fd40a0 .random-classname-d35b4dd4 .random-classname-823d227f .random-classname-5823ba4d', + '[data-random-attr-b0eeba26=random-attr-value-846f8b4d] .random-classname-823d227f ::slotted :nth-child(11)', + '.random-classname-63e5590b > ::placeholder .random-classname-5877a1f8 > .random-classname-d88702be > .random-classname-68fd40a0 .random-classname-d35b4dd4 ::slotted :last-child .random-classname-15a96395 [data-random-attr-90f8bd98=random-attr-value-38732417]', + '.random-classname-67a0853b', + '.random-classname-d2115125', + ':nth-child(9)', + '.random-classname-3b6a0774', + '.random-classname-a85cc4c6', + '[data-random-attr-989537e8=random-attr-value-e5f13a27]', + '.random-classname-fdfd90f1', + '[data-random-attr-6f83744b]', + '.random-classname-fdfd90f1 .random-classname-cd0deaf', + '.random-classname-504ae2b5 .random-classname-c25d98fd', + '.random-classname-fefe675b', + '.random-classname-d34f1845', + '::before .random-classname-d34f1845 ::before', + ':last-child .random-classname-ca67b247', + '.random-classname-8470a75f .random-classname-579ccae9 .random-classname-df01802d .random-classname-1d1fe575 .random-classname-ac6caf6f ::after .random-classname-d88702be ::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] .random-classname-4056f1d5', + '.random-classname-579ccae9 .random-classname-c8b5d903 .random-classname-63e5590b .random-classname-ac6caf6f :not(.random-classname-5877a1f8) .random-classname-d88702be .random-classname-68fd40a0 > .random-classname-d35b4dd4 .random-classname-a4225e6b > .random-classname-9365acf', + '.random-classname-ac6caf6f .random-classname-62bf35ea .random-classname-d88702be :not(::placeholder) [data-random-attr-b0eeba26=random-attr-value-846f8b4d] .random-classname-4056f1d5 .random-classname-9365acf ::slotted', + '.random-classname-68fd40a0 .random-classname-d35b4dd4 .random-classname-a4225e6b .random-classname-9365acf [data-random-attr-c0b8c1d] .random-classname-27a6daa1', + '.random-classname-27a6daa1 .random-classname-34cfedf', + '.random-classname-5b1c7fd9 [data-random-attr-b540597b] .random-classname-ea848e69 > .random-classname-1d2fbbad', + '.random-classname-f20bb31', + '.random-classname-f20bb31 .random-classname-60e9588b', + '::slotted > .random-classname-f20bb31 :first-child .random-classname-8e4a80f9', + '.random-classname-60e9588b .random-classname-8e4a80f9 .random-classname-e21a2477', + '.random-classname-cc2c5c3e', + '.random-classname-60e9588b > .random-classname-dabce6ef .random-classname-e21a2477 :nth-child(14) .random-classname-d3862ea3', + '.random-classname-c7fb633f .random-classname-2b751c9 [data-random-attr-589c050d] :last-child .random-classname-d83259e4 > .random-classname-bbe98721 ::before .random-classname-8470a75f .random-classname-579ccae9 .random-classname-df01802d > .random-classname-1d1fe575 .random-classname-ac6caf6f > .random-classname-62bf35ea .random-classname-d88702be ::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] .random-classname-5419d287', + '.random-classname-db6062ab >', + '[data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before .random-classname-db6062ab .random-classname-8b6c830f', + '.random-classname-d35b4dd4 .random-classname-fc4f86cd .random-classname-db6062ab .random-classname-afcec015 ::before >', + '.random-classname-d88702be ::placeholder :not([data-random-attr-b0eeba26=random-attr-value-846f8b4d]) .random-classname-fc4f86cd > .random-classname-db6062ab .random-classname-8b6c830f [data-random-attr-6c917b3] .random-classname-2d10b4e1', + '.random-classname-902e371f', + '.random-classname-e969b0a9', + '.random-classname-f657aa7', + '.random-classname-c0ca7f35', + '.random-classname-e94d2f2f', + '.random-classname-697b75d3', + '.random-classname-2b01fa01', + '.random-classname-eb2a6b3f', + '[data-random-attr-6c917b3] :first-child :not(:first-child) > .random-classname-beea2571 .random-classname-c0ca7f35 > [data-random-attr-350c57d] .random-classname-2b01fa01 > .random-classname-327d4c5 .random-classname-c8ceae3', + '.random-classname-737ea6eb', + '.random-classname-aa50ce55', + '.random-classname-8666eb4f', + '.random-classname-9019e459', + '.random-classname-a8efe3f3', + '.random-classname-c4d0cf21', + '.random-classname-c4d0cf21 .random-classname-9fbe6be5', + '.random-classname-56d12e9', + '.random-classname-21156103', + '.random-classname-c4d0cf21 .random-classname-9fbe6be5 .random-classname-21156103 .random-classname-a809fae7', + '.random-classname-a809fae7 .random-classname-6f99cfb1', + '.random-classname-b8c1b76f', + '.random-classname-21156103 .random-classname-a809fae7 .random-classname-6f99cfb1 .random-classname-f6662579 :nth-child(9)', + '.random-classname-7427eabe', + '[data-random-attr-9532f5d4=random-attr-value-1fabe723]', + '.random-classname-1c34bad2 .random-classname-ab84534d', + '[data-random-attr-b0eeba26=random-attr-value-846f8b4d] [data-random-attr-9532f5d4=random-attr-value-1fabe723] ::slotted ::before', + '.random-classname-ab84534d .random-classname-4c7bfcd1 .random-classname-9a65938f', + '.random-classname-68bd2b2b :not(.random-classname-9a65938f) .random-classname-d5adf699 .random-classname-9b570edd >', + '.random-classname-38786517 > [data-random-attr-e141563b]', + '.random-classname-1272961 .random-classname-a0574a25 >', + '.random-classname-cee6ee6d', + '.random-classname-ce4abb27', + '[data-random-attr-c36fb9f1]', + '.random-classname-aad679f ::slotted [data-random-attr-c36fb9f1] > [data-random-attr-89f31bb5]', + '.random-classname-95a7faf', + '::placeholder .random-classname-62bf35ea .random-classname-d88702be ::placeholder :not(.random-classname-21298e53)', + '.random-classname-21298e53 .random-classname-b20cf1fd', + ':not(.random-classname-21298e53) > :first-child :last-child', + '.random-classname-8ccddbbf', + '[data-random-attr-70f6de49]', + '.random-classname-c1232363', + '.random-classname-ae2198d', + '.random-classname-f999b347', + '[data-random-attr-e2bd0711]', + '.random-classname-f75bef6b', + '.random-classname-9973aad5', + '.random-classname-3040d736 >', + '.random-classname-641b1d9e', + '.random-classname-ac6caf6f .random-classname-5877a1f8 .random-classname-d88702be .random-classname-68fd40a0 .random-classname-798179b4', + '.random-classname-b356b04', + ':last-child .random-classname-d83259e4 .random-classname-bbe98721 ::before .random-classname-8470a75f .random-classname-579ccae9 .random-classname-df01802d .random-classname-1d1fe575 :not(.random-classname-ac6caf6f) > .random-classname-c3ef046a', + '.random-classname-2270793e', + '.random-classname-86b27b20', + ':not(::placeholder) .random-classname-2662f152', + '.random-classname-24fb3ec8', + '.random-classname-af7c7b3a', + '.random-classname-7765a7c', + '.random-classname-63e5590b :nth-child(3) > .random-classname-d1447770', + '.random-classname-6755c8b3', + '.random-classname-4f39fb5d', + '.random-classname-c2448597', + '.random-classname-f0969de1', + '.random-classname-1d1fe575 .random-classname-6117c6a5', + '.random-classname-63e5590b .random-classname-960775c3', + '.random-classname-e4a0fba7', + '.random-classname-1d8e4e71', + '.random-classname-2b751c9 > :nth-child(5) .random-classname-7e3f274e [data-random-attr-3ebb70b6=random-attr-value-1ca2309d] .random-classname-bbe98721 :not(.random-classname-c74239fb) > .random-classname-8470a75f .random-classname-579ccae9 > :last-child .random-classname-ddc4b835', + '.random-classname-8470a75f .random-classname-16f8a6d3', + '.random-classname-40921e7d', + '[data-random-attr-511335b7]', + '.random-classname-e8306460', + '.random-classname-8854ec92', + '.random-classname-c7fb633f .random-classname-2b751c9 .random-classname-e6b162e3 .random-classname-7e3f274e .random-classname-7b13f862 .random-classname-bbe98721 .random-classname-c74239fb > .random-classname-8470a75f .random-classname-9765008', + '.random-classname-e4fbdfbc', + '.random-classname-cb1e6c4e', + ':nth-child(12)', + '.random-classname-8dbfad59', + ':last-child .random-classname-d83259e4 .random-classname-bbe98721 :not(::before) > .random-classname-fa06d19d >', + '.random-classname-bbe98721 ::slotted', + '.random-classname-bbe98721 > :last-child >', + '.random-classname-f7d1f20b', + '.random-classname-e6b162e3 > .random-classname-7e3f274e .random-classname-2bcc9313', + '.random-classname-9e5005a5 ::before [data-random-attr-e37719ed] .random-classname-351972a7 :last-child .random-classname-bf856cb7 .random-classname-72d40cc5 .random-classname-c7fb633f .random-classname-2b751c9 ::after :last-child ::before', + '.random-classname-c7fb633f .random-classname-2b751c9 :nth-child(5) .random-classname-7e3f274e .random-classname-5c63551b', + '[data-random-attr-589c050d] :not(:last-child) .random-classname-7126a509', + '.random-classname-c7fb633f .random-classname-2b751c9 .random-classname-e6b162e3 > .random-classname-7e3f274e .random-classname-c61a5823', + '.random-classname-2b751c9 ::after ::before', + '.random-classname-298ab48f', + '.random-classname-e50cbf99', + '[data-random-attr-e37719ed] ::slotted .random-classname-7d80272f ::before .random-classname-72d40cc5 .random-classname-c7fb633f .random-classname-2b751c9 > :not([data-random-attr-589c050d]) :first-child', + '.random-classname-2b751c9 .random-classname-e6b162e3 .random-classname-81e6273b', + '::slotted :last-child > .random-classname-9a55fd7d .random-classname-72d40cc5 .random-classname-c7fb633f .random-classname-2b751c9 > .random-classname-4f176e43', + '.random-classname-2b751c9 .random-classname-df45e2f1 >', + '.random-classname-2f96bc96 >', + '.random-classname-5c2407db .random-classname-7acd8aec', + '[data-random-attr-e37719ed] .random-classname-8fd8dd71 :last-child .random-classname-9a55fd7d > .random-classname-72d40cc5 .random-classname-ae886749 >', + '.random-classname-ab729463', + '.random-classname-fdefb28d', + '.random-classname-72d40cc5 .random-classname-237fb011', + '.random-classname-a499806b', + '[data-random-attr-cf3463d5]', + ':last-child .random-classname-bf856cb7 ::before', + '[data-random-attr-6ed29657]', + '[data-random-attr-e37719ed] .random-classname-8fd8dd71 > .random-classname-7d80272f .random-classname-bf856cb7 :not(.random-classname-9407fb7b)', + '.random-classname-9832fcc3 .random-classname-8fd8dd71 .random-classname-7808b735 ::before .random-classname-eedd6165', + '[data-random-attr-4efca069]', + '[data-random-attr-fa46eb39] > :first-child', + '[data-random-attr-e37719ed] > .random-classname-a49b0d31', + '.random-classname-f63628ef', + '.random-classname-b50f12f9', + '.random-classname-be8d2b93', + '.random-classname-9832fcc3 .random-classname-bc0bd1c1', + '.random-classname-8ba86989', + '.random-classname-9b432f1f .random-classname-9832fcc3 :nth-child(3)', + '.random-classname-9fe65a5d .random-classname-9e5005a5 ::before > .random-classname-f658dc70', + '.random-classname-9b432f1f .random-classname-1fb1ef22', + '.random-classname-ffddb180 .random-classname-8355cb4 .random-classname-f4a8d08b > .random-classname-777deef .random-classname-d5ff4193 .random-classname-d58b473d .random-classname-1cf9b7c1 .random-classname-ca400aff > ::slotted :nth-child(5) .random-classname-1bac300e ::slotted .random-classname-9fe65a5d .random-classname-9e5005a5 ::before .random-classname-c6fb330a', + '.random-classname-777deef > .random-classname-86d838f9 .random-classname-d58b473d .random-classname-5e341c77 .random-classname-ca400aff .random-classname-20530f89 .random-classname-15cabecd > .random-classname-1bac300e ::slotted ::before .random-classname-9409e5bb .random-classname-9b432f1f .random-classname-9210f91f', + '.random-classname-8e0866c3', + '.random-classname-9409e5bb .random-classname-f7213ed', + '.random-classname-ffddb180 :not(.random-classname-8355cb4) > .random-classname-58d77331 > .random-classname-777deef :not(.random-classname-d5ff4193) .random-classname-d58b473d > .random-classname-1cf9b7c1 .random-classname-ca400aff > ::slotted .random-classname-ae91ca87 .random-classname-1bac300e ::slotted [data-random-attr-be333c97] [data-random-attr-2f499ecb]', + '.random-classname-3250ea70 > ::before .random-classname-ed62f135', + '.random-classname-4ee9ad44', + '.random-classname-5cb7fb16', + '[data-random-attr-81d0d2b8=random-attr-value-9bf6f6b7]', + '.random-classname-58d77331 .random-classname-777deef .random-classname-86d838f9 .random-classname-d58b473d > :first-child > .random-classname-ca400aff .random-classname-20530f89 :nth-child(5) .random-classname-1bac300e > [data-random-attr-eb7b2d22=random-attr-value-adfdca19] > .random-classname-9fe65a5d .random-classname-3ba4c6c5 >', + '.random-classname-252bcce3', + '[data-random-attr-eb7b2d22=random-attr-value-adfdca19] .random-classname-10f434c7', + ':nth-child(5) .random-classname-1bac300e [data-random-attr-eb7b2d22=random-attr-value-adfdca19] .random-classname-91f9c8eb', + '.random-classname-79d24055', + '.random-classname-f7d32d4f', + '.random-classname-c8497659', + '.random-classname-c8cf45f3', + '.random-classname-1bac300e ::slotted >', + '.random-classname-1bac300e > .random-classname-d9645de5 >', + '.random-classname-1bac300e .random-classname-cbc924e9 >', + '.random-classname-ca400aff .random-classname-20530f89 .random-classname-ae91ca87 .random-classname-1bac300e .random-classname-4c26fce7', + '.random-classname-ca400aff .random-classname-20530f89 :nth-child(5) .random-classname-1bac300e [data-random-attr-646ec413]', + '.random-classname-ca400aff ::slotted .random-classname-ae91ca87 > .random-classname-1bac300e .random-classname-f7800641', + '.random-classname-ca400aff .random-classname-20530f89 :nth-child(5) .random-classname-e24ba61b', + '::slotted ::before .random-classname-777deef .random-classname-d5ff4193 .random-classname-d58b473d ::before .random-classname-ca400aff ::slotted :not(.random-classname-ae91ca87) .random-classname-ab146648 >', + '.random-classname-d9da39fc', + '.random-classname-d857008e', + '.random-classname-f6dec5a2', + '.random-classname-86d838f9 .random-classname-d58b473d .random-classname-5e341c77 > :not(.random-classname-ca400aff) .random-classname-20530f89 [data-random-attr-9f0e71f6=random-attr-value-3298c0dd]', + '.random-classname-777deef .random-classname-d5ff4193 .random-classname-d58b473d ::before .random-classname-ca400aff ::slotted :nth-child(13)', + '.random-classname-49516a72 >', + '.random-classname-425a185a', + '.random-classname-5e341c77 .random-classname-ca400aff .random-classname-20530f89 .random-classname-3884542e', + '.random-classname-7da08342', + '.random-classname-89e287c4', + '.random-classname-ca400aff .random-classname-5863996', + '.random-classname-4ee5a5b', + '.random-classname-e7fdf049 >', + '::slotted > .random-classname-58d77331 :not(.random-classname-777deef) :not(.random-classname-d5ff4193) .random-classname-d58b473d > ::before ::slotted >', + '.random-classname-dca65911', + '.random-classname-bd58bdcf', + '.random-classname-777deef .random-classname-86d838f9 .random-classname-d58b473d .random-classname-fb599e73 >', + '.random-classname-32e5d66b ::slotted > :nth-child(13) .random-classname-ffddb180 ::slotted .random-classname-58d77331 .random-classname-777deef .random-classname-d5ff4193 > .random-classname-d58b473d ::slotted', + '.random-classname-86d838f9 .random-classname-d58b473d :first-child', + '.random-classname-3fc606ad', + '.random-classname-8c48bd67', + '.random-classname-86d838f9 .random-classname-b6ee3631 >', + '.random-classname-bec0989e > [data-random-attr-533b0c06=random-attr-value-29cef3ad] .random-classname-f4a8d08b .random-classname-777deef .random-classname-86d838f9 .random-classname-2c75bf9', + '.random-classname-d5ff4193 .random-classname-5b931a3d', + '.random-classname-ba214e9b', + '.random-classname-3e74c185', + '[data-random-attr-c007b5ff]', + '.random-classname-2683df5b ::slotted ::slotted .random-classname-32e5d66b :not(::slotted) :not(:nth-child(13)) .random-classname-ffddb180 :not(::slotted) ::before .random-classname-777deef .random-classname-611781a3', + '.random-classname-bec0989e [data-random-attr-533b0c06=random-attr-value-29cef3ad] .random-classname-f4a8d08b .random-classname-777deef [data-random-attr-20beb15]', + '.random-classname-8355cb4 ::before > .random-classname-777deef ::before', + '.random-classname-307456b2 > .random-classname-f4a8d08b .random-classname-777deef :not(.random-classname-d95f0797)', + '.random-classname-4833b8a5 >', + '[data-random-attr-533b0c06=random-attr-value-29cef3ad] .random-classname-f4a8d08b .random-classname-4edecba9', + '.random-classname-94d12ced', + '.random-classname-d063fda7', + '[data-random-attr-4602a071]', + '.random-classname-92d60443 .random-classname-52b53227 ::slotted ::before .random-classname-2683df5b ::slotted ::slotted .random-classname-32e5d66b ::slotted :nth-child(13) .random-classname-ffddb180 ::slotted ::slotted', + '[data-random-attr-a18e37d9] :nth-child(13) .random-classname-bec0989e [data-random-attr-533b0c06=random-attr-value-29cef3ad] ::before', + '.random-classname-92d60443 [data-random-attr-787c48f1] .random-classname-ca13d6af .random-classname-8a0f0c37 .random-classname-2683df5b ::slotted .random-classname-508c2a63 .random-classname-32e5d66b .random-classname-ff3552cf :nth-child(13) .random-classname-ffddb180 .random-classname-8355cb4 :last-child', + '.random-classname-a9593fc5', + '.random-classname-cc3e0e3f', + '[data-random-attr-a18e37d9] .random-classname-10800c57 > .random-classname-bec0989e [data-random-attr-aac7980d]', + '.random-classname-ff3552cf .random-classname-877cc41d > .random-classname-ffddb180 ::slotted', + ':nth-child(13) .random-classname-bec0989e .random-classname-e888f955', + '.random-classname-877cc41d .random-classname-ffddb180 > .random-classname-30ef4e4f', + ':not(.random-classname-bec0989e) .random-classname-10f977d7', + ':nth-child(11) >', + '.random-classname-bded0d49 > .random-classname-f5791611 .random-classname-fe8129d5 .random-classname-10800c57 .random-classname-7e74c986', + '.random-classname-877cc41d .random-classname-a34d621a >', + '.random-classname-b057445c', + '.random-classname-459d59ee', + '.random-classname-f4bd0502', + '.random-classname-497ff756', + '.random-classname-9e7d58f8', + '.random-classname-5eb9d7a0', + '.random-classname-c0056429 [data-random-attr-787c48f1] .random-classname-ca13d6af .random-classname-a5f2d0fd .random-classname-2683df5b ::slotted > .random-classname-508c2a63 .random-classname-32e5d66b .random-classname-ff3552cf .random-classname-60add926 >', + '.random-classname-bded0d49 .random-classname-f5791611 .random-classname-fe8129d5 > .random-classname-7e6e2b48', + '::slotted .random-classname-32e5d66b .random-classname-45589bba', + '.random-classname-f5791611 > .random-classname-ad75cefc >', + '::slotted > .random-classname-508c2a63 .random-classname-32e5d66b ::after', + '.random-classname-218b5045 [data-random-attr-ab7cd198=random-attr-value-25202817]', + '::before .random-classname-2683df5b ::slotted ::slotted', + '.random-classname-a5f2d0fd .random-classname-2683df5b > .random-classname-218b5045 .random-classname-7319d029 >', + '::slotted :not(.random-classname-b229b696)', + '.random-classname-2683df5b .random-classname-218b5045 :first-child', + '.random-classname-520c40e0', + '.random-classname-a5f2d0fd .random-classname-2683df5b :not(.random-classname-29b77d12)', + ':first-child > .random-classname-220b6a8f .random-classname-c3d91c17 [data-random-attr-daf18925] :not(.random-classname-92d60443) .random-classname-52b53227 ::slotted .random-classname-8a0f0c37 .random-classname-2683df5b .random-classname-9d446866 >', + '[data-random-attr-13c90d6d] .random-classname-52b53227 [data-random-attr-7ed7c6b9] .random-classname-a5f2d0fd > :not(.random-classname-2683df5b) .random-classname-4d20a26b', + '.random-classname-5496decf', + '.random-classname-ad43a3d9', + '.random-classname-2191ab5 .random-classname-8a0f0c37 .random-classname-e9b2f01d >', + '::slotted ::slotted :not(.random-classname-a5f2d0fd) .random-classname-c32d6d80', + '[data-random-attr-7ed7c6b9] .random-classname-8a0f0c37 .random-classname-e7a772b2', + '::before [data-random-attr-7171e806=random-attr-value-a401fad]', + '.random-classname-b7699c8b', + '.random-classname-bb274f5', + '.random-classname-c5256ddd [data-random-attr-daf18925] .random-classname-92d60443 > [data-random-attr-787c48f1] ::slotted .random-classname-a5f2d0fd ::slotted >', + ':not([data-random-attr-787c48f1]) [data-random-attr-7ed7c6b9] .random-classname-a5f2d0fd .random-classname-aef7733d', + '.random-classname-7d8f9f9b', + '.random-classname-9f643a85', + '.random-classname-c5256ddd ::slotted [data-random-attr-13c90d6d] ::slotted .random-classname-2191ab5 > .random-classname-eb4ff2a3', + '.random-classname-12f1eacd', + '.random-classname-668c8c0e >', + '.random-classname-a3e524e4 [data-random-attr-ea67210c=random-attr-value-750268fb] > .random-classname-8290a234 ::before .random-classname-a4c0ac75 .random-classname-85140e6f :last-child .random-classname-fad63bf7 .random-classname-fbde5205 .random-classname-e1454b09 ::slotted ::before .random-classname-36ce599 .random-classname-c3d91c17 [data-random-attr-daf18925] :not(.random-classname-92d60443) ::slotted > ::placeholder', + ':not(::before) .random-classname-36ce599 [data-random-attr-cdc3f861] [data-random-attr-daf18925] > .random-classname-c0056429 .random-classname-a6fbd418', + '::slotted [data-random-attr-13c90d6d] ::after >', + '.random-classname-c0056429 > :last-child >', + '.random-classname-93939fae', + '.random-classname-fbde5205 .random-classname-e1454b09 ::slotted .random-classname-f990bd1 .random-classname-220b6a8f .random-classname-c5256ddd > .random-classname-9729fd3b :not(.random-classname-c0056429) .random-classname-deac6c2', + '.random-classname-bf2b1744', + '[data-random-attr-29fef516=random-attr-value-e32e297d]', + '[data-random-attr-2b528341] .random-classname-fbde5205 .random-classname-e1454b09 .random-classname-922ef24d :first-child .random-classname-36ce599 > .random-classname-c5256ddd .random-classname-9729fd3b .random-classname-c0056429 ::slotted', + '::slotted [data-random-attr-cdc3f861] ::slotted > .random-classname-62b1b8c5', + ':last-child .random-classname-1d4c9abd .random-classname-fbde5205 .random-classname-e1454b09 .random-classname-922ef24d ::before .random-classname-220b6a8f .random-classname-c5256ddd ::slotted ::slotted', + '.random-classname-152c2b1b .random-classname-d6a61a7f .random-classname-1dfdee23 :first-child .random-classname-220b6a8f .random-classname-c3d91c17 ::slotted [data-random-attr-11f036c7]', + '.random-classname-c5256ddd [data-random-attr-daf18925] > .random-classname-1be3b255 >', + '.random-classname-906d480b .random-classname-85140e6f > .random-classname-78059479 [data-random-attr-2b528341] .random-classname-152c2b1b .random-classname-d6a61a7f .random-classname-1dfdee23 :first-child ::slotted > .random-classname-c5256ddd [data-random-attr-daf18925] .random-classname-b2bea7f3', + '.random-classname-ad7805fb', + '.random-classname-c99a4fe5', + '[data-random-attr-dffd335f]', + '.random-classname-e9b536e9', + '.random-classname-a1a52503', + '.random-classname-d753fee7', + '.random-classname-6be250b', + '.random-classname-278e9175', + '.random-classname-f54c3b6f', + '.random-classname-95474979', + '.random-classname-633f2613', + '[data-random-attr-86d71fbd]', + ':nth-child(1)', + '.random-classname-b1c2fca0', + '.random-classname-56d26ed2', + '.random-classname-1dfdee23 .random-classname-f990bd1 > .random-classname-220b6a8f .random-classname-c3d91c17 :first-child >', + '::slotted > :first-child .random-classname-36ce599 .random-classname-422563fc >', + '.random-classname-fd7b58f0', + '[data-random-attr-f6341fa2=random-attr-value-98811a99]', + '.random-classname-ea91b433', + '.random-classname-625ecd61', + '.random-classname-edec9a3b', + '.random-classname-f990bd1 .random-classname-220b6a8f :not(.random-classname-e60aeb9f)', + '.random-classname-b958bf27', + '[data-random-attr-d9205df1]', + '.random-classname-85140e6f :last-child .random-classname-fad63bf7 .random-classname-fbde5205 .random-classname-e1454b09 ::slotted .random-classname-f990bd1 :first-child', + '.random-classname-922ef24d ::slotted', + '.random-classname-fbde5205 > .random-classname-e1454b09 > .random-classname-1dfdee23 .random-classname-83255fd', + '.random-classname-51c9d937', + '[data-random-attr-9fd61ea8=random-attr-value-a8ed71e7] :not(.random-classname-a4c0ac75) .random-classname-85140e6f :last-child [data-random-attr-2b528341] > .random-classname-fbde5205 .random-classname-e1454b09 :first-child', + '.random-classname-8e950249', + '.random-classname-378e763', + '.random-classname-152c2b1b .random-classname-3c4e8ed5 >', + '[data-random-attr-2b528341] > .random-classname-fbde5205 > [data-random-attr-8bf6c91d]', + '.random-classname-9a75ed86 .random-classname-906d480b > .random-classname-85140e6f > .random-classname-78059479 [data-random-attr-2b528341] > .random-classname-152c2b1b .random-classname-f6d95957', + '.random-classname-fbde5205 [data-random-attr-d12e4c65] >', + '::before > .random-classname-906d480b :not(.random-classname-85140e6f) .random-classname-78059479 .random-classname-1d4c9abd .random-classname-152c2b1b .random-classname-95debb69', + '.random-classname-a539bf67', + '[data-random-attr-3ac08831]', + '.random-classname-906d480b .random-classname-85140e6f > .random-classname-78059479 [data-random-attr-2b528341] > .random-classname-152c2b1b .random-classname-7313ad8b', + '.random-classname-e2e3edf9', + '.random-classname-1d4c9abd > .random-classname-8e6be977', + '.random-classname-3e01f09b', + '.random-classname-85140e6f .random-classname-78059479 .random-classname-1d4c9abd .random-classname-77f7b385', + '.random-classname-a8200489', + ':not(.random-classname-3a6252c8)', + '.random-classname-9524280f', + '.random-classname-d6dbff19', + ':first-child :not(:nth-child(7)) .random-classname-8290a234 ::before > .random-classname-906d480b .random-classname-85140e6f .random-classname-78059479 .random-classname-3ab08cb3', + '.random-classname-a0e55bc0', + '.random-classname-3db2baf2', + '.random-classname-d76578da', + '.random-classname-4897cae', + '.random-classname-96f20010', + '[data-random-attr-5897f3c2=random-attr-value-1537a039]', + '.random-classname-72156ad3', + '.random-classname-9cff827d', + '.random-classname-38860701', + '.random-classname-618724db', + '.random-classname-f7ae31c5', + '[data-random-attr-f949d03f]', + '.random-classname-1d781fe3', + '.random-classname-f47c4b62 .random-classname-1351174a :not(.random-classname-8290a234) .random-classname-9a75ed86 .random-classname-ce1437c7', + '::placeholder > .random-classname-8290a234 ::before ::before', + '.random-classname-6dcfbeb0 :first-child :nth-child(7) > .random-classname-8290a234 [data-random-attr-9fd61ea8=random-attr-value-a8ed71e7] > :last-child', + '.random-classname-352d945f', + '[data-random-attr-c1813fe9]', + '.random-classname-8290a234 > .random-classname-9a75ed86 .random-classname-4bfac52d', + '::placeholder .random-classname-8290a234 [data-random-attr-9fd61ea8=random-attr-value-a8ed71e7] [data-random-attr-c3339cb1]', + '.random-classname-87d6ee3d .random-classname-4c844ec1 .random-classname-6bdd29ff > [data-random-attr-1ad2c987] :not(.random-classname-100549ab) > .random-classname-3baf3f15 .random-classname-29150119 > .random-classname-6f0adeb3 [data-random-attr-c00b14bb] .random-classname-d057ce1f > .random-classname-99a400ed .random-classname-72b8b471 .random-classname-92d27e35 > .random-classname-4821a239 > :not(.random-classname-8d58a47d) :last-child .random-classname-d01bc8c9 ::after .random-classname-a446ca4e .random-classname-6dcfbeb0 :first-child :nth-child(7) > .random-classname-8290a234 .random-classname-9a75ed86 .random-classname-1641ca75', + '.random-classname-8290a234 > .random-classname-9a75ed86 > .random-classname-72399279', + '.random-classname-496d5713', + '.random-classname-c16687f', + '.random-classname-9470c909', + '.random-classname-a3e524e4 [data-random-attr-ea67210c=random-attr-value-750268fb] > .random-classname-8290a234 .random-classname-34b3d807', + '.random-classname-29fbb995', + '::after ::placeholder :not(.random-classname-90094bdd)', + '.random-classname-19ad5c7a > .random-classname-a446ca4e > .random-classname-6dcfbeb0 .random-classname-a3e524e4 > .random-classname-da0c4c9f', + '.random-classname-d01bc8c9 ::after > .random-classname-a446ca4e .random-classname-6dcfbeb0 .random-classname-f47c4b62 > .random-classname-431c6b6d', + '::after > .random-classname-4255da4b', + '[data-random-attr-e429c4b9]', + '.random-classname-a446ca4e .random-classname-6dcfbeb0 > .random-classname-a3e524e4 .random-classname-25b9a37', + '[data-random-attr-bf1740bf]', + ':nth-child(3) ::after .random-classname-a446ca4e .random-classname-6dcfbeb0 ::after ::before', + '.random-classname-820fb847', + ':nth-child(3) .random-classname-5c5a9e08 .random-classname-a446ca4e > .random-classname-6dcfbeb0 .random-classname-849f47d5', + '::after .random-classname-a446ca4e .random-classname-ebdf20cf', + '.random-classname-3cfe3cb ::slotted :not(.random-classname-9748bcd3) [data-random-attr-a849abb7] ::slotted > :nth-child(3) .random-classname-5c5a9e08 .random-classname-a446ca4e :first-child', + ':not(::slotted) :not(.random-classname-72b8b471) .random-classname-92d27e35 > .random-classname-4821a239 .random-classname-8d58a47d > :last-child .random-classname-d01bc8c9 > .random-classname-5c5a9e08 .random-classname-a446ca4e ::before', + '.random-classname-f24b6db :nth-child(3) .random-classname-5c5a9e08 .random-classname-a446ca4e ::before', + '.random-classname-24aa35a3 > .random-classname-100549ab .random-classname-3baf3f15 :not(.random-classname-29150119) .random-classname-6f0adeb3 .random-classname-ecaffb97 .random-classname-d057ce1f > .random-classname-99a400ed .random-classname-72b8b471 .random-classname-92d27e35 .random-classname-4821a239 > .random-classname-8d58a47d :not(.random-classname-dab04901) .random-classname-d01bc8c9 ::after .random-classname-dc584067', + '.random-classname-4d18e6f5', + '.random-classname-a858acef', + '.random-classname-d01bc8c9 .random-classname-5c5a9e08 > .random-classname-2d35ef93', + '.random-classname-e76975c1', + '.random-classname-228c58ff', + '[data-random-attr-a849abb7] > ::slotted :nth-child(3) > ::after ::placeholder', + '.random-classname-100549ab .random-classname-3baf3f15 > .random-classname-29150119 .random-classname-6f0adeb3 [data-random-attr-c00b14bb] > .random-classname-d057ce1f > .random-classname-99a400ed > .random-classname-72b8b471 .random-classname-92d27e35 .random-classname-4821a239 .random-classname-8d58a47d > :last-child .random-classname-d01bc8c9 [data-random-attr-69b012a4=random-attr-value-93d13db3]', + ':nth-child(3) :not(.random-classname-254fc6cc)', + '.random-classname-d01bc8c9 .random-classname-b5067d1f', + '::before ::before ::before > .random-classname-99a400ed .random-classname-3cfe3cb > ::slotted .random-classname-9748bcd3 [data-random-attr-a849abb7] > ::slotted :nth-child(3) ::slotted', + ':last-child .random-classname-d01bc8c9 ::before', + '[data-random-attr-a849abb7] ::slotted', + '.random-classname-8d58a47d .random-classname-42269bd3', + '.random-classname-72b8b471 .random-classname-92d27e35 .random-classname-4821a239 [data-random-attr-1b6a630d]', + '.random-classname-3d90c8bc', + '.random-classname-c1283d4e', + '[data-random-attr-abf8a9b0=random-attr-value-9ddbb14f]', + '::slotted .random-classname-72b8b471 .random-classname-92d27e35 .random-classname-4821a239 .random-classname-e6be09f3', + '.random-classname-100549ab .random-classname-3baf3f15 .random-classname-29150119 .random-classname-6f0adeb3 [data-random-attr-c00b14bb] > :not(.random-classname-d057ce1f) .random-classname-6b5a0bc3 .random-classname-72b8b471 .random-classname-92d27e35 > .random-classname-4821a239 .random-classname-d363a7fb', + '.random-classname-3cfe3cb > :not(::slotted) .random-classname-9748bcd3 .random-classname-df3148e9', + '.random-classname-35cede2d', + '::slotted .random-classname-67e4c5b1', + '.random-classname-d057ce1f .random-classname-99a400ed .random-classname-72b8b471 .random-classname-92d27e35 .random-classname-9b990375', + '.random-classname-9e0fdb79', + '.random-classname-6f0adeb3 .random-classname-ecaffb97 .random-classname-d057ce1f .random-classname-6b5a0bc3 > .random-classname-72b8b471 .random-classname-92d27e35 ::after', + '::before > ::before ::slotted .random-classname-3cfe3cb ::slotted .random-classname-61d146a0', + '.random-classname-72b8b471 > .random-classname-e2d948d2', + '::before .random-classname-99a400ed > .random-classname-3cfe3cb .random-classname-56bbe94d', + '.random-classname-f264912b', + '.random-classname-e477295', + '[data-random-attr-d540598f]', + '.random-classname-9f42ac99', + '.random-classname-e0d31633', + '.random-classname-6bdd29ff > [data-random-attr-1ad2c987] .random-classname-100549ab > .random-classname-3baf3f15 .random-classname-29150119 > .random-classname-6f0adeb3 :not([data-random-attr-c00b14bb]) .random-classname-d057ce1f .random-classname-99a400ed :not(.random-classname-72b8b471) [data-random-attr-1e5a3c3b]', + '.random-classname-34763a74', + '.random-classname-c5831ae8', + '::before ::before > .random-classname-b72ae89c >', + '.random-classname-d057ce1f .random-classname-845bc82e', + '.random-classname-29150119 > ::before .random-classname-5fef83e1 ::before > .random-classname-53dd5bc4 >', + '.random-classname-6f0adeb3 .random-classname-ecaffb97 .random-classname-d057ce1f .random-classname-e04c2d96', + '::before ::placeholder', + '[data-random-attr-c00b14bb] > .random-classname-a922afe0', + '::before .random-classname-5fef83e1 .random-classname-ddbbc963', + '.random-classname-174faf8d', + '.random-classname-5fd9b947', + '[data-random-attr-b528fd11]', + '.random-classname-7614dc30', + '.random-classname-29150119 .random-classname-6f0adeb3 [data-random-attr-c00b14bb] .random-classname-22295a64', + '.random-classname-58445a0f .random-classname-29150119 ::before .random-classname-5fef83e1 ::after', + '.random-classname-5bd0cb9e', + '.random-classname-29150119 ::before > ::before .random-classname-dfa639b2', + '.random-classname-ee73cf8b', + '.random-classname-368b4def', + '.random-classname-2ec71093 [data-random-attr-ca295b77] ::before .random-classname-10308689 ::before > .random-classname-100549ab .random-classname-802a2093', + '.random-classname-100549ab .random-classname-6abadec1', + ':nth-child(1) >', + '.random-classname-680ddcc8', + '::before .random-classname-100549ab > .random-classname-7f93d87c', + '.random-classname-6bdd29ff > [data-random-attr-1ad2c987] .random-classname-100549ab > .random-classname-20d6a30e', + '.random-classname-d1adcb57 .random-classname-2cf95df > .random-classname-af2b167 :not([data-random-attr-23413def]) > .random-classname-2ec71093 [data-random-attr-ca295b77] :not(.random-classname-4c844ec1) .random-classname-10308689 .random-classname-79c25cd .random-classname-100549ab .random-classname-1b75eeb3', + '[data-random-attr-ca1b9ca5]', + '::before .random-classname-57b590ed', + '[data-random-attr-8dfe3d69] :first-child .random-classname-260e8ff5 > :not(.random-classname-4ebeff9) .random-classname-87d6ee3d ::before .random-classname-6bdd29ff .random-classname-6d1a01a7', + '.random-classname-10308689 .random-classname-39b4471', + '.random-classname-3c92962f', + '.random-classname-5563239', + '.random-classname-e2bbccd3', + '.random-classname-360e347d', + '.random-classname-4c844ec1 :not(.random-classname-6bdd29ff) ::placeholder', + '[data-random-attr-ca295b77] [data-random-attr-e82d829b] > .random-classname-10308689 .random-classname-ba8d7de6', + '.random-classname-7c46ee08', + '.random-classname-d1adcb57 ::slotted :not(::slotted) [data-random-attr-23413def] .random-classname-2ec71093 [data-random-attr-ca295b77] [data-random-attr-e82d829b] .random-classname-4c2c9a4e', + '[data-random-attr-8dfe3d69] > :not(:first-child) > .random-classname-260e8ff5 > .random-classname-4ebeff9 .random-classname-87d6ee3d > :not(::before) .random-classname-24114458', + '.random-classname-80393ae5', + '.random-classname-f35a565f', + '::before .random-classname-2efaf803 >', + '.random-classname-8a7e1e6f', + '.random-classname-2a922abd', + '.random-classname-7426a9a1 ::slotted > ::slotted [data-random-attr-23413def] .random-classname-2ec71093 :last-child', + '[data-random-attr-8dfe3d69] :first-child .random-classname-260e8ff5 .random-classname-4ebeff9 .random-classname-fed42a7f', + '[data-random-attr-2718824d]', + '.random-classname-3904daad .random-classname-260e8ff5 > .random-classname-4ebeff9 > :first-child >', + '.random-classname-2ec71093 .random-classname-cb372b95', + '[data-random-attr-de0d2c17] >', + '.random-classname-2ec71093 > .random-classname-f9170d3b', + '.random-classname-32311925', + '.random-classname-7426a9a1 ::slotted ::slotted [data-random-attr-23413def] .random-classname-95f5f429 >', + '[data-random-attr-8dfe3d69] :first-child > .random-classname-260e8ff5 .random-classname-ea2d4227', + '.random-classname-2cf95df .random-classname-af2b167 [data-random-attr-23413def] > .random-classname-477caab5', + '.random-classname-784e10c4', + '.random-classname-10f5ae38', + '.random-classname-e85c4c2a', + ':nth-child(10)', + '.random-classname-260e8ff5 > .random-classname-fc7702bf', + '.random-classname-af2b167 > :not([data-random-attr-23413def]) .random-classname-3d67ba47', + '.random-classname-ab2cb9d5', + '::slotted ::slotted [data-random-attr-23413def] .random-classname-d99a541d', + '.random-classname-260e8ff5 :not(::before)', + '.random-classname-72b006df', + '.random-classname-999083ad >', + ':not(.random-classname-172870d5) ::before .random-classname-7426a9a1 ::slotted .random-classname-90f58f5', + '::slotted [data-random-attr-8dfe3d69] .random-classname-3f01eeef >', + '::before ::before > .random-classname-3564b963 ::before .random-classname-172870d5 [data-random-attr-185e6ed9] .random-classname-d1adcb57 .random-classname-2cf95df ::slotted >', + '.random-classname-5bf0d73d', + '.random-classname-d70e39b', + '.random-classname-2c8e1aff', + '.random-classname-db59b6a3 >', + '.random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 ::before .random-classname-39d0456b .random-classname-eb2731cf .random-classname-d1adcb57 .random-classname-2e08ae65 > [data-random-attr-4539f051] >', + '.random-classname-d1adcb57 > .random-classname-a4c5fd22', + '::before > .random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 .random-classname-2c161f8d .random-classname-39d0456b :first-child .random-classname-7426a9a1 .random-classname-a26c7ca4', + '.random-classname-7426a9a1 :not(::placeholder)', + '.random-classname-7426a9a1 :not(.random-classname-2f9970cc)', + '.random-classname-92164ac0', + '.random-classname-54e481f2', + '.random-classname-9bcce9f4', + '[data-random-attr-8d8e498f] :first-child .random-classname-f6b7db17 [data-random-attr-acad2c3b] > .random-classname-7b6f9025 ::before .random-classname-e63fb127 ::before > :not(:first-child) > .random-classname-d8354b37 :not(::before) ::before .random-classname-3564b963 .random-classname-2c161f8d .random-classname-172870d5 [data-random-attr-185e6ed9] .random-classname-df0a4b46 >', + '::before > :not(.random-classname-60f9370b) .random-classname-e3057375 .random-classname-db8b4b79 .random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f .random-classname-9eb77d23 > .random-classname-f25762d1 .random-classname-d66be295 ::before .random-classname-f6b7db17 .random-classname-37740f61 > .random-classname-7b6f9025 .random-classname-7fbf1343 .random-classname-e63fb127 ::before .random-classname-c5ee35af .random-classname-de8777fd .random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 :not(:last-child) .random-classname-39d0456b .random-classname-eb2731cf [data-random-attr-b28c4735]', + '.random-classname-3564b963 ::before > .random-classname-172870d5 > ::before :last-child', + '.random-classname-b4068e5b > .random-classname-92711bf .random-classname-3564b963 :last-child .random-classname-39d0456b > :first-child ::before', + '::before .random-classname-172870d5 ::before', + '.random-classname-df59733f', + '.random-classname-bd8fe1c9', + '[data-random-attr-936872e3]', + ':not(::before) .random-classname-172870d5 ::before', + '.random-classname-39d0456b .random-classname-9dcb2eeb', + '.random-classname-c5ee35af ::before ::before ::before .random-classname-3564b963 ::before .random-classname-172870d5 > :not(.random-classname-a6382c59) >', + '.random-classname-3096bcd7', + '.random-classname-58b9d400', + '.random-classname-22d1d32', + ':not(.random-classname-d8354b37) .random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 :last-child .random-classname-39d0456b .random-classname-2a80fa86 >', + ':last-child ::placeholder', + '.random-classname-3564b963 :last-child > .random-classname-da458850', + '.random-classname-3564b963 .random-classname-db5c6856', + '.random-classname-d99ff1f8', + '.random-classname-d8354b37 :not(::before) ::before .random-classname-3564b963 :not(::placeholder)', + '.random-classname-df2f90a0', + '.random-classname-b8b022d2', + '.random-classname-d6a8a26', + '.random-classname-e9b0448', + '[data-random-attr-8efdcba=random-attr-value-d0b944d1]', + '.random-classname-7b11b32b', + '[data-random-attr-69943e99]', + '.random-classname-b1247833', + '.random-classname-84326d17', + '.random-classname-b4068e5b > .random-classname-92711bf :not(.random-classname-6ad7de3b)', + '::before ::before > ::before .random-classname-15a86f9f >', + '.random-classname-6c8e1ff1 > .random-classname-c5ee35af :not(::before) > .random-classname-b4068e5b .random-classname-92711bf ::before', + '::before [data-random-attr-9644e3b5]', + '.random-classname-c5ee35af .random-classname-de8777fd .random-classname-b4068e5b .random-classname-92711bf > :not(.random-classname-ef039fb9)', + '.random-classname-5097b9fd', + '.random-classname-c5ee35af .random-classname-d8354b37 .random-classname-6ca8dd37', + '.random-classname-7fbf1343 .random-classname-e63fb127 .random-classname-a855db4b .random-classname-4247db9 :not(.random-classname-d8354b37) [data-random-attr-de0eab63] >', + '.random-classname-b6db9d9f ::before .random-classname-e63fb127 > .random-classname-a855db4b :first-child .random-classname-d8354b37 .random-classname-93c24f11', + '.random-classname-7fbf1343 .random-classname-e63fb127 ::before :first-child .random-classname-de8777fd > :nth-child(3)', + '::before .random-classname-e63fb127 :not(.random-classname-6c8e1ff1) :not(.random-classname-c5ee35af) ::placeholder', + '.random-classname-a855db4b .random-classname-c5ee35af > .random-classname-1f19b08c', + '.random-classname-7b6f9025 > ::before .random-classname-e63fb127 :not(.random-classname-6c8e1ff1) .random-classname-4247db9 .random-classname-c9413b2', + '.random-classname-191521b4', + '.random-classname-f9c01906', + '[data-random-attr-336ed628=random-attr-value-ec4bc367]', + ':not(::slotted)', + '.random-classname-f6b7db17 .random-classname-37740f61 :last-child .random-classname-7fbf1343 > .random-classname-e63fb127 .random-classname-6c8e1ff1 .random-classname-5d0091f5', + '.random-classname-e63fb127 .random-classname-6c8e1ff1 .random-classname-d1bc8fef', + '.random-classname-af09303d', + '[data-random-attr-2a0eed77]', + '.random-classname-b89b0c1', + '.random-classname-21e22889', + '.random-classname-c3179f70', + '::before .random-classname-e63fb127 ::before', + '.random-classname-2288a01f', + '::slotted [data-random-attr-8d8e498f] ::before > .random-classname-f6b7db17 [data-random-attr-acad2c3b] :last-child ::before .random-classname-e63fb127 .random-classname-4c088846', + '.random-classname-e63fb127 > .random-classname-a33b4768', + '.random-classname-79315cb', + '.random-classname-24a68035', + '.random-classname-1de5d82f', + '.random-classname-9c70d905 > .random-classname-db14c209 .random-classname-9eb77d23 ::slotted [data-random-attr-8d8e498f] ::before .random-classname-f6b7db17 [data-random-attr-acad2c3b] .random-classname-b6db9d9f ::before ::slotted', + '.random-classname-9eb77d23 .random-classname-f25762d1 .random-classname-d66be295 ::before > .random-classname-f6b7db17 > .random-classname-37740f61 > .random-classname-b6db9d9f :not(.random-classname-7fbf1343) .random-classname-6bace67d >', + '.random-classname-25a13db7', + '.random-classname-147c68db', + '.random-classname-200815c5', + '.random-classname-ae82f7e6', + '.random-classname-f25762d1 .random-classname-d66be295 :first-child .random-classname-f6b7db17 .random-classname-37740f61 > .random-classname-7b6f9025 .random-classname-f28e467a', + '.random-classname-8d1544e', + '.random-classname-e3057375 :not([data-random-attr-a32a41bd]) .random-classname-ee8f1a41 > .random-classname-9c70d905 .random-classname-7e5397f .random-classname-9eb77d23 .random-classname-f25762d1 .random-classname-d66be295 :first-child .random-classname-f6b7db17 > .random-classname-37740f61 :last-child .random-classname-237a7562', + ':first-child .random-classname-f6b7db17 [data-random-attr-acad2c3b] .random-classname-7b6f9025 [data-random-attr-9c14814a=random-attr-value-f5370021]', + '.random-classname-f6b7db17 .random-classname-37740f61 .random-classname-7b6f9025 > .random-classname-3697185f', + '::slotted [data-random-attr-8d8e498f] :first-child .random-classname-f6b7db17 [data-random-attr-acad2c3b] :last-child', + '.random-classname-5427a0b', + '.random-classname-f6b7db17 [data-random-attr-acad2c3b] .random-classname-9aeab679', + '.random-classname-37740f61 .random-classname-e79fcdf7 >', + '.random-classname-1815dd1b', + '.random-classname-7ea1ec7f', + '.random-classname-35faed09', + '.random-classname-c66fda1b .random-classname-9c70d905 .random-classname-db14c209 ::slotted ::slotted [data-random-attr-8d8e498f] ::before > .random-classname-f6b7db17 > [data-random-attr-acad2c3b] .random-classname-c01de023', + '.random-classname-43db44d', + '.random-classname-9cafdc07', + '[data-random-attr-ad02edd1]', + '[data-random-attr-acad2c3b] .random-classname-fc43bc8f >', + '.random-classname-37740f61 .random-classname-40130799 >', + '[data-random-attr-acad2c3b] ::slotted', + '.random-classname-d12e5a61', + '[data-random-attr-839caf3b]', + '.random-classname-c66fda1b .random-classname-9c70d905 > .random-classname-db14c209 :not([data-random-attr-8412594d]) > ::slotted > [data-random-attr-8d8e498f] :first-child .random-classname-f6b7db17 > .random-classname-1aa10b25', + ':not(.random-classname-4f9ef643) >', + ':not(.random-classname-f6b7db17) ::before >', + '[data-random-attr-8412594d] .random-classname-f25762d1 .random-classname-d66be295 ::before .random-classname-f6b7db17 ::slotted', + '[data-random-attr-8d8e498f] :first-child > .random-classname-f6b7db17 :nth-child(13)', + '.random-classname-1fc4b838 >', + '.random-classname-60f9370b .random-classname-dfff6d6f .random-classname-a6dc7813 .random-classname-c66fda1b :not(.random-classname-9c70d905) > .random-classname-db14c209 ::slotted ::slotted [data-random-attr-8d8e498f] .random-classname-ccf61c99 .random-classname-f6b7db17 .random-classname-98ff915b', + '.random-classname-ccf61c99 .random-classname-f6b7db17 > :last-child', + '.random-classname-37cfbc47', + '.random-classname-d66be295 :first-child .random-classname-f6b7db17 > .random-classname-57a4f811', + '[data-random-attr-8d8e498f] .random-classname-ccf61c99 .random-classname-f6b7db17 ::slotted', + '.random-classname-5866061d >', + '::slotted .random-classname-91c27e9d .random-classname-338e2ad7 .random-classname-bc3be55f ::slotted .random-classname-7d68f0e7 .random-classname-60f9370b .random-classname-dfff6d6f ::slotted .random-classname-c66fda1b .random-classname-9c70d905 .random-classname-db14c209 > [data-random-attr-8412594d] ::slotted [data-random-attr-8d8e498f] .random-classname-ccf61c99 .random-classname-47c6837b', + '[data-random-attr-eb30c8df] >', + '.random-classname-4855606', + '.random-classname-89901b28', + '.random-classname-dc01ccdc', + '.random-classname-be3f766e', + '.random-classname-b9d0c804', + '[data-random-attr-16e5a3d6=random-attr-value-e545893d]', + ':not(::before) .random-classname-65751085', + '.random-classname-e39fdcff', + '::slotted [data-random-attr-8d8e498f] .random-classname-ccf61c99 > ::slotted', + '.random-classname-211d80cd', + '.random-classname-d66be295 ::before > .random-classname-217fcd0f', + '.random-classname-c72c84a7', + '.random-classname-964b935', + '.random-classname-47320d39', + '.random-classname-47935fd3', + '.random-classname-a6dc7813 .random-classname-c66fda1b :not(.random-classname-9c70d905) .random-classname-db14c209 .random-classname-9eb77d23 ::slotted [data-random-attr-8d8e498f] [data-random-attr-3c3b9db]', + '.random-classname-6f388ec5', + '.random-classname-f50d353f', + '.random-classname-9eb77d23 ::slotted [data-random-attr-8d8e498f] ::after >', + '[data-random-attr-a32a41bd] .random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f > ::slotted .random-classname-f25762d1 .random-classname-d66be295 [data-random-attr-fca31cbc=random-attr-value-dc8650eb]', + '.random-classname-4824354f', + '[data-random-attr-aca7be59]', + '.random-classname-7e5397f [data-random-attr-8412594d] .random-classname-f25762d1 :not(.random-classname-ebcf729d)', + '[data-random-attr-8412594d] > ::slotted .random-classname-1d19e921', + '.random-classname-c36aebfb', + '.random-classname-9476f732', + '.random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f .random-classname-b40b7486', + '::slotted .random-classname-91c27e9d ::slotted .random-classname-bc3be55f ::slotted .random-classname-7d68f0e7 .random-classname-60f9370b > .random-classname-dfff6d6f ::slotted .random-classname-c66fda1b .random-classname-9c70d905 .random-classname-db14c209 ::after', + '.random-classname-b10964ee', + '[data-random-attr-fcd95250=random-attr-value-b414016f]', + '.random-classname-c66fda1b .random-classname-9c70d905 .random-classname-db14c209 > ::slotted', + '.random-classname-b29135bd', + '.random-classname-9c70d905 .random-classname-db14c209 ::placeholder', + '.random-classname-7e5397f .random-classname-78887d4', + '.random-classname-a6dc7813 > :not(.random-classname-c66fda1b) > .random-classname-9c70d905 > .random-classname-db14c209 :last-child', + '.random-classname-2011e88e', + '.random-classname-83c5b6f0', + ':nth-child(2)', + '.random-classname-9c70d905 > .random-classname-db14c209 ::slotted', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 > .random-classname-63271ac5 ::before .random-classname-d75c28c7 > ::slotted > .random-classname-fc9c0a59 .random-classname-91c27e9d :last-child .random-classname-b1f0b1e5 .random-classname-c710b8e9 .random-classname-7d68f0e7 .random-classname-60f9370b .random-classname-e3057375 [data-random-attr-a32a41bd] .random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-85ea4361 >', + '.random-classname-338e2ad7 > .random-classname-bc3be55f ::slotted ::before .random-classname-60f9370b > .random-classname-dfff6d6f .random-classname-a6dc7813 .random-classname-c66fda1b .random-classname-9c70d905 .random-classname-294f0425', + '.random-classname-9c70d905 .random-classname-2d0f319f', + '.random-classname-9c70d905 > .random-classname-9ff50f29', + '.random-classname-f181e743', + '.random-classname-9c70d905 .random-classname-56e5c527 >', + '.random-classname-c6732f4b', + '::before .random-classname-60f9370b .random-classname-dfff6d6f ::slotted .random-classname-c66fda1b .random-classname-9c70d905 ::slotted', + '.random-classname-c66fda1b .random-classname-9c70d905 ::before >', + '.random-classname-ee8f1a41 [data-random-attr-d42e4b45]', + '.random-classname-9fba3849', + '.random-classname-84718d63', + '[data-random-attr-57be138d]', + '[data-random-attr-a32a41bd] .random-classname-ee8f1a41 .random-classname-2b155fce >', + ':not(:first-child) .random-classname-57d7a13f :not(.random-classname-b1643fc9) .random-classname-5e569891 :first-child ::slotted > .random-classname-91c27e9d :last-child .random-classname-bc3be55f ::slotted ::before .random-classname-60f9370b .random-classname-dfff6d6f .random-classname-a6dc7813 .random-classname-c66fda1b :last-child', + '.random-classname-6b92df57', + '.random-classname-bfd0547b', + '.random-classname-4e1c2265', + '.random-classname-ee8f1a41 :not(::slotted)', + '.random-classname-dfff6d6f > .random-classname-a6dc7813 .random-classname-c66fda1b ::slotted', + '.random-classname-c710b8e9 .random-classname-7d68f0e7 .random-classname-60f9370b .random-classname-e3057375 .random-classname-db8b4b79 .random-classname-ee8f1a41 .random-classname-3f977e31', + '::slotted .random-classname-c66fda1b ::after >', + '.random-classname-6ca220d6', + '::slotted .random-classname-bc3be55f ::slotted > .random-classname-196d4e2d .random-classname-60f9370b .random-classname-dfff6d6f ::after', + '.random-classname-e3057375 .random-classname-d3459b3e', + '::slotted ::before .random-classname-60f9370b .random-classname-dfff6d6f [data-random-attr-a00062a6=random-attr-value-25f819cd] >', + '.random-classname-60f9370b .random-classname-e3057375 .random-classname-9136dd87', + '.random-classname-e0c09dab', + '.random-classname-b989b315', + '[data-random-attr-4f2aee0f]', + '.random-classname-96d6755d', + '.random-classname-bc3be55f > ::slotted > .random-classname-196d4e2d .random-classname-60f9370b .random-classname-dfff6d6f ::placeholder', + '.random-classname-7d68f0e7 .random-classname-60f9370b .random-classname-e3057375 ::after', + '::before > .random-classname-60f9370b > .random-classname-e3057375 .random-classname-72b01c2', + '.random-classname-fa0d07c5', + '::slotted .random-classname-7d68f0e7 .random-classname-60f9370b .random-classname-36fcc5e3 >', + '::before .random-classname-60f9370b > .random-classname-bc347591', + '::slotted .random-classname-196d4e2d .random-classname-60f9370b > ::slotted', + '.random-classname-bb7d4b9d', + '.random-classname-60f9370b .random-classname-2e60d221', + '.random-classname-9ef6bcfb', + '.random-classname-c8051ee5', + '[data-random-attr-7ee3da5f]', + '[data-random-attr-b20f85e7]', + '.random-classname-733692b1', + '.random-classname-60f9370b > .random-classname-b9e92075', + '.random-classname-7d68f0e7 .random-classname-60f9370b > .random-classname-6678a26f', + '.random-classname-9432ffa0 >', + '.random-classname-be4bc126', + '.random-classname-cb0c5348', + '.random-classname-702103ba', + '[data-random-attr-b12276fc=random-attr-value-9533662b]', + '.random-classname-4db661dd', + '.random-classname-ea32513b', + '.random-classname-57121829', + '.random-classname-3ae8d843', + '[data-random-attr-2c67016d]', + '::slotted .random-classname-fc9c0a59 > :not(.random-classname-91c27e9d) > :last-child :nth-child(13) >', + '.random-classname-1406fceb ::slotted .random-classname-91c27e9d > ::slotted > .random-classname-a1e3c238', + '.random-classname-92d4c445', + '.random-classname-ce6686bf', + '[data-random-attr-433c149]', + '.random-classname-338e2ad7 > .random-classname-6b93e488', + '.random-classname-a09ed773', + '.random-classname-dbc1b81d', + '.random-classname-57d7a13f > .random-classname-b1643fc9 > .random-classname-5e569891 ::slotted ::slotted .random-classname-91c27e9d :last-child > .random-classname-d9b52057', + '.random-classname-7134e52f .random-classname-7ef38bd3 > .random-classname-277f4b7d > .random-classname-fa45e001 > .random-classname-63271ac5 .random-classname-b1643fc9 > .random-classname-d75c28c7 > .random-classname-1406fceb .random-classname-fc9c0a59 .random-classname-91c27e9d :last-child .random-classname-fb89c6a1 >', + '.random-classname-88c18adf', + '.random-classname-86c4fa69', + '.random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-cb20e7ad', + '.random-classname-1406fceb ::slotted .random-classname-91c27e9d .random-classname-fbb5306e', + '.random-classname-964a9d0', + '.random-classname-8d129dd6', + '.random-classname-d75c28c7 ::slotted .random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-6e2debc1', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d :first-child .random-classname-57d7a13f ::before .random-classname-5e569891 .random-classname-1406fceb > ::slotted .random-classname-91c27e9d :last-child >', + '.random-classname-d75c28c7 ::slotted > .random-classname-fc9c0a59 .random-classname-6c0dc389', + '::before .random-classname-7ef38bd3 > .random-classname-277f4b7d > .random-classname-fa45e001 .random-classname-57d7a13f ::before .random-classname-5e569891 ::slotted ::slotted > .random-classname-9045de87', + '.random-classname-d75c28c7 .random-classname-1406fceb .random-classname-1b5b6c15', + ':first-child .random-classname-ab6963b3', + '.random-classname-33df4e5d', + '.random-classname-453c5097', + '.random-classname-b53a39bb', + '.random-classname-456779a5', + '.random-classname-a5561ca9', + '.random-classname-d36dd0c3', + '.random-classname-c4641171', + '.random-classname-db5c48cb', + '.random-classname-63271ac5 .random-classname-6c6280e3 > .random-classname-df50bf44 >', + '[data-random-attr-f0a6076c=random-attr-value-555e5bdb]', + '.random-classname-508580c5', + '.random-classname-47d0f73f', + '.random-classname-fb3636e3', + '.random-classname-7bf90d', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d > .random-classname-d7d1eab7 .random-classname-cc803ec7', + '::before > .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 ::slotted', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-ddc97a55 >', + '.random-classname-705f5d58', + '.random-classname-f10684a', + '[data-random-attr-94cf9a0c=random-attr-value-8d868dfb]', + '.random-classname-4b84ad03', + '.random-classname-7134e52f .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-d7d1eab7 .random-classname-f63fbbb1', + '.random-classname-b48ead0b', + '.random-classname-97185975', + '.random-classname-277f4b7d ::before', + '.random-classname-6f8a10f7', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d :not(::before) >', + '.random-classname-ded48f7f', + '.random-classname-91fc8809', + '.random-classname-7c37e8d1', + '::before .random-classname-7ef38bd3 :nth-child(7)', + '.random-classname-dc97fe98', + '.random-classname-e065db8a', + '[data-random-attr-71a3af4c=random-attr-value-5803223b]', + '.random-classname-58132129', + '.random-classname-3bd3c943', + ':nth-child(11)', + '[data-random-attr-9c36f62e=random-attr-value-1bcdc7b5]', + '.random-classname-88860baf', + '.random-classname-a027da53', + '.random-classname-7134e52f > .random-classname-c03b9a81', + ':not(.random-classname-7134e52f) > .random-classname-8cd458d >', + ], +}; diff --git a/apps/stress-test/src/fixtures/xl_2.js b/apps/stress-test/src/fixtures/xl_2.js new file mode 100644 index 0000000000000..8afa6c2d68fc6 --- /dev/null +++ b/apps/stress-test/src/fixtures/xl_2.js @@ -0,0 +1,18931 @@ +/* eslint-disable @fluentui/max-len */ +export default { + tree: { + value: { + name: '0-0', + classNames: ['.random-classname-7134e52f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '1-1', + classNames: ['.random-classname-7ef38bd3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-5', + classNames: ['.random-classname-277f4b7d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '3-3', + classNames: ['.random-classname-d7d1eab7', '.random-classname-fa45e001'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '4-1', + classNames: ['.random-classname-63271ac5', '.random-classname-57d7a13f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '5-11', + classNames: ['.random-classname-b1643fc9', '.random-classname-6c6280e3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '6-3', + classNames: ['.random-classname-d75c28c7', '.random-classname-5e569891'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '7-11', + classNames: ['.random-classname-1406fceb'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '8-9', + classNames: ['.random-classname-fc9c0a59'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '9-7', + classNames: ['.random-classname-91c27e9d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '10-5', + classNames: ['.random-classname-338e2ad7'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '11-5', + classNames: [ + '.random-classname-b1f0b1e5', + '.random-classname-bc3be55f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '12-13', + classNames: ['.random-classname-c710b8e9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '13-5', + classNames: [ + '.random-classname-196d4e2d', + '.random-classname-7d68f0e7', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '14-6', + classNames: ['.random-classname-60f9370b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '15-1', + classNames: [ + '.random-classname-e3057375', + '.random-classname-dfff6d6f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '16-11', + classNames: [ + '.random-classname-db8b4b79', + '.random-classname-a6dc7813', + ], + attributes: [ + { + key: 'data-random-attr-a32a41bd', + selector: '[data-random-attr-a32a41bd]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '17-5', + classNames: [ + '.random-classname-ee8f1a41', + '.random-classname-c66fda1b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '18-11', + classNames: [ + '.random-classname-9c70d905', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '19-7', + classNames: [ + '.random-classname-7e5397f', + '.random-classname-db14c209', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '20-7', + classNames: [ + '.random-classname-9eb77d23', + ], + attributes: [ + { + key: + 'data-random-attr-8412594d', + selector: + '[data-random-attr-8412594d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '21-4', + classNames: [ + '.random-classname-f25762d1', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '22-7', + classNames: [ + '.random-classname-d66be295', + ], + attributes: [ + { + key: + 'data-random-attr-8d8e498f', + selector: + '[data-random-attr-8d8e498f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '23-13', + classNames: [ + '.random-classname-ccf61c99', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '24-13', + classNames: [ + '.random-classname-f6b7db17', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '25-11', + classNames: [ + '.random-classname-37740f61', + ], + attributes: [ + { + key: + 'data-random-attr-acad2c3b', + selector: + '[data-random-attr-acad2c3b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-7b6f9025', + '.random-classname-b6db9d9f', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '27-9', + classNames: [ + '.random-classname-7fbf1343', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '28-9', + classNames: [ + '.random-classname-e63fb127', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '29-5', + classNames: [ + '.random-classname-6c8e1ff1', + '.random-classname-a855db4b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-c5ee35af', + '.random-classname-4247db9', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '31-9', + classNames: [ + '.random-classname-de8777fd', + '.random-classname-d8354b37', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '32-3', + classNames: [ + '.random-classname-b4068e5b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '33-5', + classNames: [ + '.random-classname-92711bf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '34-3', + classNames: [ + '.random-classname-3564b963', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '35-1', + classNames: [ + '.random-classname-2c161f8d', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '36-7', + classNames: [ + '.random-classname-39d0456b', + '.random-classname-172870d5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '37-5', + classNames: [ + '.random-classname-eb2731cf', + ], + attributes: [ + { + key: + 'data-random-attr-185e6ed9', + selector: + '[data-random-attr-185e6ed9]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-d1adcb57', + '.random-classname-7426a9a1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '39-1', + classNames: [ + '.random-classname-2e08ae65', + '.random-classname-2cf95df', + ], + attributes: [ + { + key: + 'data-random-attr-8dfe3d69', + selector: + '[data-random-attr-8dfe3d69]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-3904daad', + '.random-classname-af2b167', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '41-5', + classNames: [ + '.random-classname-260e8ff5', + ], + attributes: [ + { + key: + 'data-random-attr-23413def', + selector: + '[data-random-attr-23413def]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '42-3', + classNames: [ + '.random-classname-4ebeff9', + '.random-classname-2ec71093', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '43-1', + classNames: [ + '.random-classname-87d6ee3d', + ], + attributes: [ + { + key: + 'data-random-attr-ca295b77', + selector: + '[data-random-attr-ca295b77]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '44-7', + classNames: [ + '.random-classname-4c844ec1', + ], + attributes: [ + { + key: + 'data-random-attr-e82d829b', + selector: + '[data-random-attr-e82d829b]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '45-2', + classNames: [ + '.random-classname-6bdd29ff', + '.random-classname-10308689', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '46-10', + classNames: [ + '.random-classname-24aa35a3', + '.random-classname-79c25cd', + ], + attributes: [ + { + key: + 'data-random-attr-1ad2c987', + selector: + '[data-random-attr-1ad2c987]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '47-10', + classNames: [ + '.random-classname-100549ab', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '48-3', + classNames: [ + '.random-classname-3baf3f15', + '.random-classname-58445a0f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '49-3', + classNames: [ + '.random-classname-29150119', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '50-3', + classNames: [ + '.random-classname-6f0adeb3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '51-8', + classNames: [ + '.random-classname-ecaffb97', + '.random-classname-5fef83e1', + ], + attributes: [ + { + key: + 'data-random-attr-c00b14bb', + selector: + '[data-random-attr-c00b14bb]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '52-8', + classNames: [ + '.random-classname-d057ce1f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '53-4', + classNames: [ + '.random-classname-6b5a0bc3', + '.random-classname-99a400ed', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '54-1', + classNames: [ + '.random-classname-72b8b471', + '.random-classname-3cfe3cb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '55-5', + classNames: [ + '.random-classname-92d27e35', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '56-2', + classNames: [ + '.random-classname-4821a239', + '.random-classname-9748bcd3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '57-5', + classNames: [ + '.random-classname-8d58a47d', + ], + attributes: [ + { + key: + 'data-random-attr-a849abb7', + selector: + '[data-random-attr-a849abb7]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '58-1', + classNames: [ + '.random-classname-dab04901', + '.random-classname-f24b6db', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '59-1', + classNames: [ + '.random-classname-d01bc8c9', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '60-4', + classNames: [ + '.random-classname-5c5a9e08', + '.random-classname-19ad5c7a', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '61-1', + classNames: [ + '.random-classname-a446ca4e', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '62-3', + classNames: [ + '.random-classname-6dcfbeb0', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '63-9', + classNames: [ + '.random-classname-f47c4b62', + '.random-classname-a3e524e4', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '64-7', + classNames: [ + '.random-classname-1351174a', + ], + attributes: [ + { + key: + 'data-random-attr-ea67210c', + value: + 'random-attr-value-750268fb', + selector: + '[data-random-attr-ea67210c=random-attr-value-750268fb]', + }, + ], + siblings: [ + ':nth-child(7)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '65-5', + classNames: [ + '.random-classname-8290a234', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '66-3', + classNames: [ + '.random-classname-9a75ed86', + ], + attributes: [ + { + key: + 'data-random-attr-9fd61ea8', + value: + 'random-attr-value-a8ed71e7', + selector: + '[data-random-attr-9fd61ea8=random-attr-value-a8ed71e7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '67-3', + classNames: [ + '.random-classname-906d480b', + '.random-classname-a4c0ac75', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '68-3', + classNames: [ + '.random-classname-85140e6f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '69-7', + classNames: [ + '.random-classname-78059479', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '70-1', + classNames: [ + '.random-classname-1d4c9abd', + '.random-classname-fad63bf7', + ], + attributes: [ + { + key: + 'data-random-attr-2b528341', + selector: + '[data-random-attr-2b528341]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '71-3', + classNames: [ + '.random-classname-152c2b1b', + '.random-classname-fbde5205', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '72-7', + classNames: [ + '.random-classname-d6a61a7f', + '.random-classname-e1454b09', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '73-1', + classNames: [ + '.random-classname-1dfdee23', + '.random-classname-922ef24d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '74-1', + classNames: [ + '.random-classname-f990bd1', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '75-7', + classNames: [ + '.random-classname-220b6a8f', + '.random-classname-36ce599', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '76-1', + classNames: [ + '.random-classname-c5256ddd', + '.random-classname-c3d91c17', + ], + attributes: [ + { + key: + 'data-random-attr-cdc3f861', + selector: + '[data-random-attr-cdc3f861]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '77-9', + classNames: [ + '.random-classname-9729fd3b', + ], + attributes: [ + { + key: + 'data-random-attr-daf18925', + selector: + '[data-random-attr-daf18925]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '78-5', + classNames: [ + '.random-classname-c0056429', + '.random-classname-92d60443', + ], + attributes: [ + { + key: + 'data-random-attr-13c90d6d', + selector: + '[data-random-attr-13c90d6d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '79-9', + classNames: [ + '.random-classname-52b53227', + ], + attributes: [ + { + key: + 'data-random-attr-787c48f1', + selector: + '[data-random-attr-787c48f1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '80-1', + classNames: [ + '.random-classname-2191ab5', + '.random-classname-ca13d6af', + ], + attributes: [ + { + key: + 'data-random-attr-7ed7c6b9', + selector: + '[data-random-attr-7ed7c6b9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '81-8', + classNames: [ + '.random-classname-a5f2d0fd', + '.random-classname-8a0f0c37', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '82-3', + classNames: [ + '.random-classname-2683df5b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '83-5', + classNames: [ + '.random-classname-218b5045', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '84-7', + classNames: [ + '.random-classname-bded0d49', + '.random-classname-508c2a63', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '85-7', + classNames: [ + '.random-classname-f5791611', + '.random-classname-32e5d66b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '86-6', + classNames: [ + '.random-classname-fe8129d5', + '.random-classname-ff3552cf', + ], + attributes: [ + { + key: + 'data-random-attr-a18e37d9', + selector: + '[data-random-attr-a18e37d9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '87-6', + classNames: [ + '.random-classname-877cc41d', + '.random-classname-10800c57', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '88-6', + classNames: [ + '.random-classname-bec0989e', + '.random-classname-ffddb180', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '89-8', + classNames: [ + '.random-classname-307456b2', + '.random-classname-8355cb4', + ], + attributes: [ + { + key: + 'data-random-attr-533b0c06', + value: + 'random-attr-value-29cef3ad', + selector: + '[data-random-attr-533b0c06=random-attr-value-29cef3ad]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '90-7', + classNames: [ + '.random-classname-58d77331', + '.random-classname-f4a8d08b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '91-6', + classNames: [ + '.random-classname-777deef', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '92-9', + classNames: [ + '.random-classname-86d838f9', + '.random-classname-d5ff4193', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '93-3', + classNames: [ + '.random-classname-d58b473d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '94-4', + classNames: [ + '.random-classname-5e341c77', + '.random-classname-1cf9b7c1', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '95-8', + classNames: [ + '.random-classname-ca400aff', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '96-4', + classNames: [ + '.random-classname-20530f89', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '97-8', + classNames: [ + '.random-classname-15cabecd', + '.random-classname-ae91ca87', + ], + attributes: [], + siblings: [ + ':nth-child(5)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '98-3', + classNames: [ + '.random-classname-1bac300e', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '99-3', + classNames: [ + '.random-classname-3250ea70', + ], + attributes: [ + { + key: + 'data-random-attr-eb7b2d22', + value: + 'random-attr-value-adfdca19', + selector: + '[data-random-attr-eb7b2d22=random-attr-value-adfdca19]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '100-7', + classNames: [ + '.random-classname-9fe65a5d', + ], + attributes: [ + { + key: + 'data-random-attr-be333c97', + selector: + '[data-random-attr-be333c97]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '101-6', + classNames: [ + '.random-classname-9409e5bb', + '.random-classname-9e5005a5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '102-7', + classNames: [ + '.random-classname-9b432f1f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '103-1', + classNames: [ + '.random-classname-9832fcc3', + ], + attributes: [ + { + key: + 'data-random-attr-e37719ed', + selector: + '[data-random-attr-e37719ed]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '104-3', + classNames: [ + '.random-classname-351972a7', + '.random-classname-8fd8dd71', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '105-5', + classNames: [ + '.random-classname-7808b735', + '.random-classname-7d80272f', + ], + attributes: [ + { + key: + 'data-random-attr-fa46eb39', + selector: + '[data-random-attr-fa46eb39]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '106-7', + classNames: [ + '.random-classname-9a55fd7d', + '.random-classname-bf856cb7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '107-1', + classNames: [ + '.random-classname-5c2407db', + '.random-classname-72d40cc5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '108-3', + classNames: [ + '.random-classname-c7fb633f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '109-5', + classNames: [ + '.random-classname-2b751c9', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '110-7', + classNames: [ + '.random-classname-e6b162e3', + ], + attributes: [ + { + key: + 'data-random-attr-589c050d', + selector: + '[data-random-attr-589c050d]', + }, + ], + siblings: [ + ':nth-child(5)', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '111-1', + classNames: [ + '.random-classname-7e3f274e', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '112-3', + classNames: [ + '.random-classname-7b13f862', + '.random-classname-d83259e4', + ], + attributes: [ + { + key: + 'data-random-attr-3ebb70b6', + value: + 'random-attr-value-1ca2309d', + selector: + '[data-random-attr-3ebb70b6=random-attr-value-1ca2309d]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '113-5', + classNames: [ + '.random-classname-bbe98721', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '114-7', + classNames: [ + '.random-classname-c74239fb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '115-1', + classNames: [ + '.random-classname-8470a75f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '116-3', + classNames: [ + '.random-classname-579ccae9', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '117-5', + classNames: [ + '.random-classname-c8b5d903', + '.random-classname-df01802d', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '118-7', + classNames: [ + '.random-classname-63e5590b', + '.random-classname-1d1fe575', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '119-1', + classNames: [ + '.random-classname-ac6caf6f', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '120-3', + classNames: [ + '.random-classname-5877a1f8', + '.random-classname-62bf35ea', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '121-5', + classNames: [ + '.random-classname-d88702be', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '122-7', + classNames: [ + '.random-classname-68fd40a0', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '123-1', + classNames: [ + '.random-classname-d35b4dd4', + ], + attributes: [ + { + key: + 'data-random-attr-b0eeba26', + value: + 'random-attr-value-846f8b4d', + selector: + '[data-random-attr-b0eeba26=random-attr-value-846f8b4d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '124-3', + classNames: [ + '.random-classname-2edacb07', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '125-5', + classNames: [ + '.random-classname-d768a32b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '126-6', + classNames: [ + '.random-classname-7ac7ae99', + '.random-classname-8596833', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-c177e161', + '.random-classname-18aace3b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '128-2', + classNames: [ + '.random-classname-5c178225', + '.random-classname-50b25f9f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '129-7', + classNames: [ + '.random-classname-1d70f543', + '.random-classname-faae266d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '130-4', + classNames: [ + '.random-classname-cace71f1', + '.random-classname-ee43fd4b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-c6f0fb9', + '.random-classname-75c00653', + ], + attributes: [ + { + key: + 'data-random-attr-dc8229fd', + selector: + '[data-random-attr-dc8229fd]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-5', + classNames: [ + '.random-classname-c22b6681', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-7', + classNames: [ + '.random-classname-1205305b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-4', + classNames: [ + '.random-classname-9c8ed3bf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-5379b63', + '.random-classname-9785518d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-b979ab47', + '.random-classname-4ab7bf11', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-b27de2d5', + '.random-classname-1b8773cf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-4', + classNames: [ + '.random-classname-8008b473', + '.random-classname-bc109d1d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-60164d57', + '.random-classname-75dc7ba1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-7882a065', + '.random-classname-f04857df', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-4', + classNames: [ + '.random-classname-286e4f69', + '.random-classname-6aa45183', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-54bd0cad', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-4', + classNames: [ + '.random-classname-53429c31', + '.random-classname-c022e18b', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-bfa881f9', + '.random-classname-29bb7293', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-7663a03d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-7', + classNames: [ + '.random-classname-80d320c1', + '.random-classname-b3ae249b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-5', + classNames: [ + '.random-classname-53e6ebff', + '.random-classname-30599889', + ], + attributes: [ + { + key: + 'data-random-attr-123f17a3', + selector: + '[data-random-attr-123f17a3]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-d01d57cd', + '.random-classname-d614cb87', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-5', + classNames: [ + '.random-classname-d656b115', + '.random-classname-8dc69c0f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-6', + classNames: [ + '.random-classname-bbca9319', + '.random-classname-796040b3', + ], + attributes: [ + { + key: + 'data-random-attr-3b43335d', + selector: + '[data-random-attr-3b43335d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-6', + classNames: [ + '.random-classname-6b5755e1', + '.random-classname-870cb6bb', + ], + attributes: [ + { + key: + 'data-random-attr-c647fea5', + selector: + '[data-random-attr-c647fea5]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-6', + classNames: [ + '.random-classname-198471a9', + '.random-classname-c48fedc3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-6', + classNames: [ + '.random-classname-1c34f3a7', + '.random-classname-3b5d0671', + ], + attributes: [ + { + key: + 'data-random-attr-75c205cb', + selector: + '[data-random-attr-75c205cb]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-6', + classNames: [ + '.random-classname-510bc82f', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-6', + classNames: [ + '.random-classname-797f1ed3', + '.random-classname-de77567d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-5', + classNames: [ + '.random-classname-a1b11b01', + '.random-classname-aa2758db', + ], + attributes: [ + { + key: + 'data-random-attr-dc2085c5', + selector: + '[data-random-attr-dc2085c5]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-d936dac9', + '.random-classname-4e1ed3e3', + ], + attributes: [ + { + key: + 'data-random-attr-ac779e0d', + selector: + '[data-random-attr-ac779e0d]', + }, + ], + siblings: [ + ':nth-child(9)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-25b737bc', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-4ee688b0', + '.random-classname-ed1fa562', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-2c138ee4', + '.random-classname-25736db6', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-3262cb0c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-5', + classNames: [ + '.random-classname-8a20841e', + '.random-classname-bed22900', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-c4018c34', + '.random-classname-92186786', + ], + attributes: [ + { + key: + 'data-random-attr-2df0a8a8', + value: + 'random-attr-value-ed4273e7', + selector: + '[data-random-attr-2df0a8a8=random-attr-value-ed4273e7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-eb616a0b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-6609506f', + '.random-classname-8da62679', + ], + attributes: [ + { + key: + 'data-random-attr-c94b0b13', + selector: + '[data-random-attr-c94b0b13]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-42fd4cbd', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-17055541', + '.random-classname-e1b0cd1b', + ], + attributes: [ + { + key: + 'data-random-attr-19a54405', + selector: + '[data-random-attr-19a54405]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-5', + classNames: [ + '.random-classname-edf3dc7f', + ], + attributes: [ + { + key: + 'data-random-attr-a5525d09', + selector: + '[data-random-attr-a5525d09]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-2d16d023', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-7', + classNames: [ + '.random-classname-663fcc07', + '.random-classname-f7485dd1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-b8670d95', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-42081933', + '.random-classname-dfdf1fdd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-7', + classNames: [ + '.random-classname-14679e17', + ], + attributes: [ + { + key: + 'data-random-attr-a28fca61', + selector: + '[data-random-attr-a28fca61]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-5', + classNames: [ + '.random-classname-8ee17b25', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-904b7629', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-2f8fe643', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-c7b73f6d', + ], + attributes: [], + siblings: [ + ':nth-child(7)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-5', + classNames: [ + '.random-classname-916fd79c', + ], + attributes: [], + siblings: [ + ':nth-child(4)', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-3cea58b9', + ], + attributes: [ + { + key: + 'data-random-attr-bd5f3753', + selector: + '[data-random-attr-bd5f3753]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-5', + classNames: [ + '.random-classname-ea0e8e37', + '.random-classname-130fcf81', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-58244245', + ], + attributes: [ + { + key: + 'data-random-attr-3128b4bf', + selector: + '[data-random-attr-3128b4bf]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-63670c63', + '.random-classname-8972ea8d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-4a4fac47', + '.random-classname-85a6811', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-5', + classNames: [ + '.random-classname-c31e9bd5', + '.random-classname-501d94cf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-4', + classNames: [ + '.random-classname-f299c9d9', + '.random-classname-59d86573', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-4', + classNames: [ + '.random-classname-915bd7ca', + '.random-classname-98ae358c', + ], + attributes: [ + { + key: + 'data-random-attr-f82fd29e', + value: + 'random-attr-value-76359965', + selector: + '[data-random-attr-f82fd29e=random-attr-value-76359965]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-4', + classNames: [ + '.random-classname-a7c5869', + '.random-classname-a9244283', + ], + attributes: [ + { + key: + 'data-random-attr-49cf25ad', + selector: + '[data-random-attr-49cf25ad]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-4', + classNames: [ + '.random-classname-4811c531', + '.random-classname-c7a0f28b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-5', + classNames: [ + '.random-classname-7eb120ef', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-3f5ccaf9', + '.random-classname-39fba393', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-e959e77', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-81089c1', + '.random-classname-4f4759b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-ddd8085', + ], + attributes: [ + { + key: + 'data-random-attr-18d1ccff', + selector: + '[data-random-attr-18d1ccff]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-e54f88a3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-7', + classNames: [ + '.random-classname-a15bcc87', + ], + attributes: [ + { + key: + 'data-random-attr-a8f2b251', + selector: + '[data-random-attr-a8f2b251]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-4', + classNames: [ + '.random-classname-7ca06a15', + ], + attributes: [ + { + key: + 'data-random-attr-4aedbd0f', + selector: + '[data-random-attr-4aedbd0f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-e27b5c19', + ], + attributes: [ + { + key: + 'data-random-attr-8450f1b3', + selector: + '[data-random-attr-8450f1b3]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-2f85be97', + ], + attributes: [ + { + key: + 'data-random-attr-f9213ee1', + selector: + '[data-random-attr-f9213ee1]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-67e3f7a5', + '.random-classname-c8e5f11f', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-70dec3', + '.random-classname-61894bed', + ], + attributes: [ + { + key: + 'data-random-attr-e91474a7', + selector: + '[data-random-attr-e91474a7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-26c116cb', + '.random-classname-7a612935', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-4', + classNames: [ + '.random-classname-ff3d7d39', + '.random-classname-63604fd3', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-248eeb7', + '.random-classname-a8478401', + ], + attributes: [], + siblings: [ + ':nth-child(1)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-210b6160', + '.random-classname-1bd1f192', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-da91a94', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-2ddfe4e6', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-c2b0ed08', + ], + attributes: [], + siblings: [ + ':nth-child(8)', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-4', + classNames: [ + '.random-classname-2b2c7855', + '.random-classname-b882254f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-1ceb2e59', + '.random-classname-5b1bdf3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-4c11e29d', + '.random-classname-99e72ed7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-85cb5921', + '.random-classname-24cddbfb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-4', + classNames: [ + '.random-classname-11b5695f', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-ad25b22d', + '.random-classname-2612f4e7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-8d5ed9b1', + '.random-classname-36e17b0b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-c1e9f16f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-26cc6f79', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-5', + classNames: [ + '.random-classname-9dcd3c13', + '.random-classname-e8ba5bd', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-7', + classNames: [ + '.random-classname-e5f4be41', + '.random-classname-7f791e1b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-f7febd05', + ], + attributes: [ + { + key: + 'data-random-attr-5680bd7f', + selector: + '[data-random-attr-5680bd7f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-dce94123', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-555cbd4d', + '.random-classname-4968cd07', + ], + attributes: [ + { + key: + 'data-random-attr-e1b606d1', + selector: + '[data-random-attr-e1b606d1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-f7a5c52b', + '.random-classname-5502c695', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-391acd8f', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-623aca33', + '.random-classname-10f1f8dd', + ], + attributes: [ + { + key: + 'data-random-attr-b7d4df17', + selector: + '[data-random-attr-b7d4df17]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-10bb361', + '.random-classname-20b8703b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-34f7425', + '.random-classname-bf99219f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-7', + classNames: [ + '.random-classname-d932d743', + '.random-classname-ae4586d', + ], + attributes: [ + { + key: + 'data-random-attr-aaadb527', + selector: + '[data-random-attr-aaadb527]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-14421f4b', + '.random-classname-ff9dc5b5', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-8d826853', + '.random-classname-d70cdbfd', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-9413d25b', + '.random-classname-58e6bb45', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-d0695bf', + ], + attributes: [], + siblings: [ + ':nth-child(7)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-4967c366', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-ef58cf88', + '.random-classname-d14609fa', + ], + attributes: [ + { + key: + 'data-random-attr-3ed2973c', + value: + 'random-attr-value-1a3e896b', + selector: + '[data-random-attr-3ed2973c=random-attr-value-1a3e896b]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-da7592d9', + '.random-classname-5e2c1673', + ], + attributes: [ + { + key: + 'data-random-attr-88a44f1d', + selector: + '[data-random-attr-88a44f1d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-bd224da1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '132-5', + classNames: [ + '.random-classname-198c9265', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '133-3', + classNames: [ + '.random-classname-ba6e6169', + '.random-classname-c3283383', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-99053ead', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-6f24b567', + '.random-classname-c744ee31', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-1b23038b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-31b3c1ef', + '.random-classname-95f513f9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-3', + classNames: [ + '.random-classname-f180523d', + ], + attributes: [ + { + key: + 'data-random-attr-4aec5f77', + selector: + '[data-random-attr-4aec5f77]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-b33ec69b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-8a08f985', + ], + attributes: [ + { + key: + 'data-random-attr-2900adff', + selector: + '[data-random-attr-2900adff]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-9012aa89', + ], + attributes: [ + { + key: + 'data-random-attr-b5e3f9a3', + selector: + '[data-random-attr-b5e3f9a3]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-2066cd87', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-3', + classNames: [ + '.random-classname-76a6470e', + '.random-classname-29ae1970', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-5579cba4', + '.random-classname-c1c68876', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-3aa718', + ], + attributes: [ + { + key: + 'data-random-attr-3755180a', + value: + 'random-attr-value-4c4f27e1', + selector: + '[data-random-attr-3755180a=random-attr-value-4c4f27e1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-1323f0a5', + '.random-classname-4b9d521f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-7b7683a9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '132-5', + classNames: [ + '.random-classname-b5c864ed', + '.random-classname-abb7f5a7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-7d915871', + '.random-classname-e7c427cb', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-720ec639', + '.random-classname-5dc580d3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-4dd0afb7', + '.random-classname-8641ed01', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-8939fadb', + '.random-classname-41a577c5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-faaf063f', + ], + attributes: [ + { + key: + 'data-random-attr-b1e1ecc9', + selector: + '[data-random-attr-b1e1ecc9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-449ad00d', + '.random-classname-e2202dc7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-389e591', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-b4c33155', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-7d38f759', + '.random-classname-85476ef3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '132-5', + classNames: [ + '.random-classname-97fbb9d', + '.random-classname-99676fd7', + ], + attributes: [ + { + key: + 'data-random-attr-80d24221', + selector: + '[data-random-attr-80d24221]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '133-3', + classNames: [ + '.random-classname-c6558ee5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-cc9ce5e9', + '.random-classname-f77bac03', + ], + attributes: [ + { + key: + 'data-random-attr-ff6dcb2d', + selector: + '[data-random-attr-ff6dcb2d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-d8a775e7', + '.random-classname-7c402b1', + ], + attributes: [ + { + key: + 'data-random-attr-56658c0b', + selector: + '[data-random-attr-56658c0b]', + }, + ], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-3', + classNames: [ + '.random-classname-e85b9d02', + '.random-classname-1ea78784', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-2', + classNames: [ + '.random-classname-397c0f56', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-e48930f8', + ], + attributes: [], + siblings: [ + ':nth-child(10)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-2456f1b', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-2', + classNames: [ + '.random-classname-aeb62cd4', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-a6d00348', + ], + attributes: [ + { + key: + 'data-random-attr-579033ba', + value: + 'random-attr-value-3087afd1', + selector: + '[data-random-attr-579033ba=random-attr-value-3087afd1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-a427f95', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-3', + classNames: [ + '.random-classname-78f17b33', + '.random-classname-6f28d1dd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-18062017', + '.random-classname-6ceb9c61', + ], + attributes: [ + { + key: + 'data-random-attr-c745413b', + selector: + '[data-random-attr-c745413b]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-eef2829f', + '.random-classname-8218829', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-5435716d', + '.random-classname-ae333627', + ], + attributes: [ + { + key: + 'data-random-attr-81cecf1', + selector: + '[data-random-attr-81cecf1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-d411feb5', + '.random-classname-b9525aaf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '132-5', + classNames: [ + '.random-classname-f6299953', + ], + attributes: [ + { + key: + 'data-random-attr-bb0834fd', + selector: + '[data-random-attr-bb0834fd]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-2', + classNames: [ + '.random-classname-51e1037', + ], + attributes: [ + { + key: + 'data-random-attr-f304a181', + selector: + '[data-random-attr-f304a181]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-2', + classNames: [ + '.random-classname-4aa1235b', + ], + attributes: [ + { + key: + 'data-random-attr-5d4d3445', + selector: + '[data-random-attr-5d4d3445]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-4f7b3149', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-2', + classNames: [ + '.random-classname-b47ae47', + ], + attributes: [ + { + key: + 'data-random-attr-fccbba11', + selector: + '[data-random-attr-fccbba11]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-3a4c0dd5', + '.random-classname-4215d6cf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-57355bd9', + '.random-classname-9d03c773', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-2', + classNames: [ + '.random-classname-53711057', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-f2878b65', + '.random-classname-a9fb7adf', + ], + attributes: [], + siblings: [ + ':nth-child(1)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-781a5528', + ], + attributes: [ + { + key: + 'data-random-attr-400cc09a', + value: + 'random-attr-value-60dc1731', + selector: + '[data-random-attr-400cc09a=random-attr-value-60dc1731]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-caa9148b', + '.random-classname-cfb8acf5', + ], + attributes: [ + { + key: + 'data-random-attr-9efa62ef', + selector: + '[data-random-attr-9efa62ef]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-d0080593', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '130-4', + classNames: [ + '.random-classname-ebc4ab3d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '131-3', + classNames: [ + '.random-classname-c0b75bc1', + '.random-classname-ce8d179b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '132-3', + classNames: [ + '.random-classname-94738eff', + '.random-classname-ffc53389', + ], + attributes: [ + { + key: + 'data-random-attr-93fc6aa3', + selector: + '[data-random-attr-93fc6aa3]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '133-3', + classNames: [ + '.random-classname-6335ce87', + '.random-classname-6a960451', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-c69e1eab', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-4b1fdc15', + ], + attributes: [ + { + key: + 'data-random-attr-5a07ff0f', + selector: + '[data-random-attr-5a07ff0f]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-4c31be5d', + '.random-classname-73e84097', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-ba2d29bb', + '.random-classname-5807e9a5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-2b98b31f', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-e6bec0c3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-d82b7ded', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-741f76a7', + '.random-classname-34418171', + ], + attributes: [ + { + key: + 'data-random-attr-c8cb38cb', + selector: + '[data-random-attr-c8cb38cb]', + }, + ], + siblings: [ + ':nth-child(9)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-ecd15ec2', + '.random-classname-4056f44', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-3', + classNames: [ + '.random-classname-d497b4b8', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-34a896aa', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-cec40f7e', + '.random-classname-f1dfab60', + ], + attributes: [ + { + key: + 'data-random-attr-728ecb92', + value: + 'random-attr-value-d40d75c9', + selector: + '[data-random-attr-728ecb92=random-attr-value-d40d75c9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-2', + classNames: [ + '.random-classname-a8e2690d', + '.random-classname-48602ec7', + ], + attributes: [ + { + key: + 'data-random-attr-bc268e91', + selector: + '[data-random-attr-bc268e91]', + }, + ], + siblings: [ + ':nth-child(11)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-e7faac62', + '.random-classname-52f2de4', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-5f9b984a', + '.random-classname-45f24a0c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-cd7f5b1e', + '.random-classname-55b21800', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-4080eb34', + '.random-classname-50521e86', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-5b4bb15c', + '.random-classname-d0254eee', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-6ad73c84', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '133-3', + classNames: [ + '.random-classname-a4e1b5f8', + ], + attributes: [], + siblings: [ + ':nth-child(2)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-7a15c01b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-31667f7f', + ], + attributes: [ + { + key: + 'data-random-attr-693f809', + selector: + '[data-random-attr-693f809]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-76d9ef4d', + '.random-classname-5306cf07', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-eff2e72b', + '.random-classname-68263895', + ], + attributes: [ + { + key: + 'data-random-attr-88790f8f', + selector: + '[data-random-attr-88790f8f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-962c2c33', + '.random-classname-8a83aadd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-44fb6117', + ], + attributes: [ + { + key: + 'data-random-attr-762f8561', + selector: + '[data-random-attr-762f8561]', + }, + ], + siblings: [ + ':nth-child(7)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '134-3', + classNames: [ + '.random-classname-79f5dc72', + '.random-classname-9cc7a874', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-898cca5a', + '.random-classname-7aa169c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-6cd9262e', + '.random-classname-a872e590', + ], + attributes: [ + { + key: + 'data-random-attr-ed297542', + value: + 'random-attr-value-3fb433b9', + selector: + '[data-random-attr-ed297542=random-attr-value-3fb433b9]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '135-3', + classNames: [ + '.random-classname-754ca53', + '.random-classname-4e278dfd', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '132-3', + classNames: [ + '.random-classname-a2150a81', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-f557ad45', + ], + attributes: [ + { + key: + 'data-random-attr-da8e57bf', + selector: + '[data-random-attr-da8e57bf]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-170d5f63', + '.random-classname-1013b58d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-539a6311', + '.random-classname-268dab6b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '132-3', + classNames: [ + '.random-classname-c0d8c6d5', + '.random-classname-1f77f7cf', + ], + attributes: [ + { + key: + 'data-random-attr-f8d924d9', + selector: + '[data-random-attr-f8d924d9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-99c8011d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-c9f81fa1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-91268465', + '.random-classname-fa69dbdf', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '131-3', + classNames: [ + '.random-classname-c9bc1583', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-85dd70ad', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-a4d74031', + '.random-classname-e633258b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-53f9e5f5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-7d1a5f9', + '.random-classname-75d43693', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '131-3', + classNames: [ + '.random-classname-792d043d', + '.random-classname-dbe5e177', + ], + attributes: [ + { + key: + 'data-random-attr-1220c4c1', + selector: + '[data-random-attr-1220c4c1]', + }, + ], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-351de720', + '.random-classname-861d3d52', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-1a971c54', + ], + attributes: [], + siblings: [ + ':nth-child(6)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-79c8cf87', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-aec8afab', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '130-4', + classNames: [ + '.random-classname-cbfb200f', + '.random-classname-8be5b719', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-7c3b04b3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-9c1e975d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-cd3f8197', + '.random-classname-82d6f9e1', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-c93ffabb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-78d8141f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '130-4', + classNames: [ + '.random-classname-e4f895a9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-58b296ed', + '.random-classname-524af7a7', + ], + attributes: [ + { + key: + 'data-random-attr-b955aa71', + selector: + '[data-random-attr-b955aa71]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-79b3d435', + ], + attributes: [ + { + key: + 'data-random-attr-6de24c2f', + selector: + '[data-random-attr-6de24c2f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-c41be2d3', + '.random-classname-5664ba7d', + ], + attributes: [ + { + key: + 'data-random-attr-892c31b7', + selector: + '[data-random-attr-892c31b7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-2c5c9cdb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-d5ba69c5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '129-7', + classNames: [ + '.random-classname-da1cfec9', + '.random-classname-7afc97e3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-dd4e020d', + '.random-classname-6642fc7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-d5273791', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-44e3f3eb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-ee42884f', + '.random-classname-64808959', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-dbfed0f3', + '.random-classname-9fc76d9d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-82b3f1d7', + '.random-classname-730c1421', + ], + attributes: [ + { + key: + 'data-random-attr-efbd4efb', + selector: + '[data-random-attr-efbd4efb]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '129-7', + classNames: [ + '.random-classname-6f1a8c5f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-3d938e03', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-b3ba54b1', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-5179ae0b', + '.random-classname-da980275', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-eb974a79', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-140eb0bd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-70dec1f7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '129-7', + classNames: [ + '.random-classname-f6ea111b', + '.random-classname-90e32805', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-cc1c8109', + '.random-classname-4d789423', + ], + attributes: [ + { + key: + 'data-random-attr-4dce884d', + selector: + '[data-random-attr-4dce884d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-997bd007', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-e51f782b', + '.random-classname-feadf195', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-268e308f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-c9eadd33', + ], + attributes: [ + { + key: + 'data-random-attr-f30283dd', + selector: + '[data-random-attr-f30283dd]', + }, + ], + siblings: [ + ':nth-child(7)', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-9e28ff5e', + '.random-classname-bab68640', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '129-7', + classNames: [ + '.random-classname-d3bf1d74', + ], + attributes: [ + { + key: + 'data-random-attr-9c704ac6', + value: + 'random-attr-value-3943a36d', + selector: + '[data-random-attr-9c704ac6=random-attr-value-3943a36d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-ee8a3827', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-1ce670b5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-9bbf7cb9', + '.random-classname-d103fb53', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-206ae6fd', + '.random-classname-5b3d9237', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-90897381', + ], + attributes: [ + { + key: + 'data-random-attr-f2c7c55b', + selector: + '[data-random-attr-f2c7c55b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-b1062645', + '.random-classname-ec3838bf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '129-7', + classNames: [ + '.random-classname-ff9a4349', + '.random-classname-bb4cd063', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-2914e8d', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-cbbb3c6b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-551e18cf', + '.random-classname-4f60edd9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-240fda1d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-19819257', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-4288b77b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '129-7', + classNames: [ + '.random-classname-c41c3cdf', + '.random-classname-3d9c7c69', + ], + attributes: [ + { + key: + 'data-random-attr-d64c0683', + selector: + '[data-random-attr-d64c0683]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-437f89ad', + '.random-classname-54d43867', + ], + attributes: [ + { + key: + 'data-random-attr-23366931', + selector: + '[data-random-attr-23366931]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-7dc1368b', + '.random-classname-26df1ef5', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-4315eef9', + '.random-classname-18246793', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-5088a277', + '.random-classname-c6ee2dc1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-ac636485', + '.random-classname-bd2550ff', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-39d654cd', + '.random-classname-741fd087', + ], + attributes: [ + { + key: + 'data-random-attr-1dc95651', + selector: + '[data-random-attr-1dc95651]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '128-2', + classNames: [ + '.random-classname-74f740ab', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-9a32410f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-b6268019', + '.random-classname-a13bb5b3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-b5ac297', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-8630e2e1', + '.random-classname-4756cbbb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-eebbdba5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-48f9ea9', + '.random-classname-cb1ca2c3', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-b1c89dda', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '126-6', + classNames: [ + '.random-classname-db2ab61c', + '.random-classname-aa1471ae', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-67b9bd10', + '.random-classname-4c5fb8c2', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-d05abeb8', + '.random-classname-b00230aa', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-507a497e', + '.random-classname-c003f560', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-5a00ee94', + ], + attributes: [ + { + key: + 'data-random-attr-840ad8e6', + value: + 'random-attr-value-71dd9b0d', + selector: + '[data-random-attr-840ad8e6=random-attr-value-71dd9b0d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-2c2c30c7', + '.random-classname-de8be091', + ], + attributes: [ + { + key: + 'data-random-attr-9d1384eb', + selector: + '[data-random-attr-9d1384eb]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-2d5f5c55', + ], + attributes: [ + { + key: + 'data-random-attr-560aa94f', + selector: + '[data-random-attr-560aa94f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-b7a5259', + '.random-classname-d32081f3', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-8a3efd21', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-9ca879e5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '126-6', + classNames: [ + '.random-classname-7b6eed5f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-35e57f03', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-6afcf8e7', + '.random-classname-54b7db1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-6acf3b75', + '.random-classname-c814756f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-604d9379', + '.random-classname-dcfe0013', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-bce382f7', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-3607b0be', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-6d9de0d2', + '.random-classname-6d450bd4', + ], + attributes: [], + siblings: [ + ':nth-child(6)', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-1754aad1', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-28e7518f', + '.random-classname-199c6499', + ], + attributes: [ + { + key: + 'data-random-attr-242d8e33', + selector: + '[data-random-attr-242d8e33]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '126-6', + classNames: [ + '.random-classname-4531e317', + '.random-classname-a0e35761', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-503b43b', + '.random-classname-a56f5825', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-ce10a329', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-aae69b43', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-4b5bb927', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-b146a9b5', + '.random-classname-168b3daf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-6aaec5b9', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-63372c53', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-c1d23ffd', + '.random-classname-84735337', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-4e61dc81', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '126-6', + classNames: [ + '.random-classname-20589f45', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-852619bf', + '.random-classname-a97fcc49', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-1d32e78d', + '.random-classname-2af9b147', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-9aeccd6b', + '.random-classname-33de38d5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-eaccb6d9', + '.random-classname-58a2da73', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-6f7bb31d', + '.random-classname-1dafd357', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-1c5df1a1', + '.random-classname-1662887b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-c51e8569', + '.random-classname-fe5ff783', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-ef96b967', + '.random-classname-6bf99231', + ], + attributes: [ + { + key: + 'data-random-attr-a153478b', + selector: + '[data-random-attr-a153478b]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-953e37f9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '126-6', + classNames: [ + '.random-classname-8d69b63d', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-2ff3812c', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-27403120', + '.random-classname-e1581752', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-b2ab86a6', + '.random-classname-3d3fb4c8', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-1f16613a', + '.random-classname-52b7307c', + ], + attributes: [ + { + key: + 'data-random-attr-76cbbb0e', + value: + 'random-attr-value-b5ad0715', + selector: + '[data-random-attr-76cbbb0e=random-attr-value-b5ad0715]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-c94b4919', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-74c066b3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-3e3a0397', + ], + attributes: [ + { + key: + 'data-random-attr-8eeecbe1', + selector: + '[data-random-attr-8eeecbe1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-608bd4a5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-9b22d61f', + '.random-classname-d60aa7a9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '125-5', + classNames: [ + '.random-classname-b42cc8ed', + '.random-classname-8fedf9a7', + ], + attributes: [ + { + key: + 'data-random-attr-6ea9fc71', + selector: + '[data-random-attr-6ea9fc71]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '126-1', + classNames: [ + '.random-classname-cbf86bcb', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-71e58e2f', + '.random-classname-4a3bea39', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-5f97b3b7', + ], + attributes: [ + { + key: + 'data-random-attr-a8139101', + selector: + '[data-random-attr-a8139101]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-185f5bc5', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-3ed795e6', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-bb0dc47a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-a6b2b5bc', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-31b9b24e', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-da0ae6b0', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-69e9b362', + '.random-classname-3a7ecce4', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '125-5', + classNames: [ + '.random-classname-13711c58', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '126-1', + classNames: [ + '.random-classname-de6b7f4a', + '.random-classname-3c35c90c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-69b2321e', + '.random-classname-c0860700', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-124ec832', + '.random-classname-f6344a34', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-342046a8', + '.random-classname-d6c32e1a', + ], + attributes: [ + { + key: + 'data-random-attr-9e6af05c', + value: + 'random-attr-value-5c9dd00b', + selector: + '[data-random-attr-9e6af05c=random-attr-value-5c9dd00b]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-33e7dc79', + '.random-classname-f8143113', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-bf6f62bd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-43ac43f7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-3f9eb31b', + ], + attributes: [ + { + key: + 'data-random-attr-ea5a1a05', + selector: + '[data-random-attr-ea5a1a05]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-823d227f', + '.random-classname-2ed99309', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-5823ba4d', + '.random-classname-f9b1d207', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '125-5', + classNames: [ + '.random-classname-15a96395', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '126-1', + classNames: [ + '.random-classname-42243a24', + '.random-classname-e9ff7af6', + ], + attributes: [ + { + key: + 'data-random-attr-90f8bd98', + value: + 'random-attr-value-38732417', + selector: + '[data-random-attr-90f8bd98=random-attr-value-38732417]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-67a0853b', + '.random-classname-d2115125', + ], + attributes: [], + siblings: [ + ':nth-child(9)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-3b6a0774', + '.random-classname-a85cc4c6', + ], + attributes: [ + { + key: + 'data-random-attr-989537e8', + value: + 'random-attr-value-e5f13a27', + selector: + '[data-random-attr-989537e8=random-attr-value-e5f13a27]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-fdfd90f1', + ], + attributes: [ + { + key: + 'data-random-attr-6f83744b', + selector: + '[data-random-attr-6f83744b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-504ae2b5', + '.random-classname-cd0deaf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-cdee5d53', + '.random-classname-c25d98fd', + ], + attributes: [ + { + key: + 'data-random-attr-6c6d1437', + selector: + '[data-random-attr-6c6d1437]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-fefe675b', + '.random-classname-d34f1845', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-b557fabf', + '.random-classname-9f495549', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-ca67b247', + '.random-classname-8a5e5e11', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-a4225e6b', + '.random-classname-4056f1d5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '125-5', + classNames: [ + '.random-classname-9365acf', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '126-1', + classNames: [ + '.random-classname-5b1c7fd9', + '.random-classname-218a8b73', + ], + attributes: [ + { + key: + 'data-random-attr-c0b8c1d', + selector: + '[data-random-attr-c0b8c1d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-27a6daa1', + ], + attributes: [ + { + key: + 'data-random-attr-b540597b', + selector: + '[data-random-attr-b540597b]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-34cfedf', + '.random-classname-ea848e69', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-1d2fbbad', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-f20bb31', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-60e9588b', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-dabce6ef', + '.random-classname-8e4a80f9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-343e0f3d', + '.random-classname-e21a2477', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-cc2c5c3e', + '.random-classname-c14f5620', + ], + attributes: [], + siblings: [ + ':nth-child(14)', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-d3862ea3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '124-3', + classNames: [ + '.random-classname-fc4f86cd', + '.random-classname-5419d287', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '125-1', + classNames: [ + '.random-classname-db6062ab', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '126-1', + classNames: [ + '.random-classname-afcec015', + '.random-classname-8b6c830f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-55541219', + ], + attributes: [ + { + key: + 'data-random-attr-6c917b3', + selector: + '[data-random-attr-6c917b3]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-75dd4497', + '.random-classname-2d10b4e1', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-902e371f', + '.random-classname-e969b0a9', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-f657aa7', + '.random-classname-beea2571', + ], + attributes: [ + { + key: + 'data-random-attr-cd0f7ccb', + selector: + '[data-random-attr-cd0f7ccb]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-c0ca7f35', + '.random-classname-e94d2f2f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-93813339', + '.random-classname-697b75d3', + ], + attributes: [ + { + key: + 'data-random-attr-350c57d', + selector: + '[data-random-attr-350c57d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-2b01fa01', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-327d4c5', + '.random-classname-eb2a6b3f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-e3a399c9', + '.random-classname-c8ceae3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '124-3', + classNames: [ + '.random-classname-ef0832c7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '125-1', + classNames: [ + '.random-classname-737ea6eb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '126-1', + classNames: [ + '.random-classname-aa50ce55', + '.random-classname-8666eb4f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-9019e459', + '.random-classname-a8efe3f3', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-c4d0cf21', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-9fbe6be5', + '.random-classname-57e3af5f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-56d12e9', + '.random-classname-21156103', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-a809fae7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-6f99cfb1', + ], + attributes: [ + { + key: + 'data-random-attr-9035e10b', + selector: + '[data-random-attr-9035e10b]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-b8c1b76f', + '.random-classname-f6662579', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-5dd5bbbd', + ], + attributes: [], + siblings: [ + ':nth-child(9)', + ], + pseudos: [ + '::after', + ], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-7427eabe', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '122-7', + classNames: [ + '.random-classname-1c34bad2', + ], + attributes: [ + { + key: + 'data-random-attr-9532f5d4', + value: + 'random-attr-value-1fabe723', + selector: + '[data-random-attr-9532f5d4=random-attr-value-1fabe723]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '123-1', + classNames: [ + '.random-classname-ab84534d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '124-1', + classNames: [ + '.random-classname-4c7bfcd1', + '.random-classname-68bd2b2b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '125-1', + classNames: [ + '.random-classname-9a65938f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '126-1', + classNames: [ + '.random-classname-d5adf699', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '127-1', + classNames: [ + '.random-classname-9b570edd', + '.random-classname-38786517', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '128-1', + classNames: [ + '.random-classname-1272961', + ], + attributes: [ + { + key: + 'data-random-attr-e141563b', + selector: + '[data-random-attr-e141563b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '129-1', + classNames: [ + '.random-classname-a0574a25', + '.random-classname-aad679f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '130-1', + classNames: [ + '.random-classname-98ceb529', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [ + { + value: { + name: + '131-1', + classNames: [ + '.random-classname-cee6ee6d', + '.random-classname-ce4abb27', + ], + attributes: [ + { + key: + 'data-random-attr-c36fb9f1', + selector: + '[data-random-attr-c36fb9f1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '132-1', + classNames: [ + '.random-classname-c69c854b', + ], + attributes: [ + { + key: + 'data-random-attr-89f31bb5', + selector: + '[data-random-attr-89f31bb5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '133-1', + classNames: [ + '.random-classname-95a7faf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '134-1', + classNames: [ + '.random-classname-21298e53', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '135-1', + classNames: [ + '.random-classname-b20cf1fd', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '122-7', + classNames: [ + '.random-classname-783eae81', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [ + { + value: { + name: + '123-1', + classNames: [ + '.random-classname-8ccddbbf', + ], + attributes: [ + { + key: + 'data-random-attr-70f6de49', + selector: + '[data-random-attr-70f6de49]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '124-1', + classNames: [ + '.random-classname-c1232363', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '125-1', + classNames: [ + '.random-classname-ae2198d', + '.random-classname-f999b347', + ], + attributes: [ + { + key: + 'data-random-attr-e2bd0711', + selector: + '[data-random-attr-e2bd0711]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: + '126-1', + classNames: [ + '.random-classname-f75bef6b', + '.random-classname-9973aad5', + ], + attributes: [], + siblings: [ + ':nth-child(5)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '122-7', + classNames: [ + '.random-classname-3040d736', + '.random-classname-5d45a3d8', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '122-7', + classNames: [ + '.random-classname-5f5b088c', + '.random-classname-641b1d9e', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '122-7', + classNames: [ + '.random-classname-798179b4', + ], + attributes: [ + { + key: + 'data-random-attr-d0e63106', + value: + 'random-attr-value-593dd4ad', + selector: + '[data-random-attr-d0e63106=random-attr-value-593dd4ad]', + }, + ], + siblings: [ + ':nth-child(7)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '122-7', + classNames: [ + '.random-classname-49bbb16e', + '.random-classname-1a0bd2d0', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '121-5', + classNames: [ + '.random-classname-b356b04', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '121-5', + classNames: [ + '.random-classname-f0af8c78', + '.random-classname-c3ef046a', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '121-5', + classNames: [ + '.random-classname-2270793e', + '.random-classname-86b27b20', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '121-5', + classNames: [ + '.random-classname-2662f152', + '.random-classname-554af054', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '120-3', + classNames: [ + '.random-classname-24fb3ec8', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '120-3', + classNames: [ + '.random-classname-af7c7b3a', + '.random-classname-7765a7c', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '118-7', + classNames: [ + '.random-classname-d1447770', + ], + attributes: [], + siblings: [ + ':nth-child(4)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '118-7', + classNames: [ + '.random-classname-6755c8b3', + '.random-classname-4f39fb5d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '118-7', + classNames: [ + '.random-classname-c2448597', + '.random-classname-f0969de1', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '118-7', + classNames: [ + '.random-classname-fbb33ebb', + '.random-classname-6117c6a5', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '118-7', + classNames: [ + '.random-classname-960775c3', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '118-7', + classNames: [ + '.random-classname-e4a0fba7', + '.random-classname-1d8e4e71', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '117-5', + classNames: [ + '.random-classname-ddc4b835', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '117-5', + classNames: [ + '.random-classname-6ef8d02f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '117-5', + classNames: [ + '.random-classname-16f8a6d3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '117-5', + classNames: [ + '.random-classname-40921e7d', + ], + attributes: [ + { + key: + 'data-random-attr-511335b7', + selector: + '[data-random-attr-511335b7]', + }, + ], + siblings: [ + ':nth-child(13)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '116-3', + classNames: [ + '.random-classname-e8306460', + '.random-classname-8854ec92', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '116-3', + classNames: [ + '.random-classname-aa54cd94', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '114-7', + classNames: [ + '.random-classname-9765008', + '.random-classname-44edde7a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '114-7', + classNames: [ + '.random-classname-e4fbdfbc', + '.random-classname-cb1e6c4e', + ], + attributes: [], + siblings: [ + ':nth-child(12)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '114-7', + classNames: [ + '.random-classname-8dbfad59', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '114-7', + classNames: [ + '.random-classname-fa06d19d', + '.random-classname-be7cf5d7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '114-7', + classNames: [ + '.random-classname-133492fb', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '114-7', + classNames: [ + '.random-classname-65a91be9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '113-5', + classNames: [ + '.random-classname-3a12612d', + '.random-classname-85367be7', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '113-5', + classNames: [ + '.random-classname-f7d1f20b', + '.random-classname-434ce675', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '113-5', + classNames: [ + '.random-classname-37c86e79', + '.random-classname-2bcc9313', + ], + attributes: [ + { + key: + 'data-random-attr-976014bd', + selector: + '[data-random-attr-976014bd]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '113-5', + classNames: [ + '.random-classname-4189c5f7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '112-3', + classNames: [ + '.random-classname-5c63551b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '112-3', + classNames: [ + '.random-classname-cdcae47f', + '.random-classname-7126a509', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '110-7', + classNames: [ + '.random-classname-c61a5823', + '.random-classname-f308ec4d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '110-7', + classNames: [ + '.random-classname-c5a5a5d1', + '.random-classname-55f9bc2b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '110-7', + classNames: [ + '.random-classname-298ab48f', + '.random-classname-e50cbf99', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '110-7', + classNames: [ + '.random-classname-d865e7dd', + '.random-classname-5541a617', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '110-7', + classNames: [ + '.random-classname-81e6273b', + '.random-classname-a0414325', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '110-7', + classNames: [ + '.random-classname-5d03be29', + '.random-classname-4f176e43', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '109-5', + classNames: [ + '.random-classname-14683c27', + '.random-classname-df45e2f1', + ], + attributes: [ + { + key: + 'data-random-attr-15b9964b', + selector: + '[data-random-attr-15b9964b]', + }, + ], + siblings: [ + ':nth-child(11)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '109-5', + classNames: [ + '.random-classname-b955d2c4', + '.random-classname-2f96bc96', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '109-5', + classNames: [ + '.random-classname-7acd8aec', + ], + attributes: [ + { + key: + 'data-random-attr-ce8daefe', + value: + 'random-attr-value-44280a45', + selector: + '[data-random-attr-ce8daefe=random-attr-value-44280a45]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '109-5', + classNames: [ + '.random-classname-ae886749', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '108-3', + classNames: [ + '.random-classname-ab729463', + '.random-classname-fdefb28d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '108-3', + classNames: [ + '.random-classname-237fb011', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '106-7', + classNames: [ + '.random-classname-a499806b', + ], + attributes: [ + { + key: + 'data-random-attr-cf3463d5', + selector: + '[data-random-attr-cf3463d5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '106-7', + classNames: [ + '.random-classname-de5e9ccf', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '106-7', + classNames: [ + '.random-classname-62e5ed73', + '.random-classname-78973e1d', + ], + attributes: [ + { + key: + 'data-random-attr-6ed29657', + selector: + '[data-random-attr-6ed29657]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '106-7', + classNames: [ + '.random-classname-9407fb7b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '106-7', + classNames: [ + '.random-classname-eedd6165', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '106-7', + classNames: [ + '.random-classname-e78dc0df', + ], + attributes: [ + { + key: + 'data-random-attr-4efca069', + selector: + '[data-random-attr-4efca069]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '105-5', + classNames: [ + '.random-classname-bbb3ca83', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '105-5', + classNames: [ + '.random-classname-a49b0d31', + '.random-classname-f4217a8b', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '105-5', + classNames: [ + '.random-classname-f63628ef', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '105-5', + classNames: [ + '.random-classname-b50f12f9', + '.random-classname-be8d2b93', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '104-3', + classNames: [ + '.random-classname-bc0bd1c1', + '.random-classname-e3b6fd9b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '104-3', + classNames: [ + '.random-classname-15b8d4ff', + '.random-classname-8ba86989', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '102-7', + classNames: [ + '.random-classname-8323d487', + '.random-classname-58dffa51', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '102-7', + classNames: [ + '.random-classname-f658dc70', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '102-7', + classNames: [ + '.random-classname-1fb1ef22', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '102-7', + classNames: [ + '.random-classname-bd3dca18', + '.random-classname-c6fb330a', + ], + attributes: [ + { + key: + 'data-random-attr-f9ac72cc', + value: + 'random-attr-value-d5da0fbb', + selector: + '[data-random-attr-f9ac72cc=random-attr-value-d5da0fbb]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '102-7', + classNames: [ + '.random-classname-9210f91f', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '102-7', + classNames: [ + '.random-classname-8e0866c3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '101-6', + classNames: [ + '.random-classname-f7213ed', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '101-6', + classNames: [ + '.random-classname-1a967771', + ], + attributes: [ + { + key: + 'data-random-attr-2f499ecb', + selector: + '[data-random-attr-2f499ecb]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '101-6', + classNames: [ + '.random-classname-ed62f135', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '101-6', + classNames: [ + '.random-classname-4ee9ad44', + '.random-classname-5cb7fb16', + ], + attributes: [ + { + key: + 'data-random-attr-81d0d2b8', + value: + 'random-attr-value-9bf6f6b7', + selector: + '[data-random-attr-81d0d2b8=random-attr-value-9bf6f6b7]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '101-6', + classNames: [ + '.random-classname-3ba4c6c5', + '.random-classname-c9e2d3f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '100-7', + classNames: [ + '.random-classname-2c6abc9', + '.random-classname-252bcce3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '100-7', + classNames: [ + '.random-classname-10f434c7', + ], + attributes: [ + { + key: + 'data-random-attr-a8068491', + selector: + '[data-random-attr-a8068491]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '100-7', + classNames: [ + '.random-classname-91f9c8eb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '100-7', + classNames: [ + '.random-classname-79d24055', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '100-7', + classNames: [ + '.random-classname-f7d32d4f', + '.random-classname-c8497659', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '100-7', + classNames: [ + '.random-classname-c8cf45f3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '99-3', + classNames: [ + '.random-classname-b5936d7', + '.random-classname-24f2a121', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '99-3', + classNames: [ + '.random-classname-d9645de5', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '98-3', + classNames: [ + '.random-classname-cbc924e9', + ], + attributes: [ + { + key: + 'data-random-attr-1a554303', + selector: + '[data-random-attr-1a554303]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '98-3', + classNames: [ + '.random-classname-4c26fce7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '97-8', + classNames: [ + '.random-classname-a372030b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '97-8', + classNames: [ + '.random-classname-f27ef96f', + '.random-classname-880eb779', + ], + attributes: [ + { + key: + 'data-random-attr-646ec413', + selector: + '[data-random-attr-646ec413]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '97-8', + classNames: [ + '.random-classname-d89e86f7', + '.random-classname-f7800641', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '97-8', + classNames: [ + '.random-classname-e24ba61b', + '.random-classname-9dda8505', + ], + attributes: [], + siblings: [ + ':nth-child(1)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '97-8', + classNames: [ + '.random-classname-f3a41c26', + '.random-classname-ab146648', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '97-8', + classNames: [ + '.random-classname-d9da39fc', + '.random-classname-d857008e', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '97-8', + classNames: [ + '.random-classname-f6dec5a2', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '96-4', + classNames: [ + '.random-classname-18d6d924', + ], + attributes: [ + { + key: + 'data-random-attr-9f0e71f6', + value: + 'random-attr-value-3298c0dd', + selector: + '[data-random-attr-9f0e71f6=random-attr-value-3298c0dd]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '96-4', + classNames: [ + '.random-classname-16fafb61', + ], + attributes: [ + { + key: + 'data-random-attr-598ef83b', + selector: + '[data-random-attr-598ef83b]', + }, + ], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '96-4', + classNames: [ + '.random-classname-49516a72', + '.random-classname-77406674', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '95-8', + classNames: [ + '.random-classname-d3ba06e8', + '.random-classname-425a185a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '95-8', + classNames: [ + '.random-classname-df3a949c', + '.random-classname-3884542e', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '95-8', + classNames: [ + '.random-classname-7da08342', + '.random-classname-89e287c4', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '95-8', + classNames: [ + '.random-classname-5863996', + ], + attributes: [ + { + key: + 'data-random-attr-3c6e1538', + value: + 'random-attr-value-3cf25737', + selector: + '[data-random-attr-3c6e1538=random-attr-value-3cf25737]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '95-8', + classNames: [ + '.random-classname-4ee5a5b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '95-8', + classNames: [ + '.random-classname-e7fdf049', + ], + attributes: [ + { + key: + 'data-random-attr-cf460563', + selector: + '[data-random-attr-cf460563]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '95-8', + classNames: [ + '.random-classname-59214b8d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '94-4', + classNames: [ + '.random-classname-dca65911', + '.random-classname-bbdb116b', + ], + attributes: [ + { + key: + 'data-random-attr-71991cd5', + selector: + '[data-random-attr-71991cd5]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '94-4', + classNames: [ + '.random-classname-bd58bdcf', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '94-4', + classNames: [ + '.random-classname-fb599e73', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '93-3', + classNames: [ + '.random-classname-6893171d', + ], + attributes: [ + { + key: + 'data-random-attr-d610d757', + selector: + '[data-random-attr-d610d757]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '93-3', + classNames: [ + '.random-classname-ff545a65', + '.random-classname-ff9421df', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '92-9', + classNames: [ + '.random-classname-3fc606ad', + '.random-classname-8c48bd67', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '92-9', + classNames: [ + '.random-classname-b6ee3631', + '.random-classname-e7c38b8b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '92-9', + classNames: [ + '.random-classname-90f53bf5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '92-9', + classNames: [ + '.random-classname-2c75bf9', + '.random-classname-3f715c93', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '92-9', + classNames: [ + '.random-classname-5b931a3d', + '.random-classname-d1326777', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '92-9', + classNames: [ + '.random-classname-ba214e9b', + '.random-classname-3e74c185', + ], + attributes: [ + { + key: + 'data-random-attr-c007b5ff', + selector: + '[data-random-attr-c007b5ff]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '92-9', + classNames: [ + '.random-classname-611781a3', + '.random-classname-d31351cd', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '92-9', + classNames: [ + '.random-classname-869fa351', + '.random-classname-861c15ab', + ], + attributes: [ + { + key: + 'data-random-attr-20beb15', + selector: + '[data-random-attr-20beb15]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '91-6', + classNames: [ + '.random-classname-6ec66d19', + '.random-classname-d3fb2ab3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '91-6', + classNames: [ + '.random-classname-d95f0797', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '91-6', + classNames: [ + '.random-classname-6f04e0bb', + '.random-classname-4833b8a5', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '91-6', + classNames: [ + '.random-classname-4edecba9', + '.random-classname-258d57c3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '91-6', + classNames: [ + '.random-classname-94d12ced', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '90-7', + classNames: [ + '.random-classname-d063fda7', + ], + attributes: [ + { + key: + 'data-random-attr-4602a071', + selector: + '[data-random-attr-4602a071]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '90-7', + classNames: [ + '.random-classname-b06cafcb', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '90-7', + classNames: [ + '.random-classname-d0a90e39', + '.random-classname-37f08d3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '90-7', + classNames: [ + '.random-classname-dd9eb7b7', + '.random-classname-40253501', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '90-7', + classNames: [ + '.random-classname-a9593fc5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '90-7', + classNames: [ + '.random-classname-cc3e0e3f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '89-8', + classNames: [ + '.random-classname-4bc13de3', + ], + attributes: [ + { + key: + 'data-random-attr-aac7980d', + selector: + '[data-random-attr-aac7980d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '89-8', + classNames: [ + '.random-classname-d35f2d91', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '89-8', + classNames: [ + '.random-classname-e888f955', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '89-8', + classNames: [ + '.random-classname-30ef4e4f', + '.random-classname-cfb73f59', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '89-8', + classNames: [ + '.random-classname-bdfe839d', + '.random-classname-10f977d7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '89-8', + classNames: [ + '.random-classname-970834fb', + ], + attributes: [], + siblings: [ + ':nth-child(11)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '89-8', + classNames: [ + '.random-classname-9de61e34', + '.random-classname-7e74c986', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '88-6', + classNames: [ + '.random-classname-a34d621a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '88-6', + classNames: [ + '.random-classname-b057445c', + '.random-classname-459d59ee', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '88-6', + classNames: [ + '.random-classname-f4bd0502', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '88-6', + classNames: [ + '.random-classname-497ff756', + '.random-classname-9e7d58f8', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '88-6', + classNames: [ + '.random-classname-50787fac', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '87-6', + classNames: [ + '.random-classname-5eb9d7a0', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '87-6', + classNames: [ + '.random-classname-8e6dd4d4', + '.random-classname-60add926', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '87-6', + classNames: [ + '.random-classname-7e6e2b48', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '87-6', + classNames: [ + '.random-classname-45589bba', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '87-6', + classNames: [ + '.random-classname-ad75cefc', + '.random-classname-b985d8e', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '86-6', + classNames: [ + '.random-classname-eecf72a2', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '86-6', + classNames: [ + '.random-classname-ff7b6ef6', + ], + attributes: [ + { + key: + 'data-random-attr-ab7cd198', + value: + 'random-attr-value-25202817', + selector: + '[data-random-attr-ab7cd198=random-attr-value-25202817]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '86-6', + classNames: [ + '.random-classname-783bc93b', + '.random-classname-75013525', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '86-6', + classNames: [ + '.random-classname-7319d029', + '.random-classname-c2215043', + ], + attributes: [], + siblings: [ + ':nth-child(5)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '86-6', + classNames: [ + '.random-classname-5227a55a', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '85-7', + classNames: [ + '.random-classname-4b2c312e', + '.random-classname-ad392890', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '85-7', + classNames: [ + '.random-classname-98033cc4', + '.random-classname-b229b696', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '85-7', + classNames: [ + '.random-classname-4d479a38', + '.random-classname-cb41182a', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '85-7', + classNames: [ + '.random-classname-520c40e0', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '85-7', + classNames: [ + '.random-classname-29b77d12', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '85-7', + classNames: [ + '.random-classname-9d446866', + '.random-classname-af4dbc88', + ], + attributes: [ + { + key: + 'data-random-attr-67227efa', + value: + 'random-attr-value-9e310211', + selector: + '[data-random-attr-67227efa=random-attr-value-9e310211]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '84-7', + classNames: [ + '.random-classname-4d20a26b', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '84-7', + classNames: [ + '.random-classname-5496decf', + '.random-classname-ad43a3d9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '84-7', + classNames: [ + '.random-classname-e9b2f01d', + '.random-classname-fe131857', + ], + attributes: [], + siblings: [ + ':nth-child(5)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '84-7', + classNames: [ + '.random-classname-c32d6d80', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '84-7', + classNames: [ + '.random-classname-e7a772b2', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '84-7', + classNames: [ + '.random-classname-7702d8b4', + ], + attributes: [ + { + key: + 'data-random-attr-7171e806', + value: + 'random-attr-value-a401fad', + selector: + '[data-random-attr-7171e806=random-attr-value-a401fad]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '83-5', + classNames: [ + '.random-classname-b7699c8b', + '.random-classname-bb274f5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '83-5', + classNames: [ + '.random-classname-3763a4f9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '83-5', + classNames: [ + '.random-classname-aef7733d', + ], + attributes: [ + { + key: + 'data-random-attr-666d2877', + selector: + '[data-random-attr-666d2877]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '83-5', + classNames: [ + '.random-classname-7d8f9f9b', + '.random-classname-9f643a85', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '82-3', + classNames: [ + '.random-classname-eb4ff2a3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '82-3', + classNames: [ + '.random-classname-12f1eacd', + ], + attributes: [], + siblings: [ + ':nth-child(7)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '81-8', + classNames: [ + '.random-classname-eaab197c', + '.random-classname-668c8c0e', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '81-8', + classNames: [ + '.random-classname-43934922', + '.random-classname-df43a8a4', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '81-8', + classNames: [ + '.random-classname-a6fbd418', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '81-8', + classNames: [ + '.random-classname-93561ccc', + '.random-classname-1e227bde', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '81-8', + classNames: [ + '.random-classname-3434cdf2', + '.random-classname-831f15f4', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '81-8', + classNames: [ + '.random-classname-c929ebda', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '81-8', + classNames: [ + '.random-classname-93939fae', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '79-9', + classNames: [ + '.random-classname-51371b10', + '.random-classname-deac6c2', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '79-9', + classNames: [ + '.random-classname-bf2b1744', + ], + attributes: [ + { + key: + 'data-random-attr-29fef516', + value: + 'random-attr-value-e32e297d', + selector: + '[data-random-attr-29fef516=random-attr-value-e32e297d]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '79-9', + classNames: [ + '.random-classname-a39e01', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '79-9', + classNames: [ + '.random-classname-62b1b8c5', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '79-9', + classNames: [ + '.random-classname-3179bdc9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '79-9', + classNames: [ + '.random-classname-502f310d', + ], + attributes: [ + { + key: + 'data-random-attr-11f036c7', + selector: + '[data-random-attr-11f036c7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '79-9', + classNames: [ + '.random-classname-7884eaeb', + '.random-classname-1be3b255', + ], + attributes: [ + { + key: + 'data-random-attr-2a4f6f4f', + selector: + '[data-random-attr-2a4f6f4f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '79-9', + classNames: [ + '.random-classname-b2bea7f3', + '.random-classname-5db05c9d', + ], + attributes: [ + { + key: + 'data-random-attr-df5db8d7', + selector: + '[data-random-attr-df5db8d7]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '78-5', + classNames: [ + '.random-classname-ad7805fb', + '.random-classname-c99a4fe5', + ], + attributes: [ + { + key: + 'data-random-attr-dffd335f', + selector: + '[data-random-attr-dffd335f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '78-5', + classNames: [ + '.random-classname-e9b536e9', + '.random-classname-a1a52503', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '78-5', + classNames: [ + '.random-classname-d753fee7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '78-5', + classNames: [ + '.random-classname-6be250b', + '.random-classname-278e9175', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '77-9', + classNames: [ + '.random-classname-f54c3b6f', + '.random-classname-95474979', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '77-9', + classNames: [ + '.random-classname-633f2613', + ], + attributes: [ + { + key: + 'data-random-attr-86d71fbd', + selector: + '[data-random-attr-86d71fbd]', + }, + ], + siblings: [ + ':nth-child(1)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '77-9', + classNames: [ + '.random-classname-a03ed4ac', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '77-9', + classNames: [ + '.random-classname-b1c2fca0', + '.random-classname-56d26ed2', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '77-9', + classNames: [ + '.random-classname-ff9bf048', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '77-9', + classNames: [ + '.random-classname-422563fc', + '.random-classname-e50dba8e', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '77-9', + classNames: [ + '.random-classname-fd7b58f0', + ], + attributes: [ + { + key: + 'data-random-attr-f6341fa2', + value: + 'random-attr-value-98811a99', + selector: + '[data-random-attr-f6341fa2=random-attr-value-98811a99]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '77-9', + classNames: [ + '.random-classname-ea91b433', + '.random-classname-7e6a72dd', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '75-7', + classNames: [ + '.random-classname-625ecd61', + '.random-classname-edec9a3b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '75-7', + classNames: [ + '.random-classname-e60aeb9f', + '.random-classname-e4fad929', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '75-7', + classNames: [ + '.random-classname-c6ec4143', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '75-7', + classNames: [ + '.random-classname-b958bf27', + ], + attributes: [ + { + key: + 'data-random-attr-d9205df1', + selector: + '[data-random-attr-d9205df1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '75-7', + classNames: [ + '.random-classname-7328c94b', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '75-7', + classNames: [ + '.random-classname-7a2903af', + '.random-classname-30fe7bb9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '72-7', + classNames: [ + '.random-classname-83255fd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '72-7', + classNames: [ + '.random-classname-51c9d937', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '72-7', + classNames: [ + '.random-classname-bb4cfc5b', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '72-7', + classNames: [ + '.random-classname-8e950249', + '.random-classname-378e763', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '72-7', + classNames: [ + '.random-classname-9409b747', + '.random-classname-f81fab11', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '72-7', + classNames: [ + '.random-classname-3c4e8ed5', + '.random-classname-b418ffcf', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '71-3', + classNames: [ + '.random-classname-6bcd0073', + ], + attributes: [ + { + key: + 'data-random-attr-8bf6c91d', + selector: + '[data-random-attr-8bf6c91d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '71-3', + classNames: [ + '.random-classname-f6d95957', + '.random-classname-b4ef67a1', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '69-7', + classNames: [ + '.random-classname-e4d16e7b', + ], + attributes: [ + { + key: + 'data-random-attr-d12e4c65', + selector: + '[data-random-attr-d12e4c65]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '69-7', + classNames: [ + '.random-classname-95debb69', + '.random-classname-b0ab9d83', + ], + attributes: [ + { + key: + 'data-random-attr-cede38ad', + selector: + '[data-random-attr-cede38ad]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '69-7', + classNames: [ + '.random-classname-a539bf67', + ], + attributes: [ + { + key: + 'data-random-attr-3ac08831', + selector: + '[data-random-attr-3ac08831]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '69-7', + classNames: [ + '.random-classname-7313ad8b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '69-7', + classNames: [ + '.random-classname-846a0bef', + '.random-classname-e2e3edf9', + ], + attributes: [ + { + key: + 'data-random-attr-66c5be93', + selector: + '[data-random-attr-66c5be93]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '69-7', + classNames: [ + '.random-classname-8e6be977', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '68-3', + classNames: [ + '.random-classname-3e01f09b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '68-3', + classNames: [ + '.random-classname-77f7b385', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '67-3', + classNames: [ + '.random-classname-a8200489', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '67-3', + classNames: [ + '.random-classname-3a6252c8', + '.random-classname-3bb8af3a', + ], + attributes: [ + { + key: + 'data-random-attr-9de4ae7c', + value: + 'random-attr-value-68ad37ab', + selector: + '[data-random-attr-9de4ae7c=random-attr-value-68ad37ab]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '66-3', + classNames: [ + '.random-classname-9524280f', + '.random-classname-d6dbff19', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '66-3', + classNames: [ + '.random-classname-3ab08cb3', + '.random-classname-54955f5d', + ], + attributes: [ + { + key: + 'data-random-attr-3898997', + selector: + '[data-random-attr-3898997]', + }, + ], + siblings: [ + ':nth-child(3)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '65-5', + classNames: [ + '.random-classname-a0e55bc0', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '65-5', + classNames: [ + '.random-classname-3db2baf2', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '65-5', + classNames: [ + '.random-classname-e06c8af4', + '.random-classname-c2479446', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '65-5', + classNames: [ + '.random-classname-d76578da', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '64-7', + classNames: [ + '.random-classname-4897cae', + '.random-classname-96f20010', + ], + attributes: [ + { + key: + 'data-random-attr-5897f3c2', + value: + 'random-attr-value-1537a039', + selector: + '[data-random-attr-5897f3c2=random-attr-value-1537a039]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '64-7', + classNames: [ + '.random-classname-72156ad3', + '.random-classname-9cff827d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '64-7', + classNames: [ + '.random-classname-38860701', + '.random-classname-618724db', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '64-7', + classNames: [ + '.random-classname-f7ae31c5', + ], + attributes: [ + { + key: + 'data-random-attr-f949d03f', + selector: + '[data-random-attr-f949d03f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '64-7', + classNames: [ + '.random-classname-1d781fe3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '64-7', + classNames: [ + '.random-classname-ce1437c7', + '.random-classname-ab3c7f91', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '63-9', + classNames: [ + '.random-classname-f3f3904f', + ], + attributes: [ + { + key: + 'data-random-attr-853ed159', + selector: + '[data-random-attr-853ed159]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '63-9', + classNames: [ + '.random-classname-8685f9d7', + '.random-classname-33935c21', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '63-9', + classNames: [ + '.random-classname-352d945f', + ], + attributes: [ + { + key: + 'data-random-attr-c1813fe9', + selector: + '[data-random-attr-c1813fe9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '63-9', + classNames: [ + '.random-classname-4bfac52d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '63-9', + classNames: [ + '.random-classname-bb907fe7', + ], + attributes: [ + { + key: + 'data-random-attr-c3339cb1', + selector: + '[data-random-attr-c3339cb1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '63-9', + classNames: [ + '.random-classname-1641ca75', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '63-9', + classNames: [ + '.random-classname-72399279', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '63-9', + classNames: [ + '.random-classname-496d5713', + '.random-classname-ccf178bd', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '62-3', + classNames: [ + '.random-classname-121c991b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '62-3', + classNames: [ + '.random-classname-c16687f', + '.random-classname-9470c909', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '60-4', + classNames: [ + '.random-classname-da83504d', + '.random-classname-34b3d807', + ], + attributes: [ + { + key: + 'data-random-attr-963449d1', + selector: + '[data-random-attr-963449d1]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '60-4', + classNames: [ + '.random-classname-29fbb995', + ], + attributes: [ + { + key: + 'data-random-attr-70c7388f', + selector: + '[data-random-attr-70c7388f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '60-4', + classNames: [ + '.random-classname-12706533', + '.random-classname-90094bdd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + ], + }, + { + value: { + name: + '57-5', + classNames: [ + '.random-classname-280eaa17', + '.random-classname-4426b661', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '57-5', + classNames: [ + '.random-classname-d0512725', + '.random-classname-da0c4c9f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '57-5', + classNames: [ + '.random-classname-133b3243', + '.random-classname-431c6b6d', + ], + attributes: [ + { + key: + 'data-random-attr-16864027', + selector: + '[data-random-attr-16864027]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '57-5', + classNames: [ + '.random-classname-ee8686f1', + '.random-classname-4255da4b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '56-2', + classNames: [ + '.random-classname-69d838b5', + '.random-classname-8606a4af', + ], + attributes: [ + { + key: + 'data-random-attr-e429c4b9', + selector: + '[data-random-attr-e429c4b9]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '55-5', + classNames: [ + '.random-classname-1395aefd', + '.random-classname-25b9a37', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '55-5', + classNames: [ + '.random-classname-1189ee45', + ], + attributes: [ + { + key: + 'data-random-attr-bf1740bf', + selector: + '[data-random-attr-bf1740bf]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '55-5', + classNames: [ + '.random-classname-33d85863', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '55-5', + classNames: [ + '.random-classname-820fb847', + '.random-classname-7a725411', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '53-4', + classNames: [ + '.random-classname-1db7c46b', + '.random-classname-849f47d5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '53-4', + classNames: [ + '.random-classname-ebdf20cf', + '.random-classname-f3af35d9', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '53-4', + classNames: [ + '.random-classname-d0639a57', + ], + attributes: [ + { + key: + 'data-random-attr-389050a1', + selector: + '[data-random-attr-389050a1]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '52-8', + classNames: [ + '.random-classname-b2914565', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '52-8', + classNames: [ + '.random-classname-595b8e83', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '52-8', + classNames: [ + '.random-classname-dc584067', + '.random-classname-cc3fb131', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '52-8', + classNames: [ + '.random-classname-4d18e6f5', + '.random-classname-a858acef', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '52-8', + classNames: [ + '.random-classname-2d35ef93', + '.random-classname-1f2c253d', + ], + attributes: [ + { + key: + 'data-random-attr-592eaa77', + selector: + '[data-random-attr-592eaa77]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '52-8', + classNames: [ + '.random-classname-e76975c1', + '.random-classname-b78419b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '52-8', + classNames: [ + '.random-classname-228c58ff', + '.random-classname-e6ba8d89', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '51-8', + classNames: [ + '.random-classname-671b1ccd', + '.random-classname-ce67d887', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '51-8', + classNames: [ + '.random-classname-df27070', + '.random-classname-4544a322', + ], + attributes: [ + { + key: + 'data-random-attr-69b012a4', + value: + 'random-attr-value-93d13db3', + selector: + '[data-random-attr-69b012a4=random-attr-value-93d13db3]', + }, + ], + siblings: [ + ':nth-child(7)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '51-8', + classNames: [ + '.random-classname-f2e4670a', + '.random-classname-254fc6cc', + ], + attributes: [], + siblings: [ + ':nth-child(8)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '51-8', + classNames: [ + '.random-classname-b5067d1f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '51-8', + classNames: [ + '.random-classname-4557e6a9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '51-8', + classNames: [ + '.random-classname-39c677ed', + '.random-classname-454680a7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '51-8', + classNames: [ + '.random-classname-33ede2cb', + '.random-classname-e643d535', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '50-3', + classNames: [ + '.random-classname-efd4e939', + '.random-classname-42269bd3', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '50-3', + classNames: [ + '.random-classname-9b8898aa', + '.random-classname-b68a096c', + ], + attributes: [], + siblings: [ + ':nth-child(8)', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '49-3', + classNames: [ + '.random-classname-efbccfc9', + '.random-classname-e89990e3', + ], + attributes: [ + { + key: + 'data-random-attr-1b6a630d', + selector: + '[data-random-attr-1b6a630d]', + }, + ], + siblings: [ + ':nth-child(9)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '49-3', + classNames: [ + '.random-classname-3d90c8bc', + '.random-classname-c1283d4e', + ], + attributes: [ + { + key: + 'data-random-attr-abf8a9b0', + value: + 'random-attr-value-9ddbb14f', + selector: + '[data-random-attr-abf8a9b0=random-attr-value-9ddbb14f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '48-3', + classNames: [ + '.random-classname-e6be09f3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '48-3', + classNames: [ + '.random-classname-16723ad7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '47-10', + classNames: [ + '.random-classname-d363a7fb', + '.random-classname-f06041e5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '47-10', + classNames: [ + '.random-classname-8ba1f55f', + '.random-classname-df3148e9', + ], + attributes: [ + { + key: + 'data-random-attr-37050703', + selector: + '[data-random-attr-37050703]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '47-10', + classNames: [ + '.random-classname-35cede2d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '47-10', + classNames: [ + '.random-classname-c99100e7', + '.random-classname-67e4c5b1', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '47-10', + classNames: [ + '.random-classname-9b990375', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '47-10', + classNames: [ + '.random-classname-9e0fdb79', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '47-10', + classNames: [ + '.random-classname-7e2fd1bd', + ], + attributes: [], + siblings: [ + ':nth-child(9)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '47-10', + classNames: [ + '.random-classname-8b6898be', + '.random-classname-61d146a0', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '47-10', + classNames: [ + '.random-classname-e2d948d2', + ], + attributes: [ + { + key: + 'data-random-attr-eadcb3d4', + value: + 'random-attr-value-a8fe8d23', + selector: + '[data-random-attr-eadcb3d4=random-attr-value-a8fe8d23]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '46-10', + classNames: [ + '.random-classname-56bbe94d', + '.random-classname-50cd907', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '46-10', + classNames: [ + '.random-classname-f264912b', + '.random-classname-e477295', + ], + attributes: [ + { + key: + 'data-random-attr-d540598f', + selector: + '[data-random-attr-d540598f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '46-10', + classNames: [ + '.random-classname-9f42ac99', + '.random-classname-e0d31633', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '46-10', + classNames: [ + '.random-classname-c4abeb17', + '.random-classname-63529f61', + ], + attributes: [ + { + key: + 'data-random-attr-1e5a3c3b', + selector: + '[data-random-attr-1e5a3c3b]', + }, + ], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '46-10', + classNames: [ + '.random-classname-77491e72', + '.random-classname-34763a74', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '46-10', + classNames: [ + '.random-classname-c5831ae8', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '46-10', + classNames: [ + '.random-classname-83484c5a', + '.random-classname-b72ae89c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '46-10', + classNames: [ + '.random-classname-845bc82e', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '46-10', + classNames: [ + '.random-classname-b0553742', + '.random-classname-53dd5bc4', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '45-2', + classNames: [ + '.random-classname-e04c2d96', + '.random-classname-2ccc2938', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '44-7', + classNames: [ + '.random-classname-b74633ec', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '44-7', + classNames: [ + '.random-classname-a922afe0', + ], + attributes: [], + siblings: [ + ':nth-child(2)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '44-7', + classNames: [ + '.random-classname-ddbbc963', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '44-7', + classNames: [ + '.random-classname-174faf8d', + '.random-classname-5fd9b947', + ], + attributes: [ + { + key: + 'data-random-attr-b528fd11', + selector: + '[data-random-attr-b528fd11]', + }, + ], + siblings: [ + ':nth-child(5)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '44-7', + classNames: [ + '.random-classname-7614dc30', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '44-7', + classNames: [ + '.random-classname-22295a64', + '.random-classname-72f8c536', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '42-3', + classNames: [ + '.random-classname-9239c1d8', + '.random-classname-605ac0ca', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '42-3', + classNames: [ + '.random-classname-5bd0cb9e', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '41-5', + classNames: [ + '.random-classname-a9e35c80', + '.random-classname-dfa639b2', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '41-5', + classNames: [ + '.random-classname-45b837b4', + ], + attributes: [ + { + key: + 'data-random-attr-dd519f06', + value: + 'random-attr-value-86866aad', + selector: + '[data-random-attr-dd519f06=random-attr-value-86866aad]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '41-5', + classNames: [ + '.random-classname-ee73cf8b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '41-5', + classNames: [ + '.random-classname-368b4def', + '.random-classname-de907ff9', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-802a2093', + '.random-classname-5bfc7e3d', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-6abadec1', + ], + attributes: [ + { + key: + 'data-random-attr-f5f2929b', + selector: + '[data-random-attr-f5f2929b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-d00aa585', + '.random-classname-99eb39ff', + ], + attributes: [], + siblings: [ + ':nth-child(1)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-2af96ea6', + '.random-classname-680ddcc8', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-7f93d87c', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-20d6a30e', + ], + attributes: [ + { + key: + 'data-random-attr-4aad570', + value: + 'random-attr-value-62166a0f', + selector: + '[data-random-attr-4aad570=random-attr-value-62166a0f]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-1b75eeb3', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-16ee13e1', + '.random-classname-89d824bb', + ], + attributes: [ + { + key: + 'data-random-attr-ca1b9ca5', + selector: + '[data-random-attr-ca1b9ca5]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-fec91bc3', + '.random-classname-57b590ed', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '40-11', + classNames: [ + '.random-classname-6d1a01a7', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-39b4471', + '.random-classname-9520f3cb', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-3c92962f', + '.random-classname-5563239', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-e2bbccd3', + '.random-classname-360e347d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-c7e5bbb7', + '.random-classname-4e76d901', + ], + attributes: [ + { + key: + 'data-random-attr-58f9c6db', + selector: + '[data-random-attr-58f9c6db]', + }, + ], + siblings: [ + ':nth-child(5)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-28988b94', + '.random-classname-ba8d7de6', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-7c46ee08', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-d9b75dbc', + '.random-classname-4c2c9a4e', + ], + attributes: [ + { + key: + 'data-random-attr-5b460eb0', + value: + 'random-attr-value-3807d24f', + selector: + '[data-random-attr-5b460eb0=random-attr-value-3807d24f]', + }, + ], + siblings: [ + ':nth-child(13)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-24114458', + '.random-classname-2685e74a', + ], + attributes: [ + { + key: + 'data-random-attr-1304710c', + value: + 'random-attr-value-2df78fb', + selector: + '[data-random-attr-1304710c=random-attr-value-2df78fb]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-80393ae5', + '.random-classname-f35a565f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '38-11', + classNames: [ + '.random-classname-2efaf803', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '37-5', + classNames: [ + '.random-classname-115581e7', + '.random-classname-9ef9eeb1', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '37-5', + classNames: [ + '.random-classname-8a7e1e6f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '37-5', + classNames: [ + '.random-classname-a8ca2479', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '37-5', + classNames: [ + '.random-classname-2a922abd', + ], + attributes: [ + { + key: + 'data-random-attr-3d824bf7', + selector: + '[data-random-attr-3d824bf7]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '36-7', + classNames: [ + '.random-classname-84a91341', + '.random-classname-ab113b1b', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '36-7', + classNames: [ + '.random-classname-fed42a7f', + '.random-classname-756ddb09', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '36-7', + classNames: [ + '.random-classname-84fe23', + ], + attributes: [ + { + key: + 'data-random-attr-2718824d', + selector: + '[data-random-attr-2718824d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '36-7', + classNames: [ + '.random-classname-5129da07', + '.random-classname-38d39bd1', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '36-7', + classNames: [ + '.random-classname-cb372b95', + '.random-classname-2dfd7a8f', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '36-7', + classNames: [ + '.random-classname-65b9c733', + '.random-classname-5ab2fddd', + ], + attributes: [ + { + key: + 'data-random-attr-de0d2c17', + selector: + '[data-random-attr-de0d2c17]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: + '34-3', + classNames: [ + '.random-classname-4fe28861', + '.random-classname-f9170d3b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '34-3', + classNames: [ + '.random-classname-32311925', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '33-5', + classNames: [ + '.random-classname-95f5f429', + '.random-classname-c2651443', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '33-5', + classNames: [ + '.random-classname-ea2d4227', + '.random-classname-1c7ed8f1', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '33-5', + classNames: [ + '.random-classname-c8bbfc4b', + '.random-classname-477caab5', + ], + attributes: [], + siblings: [ + ':nth-child(9)', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '33-5', + classNames: [ + '.random-classname-784e10c4', + '.random-classname-7bfaa96', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '32-3', + classNames: [ + '.random-classname-10f5ae38', + '.random-classname-e85c4c2a', + ], + attributes: [], + siblings: [ + ':nth-child(10)', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '32-3', + classNames: [ + '.random-classname-fc7702bf', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '31-9', + classNames: [ + '.random-classname-eb35488d', + '.random-classname-3d67ba47', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '31-9', + classNames: [ + '.random-classname-ab2cb9d5', + '.random-classname-243762cf', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '31-9', + classNames: [ + '.random-classname-23581373', + '.random-classname-d99a541d', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '31-9', + classNames: [ + '.random-classname-f3fe22a1', + '.random-classname-b8bee17b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '31-9', + classNames: [ + '.random-classname-72b006df', + '.random-classname-c9c4d669', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '31-9', + classNames: [ + '.random-classname-999083ad', + '.random-classname-efe14267', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '31-9', + classNames: [ + '.random-classname-90f58f5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '31-9', + classNames: [ + '.random-classname-3f01eeef', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-4ebcc8f9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-5bf0d73d', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-d70e39b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-2c8e1aff', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-db59b6a3', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '30-7', + classNames: [ + '.random-classname-ebd44ecd', + '.random-classname-eaa1da87', + ], + attributes: [ + { + key: + 'data-random-attr-4539f051', + selector: + '[data-random-attr-4539f051]', + }, + ], + siblings: [ + ':nth-child(5)', + ], + pseudos: [ + '::after', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '29-5', + classNames: [ + '.random-classname-a4c5fd22', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '29-5', + classNames: [ + '.random-classname-a26c7ca4', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '29-5', + classNames: [ + '.random-classname-3c67e818', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '29-5', + classNames: [ + '.random-classname-2f9970cc', + '.random-classname-d8c4efde', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '28-9', + classNames: [ + '.random-classname-92164ac0', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '28-9', + classNames: [ + '.random-classname-54e481f2', + '.random-classname-9bcce9f4', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '28-9', + classNames: [ + '.random-classname-df0a4b46', + ], + attributes: [], + siblings: [ + ':nth-child(12)', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '28-9', + classNames: [ + '.random-classname-d65804cb', + ], + attributes: [ + { + key: + 'data-random-attr-b28c4735', + selector: + '[data-random-attr-b28c4735]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '28-9', + classNames: [ + '.random-classname-e5bb7b39', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '28-9', + classNames: [ + '.random-classname-354b8d7d', + '.random-classname-cb617cb7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '28-9', + classNames: [ + '.random-classname-363917db', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '28-9', + classNames: [ + '.random-classname-df59733f', + '.random-classname-bd8fe1c9', + ], + attributes: [ + { + key: + 'data-random-attr-936872e3', + selector: + '[data-random-attr-936872e3]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: + '27-9', + classNames: [ + '.random-classname-a735950d', + '.random-classname-b1183ac7', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '27-9', + classNames: [ + '.random-classname-9dcb2eeb', + '.random-classname-d7b69655', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '27-9', + classNames: [ + '.random-classname-a6382c59', + '.random-classname-e4cd6bf3', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '27-9', + classNames: [ + '.random-classname-3096bcd7', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '27-9', + classNames: [ + '.random-classname-58b9d400', + '.random-classname-22d1d32', + ], + attributes: [], + siblings: [], + pseudos: [ + '::after', + ], + }, + children: [], + }, + { + value: { + name: + '27-9', + classNames: [ + '.random-classname-2a80fa86', + '.random-classname-87cdb3a8', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '27-9', + classNames: [ + '.random-classname-3f6c231a', + '.random-classname-600ad5c', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '27-9', + classNames: [ + '.random-classname-da458850', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-482bb884', + '.random-classname-db5c6856', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-d99ff1f8', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-582028ac', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-df2f90a0', + '.random-classname-b8b022d2', + ], + attributes: [], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-d6a8a26', + '.random-classname-e9b0448', + ], + attributes: [ + { + key: + 'data-random-attr-8efdcba', + value: + 'random-attr-value-d0b944d1', + selector: + '[data-random-attr-8efdcba=random-attr-value-d0b944d1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-7b11b32b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-8afe9b8f', + ], + attributes: [ + { + key: + 'data-random-attr-69943e99', + selector: + '[data-random-attr-69943e99]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-b1247833', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-84326d17', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-6ad7de3b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-4d971225', + '.random-classname-15a86f9f', + ], + attributes: [ + { + key: + 'data-random-attr-cf66fd29', + selector: + '[data-random-attr-cf66fd29]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: + '26-13', + classNames: [ + '.random-classname-2c1fb66d', + '.random-classname-80a6c327', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + ], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-9ff50d4b', + ], + attributes: [ + { + key: + 'data-random-attr-9644e3b5', + selector: + '[data-random-attr-9644e3b5]', + }, + ], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-ef039fb9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-5097b9fd', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-6ca8dd37', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-143a405b', + ], + attributes: [], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-4e0ce3bf', + '.random-classname-6a732649', + ], + attributes: [ + { + key: + 'data-random-attr-de0eab63', + selector: + '[data-random-attr-de0eab63]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-2ab9bb47', + '.random-classname-93c24f11', + ], + attributes: [ + { + key: + 'data-random-attr-79b8776b', + selector: + '[data-random-attr-79b8776b]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-44c983cf', + ], + attributes: [], + siblings: [ + ':nth-child(3)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-afd5cbd8', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: '25-11', + classNames: [ + '.random-classname-1f19b08c', + ], + attributes: [], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-d500a680', + '.random-classname-c9413b2', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-191521b4', + '.random-classname-f9c01906', + ], + attributes: [ + { + key: + 'data-random-attr-336ed628', + value: + 'random-attr-value-ec4bc367', + selector: + '[data-random-attr-336ed628=random-attr-value-ec4bc367]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-7f152c31', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-5d0091f5', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-d1bc8fef', + '.random-classname-75cd11f9', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-af09303d', + ], + attributes: [ + { + key: + 'data-random-attr-2a0eed77', + selector: + '[data-random-attr-2a0eed77]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-b89b0c1', + ], + attributes: [ + { + key: + 'data-random-attr-61f3349b', + selector: + '[data-random-attr-61f3349b]', + }, + ], + siblings: [ + ':last-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-ea74fbff', + '.random-classname-21e22889', + ], + attributes: [ + { + key: + 'data-random-attr-192627a3', + selector: + '[data-random-attr-192627a3]', + }, + ], + siblings: [ + ':nth-child(9)', + ], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-c593027c', + ], + attributes: [], + siblings: [], + pseudos: [ + '::placeholder', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-c3179f70', + '.random-classname-7fb4aa22', + ], + attributes: [], + siblings: [ + ':nth-child(14)', + ], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-910e8d97', + '.random-classname-ced5e5e1', + ], + attributes: [ + { + key: + 'data-random-attr-3159c6bb', + selector: + '[data-random-attr-3159c6bb]', + }, + ], + siblings: [], + pseudos: [ + '::before', + ], + }, + children: [], + }, + { + value: { + name: '24-13', + classNames: [ + '.random-classname-2288a01f', + ], + attributes: [], + siblings: [ + ':nth-child(13)', + ], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-4c088846', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-a33b4768', + ], + attributes: [ + { + key: + 'data-random-attr-4ddbacda', + value: + 'random-attr-value-98bf9671', + selector: + '[data-random-attr-4ddbacda=random-attr-value-98bf9671]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-79315cb', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-24a68035', + '.random-classname-1de5d82f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-2104c439', + ], + attributes: [], + siblings: [], + pseudos: [ + '::slotted', + ], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-6bace67d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-25a13db7', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-147c68db', + '.random-classname-200815c5', + ], + attributes: [], + siblings: [ + ':nth-child(5)', + ], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-ae82f7e6', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-f28e467a', + '.random-classname-e94087bc', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-8d1544e', + ], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '23-13', + classNames: [ + '.random-classname-237a7562', + '.random-classname-30c6dee4', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '22-7', + classNames: [ + '.random-classname-30933db6', + '.random-classname-1c814e58', + ], + attributes: [ + { + key: + 'data-random-attr-9c14814a', + value: + 'random-attr-value-f5370021', + selector: + '[data-random-attr-9c14814a=random-attr-value-f5370021]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '22-7', + classNames: [ + '.random-classname-3697185f', + '.random-classname-7b9963e9', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '22-7', + classNames: [ + '.random-classname-8023292d', + '.random-classname-8e2a83e7', + ], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '22-7', + classNames: [ + '.random-classname-5427a0b', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '22-7', + classNames: [ + '.random-classname-b3f3606f', + '.random-classname-9aeab679', + ], + attributes: [ + { + key: + 'data-random-attr-af4e1b13', + selector: + '[data-random-attr-af4e1b13]', + }, + ], + siblings: [ + ':first-child', + ], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '22-7', + classNames: [ + '.random-classname-e79fcdf7', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '21-4', + classNames: [ + '.random-classname-1815dd1b', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '21-4', + classNames: [ + '.random-classname-7ea1ec7f', + '.random-classname-35faed09', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '21-4', + classNames: [ + '.random-classname-c01de023', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '20-7', + classNames: [ + '.random-classname-43db44d', + '.random-classname-9cafdc07', + ], + attributes: [ + { + key: + 'data-random-attr-ad02edd1', + selector: + '[data-random-attr-ad02edd1]', + }, + ], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '20-7', + classNames: [ + '.random-classname-f029d95', + '.random-classname-fc43bc8f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '20-7', + classNames: [ + '.random-classname-40130799', + ], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '20-7', + classNames: [ + '.random-classname-19ecafdd', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '20-7', + classNames: [ + '.random-classname-d12e5a61', + ], + attributes: [ + { + key: + 'data-random-attr-839caf3b', + selector: + '[data-random-attr-839caf3b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '20-7', + classNames: [ + '.random-classname-1aa10b25', + ], + attributes: [ + { + key: + 'data-random-attr-7eb9d09f', + selector: + '[data-random-attr-7eb9d09f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '19-7', + classNames: [ + '.random-classname-4f9ef643', + '.random-classname-db68cf6d', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '19-7', + classNames: [ + '.random-classname-f4e44427', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '19-7', + classNames: [ + '.random-classname-ef321e4b', + '.random-classname-8fb11cb5', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '19-7', + classNames: [ + '.random-classname-cdbee8b9', + ], + attributes: [], + siblings: [':nth-child(13)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '19-7', + classNames: [ + '.random-classname-1fc4b838', + ], + attributes: [ + { + key: 'data-random-attr-46a1e62a', + value: + 'random-attr-value-ce765f81', + selector: + '[data-random-attr-46a1e62a=random-attr-value-ce765f81]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '19-7', + classNames: [ + '.random-classname-98ff915b', + ], + attributes: [ + { + key: 'data-random-attr-192bd245', + selector: + '[data-random-attr-192bd245]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-4724af49', + ], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-37cfbc47', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-57a4f811', + '.random-classname-3716086b', + ], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-7d9fa4cf', + '.random-classname-3b3659d9', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-5866061d', + '.random-classname-3e349e57', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-b4fbf4a1', + '.random-classname-47c6837b', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-d0852965', + ], + attributes: [ + { + key: 'data-random-attr-eb30c8df', + selector: + '[data-random-attr-eb30c8df]', + }, + ], + siblings: [':nth-child(5)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: ['.random-classname-4855606'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-89901b28', + '.random-classname-69f4769a', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '18-11', + classNames: [ + '.random-classname-dc01ccdc', + '.random-classname-be3f766e', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '17-5', + classNames: ['.random-classname-b9d0c804'], + attributes: [ + { + key: 'data-random-attr-16e5a3d6', + value: 'random-attr-value-e545893d', + selector: + '[data-random-attr-16e5a3d6=random-attr-value-e545893d]', + }, + ], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '17-5', + classNames: [ + '.random-classname-379859b', + '.random-classname-65751085', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '17-5', + classNames: ['.random-classname-e39fdcff'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '17-5', + classNames: ['.random-classname-400cb189'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '16-11', + classNames: ['.random-classname-211d80cd'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '16-11', + classNames: ['.random-classname-21cd4251'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '16-11', + classNames: [ + '.random-classname-217fcd0f', + '.random-classname-86a7ec19', + ], + attributes: [], + siblings: [':last-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '16-11', + classNames: [ + '.random-classname-6859ce97', + '.random-classname-32dfcee1', + ], + attributes: [ + { + key: 'data-random-attr-c3a097bb', + selector: '[data-random-attr-c3a097bb]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '16-11', + classNames: ['.random-classname-ac3c011f'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '16-11', + classNames: [ + '.random-classname-465adbed', + '.random-classname-c72c84a7', + ], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '16-11', + classNames: [ + '.random-classname-964b935', + '.random-classname-f3f5792f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '16-11', + classNames: ['.random-classname-47320d39'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '16-11', + classNames: ['.random-classname-47935fd3'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '16-11', + classNames: ['.random-classname-fece1401'], + attributes: [ + { + key: 'data-random-attr-3c3b9db', + selector: '[data-random-attr-3c3b9db]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '14-6', + classNames: [ + '.random-classname-6f388ec5', + '.random-classname-f50d353f', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '14-6', + classNames: ['.random-classname-1af2f3c9'], + attributes: [], + siblings: [':nth-child(3)'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '14-6', + classNames: ['.random-classname-628c537a'], + attributes: [ + { + key: 'data-random-attr-fca31cbc', + value: 'random-attr-value-dc8650eb', + selector: + '[data-random-attr-fca31cbc=random-attr-value-dc8650eb]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '14-6', + classNames: ['.random-classname-4824354f'], + attributes: [ + { + key: 'data-random-attr-aca7be59', + selector: '[data-random-attr-aca7be59]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '14-6', + classNames: ['.random-classname-ebcf729d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '13-5', + classNames: [ + '.random-classname-adcb3ed7', + '.random-classname-1d19e921', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '13-5', + classNames: ['.random-classname-c36aebfb'], + attributes: [], + siblings: [':nth-child(5)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '13-5', + classNames: ['.random-classname-9476f732'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '13-5', + classNames: [ + '.random-classname-b40b7486', + '.random-classname-c8103da8', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-c4f13d1a'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-b10964ee'], + attributes: [ + { + key: 'data-random-attr-fcd95250', + value: 'random-attr-value-b414016f', + selector: + '[data-random-attr-fcd95250=random-attr-value-b414016f]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-a250ff79'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: [ + '.random-classname-b29135bd', + '.random-classname-14d48ef7', + ], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: [ + '.random-classname-92f90cbe', + '.random-classname-a9dddaa0', + ], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: [ + '.random-classname-78887d4', + '.random-classname-13a20426', + ], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-c9128e48'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: [ + '.random-classname-2011e88e', + '.random-classname-83c5b6f0', + ], + attributes: [], + siblings: [':nth-child(2)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: [ + '.random-classname-db85da33', + '.random-classname-9d3f88dd', + ], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-85ea4361'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: ['.random-classname-294f0425'], + attributes: [ + { + key: 'data-random-attr-2d0f319f', + selector: '[data-random-attr-2d0f319f]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '12-13', + classNames: [ + '.random-classname-f181e743', + '.random-classname-d5e86d', + ], + attributes: [], + siblings: [':nth-child(9)'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '11-5', + classNames: [ + '.random-classname-405b3c9c', + '.random-classname-d3733c2e', + ], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '11-5', + classNames: ['.random-classname-7a49eb42'], + attributes: [ + { + key: 'data-random-attr-f7182fc4', + value: 'random-attr-value-15d57853', + selector: + '[data-random-attr-f7182fc4=random-attr-value-15d57853]', + }, + ], + siblings: [':nth-child(5)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '11-5', + classNames: ['.random-classname-35db87ec'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '11-5', + classNames: ['.random-classname-a9b5b3fe'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '10-5', + classNames: ['.random-classname-ce8343e0', '.random-classname-c15c7812'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '10-5', + classNames: ['.random-classname-3339366'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '10-5', + classNames: ['.random-classname-55a51f88', '.random-classname-4666d9fa'], + attributes: [ + { + key: 'data-random-attr-dc3be73c', + value: 'random-attr-value-de77996b', + selector: '[data-random-attr-dc3be73c=random-attr-value-de77996b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '10-5', + classNames: ['.random-classname-4bcee4d5'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '9-7', + classNames: ['.random-classname-deb9c5cf'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '9-7', + classNames: ['.random-classname-39872673', '.random-classname-9181df1d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '9-7', + classNames: ['.random-classname-bf90dda1'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '9-7', + classNames: ['.random-classname-4e1c2265'], + attributes: [ + { + key: 'data-random-attr-8d5729df', + selector: '[data-random-attr-8d5729df]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '9-7', + classNames: ['.random-classname-1874383', '.random-classname-6f86cead'], + attributes: [ + { + key: 'data-random-attr-1a6cc567', + selector: '[data-random-attr-1a6cc567]', + }, + ], + siblings: [':nth-child(9)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '9-7', + classNames: ['.random-classname-e572c4d0'], + attributes: [ + { + key: 'data-random-attr-bc4ed682', + value: 'random-attr-value-2899a3f9', + selector: '[data-random-attr-bc4ed682=random-attr-value-2899a3f9]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-8ea5e23d'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-39e882c1'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-dbe08985'], + attributes: [ + { + key: 'data-random-attr-280ebdff', + selector: '[data-random-attr-280ebdff]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-7e1b3a89', '.random-classname-6d4b09a3'], + attributes: [], + siblings: [':nth-child(3)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-efe22c7c'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-9bee0422', '.random-classname-b65d1ba4'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-e8965876'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '8-9', + classNames: ['.random-classname-7b9e80a'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-d89defcc'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-633b39c0', '.random-classname-f42a48f2'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-5c6148f4'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-5acec6da', '.random-classname-9ef7c71c'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-5690aaae'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-72b01c2'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-2f9d6016', '.random-classname-438c7fb8'], + attributes: [ + { + key: 'data-random-attr-d53699aa', + value: 'random-attr-value-d3087d01', + selector: '[data-random-attr-d53699aa=random-attr-value-d3087d01]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-140f0adb'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-6ecd163f', '.random-classname-a77a7cc9'], + attributes: [ + { + key: 'data-random-attr-36fcc5e3', + selector: '[data-random-attr-36fcc5e3]', + }, + ], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '7-11', + classNames: ['.random-classname-bc347591'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '6-3', + classNames: ['.random-classname-454ec155', '.random-classname-4360564f'], + attributes: [], + siblings: [':nth-child(1)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '6-3', + classNames: ['.random-classname-10415858'], + attributes: [], + siblings: [':nth-child(6)'], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-c8051ee5', '.random-classname-7ee3da5f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-b1fabc03', '.random-classname-470f5b2d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-733692b1', '.random-classname-f0c69c0b'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-c89b4879'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-eb838ebd', '.random-classname-3ccd4ff7'], + attributes: [ + { + key: 'data-random-attr-e29eb741', + selector: '[data-random-attr-e29eb741]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-24f3c605', '.random-classname-b7fae7f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-5617ff09', '.random-classname-55c6c223'], + attributes: [ + { + key: 'data-random-attr-f1f2e64d', + selector: '[data-random-attr-f1f2e64d]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-72c23fd1'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-755e0f95'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '5-11', + classNames: ['.random-classname-5b99fe8f', '.random-classname-9fbc9999'], + attributes: [ + { + key: 'data-random-attr-da7c8b33', + selector: '[data-random-attr-da7c8b33]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-633a3017', '.random-classname-480a2c61'], + attributes: [ + { + key: 'data-random-attr-ea32513b', + selector: '[data-random-attr-ea32513b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '3-3', + classNames: ['.random-classname-9a0fd25'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-57121829'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-3ae8d843', '.random-classname-2c67016d'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-451f7cf1', '.random-classname-35b8404b'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-b3e17ab9', '.random-classname-86bca953'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + ], + }, + selectors: [ + '::before >', + '.random-classname-7134e52f .random-classname-7ef38bd3', + '.random-classname-277f4b7d', + ':first-child', + '::before .random-classname-7ef38bd3 > .random-classname-277f4b7d :first-child .random-classname-57d7a13f >', + '.random-classname-b1643fc9', + '.random-classname-6c6280e3', + '::before', + '::before :not(.random-classname-7ef38bd3) > .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-57d7a13f > .random-classname-6c6280e3 .random-classname-5e569891', + '.random-classname-277f4b7d :first-child .random-classname-63271ac5 .random-classname-6c6280e3 .random-classname-d75c28c7 .random-classname-1406fceb', + '.random-classname-1406fceb ::slotted', + '.random-classname-fc9c0a59 .random-classname-91c27e9d', + '.random-classname-338e2ad7', + ':last-child', + '::slotted', + ':not(.random-classname-d75c28c7) ::slotted :not(.random-classname-fc9c0a59) .random-classname-91c27e9d .random-classname-338e2ad7 :not(.random-classname-b1f0b1e5)', + '::slotted >', + '.random-classname-196d4e2d', + '.random-classname-7d68f0e7', + '.random-classname-60f9370b', + '.random-classname-60f9370b .random-classname-e3057375 >', + '.random-classname-ee8f1a41', + '.random-classname-c66fda1b', + '.random-classname-9c70d905', + '.random-classname-e3057375 .random-classname-db8b4b79 .random-classname-ee8f1a41 :not(.random-classname-9c70d905) .random-classname-7e5397f', + '.random-classname-9eb77d23', + '[data-random-attr-8412594d]', + ':last-child > .random-classname-b1f0b1e5 .random-classname-c710b8e9 .random-classname-196d4e2d .random-classname-60f9370b .random-classname-e3057375 [data-random-attr-a32a41bd] .random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f [data-random-attr-8412594d] .random-classname-f25762d1', + '::slotted [data-random-attr-8d8e498f] >', + '.random-classname-9eb77d23 > .random-classname-f25762d1 .random-classname-d66be295 > :first-child', + '.random-classname-f6b7db17', + ':not(.random-classname-ccf61c99) .random-classname-f6b7db17 .random-classname-37740f61', + '.random-classname-f6b7db17 [data-random-attr-acad2c3b] > .random-classname-b6db9d9f', + '.random-classname-7fbf1343', + '.random-classname-b6db9d9f ::before .random-classname-e63fb127', + '.random-classname-c5ee35af >', + ':first-child :not(::before) >', + ':first-child > .random-classname-de8777fd > ::before >', + '.random-classname-92711bf >', + '.random-classname-d8354b37 ::before :not(::before) .random-classname-3564b963', + '.random-classname-3564b963 :last-child', + ':not(.random-classname-2c161f8d) .random-classname-172870d5', + '.random-classname-eb2731cf', + '[data-random-attr-185e6ed9]', + '.random-classname-d1adcb57', + '.random-classname-7426a9a1', + '.random-classname-39d0456b .random-classname-eb2731cf > .random-classname-7426a9a1 .random-classname-2e08ae65', + '.random-classname-3904daad', + '.random-classname-af2b167', + '.random-classname-39d0456b :first-child > .random-classname-7426a9a1 [data-random-attr-8dfe3d69] :first-child .random-classname-260e8ff5', + '[data-random-attr-23413def] :not(.random-classname-2ec71093) >', + '.random-classname-4ebeff9 :not(.random-classname-87d6ee3d)', + '.random-classname-4c844ec1', + '[data-random-attr-e82d829b]', + '.random-classname-4c844ec1 .random-classname-6bdd29ff >', + '.random-classname-4c844ec1 > .random-classname-10308689 .random-classname-79c25cd', + '.random-classname-de8777fd .random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 > :last-child .random-classname-39d0456b .random-classname-eb2731cf ::slotted .random-classname-2e08ae65 > .random-classname-3904daad .random-classname-260e8ff5 .random-classname-4ebeff9 .random-classname-87d6ee3d .random-classname-4c844ec1 .random-classname-6bdd29ff .random-classname-24aa35a3 :not(.random-classname-100549ab)', + '.random-classname-58445a0f', + '[data-random-attr-1ad2c987] .random-classname-100549ab .random-classname-3baf3f15 .random-classname-29150119 >', + '[data-random-attr-ca295b77] .random-classname-4c844ec1 .random-classname-10308689 .random-classname-79c25cd .random-classname-100549ab > .random-classname-58445a0f .random-classname-29150119 ::before', + '.random-classname-6f0adeb3 > .random-classname-ecaffb97', + '::before ::before >', + '.random-classname-6b5a0bc3', + '.random-classname-99a400ed', + '.random-classname-3cfe3cb', + '.random-classname-d057ce1f ::slotted > .random-classname-72b8b471 > .random-classname-92d27e35', + '.random-classname-4821a239', + '.random-classname-9748bcd3', + '.random-classname-72b8b471 .random-classname-92d27e35 .random-classname-4821a239 .random-classname-8d58a47d', + '.random-classname-f24b6db', + '.random-classname-d01bc8c9', + ':nth-child(3)', + ':nth-child(3) > ::after >', + '.random-classname-4821a239 > .random-classname-8d58a47d :last-child :not(.random-classname-d01bc8c9) .random-classname-5c5a9e08 .random-classname-a446ca4e >', + '.random-classname-6dcfbeb0', + '.random-classname-d01bc8c9 ::after .random-classname-a446ca4e > .random-classname-6dcfbeb0 .random-classname-f47c4b62', + '.random-classname-6dcfbeb0 ::after ::placeholder >', + '.random-classname-a446ca4e .random-classname-6dcfbeb0 :first-child :nth-child(7) .random-classname-8290a234', + '.random-classname-9a75ed86', + '[data-random-attr-9fd61ea8=random-attr-value-a8ed71e7]', + '::before .random-classname-906d480b', + '.random-classname-8290a234 > ::before .random-classname-a4c0ac75 .random-classname-85140e6f', + '.random-classname-78059479', + '[data-random-attr-2b528341] >', + '.random-classname-1351174a .random-classname-8290a234 ::before .random-classname-906d480b .random-classname-85140e6f .random-classname-78059479 [data-random-attr-2b528341] .random-classname-152c2b1b', + '.random-classname-d6a61a7f', + '.random-classname-e1454b09', + '.random-classname-1dfdee23', + '.random-classname-922ef24d', + '::slotted :first-child', + '.random-classname-fad63bf7 .random-classname-152c2b1b .random-classname-d6a61a7f .random-classname-922ef24d .random-classname-f990bd1 .random-classname-36ce599 >', + '[data-random-attr-cdc3f861]', + '[data-random-attr-2b528341] > .random-classname-152c2b1b .random-classname-d6a61a7f .random-classname-922ef24d :first-child ::slotted .random-classname-c3d91c17 ::slotted', + '.random-classname-c0056429', + '.random-classname-92d60443', + '[data-random-attr-13c90d6d]', + '[data-random-attr-787c48f1]', + ':not(::slotted) > :nth-child(3) ::after .random-classname-a446ca4e .random-classname-6dcfbeb0 ::after ::placeholder :not(.random-classname-8290a234) [data-random-attr-9fd61ea8=random-attr-value-a8ed71e7] .random-classname-a4c0ac75 .random-classname-85140e6f :last-child > .random-classname-1d4c9abd .random-classname-fbde5205 .random-classname-e1454b09 .random-classname-1dfdee23 .random-classname-f990bd1 .random-classname-36ce599 .random-classname-c3d91c17 .random-classname-9729fd3b [data-random-attr-13c90d6d] ::slotted ::slotted', + '.random-classname-c0056429 .random-classname-52b53227 > :not([data-random-attr-7ed7c6b9]) ::before', + '.random-classname-2683df5b', + '.random-classname-2683df5b .random-classname-218b5045', + '.random-classname-bded0d49', + '.random-classname-508c2a63', + '.random-classname-218b5045 :first-child .random-classname-f5791611', + '.random-classname-2683df5b ::slotted .random-classname-508c2a63 > .random-classname-32e5d66b .random-classname-ff3552cf', + '.random-classname-fe8129d5 .random-classname-877cc41d', + '::slotted .random-classname-10800c57 .random-classname-ffddb180', + '.random-classname-2683df5b > .random-classname-218b5045 > :first-child .random-classname-f5791611 [data-random-attr-a18e37d9] .random-classname-10800c57 .random-classname-bec0989e [data-random-attr-533b0c06=random-attr-value-29cef3ad]', + '.random-classname-f4a8d08b', + '.random-classname-777deef', + '.random-classname-777deef .random-classname-d5ff4193', + '.random-classname-d58b473d', + '.random-classname-5e341c77', + '.random-classname-1cf9b7c1', + '.random-classname-ca400aff', + '.random-classname-ca400aff ::slotted', + '.random-classname-15cabecd', + '.random-classname-ae91ca87', + ':nth-child(5)', + '.random-classname-1bac300e', + '[data-random-attr-eb7b2d22=random-attr-value-adfdca19]', + '.random-classname-9fe65a5d', + '[data-random-attr-be333c97]', + '.random-classname-9409e5bb', + '.random-classname-9e5005a5', + '.random-classname-9b432f1f', + '.random-classname-9409e5bb .random-classname-9b432f1f > .random-classname-9832fcc3', + ':nth-child(5) > .random-classname-1bac300e > .random-classname-3250ea70 .random-classname-9fe65a5d .random-classname-9e5005a5 ::before [data-random-attr-e37719ed] > .random-classname-8fd8dd71', + '.random-classname-7808b735', + '.random-classname-7d80272f', + '[data-random-attr-fa46eb39]', + '.random-classname-bf856cb7', + '.random-classname-7808b735 .random-classname-bf856cb7 .random-classname-5c2407db', + '.random-classname-8fd8dd71 :last-child ::before > .random-classname-72d40cc5 > .random-classname-c7fb633f', + '.random-classname-2b751c9', + '.random-classname-c7fb633f > .random-classname-2b751c9 > [data-random-attr-589c050d]', + '.random-classname-7e3f274e', + '.random-classname-7b13f862', + '.random-classname-d83259e4', + '[data-random-attr-3ebb70b6=random-attr-value-1ca2309d]', + '.random-classname-bbe98721', + '.random-classname-c74239fb', + '.random-classname-8fd8dd71 .random-classname-7808b735 .random-classname-9a55fd7d .random-classname-5c2407db .random-classname-c7fb633f .random-classname-2b751c9 .random-classname-e6b162e3 .random-classname-7e3f274e .random-classname-7b13f862 .random-classname-bbe98721 > .random-classname-c74239fb > .random-classname-8470a75f', + '::before .random-classname-8470a75f :not(.random-classname-579ccae9)', + '.random-classname-c8b5d903', + '.random-classname-df01802d', + '.random-classname-579ccae9 .random-classname-df01802d .random-classname-1d1fe575 >', + '.random-classname-ac6caf6f', + '::placeholder', + '.random-classname-5877a1f8', + '.random-classname-d88702be', + '::after .random-classname-d88702be ::placeholder', + '.random-classname-d35b4dd4', + '[data-random-attr-b0eeba26=random-attr-value-846f8b4d]', + '.random-classname-d88702be ::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before', + '.random-classname-d768a32b', + '.random-classname-d88702be ::placeholder > [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before .random-classname-d768a32b .random-classname-8596833', + '.random-classname-d35b4dd4 > .random-classname-2edacb07 .random-classname-d768a32b .random-classname-7ac7ae99 .random-classname-c177e161', + '.random-classname-5c178225', + '.random-classname-50b25f9f', + '.random-classname-1d70f543', + '.random-classname-faae266d', + '.random-classname-cace71f1', + '.random-classname-ee43fd4b', + '.random-classname-d35b4dd4 .random-classname-2edacb07 > :last-child .random-classname-7ac7ae99 .random-classname-c177e161 ::before > .random-classname-1d70f543 .random-classname-cace71f1 > .random-classname-c6f0fb9', + '.random-classname-c22b6681 >', + ':not(.random-classname-c177e161) > .random-classname-50b25f9f ::slotted :not(:last-child) > [data-random-attr-dc8229fd] .random-classname-c22b6681 .random-classname-1205305b', + '.random-classname-faae266d .random-classname-ee43fd4b .random-classname-75c00653 .random-classname-c22b6681 :last-child ::before >', + '.random-classname-5379b63', + '.random-classname-1d70f543 > ::slotted :first-child > .random-classname-c22b6681 :last-child ::before ::slotted >', + '.random-classname-b27de2d5', + '.random-classname-1b8773cf', + '.random-classname-75c00653 .random-classname-c22b6681 :last-child .random-classname-bc109d1d', + '.random-classname-cace71f1 :not(.random-classname-c6f0fb9) .random-classname-c22b6681 .random-classname-1205305b > .random-classname-8008b473 ::slotted', + '.random-classname-bc109d1d .random-classname-f04857df', + '::before .random-classname-1d70f543 :last-child [data-random-attr-dc8229fd] .random-classname-c22b6681 .random-classname-1205305b .random-classname-286e4f69 >', + '.random-classname-54bd0cad', + '.random-classname-1205305b .random-classname-53429c31', + '.random-classname-bfa881f9', + '.random-classname-29bb7293', + '.random-classname-7663a03d', + '.random-classname-80d320c1', + '.random-classname-80d320c1 .random-classname-30599889', + '.random-classname-b3ae249b > .random-classname-53e6ebff ::slotted', + '[data-random-attr-dc8229fd] .random-classname-c22b6681 :last-child .random-classname-d656b115', + '.random-classname-18aace3b ::before > ::slotted .random-classname-ee43fd4b .random-classname-75c00653 .random-classname-c22b6681 .random-classname-80d320c1 > .random-classname-8dc69c0f .random-classname-796040b3 >', + '.random-classname-6b5755e1', + '.random-classname-870cb6bb', + '[data-random-attr-c647fea5]', + '.random-classname-198471a9', + '.random-classname-c48fedc3', + '.random-classname-1c34f3a7', + '.random-classname-3b5d0671', + '[data-random-attr-75c205cb]', + '.random-classname-510bc82f', + '.random-classname-b3ae249b .random-classname-d656b115 .random-classname-797f1ed3', + '.random-classname-c22b6681 :last-child :last-child >', + ':last-child [data-random-attr-dc8229fd] .random-classname-c22b6681 .random-classname-b3ae249b > [data-random-attr-dc2085c5] [data-random-attr-ac779e0d]', + '::placeholder >', + '.random-classname-4ee688b0', + '.random-classname-ed1fa562', + '.random-classname-3262cb0c', + '.random-classname-b3ae249b > .random-classname-bed22900 >', + ':not(.random-classname-8a20841e) .random-classname-c4018c34', + '::slotted :first-child .random-classname-c22b6681 :last-child .random-classname-bed22900 ::before >', + '.random-classname-6609506f', + '.random-classname-8da62679', + '[data-random-attr-c94b0b13]', + '[data-random-attr-b0eeba26=random-attr-value-846f8b4d] > ::before .random-classname-d768a32b .random-classname-8596833 .random-classname-18aace3b ::before > ::slotted > .random-classname-ee43fd4b .random-classname-75c00653 .random-classname-c22b6681 :last-child > .random-classname-8a20841e ::slotted', + '.random-classname-17055541', + '.random-classname-e1b0cd1b', + '[data-random-attr-19a54405]', + '.random-classname-edf3dc7f', + '[data-random-attr-a5525d09]', + '.random-classname-d35b4dd4 .random-classname-2edacb07 .random-classname-d768a32b :first-child > .random-classname-c177e161 ::before ::slotted :not(:last-child) [data-random-attr-dc8229fd] .random-classname-c22b6681 .random-classname-b3ae249b .random-classname-edf3dc7f > .random-classname-2d16d023', + '.random-classname-663fcc07', + '.random-classname-f7485dd1', + '.random-classname-663fcc07 .random-classname-b8670d95 >', + '.random-classname-dfdf1fdd >', + '.random-classname-8ee17b25', + '::slotted .random-classname-cace71f1 .random-classname-c6f0fb9 .random-classname-c22b6681 > [data-random-attr-a28fca61] .random-classname-8ee17b25 :not(.random-classname-904b7629)', + '.random-classname-2f8fe643', + '.random-classname-c22b6681 :not(::slotted) .random-classname-8ee17b25 .random-classname-c7b73f6d', + '.random-classname-75c00653 > :not(.random-classname-c22b6681) [data-random-attr-a28fca61] :nth-child(4)', + '.random-classname-14679e17 .random-classname-916fd79c ::before >', + '.random-classname-ea0e8e37', + '.random-classname-130fcf81', + '.random-classname-58244245', + '.random-classname-ee43fd4b > .random-classname-75c00653 .random-classname-c22b6681 [data-random-attr-a28fca61] .random-classname-ea0e8e37 :not(.random-classname-8972ea8d) >', + '.random-classname-4a4fac47', + '.random-classname-85a6811', + '.random-classname-c31e9bd5', + '.random-classname-501d94cf', + '.random-classname-f299c9d9', + '.random-classname-59d86573', + ':nth-child(13)', + '.random-classname-98ae358c >', + '.random-classname-a7c5869 >', + '[data-random-attr-a28fca61] .random-classname-501d94cf .random-classname-4811c531', + '.random-classname-7eb120ef', + '.random-classname-7eb120ef .random-classname-3f5ccaf9 >', + '.random-classname-7eb120ef .random-classname-e959e77', + ':first-child .random-classname-c22b6681 .random-classname-14679e17 .random-classname-7eb120ef .random-classname-4f4759b', + ':not(:last-child) [data-random-attr-dc8229fd] .random-classname-c22b6681 [data-random-attr-a28fca61] .random-classname-7eb120ef [data-random-attr-18d1ccff] >', + '.random-classname-d768a32b .random-classname-8596833 .random-classname-18aace3b .random-classname-5c178225 .random-classname-faae266d .random-classname-ee43fd4b .random-classname-75c00653 .random-classname-c22b6681 [data-random-attr-a28fca61] .random-classname-7eb120ef ::before', + '.random-classname-c6f0fb9 .random-classname-c22b6681 .random-classname-a15bcc87', + ':not(.random-classname-c22b6681) .random-classname-a15bcc87 [data-random-attr-4aedbd0f]', + '.random-classname-7ca06a15 [data-random-attr-8450f1b3]', + '[data-random-attr-f9213ee1]', + '.random-classname-c8e5f11f', + ':first-child .random-classname-c22b6681 > ::slotted [data-random-attr-4aedbd0f] ::before', + '.random-classname-ff3d7d39', + '.random-classname-63604fd3', + '.random-classname-a8478401', + '.random-classname-a15bcc87 .random-classname-ff3d7d39 .random-classname-1bd1f192', + '.random-classname-da91a94', + '.random-classname-ff3d7d39 .random-classname-2ddfe4e6', + '.random-classname-c2b0ed08', + '.random-classname-a15bcc87 > .random-classname-b882254f >', + '.random-classname-1ceb2e59', + '.random-classname-5b1bdf3', + '.random-classname-4c11e29d', + '.random-classname-99e72ed7', + '.random-classname-85cb5921', + '.random-classname-24cddbfb', + ':first-child > .random-classname-c22b6681 :not([data-random-attr-a8f2b251]) .random-classname-11b5695f', + '.random-classname-ad25b22d', + '.random-classname-2612f4e7', + '.random-classname-8d5ed9b1', + '.random-classname-36e17b0b', + '.random-classname-c22b6681 ::slotted .random-classname-11b5695f > .random-classname-c1e9f16f', + '.random-classname-c22b6681 > ::slotted .random-classname-11b5695f .random-classname-26cc6f79', + '.random-classname-9dcd3c13', + '.random-classname-e8ba5bd', + '.random-classname-7f791e1b', + '.random-classname-f7febd05', + '[data-random-attr-5680bd7f]', + '::slotted :first-child .random-classname-c22b6681 > .random-classname-7f791e1b [data-random-attr-5680bd7f] .random-classname-dce94123 >', + '.random-classname-555cbd4d', + '.random-classname-4968cd07', + '[data-random-attr-e1b606d1]', + '.random-classname-5502c695', + '.random-classname-c6f0fb9 .random-classname-c22b6681 > .random-classname-e5f4be41 .random-classname-4968cd07 .random-classname-391acd8f', + '.random-classname-623aca33', + '.random-classname-10f1f8dd', + '[data-random-attr-b7d4df17]', + '[data-random-attr-dc8229fd] .random-classname-c22b6681 .random-classname-e5f4be41 .random-classname-10bb361 >', + '.random-classname-20b8703b .random-classname-34f7425', + '.random-classname-d932d743', + ':not(:first-child) .random-classname-c22b6681 ::before ::before >', + '[data-random-attr-aaadb527] :last-child :last-child', + '.random-classname-c22b6681 :not(.random-classname-ae4586d) .random-classname-58e6bb45', + '.random-classname-d0695bf', + '::before .random-classname-58e6bb45 .random-classname-4967c366', + '.random-classname-9413d25b ::slotted', + '.random-classname-5e2c1673', + '.random-classname-c177e161 .random-classname-50b25f9f .random-classname-faae266d > .random-classname-cace71f1 .random-classname-c6f0fb9 .random-classname-c22b6681 .random-classname-d932d743 .random-classname-da7592d9 .random-classname-bd224da1', + '.random-classname-ba6e6169', + '.random-classname-c3283383', + '::slotted > .random-classname-c3283383 .random-classname-99053ead', + '.random-classname-6f24b567 >', + ':last-child >', + ':last-child [data-random-attr-dc8229fd] .random-classname-198c9265 .random-classname-ba6e6169 .random-classname-99053ead .random-classname-95f513f9', + '::slotted .random-classname-f180523d', + '.random-classname-c6f0fb9 .random-classname-198c9265 > .random-classname-f180523d :not(.random-classname-b33ec69b)', + '.random-classname-b33ec69b > [data-random-attr-2900adff]', + '.random-classname-9012aa89', + '.random-classname-2066cd87', + '.random-classname-198c9265 ::placeholder', + ':not(::slotted) :not(:first-child) > ::slotted > ::placeholder .random-classname-c1c68876', + ':last-child [data-random-attr-dc8229fd] > .random-classname-198c9265 .random-classname-29ae1970 > .random-classname-5579cba4 .random-classname-3aa718 >', + '.random-classname-c1c68876 .random-classname-4b9d521f', + '.random-classname-7b7683a9', + '.random-classname-b5c864ed', + '.random-classname-abb7f5a7', + '.random-classname-2edacb07 :last-child :first-child .random-classname-c177e161 ::before ::slotted :last-child [data-random-attr-dc8229fd] .random-classname-b5c864ed :first-child', + '.random-classname-720ec639', + '.random-classname-5dc580d3', + '.random-classname-c6f0fb9 .random-classname-b5c864ed .random-classname-7d915871 .random-classname-720ec639 .random-classname-4dd0afb7 >', + '.random-classname-41a577c5', + '.random-classname-faaf063f', + '[data-random-attr-b1e1ecc9]', + '.random-classname-449ad00d', + '.random-classname-e2202dc7', + '.random-classname-389e591', + '.random-classname-b4c33155 > .random-classname-7d38f759', + '.random-classname-faae266d > .random-classname-ee43fd4b > .random-classname-75c00653 .random-classname-99676fd7', + '.random-classname-c6558ee5', + '.random-classname-cc9ce5e9', + '.random-classname-f77bac03', + '[data-random-attr-ff6dcb2d]', + '.random-classname-c6558ee5 [data-random-attr-ff6dcb2d] [data-random-attr-56658c0b] >', + '.random-classname-ee43fd4b .random-classname-75c00653 .random-classname-99676fd7 > .random-classname-1ea78784 >', + '.random-classname-5c178225 .random-classname-faae266d > .random-classname-cace71f1 > .random-classname-c6f0fb9 .random-classname-97fbb9d .random-classname-e85b9d02 > :not(.random-classname-397c0f56)', + '.random-classname-397c0f56 :nth-child(10)', + '.random-classname-2456f1b', + ':not(.random-classname-18aace3b) .random-classname-5c178225 .random-classname-faae266d .random-classname-ee43fd4b > .random-classname-75c00653 > :not(.random-classname-99676fd7) .random-classname-1ea78784 > ::placeholder', + '.random-classname-e85b9d02 .random-classname-aeb62cd4 [data-random-attr-579033ba=random-attr-value-3087afd1] >', + '.random-classname-50b25f9f ::slotted :last-child [data-random-attr-dc8229fd] [data-random-attr-80d24221] > .random-classname-78f17b33', + '.random-classname-6ceb9c61', + '.random-classname-8218829', + '::slotted .random-classname-6f28d1dd ::before ::slotted', + '::slotted :last-child [data-random-attr-dc8229fd] [data-random-attr-80d24221] .random-classname-78f17b33 [data-random-attr-c745413b] > .random-classname-b9525aaf >', + '[data-random-attr-bb0834fd]', + '.random-classname-c6f0fb9 .random-classname-f6299953 .random-classname-51e1037', + '.random-classname-1d70f543 ::slotted :first-child [data-random-attr-bb0834fd] [data-random-attr-f304a181] ::slotted >', + '.random-classname-c177e161 ::before > .random-classname-1d70f543 :last-child [data-random-attr-dc8229fd] .random-classname-f6299953 .random-classname-51e1037 > .random-classname-4aa1235b ::before', + '[data-random-attr-f304a181] [data-random-attr-fccbba11]', + '.random-classname-3a4c0dd5', + '.random-classname-4215d6cf', + ':first-child > [data-random-attr-bb0834fd] [data-random-attr-f304a181] ::slotted .random-classname-57355bd9', + '.random-classname-f6299953 > ::slotted', + '::slotted > .random-classname-ee43fd4b .random-classname-75c00653 [data-random-attr-bb0834fd] :last-child .random-classname-a9fb7adf', + '.random-classname-f2878b65 .random-classname-781a5528', + '.random-classname-faae266d ::slotted :first-child > :not([data-random-attr-bb0834fd]) ::slotted ::placeholder > ::before', + ':last-child :nth-child(1) .random-classname-d0080593', + '.random-classname-18aace3b .random-classname-5c178225 > .random-classname-faae266d ::slotted', + '.random-classname-d88702be .random-classname-68fd40a0 .random-classname-d35b4dd4 > .random-classname-2edacb07 ::slotted > .random-classname-7ac7ae99 .random-classname-c177e161 ::before ::slotted .random-classname-ebc4ab3d ::before', + '::slotted .random-classname-ebc4ab3d .random-classname-ce8d179b > [data-random-attr-93fc6aa3] .random-classname-6335ce87', + '.random-classname-ffc53389 > .random-classname-6a960451 .random-classname-c69e1eab', + '.random-classname-c69e1eab .random-classname-4b1fdc15', + '::slotted > ::slotted .random-classname-c0b75bc1 > ::before .random-classname-6a960451 .random-classname-c69e1eab ::before', + '.random-classname-ba2d29bb', + '.random-classname-5807e9a5', + '.random-classname-2b98b31f', + '.random-classname-ebc4ab3d .random-classname-c0b75bc1 .random-classname-94738eff .random-classname-6335ce87 .random-classname-2b98b31f > .random-classname-e6bec0c3', + '.random-classname-d82b7ded', + '.random-classname-c74239fb .random-classname-8470a75f .random-classname-579ccae9 :last-child .random-classname-63e5590b .random-classname-ac6caf6f > ::after .random-classname-d88702be .random-classname-68fd40a0 .random-classname-d35b4dd4 .random-classname-2edacb07 :last-child > :first-child .random-classname-c177e161 .random-classname-50b25f9f .random-classname-1d70f543 .random-classname-ebc4ab3d .random-classname-c0b75bc1 [data-random-attr-93fc6aa3] > .random-classname-6335ce87 .random-classname-d82b7ded [data-random-attr-c8cb38cb]', + '.random-classname-4056f44 >', + '.random-classname-c177e161 .random-classname-5c178225 > :not(::slotted) .random-classname-ebc4ab3d .random-classname-ce8d179b .random-classname-94738eff .random-classname-d497b4b8 >', + '.random-classname-faae266d > ::slotted ::before ::before .random-classname-d497b4b8 :first-child', + '.random-classname-cec40f7e', + '.random-classname-f1dfab60', + '[data-random-attr-728ecb92=random-attr-value-d40d75c9]', + '::slotted > .random-classname-ce8d179b .random-classname-ffc53389 .random-classname-d497b4b8 > :first-child > .random-classname-a8e2690d', + '.random-classname-e7faac62', + '.random-classname-52f2de4', + '::after', + '::after > .random-classname-45f24a0c', + '.random-classname-cd7f5b1e', + '.random-classname-55b21800', + '.random-classname-ffc53389 .random-classname-d497b4b8 .random-classname-cd7f5b1e .random-classname-50521e86 >', + '.random-classname-d497b4b8 .random-classname-cd7f5b1e > .random-classname-5b4bb15c >', + ':first-child ::placeholder', + '.random-classname-ce8d179b [data-random-attr-93fc6aa3] .random-classname-a4e1b5f8', + '.random-classname-7a15c01b', + '.random-classname-ebc4ab3d .random-classname-c0b75bc1 .random-classname-94738eff .random-classname-a4e1b5f8 .random-classname-7a15c01b [data-random-attr-693f809]', + '.random-classname-76d9ef4d', + '.random-classname-5306cf07', + '[data-random-attr-88790f8f]', + ':nth-child(2) .random-classname-8a83aadd', + '.random-classname-44fb6117', + '[data-random-attr-762f8561]', + ':nth-child(7)', + '.random-classname-faae266d ::slotted .random-classname-c0b75bc1 > ::before :nth-child(2) ::after', + '.random-classname-898cca5a', + '.random-classname-ce8d179b > .random-classname-ffc53389 :nth-child(2) .random-classname-9cc7a874 > .random-classname-6cd9262e', + '.random-classname-ebc4ab3d > ::before .random-classname-94738eff .random-classname-a4e1b5f8 > .random-classname-79f5dc72 :last-child >', + '.random-classname-c0b75bc1 ::slotted >', + '.random-classname-f557ad45', + '[data-random-attr-da8e57bf]', + '::before ::slotted', + '.random-classname-539a6311', + '.random-classname-268dab6b', + '::slotted ::before ::slotted >', + '.random-classname-ce8d179b [data-random-attr-f8d924d9] > .random-classname-99c8011d', + '::slotted ::slotted', + '.random-classname-91268465', + '.random-classname-fa69dbdf', + '::slotted :not(.random-classname-c9bc1583)', + '::before .random-classname-1d70f543 .random-classname-ebc4ab3d > .random-classname-c9bc1583 .random-classname-85dd70ad >', + '.random-classname-a4d74031', + '.random-classname-e633258b', + '.random-classname-85dd70ad .random-classname-a4d74031 .random-classname-53f9e5f5', + '.random-classname-75d43693', + '.random-classname-c177e161 .random-classname-5c178225 .random-classname-1d70f543 > .random-classname-ebc4ab3d [data-random-attr-1220c4c1]', + '.random-classname-351de720', + '.random-classname-861d3d52', + '.random-classname-5c178225 .random-classname-faae266d > :not(.random-classname-ebc4ab3d) .random-classname-792d043d .random-classname-351de720 .random-classname-1a971c54 >', + '.random-classname-1d70f543 ::slotted > :nth-child(3) .random-classname-861d3d52 :nth-child(6) ::before', + '.random-classname-79c8cf87 .random-classname-aec8afab', + '.random-classname-cbfb200f', + '.random-classname-8be5b719', + '.random-classname-7c3b04b3 >', + '.random-classname-5c178225 ::slotted .random-classname-8be5b719 :not(.random-classname-7c3b04b3) .random-classname-9c1e975d', + '.random-classname-2edacb07 > ::slotted :first-child .random-classname-c177e161 ::before ::slotted > .random-classname-cbfb200f .random-classname-7c3b04b3 > .random-classname-9c1e975d > .random-classname-cd3f8197', + '.random-classname-82d6f9e1 ::before', + '.random-classname-c93ffabb :not(.random-classname-78d8141f)', + '::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before > ::slotted ::slotted > .random-classname-18aace3b .random-classname-50b25f9f ::slotted ::slotted', + '.random-classname-1d70f543 .random-classname-e4f895a9 [data-random-attr-b955aa71]', + '.random-classname-524af7a7 ::before', + '.random-classname-c41be2d3', + '.random-classname-5c178225 .random-classname-1d70f543 ::slotted ::slotted [data-random-attr-6de24c2f] ::before .random-classname-2c5c9cdb >', + '.random-classname-d5ba69c5', + '::before .random-classname-8470a75f .random-classname-579ccae9 .random-classname-df01802d .random-classname-1d1fe575 ::placeholder .random-classname-5877a1f8 .random-classname-d88702be > ::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before :last-child .random-classname-8596833 .random-classname-18aace3b .random-classname-50b25f9f .random-classname-7afc97e3', + '.random-classname-dd4e020d', + '.random-classname-6642fc7', + '[data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before :last-child ::slotted :not(.random-classname-18aace3b) .random-classname-50b25f9f .random-classname-7afc97e3 .random-classname-6642fc7 .random-classname-d5273791', + '.random-classname-d5273791 .random-classname-44e3f3eb', + '.random-classname-d5273791 ::before > .random-classname-64808959', + '.random-classname-d5273791 .random-classname-44e3f3eb > .random-classname-ee42884f .random-classname-dbfed0f3', + '::before .random-classname-64808959 .random-classname-9fc76d9d ::before >', + '.random-classname-68fd40a0 .random-classname-d35b4dd4 .random-classname-2edacb07 :last-child > :first-child .random-classname-c177e161 :not(::before) :not(.random-classname-6f1a8c5f)', + '.random-classname-3d938e03', + ':not(.random-classname-b3ba54b1)', + '.random-classname-da980275', + '.random-classname-eb974a79', + '.random-classname-140eb0bd', + '.random-classname-70dec1f7', + '.random-classname-50b25f9f .random-classname-90e32805', + '.random-classname-f6ea111b .random-classname-4d789423', + '.random-classname-f6ea111b > .random-classname-cc1c8109 ::before', + ':not(.random-classname-50b25f9f) .random-classname-f6ea111b .random-classname-4d789423 .random-classname-997bd007 .random-classname-e51f782b', + '.random-classname-268e308f :nth-child(7)', + '.random-classname-bab68640 >', + ':not(.random-classname-63e5590b) :nth-child(3) .random-classname-5877a1f8 .random-classname-d88702be .random-classname-68fd40a0 > .random-classname-d35b4dd4 > .random-classname-2edacb07 ::slotted .random-classname-7ac7ae99 .random-classname-c177e161 ::before .random-classname-d3bf1d74', + '::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before :last-child > ::slotted .random-classname-18aace3b > .random-classname-5c178225 [data-random-attr-9c704ac6=random-attr-value-3943a36d] .random-classname-ee8a3827', + '.random-classname-d3bf1d74 .random-classname-ee8a3827 .random-classname-1ce670b5', + '.random-classname-d103fb53', + '.random-classname-9bbf7cb9 .random-classname-206ae6fd', + '.random-classname-d103fb53 .random-classname-5b3d9237 [data-random-attr-f2c7c55b]', + '.random-classname-b1062645', + '.random-classname-ec3838bf', + '.random-classname-ff9a4349', + '.random-classname-bb4cd063', + '.random-classname-50b25f9f > .random-classname-ff9a4349 ::before', + '::slotted .random-classname-18aace3b ::before .random-classname-bb4cd063 :last-child ::before', + ':last-child .random-classname-cbbb3c6b ::slotted', + '.random-classname-240fda1d', + '.random-classname-68fd40a0 .random-classname-d35b4dd4 .random-classname-2edacb07 > .random-classname-d768a32b .random-classname-7ac7ae99 > .random-classname-c177e161 > .random-classname-50b25f9f .random-classname-ff9a4349 :last-child .random-classname-cbbb3c6b ::slotted > .random-classname-240fda1d .random-classname-19819257', + '.random-classname-c41c3cdf', + '.random-classname-3d9c7c69', + '[data-random-attr-d64c0683]', + '.random-classname-18aace3b .random-classname-5c178225 [data-random-attr-d64c0683] [data-random-attr-23366931]', + '.random-classname-7dc1368b', + '.random-classname-26df1ef5', + '::before :last-child ::slotted .random-classname-18aace3b .random-classname-50b25f9f .random-classname-c41c3cdf .random-classname-54d43867 > .random-classname-26df1ef5 > .random-classname-4315eef9', + '::before [data-random-attr-d64c0683] [data-random-attr-23366931] .random-classname-7dc1368b .random-classname-18246793 ::slotted', + '[data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before .random-classname-d768a32b .random-classname-8596833 .random-classname-18aace3b > ::before .random-classname-c41c3cdf [data-random-attr-23366931] :not(.random-classname-26df1ef5) > .random-classname-4315eef9 :not(.random-classname-c6ee2dc1) .random-classname-bd2550ff', + '[data-random-attr-1dc95651]', + '.random-classname-74f740ab', + '.random-classname-9a32410f', + '.random-classname-b6268019 .random-classname-b5ac297 >', + '.random-classname-18aace3b :first-child .random-classname-9a32410f .random-classname-a13bb5b3 .random-classname-b5ac297 .random-classname-4756cbbb >', + '.random-classname-b6268019 .random-classname-b5ac297 .random-classname-8630e2e1 .random-classname-eebbdba5', + '.random-classname-18aace3b :first-child > .random-classname-9a32410f .random-classname-b6268019 > .random-classname-b5ac297 .random-classname-4756cbbb :not(::slotted) :not(.random-classname-cb1ca2c3)', + '.random-classname-b1c89dda', + '::before :last-child .random-classname-aa1471ae', + '.random-classname-4c5fb8c2 > ::after', + '::after :not(::placeholder)', + '.random-classname-5a00ee94', + '[data-random-attr-840ad8e6=random-attr-value-71dd9b0d]', + '.random-classname-2c2c30c7', + '.random-classname-de8be091', + '[data-random-attr-9d1384eb]', + '.random-classname-2d5f5c55', + '[data-random-attr-560aa94f]', + '.random-classname-b7a5259', + '.random-classname-8a3efd21', + '.random-classname-9ca879e5', + ':not(::placeholder) > [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before :not(.random-classname-d768a32b) ::before', + '.random-classname-35e57f03', + ':last-child :not(::before) ::before .random-classname-6afcf8e7', + '.random-classname-54b7db1 .random-classname-6acf3b75 >', + '.random-classname-6afcf8e7 .random-classname-c814756f ::before', + '.random-classname-bce382f7', + '.random-classname-3607b0be', + '.random-classname-6d9de0d2', + '.random-classname-6d450bd4', + ':nth-child(6)', + '.random-classname-1754aad1', + ':last-child .random-classname-7b6eed5f .random-classname-35e57f03 .random-classname-54b7db1 .random-classname-6acf3b75 .random-classname-604d9379 :not(.random-classname-bce382f7) .random-classname-3607b0be .random-classname-6d9de0d2 :last-child .random-classname-28e7518f >', + '.random-classname-579ccae9 ::before .random-classname-1d1fe575 .random-classname-ac6caf6f > .random-classname-5877a1f8 > .random-classname-d88702be ::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] > ::before .random-classname-d768a32b > .random-classname-a0e35761', + '.random-classname-503b43b', + '.random-classname-a56f5825', + '.random-classname-ce10a329', + '.random-classname-ce10a329 .random-classname-aae69b43', + '::before > .random-classname-4b5bb927', + '.random-classname-a56f5825 .random-classname-ce10a329 :not(.random-classname-aae69b43) :first-child .random-classname-b146a9b5 >', + '.random-classname-6aaec5b9', + '.random-classname-b146a9b5 .random-classname-6aaec5b9 > .random-classname-63372c53', + '.random-classname-84735337', + '.random-classname-ac6caf6f ::after .random-classname-d88702be .random-classname-68fd40a0 > :not(.random-classname-d35b4dd4) .random-classname-2edacb07 .random-classname-d768a32b :not(.random-classname-4531e317) .random-classname-503b43b .random-classname-ce10a329 :not(.random-classname-aae69b43) .random-classname-4b5bb927 > .random-classname-b146a9b5 > .random-classname-6aaec5b9 .random-classname-63372c53 .random-classname-c1d23ffd .random-classname-4e61dc81 >', + '::before .random-classname-8470a75f .random-classname-579ccae9 .random-classname-df01802d .random-classname-1d1fe575 > :nth-child(3) > .random-classname-5877a1f8 .random-classname-d88702be ::placeholder > [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before :last-child .random-classname-20589f45', + '.random-classname-2edacb07 .random-classname-d768a32b .random-classname-20589f45 ::slotted', + '.random-classname-20589f45 > .random-classname-852619bf .random-classname-1d32e78d', + '.random-classname-d88702be .random-classname-68fd40a0 :not(.random-classname-d35b4dd4) .random-classname-2edacb07 .random-classname-d768a32b .random-classname-20589f45 .random-classname-a97fcc49 :not(.random-classname-2af9b147) > .random-classname-9aeccd6b', + '::before .random-classname-33de38d5 > .random-classname-58a2da73', + '.random-classname-6f7bb31d', + '.random-classname-1dafd357 ::slotted', + '.random-classname-c51e8569', + '.random-classname-a97fcc49 :not(.random-classname-2af9b147) .random-classname-9aeccd6b .random-classname-58a2da73 .random-classname-1dafd357 .random-classname-1662887b > .random-classname-c51e8569 .random-classname-ef96b967', + '.random-classname-6f7bb31d .random-classname-1c5df1a1 :not(.random-classname-fe5ff783) :last-child > :not(.random-classname-953e37f9)', + '::slotted :nth-child(13)', + '.random-classname-2ff3812c >', + ':not(::before) :last-child > :nth-child(13) ::placeholder ::after', + '.random-classname-d35b4dd4 .random-classname-2edacb07 > :last-child .random-classname-8d69b63d .random-classname-2ff3812c .random-classname-e1581752 .random-classname-b2ab86a6', + ':not(::placeholder) [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before > :last-child :nth-child(13) ::placeholder > :not(.random-classname-e1581752) > .random-classname-3d3fb4c8 > ::slotted', + '.random-classname-c94b4919', + '.random-classname-74c066b3 .random-classname-3e3a0397', + '.random-classname-608bd4a5', + '[data-random-attr-76cbbb0e=random-attr-value-b5ad0715] .random-classname-c94b4919 .random-classname-74c066b3 > [data-random-attr-8eeecbe1] :not(.random-classname-608bd4a5) ::slotted', + '.random-classname-b42cc8ed', + '.random-classname-8fedf9a7', + '[data-random-attr-6ea9fc71]', + '.random-classname-cbf86bcb', + ':not([data-random-attr-b0eeba26=random-attr-value-846f8b4d]) ::before > .random-classname-b42cc8ed ::before > ::before >', + '.random-classname-2edacb07 .random-classname-8fedf9a7 .random-classname-cbf86bcb :first-child > [data-random-attr-a8139101]', + '.random-classname-185f5bc5', + '[data-random-attr-6ea9fc71] .random-classname-cbf86bcb > .random-classname-71e58e2f ::slotted :nth-child(11) .random-classname-3ed795e6 >', + '::before .random-classname-5f97b3b7 ::after > ::after .random-classname-bb0dc47a', + '.random-classname-5f97b3b7 :not(.random-classname-185f5bc5) .random-classname-3ed795e6 .random-classname-bb0dc47a .random-classname-a6b2b5bc', + '.random-classname-31b9b24e', + '.random-classname-c8b5d903 > .random-classname-63e5590b .random-classname-ac6caf6f ::after .random-classname-d88702be .random-classname-68fd40a0 :not(.random-classname-d35b4dd4) .random-classname-2edacb07 [data-random-attr-6ea9fc71] > .random-classname-cbf86bcb .random-classname-71e58e2f ::slotted :nth-child(11) > .random-classname-3ed795e6 .random-classname-bb0dc47a .random-classname-a6b2b5bc > .random-classname-31b9b24e .random-classname-da0ae6b0', + '.random-classname-a6b2b5bc > .random-classname-31b9b24e .random-classname-da0ae6b0 .random-classname-3a7ecce4', + '.random-classname-2edacb07 .random-classname-13711c58', + ':not(:nth-child(3)) .random-classname-62bf35ea .random-classname-d88702be ::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before > .random-classname-13711c58 .random-classname-3c35c90c', + ':not(.random-classname-69b2321e) >', + '.random-classname-ac6caf6f .random-classname-62bf35ea .random-classname-d88702be ::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before > .random-classname-13711c58 .random-classname-3c35c90c .random-classname-c0860700 .random-classname-124ec832', + '.random-classname-13711c58 .random-classname-de6b7f4a .random-classname-69b2321e .random-classname-124ec832 > .random-classname-342046a8', + '.random-classname-f6344a34 > :first-child .random-classname-f8143113', + ':first-child > .random-classname-342046a8 .random-classname-33e7dc79 .random-classname-bf6f62bd >', + ':nth-child(3) .random-classname-5877a1f8 .random-classname-d88702be .random-classname-68fd40a0 > .random-classname-d35b4dd4 .random-classname-2edacb07 .random-classname-13711c58 .random-classname-de6b7f4a .random-classname-69b2321e .random-classname-124ec832 [data-random-attr-9e6af05c=random-attr-value-5c9dd00b] .random-classname-33e7dc79 .random-classname-bf6f62bd .random-classname-43ac43f7 .random-classname-3f9eb31b', + '.random-classname-bf6f62bd ::before [data-random-attr-ea5a1a05] ::slotted', + '.random-classname-33e7dc79 .random-classname-bf6f62bd .random-classname-43ac43f7 .random-classname-3f9eb31b .random-classname-823d227f .random-classname-5823ba4d', + '::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before :nth-child(11)', + ':last-child > .random-classname-63e5590b .random-classname-ac6caf6f > ::after > .random-classname-d88702be .random-classname-68fd40a0 .random-classname-d35b4dd4 .random-classname-2edacb07 .random-classname-15a96395 [data-random-attr-90f8bd98=random-attr-value-38732417]', + '.random-classname-67a0853b', + '.random-classname-d2115125', + ':nth-child(9)', + '.random-classname-3b6a0774', + '.random-classname-a85cc4c6', + '[data-random-attr-989537e8=random-attr-value-e5f13a27]', + '.random-classname-fdfd90f1', + '[data-random-attr-6f83744b]', + '.random-classname-fdfd90f1 .random-classname-cd0deaf', + '.random-classname-504ae2b5 .random-classname-c25d98fd', + '.random-classname-fefe675b', + '.random-classname-d34f1845', + '::before .random-classname-d34f1845 ::before', + ':last-child .random-classname-ca67b247', + '.random-classname-e9ff7af6 :nth-child(9) [data-random-attr-989537e8=random-attr-value-e5f13a27] [data-random-attr-6f83744b] .random-classname-504ae2b5 .random-classname-c25d98fd .random-classname-d34f1845 .random-classname-9f495549 .random-classname-8a5e5e11 .random-classname-4056f1d5', + '.random-classname-579ccae9 .random-classname-c8b5d903 .random-classname-63e5590b .random-classname-ac6caf6f :not(.random-classname-5877a1f8) .random-classname-d88702be .random-classname-68fd40a0 > .random-classname-d35b4dd4 .random-classname-2edacb07 > .random-classname-9365acf', + '.random-classname-ac6caf6f .random-classname-62bf35ea .random-classname-d88702be :not(::placeholder) [data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before .random-classname-9365acf ::slotted', + '.random-classname-68fd40a0 .random-classname-d35b4dd4 .random-classname-2edacb07 .random-classname-9365acf [data-random-attr-c0b8c1d] .random-classname-27a6daa1', + '.random-classname-27a6daa1 .random-classname-34cfedf', + '.random-classname-5b1c7fd9 [data-random-attr-b540597b] .random-classname-ea848e69 > .random-classname-1d2fbbad', + '.random-classname-f20bb31', + '.random-classname-f20bb31 .random-classname-60e9588b', + '::slotted > .random-classname-f20bb31 :first-child .random-classname-8e4a80f9', + '.random-classname-60e9588b .random-classname-8e4a80f9 .random-classname-e21a2477', + '.random-classname-cc2c5c3e', + '.random-classname-60e9588b > .random-classname-dabce6ef .random-classname-e21a2477 :nth-child(14) .random-classname-d3862ea3', + '.random-classname-c7fb633f .random-classname-2b751c9 [data-random-attr-589c050d] :last-child .random-classname-d83259e4 > .random-classname-bbe98721 ::before .random-classname-8470a75f .random-classname-579ccae9 .random-classname-df01802d > .random-classname-1d1fe575 .random-classname-ac6caf6f > .random-classname-62bf35ea .random-classname-d88702be ::placeholder [data-random-attr-b0eeba26=random-attr-value-846f8b4d] .random-classname-5419d287', + '.random-classname-db6062ab >', + '[data-random-attr-b0eeba26=random-attr-value-846f8b4d] ::before .random-classname-db6062ab .random-classname-8b6c830f', + '.random-classname-d35b4dd4 .random-classname-fc4f86cd .random-classname-db6062ab .random-classname-afcec015 ::before >', + '.random-classname-d88702be ::placeholder :not([data-random-attr-b0eeba26=random-attr-value-846f8b4d]) .random-classname-fc4f86cd > .random-classname-db6062ab .random-classname-8b6c830f [data-random-attr-6c917b3] .random-classname-2d10b4e1', + '.random-classname-902e371f', + '.random-classname-e969b0a9', + '.random-classname-f657aa7', + '.random-classname-c0ca7f35', + '.random-classname-e94d2f2f', + '.random-classname-697b75d3', + '.random-classname-2b01fa01', + '.random-classname-eb2a6b3f', + '[data-random-attr-6c917b3] :first-child :not(:first-child) > .random-classname-beea2571 .random-classname-c0ca7f35 > [data-random-attr-350c57d] .random-classname-2b01fa01 > .random-classname-327d4c5 .random-classname-c8ceae3', + '.random-classname-737ea6eb', + '.random-classname-aa50ce55', + '.random-classname-8666eb4f', + '.random-classname-9019e459', + '.random-classname-a8efe3f3', + '.random-classname-c4d0cf21', + '.random-classname-c4d0cf21 .random-classname-9fbe6be5', + '.random-classname-56d12e9', + '.random-classname-21156103', + '.random-classname-c4d0cf21 .random-classname-9fbe6be5 .random-classname-21156103 .random-classname-a809fae7', + '.random-classname-a809fae7 .random-classname-6f99cfb1', + '.random-classname-b8c1b76f', + '.random-classname-21156103 .random-classname-a809fae7 .random-classname-6f99cfb1 .random-classname-f6662579 :nth-child(9)', + '.random-classname-7427eabe', + '[data-random-attr-9532f5d4=random-attr-value-1fabe723]', + '.random-classname-1c34bad2 .random-classname-ab84534d', + '.random-classname-d88702be [data-random-attr-9532f5d4=random-attr-value-1fabe723] ::slotted ::before', + '.random-classname-ab84534d .random-classname-4c7bfcd1 .random-classname-9a65938f', + '.random-classname-68bd2b2b :not(.random-classname-9a65938f) .random-classname-d5adf699 .random-classname-9b570edd >', + '.random-classname-38786517 > [data-random-attr-e141563b]', + '.random-classname-1272961 .random-classname-a0574a25 >', + '.random-classname-cee6ee6d', + '.random-classname-ce4abb27', + '[data-random-attr-c36fb9f1]', + '.random-classname-aad679f ::slotted [data-random-attr-c36fb9f1] > [data-random-attr-89f31bb5]', + '.random-classname-95a7faf', + '::slotted .random-classname-ce4abb27 [data-random-attr-89f31bb5] ::before :not(.random-classname-21298e53)', + '.random-classname-21298e53 .random-classname-b20cf1fd', + ':not(.random-classname-62bf35ea) > .random-classname-d88702be :last-child', + '.random-classname-8ccddbbf', + '[data-random-attr-70f6de49]', + '.random-classname-c1232363', + '.random-classname-ae2198d', + '.random-classname-f999b347', + '[data-random-attr-e2bd0711]', + '.random-classname-f75bef6b', + '.random-classname-9973aad5', + '.random-classname-3040d736 >', + '.random-classname-641b1d9e', + '.random-classname-63e5590b .random-classname-ac6caf6f ::after .random-classname-d88702be .random-classname-798179b4', + '.random-classname-b356b04', + '.random-classname-d83259e4 .random-classname-bbe98721 ::before .random-classname-8470a75f .random-classname-579ccae9 .random-classname-df01802d .random-classname-1d1fe575 ::placeholder :not(.random-classname-5877a1f8) > .random-classname-c3ef046a', + '.random-classname-2270793e', + '.random-classname-86b27b20', + ':not(::after) .random-classname-2662f152', + '.random-classname-24fb3ec8', + '.random-classname-af7c7b3a', + '.random-classname-7765a7c', + '.random-classname-579ccae9 .random-classname-c8b5d903 > .random-classname-d1447770', + '.random-classname-6755c8b3', + '.random-classname-4f39fb5d', + '.random-classname-c2448597', + '.random-classname-f0969de1', + '.random-classname-df01802d .random-classname-6117c6a5', + '.random-classname-c8b5d903 .random-classname-960775c3', + '.random-classname-e4a0fba7', + '.random-classname-1d8e4e71', + '.random-classname-c7fb633f > .random-classname-2b751c9 :nth-child(5) .random-classname-7e3f274e [data-random-attr-3ebb70b6=random-attr-value-1ca2309d] :not(.random-classname-bbe98721) > .random-classname-c74239fb .random-classname-8470a75f > .random-classname-579ccae9 .random-classname-ddc4b835', + '.random-classname-579ccae9 .random-classname-16f8a6d3', + '.random-classname-40921e7d', + '[data-random-attr-511335b7]', + '.random-classname-e8306460', + '.random-classname-8854ec92', + '::before .random-classname-5c2407db .random-classname-c7fb633f .random-classname-2b751c9 .random-classname-e6b162e3 .random-classname-7e3f274e .random-classname-7b13f862 > .random-classname-bbe98721 .random-classname-9765008', + '.random-classname-e4fbdfbc', + '.random-classname-cb1e6c4e', + ':nth-child(12)', + '.random-classname-8dbfad59', + '[data-random-attr-589c050d] :last-child .random-classname-d83259e4 :not(.random-classname-bbe98721) > .random-classname-fa06d19d >', + '.random-classname-bbe98721 ::slotted', + '[data-random-attr-3ebb70b6=random-attr-value-1ca2309d] > :last-child >', + '.random-classname-f7d1f20b', + '.random-classname-7e3f274e > .random-classname-7b13f862 .random-classname-2bcc9313', + '::before [data-random-attr-e37719ed] .random-classname-8fd8dd71 :last-child .random-classname-9a55fd7d .random-classname-72d40cc5 .random-classname-c7fb633f .random-classname-2b751c9 ::after :last-child :last-child ::before', + '.random-classname-c7fb633f .random-classname-2b751c9 :nth-child(5) .random-classname-7e3f274e .random-classname-5c63551b', + '[data-random-attr-589c050d] :not(:last-child) .random-classname-7126a509', + '.random-classname-bf856cb7 .random-classname-5c2407db .random-classname-c7fb633f > .random-classname-2b751c9 .random-classname-c61a5823', + '.random-classname-c7fb633f .random-classname-2b751c9 ::before', + '.random-classname-298ab48f', + '.random-classname-e50cbf99', + '::before [data-random-attr-e37719ed] .random-classname-8fd8dd71 .random-classname-7d80272f .random-classname-bf856cb7 .random-classname-72d40cc5 .random-classname-c7fb633f > :not(.random-classname-2b751c9) :first-child', + '.random-classname-c7fb633f .random-classname-2b751c9 .random-classname-81e6273b', + '::slotted :last-child > .random-classname-9a55fd7d .random-classname-72d40cc5 .random-classname-c7fb633f .random-classname-2b751c9 > .random-classname-4f176e43', + '.random-classname-c7fb633f .random-classname-df45e2f1 >', + '.random-classname-2f96bc96 >', + '.random-classname-c7fb633f .random-classname-7acd8aec', + '::slotted :last-child .random-classname-bf856cb7 .random-classname-72d40cc5 > .random-classname-c7fb633f .random-classname-ae886749 >', + '.random-classname-ab729463', + '.random-classname-fdefb28d', + '.random-classname-72d40cc5 .random-classname-237fb011', + '.random-classname-a499806b', + '[data-random-attr-cf3463d5]', + '.random-classname-8fd8dd71 :last-child ::before', + '[data-random-attr-6ed29657]', + '::before [data-random-attr-e37719ed] > .random-classname-8fd8dd71 .random-classname-7d80272f :not(.random-classname-9407fb7b)', + '.random-classname-9b432f1f .random-classname-9832fcc3 ::slotted .random-classname-7808b735 .random-classname-eedd6165', + '[data-random-attr-4efca069]', + '.random-classname-8fd8dd71 > :first-child', + '.random-classname-8fd8dd71 > .random-classname-a49b0d31', + '.random-classname-f63628ef', + '.random-classname-b50f12f9', + '.random-classname-be8d2b93', + '.random-classname-9832fcc3 .random-classname-bc0bd1c1', + '.random-classname-8ba86989', + '::before .random-classname-9409e5bb :nth-child(3)', + '.random-classname-3250ea70 .random-classname-9fe65a5d .random-classname-9e5005a5 > .random-classname-f658dc70', + '.random-classname-9409e5bb .random-classname-1fb1ef22', + '.random-classname-10800c57 .random-classname-ffddb180 .random-classname-8355cb4 > .random-classname-f4a8d08b .random-classname-777deef .random-classname-d5ff4193 .random-classname-d58b473d .random-classname-1cf9b7c1 > .random-classname-ca400aff ::slotted .random-classname-15cabecd .random-classname-1bac300e .random-classname-3250ea70 ::before .random-classname-9e5005a5 .random-classname-c6fb330a', + '.random-classname-f4a8d08b > .random-classname-777deef .random-classname-86d838f9 .random-classname-d58b473d .random-classname-5e341c77 .random-classname-ca400aff .random-classname-20530f89 > .random-classname-15cabecd .random-classname-1bac300e ::slotted ::before .random-classname-9409e5bb .random-classname-9210f91f', + '.random-classname-8e0866c3', + '.random-classname-9fe65a5d .random-classname-f7213ed', + '.random-classname-ffddb180 :not(.random-classname-8355cb4) > .random-classname-58d77331 > .random-classname-777deef :not(.random-classname-d5ff4193) .random-classname-d58b473d > .random-classname-1cf9b7c1 .random-classname-ca400aff > ::slotted .random-classname-ae91ca87 .random-classname-1bac300e ::slotted [data-random-attr-be333c97] [data-random-attr-2f499ecb]', + '.random-classname-3250ea70 > ::before .random-classname-ed62f135', + '.random-classname-4ee9ad44', + '.random-classname-5cb7fb16', + '[data-random-attr-81d0d2b8=random-attr-value-9bf6f6b7]', + '.random-classname-58d77331 .random-classname-777deef .random-classname-86d838f9 .random-classname-d58b473d > :first-child > .random-classname-ca400aff .random-classname-20530f89 :nth-child(5) .random-classname-1bac300e > [data-random-attr-eb7b2d22=random-attr-value-adfdca19] > .random-classname-9fe65a5d .random-classname-3ba4c6c5 >', + '.random-classname-252bcce3', + '[data-random-attr-eb7b2d22=random-attr-value-adfdca19] .random-classname-10f434c7', + ':nth-child(5) .random-classname-1bac300e [data-random-attr-eb7b2d22=random-attr-value-adfdca19] .random-classname-91f9c8eb', + '.random-classname-79d24055', + '.random-classname-f7d32d4f', + '.random-classname-c8497659', + '.random-classname-c8cf45f3', + '.random-classname-1bac300e ::slotted >', + '.random-classname-1bac300e > .random-classname-d9645de5 >', + ':nth-child(5) .random-classname-cbc924e9 >', + '.random-classname-5e341c77 .random-classname-ca400aff .random-classname-20530f89 :nth-child(5) .random-classname-4c26fce7', + '.random-classname-d58b473d :first-child .random-classname-ca400aff .random-classname-20530f89 [data-random-attr-646ec413]', + '.random-classname-d58b473d .random-classname-1cf9b7c1 .random-classname-ca400aff > ::slotted .random-classname-f7800641', + '.random-classname-5e341c77 .random-classname-ca400aff .random-classname-20530f89 .random-classname-e24ba61b', + '.random-classname-ffddb180 ::slotted .random-classname-58d77331 .random-classname-777deef .random-classname-d5ff4193 .random-classname-d58b473d ::before .random-classname-ca400aff :not(::slotted) .random-classname-ab146648 >', + '.random-classname-d9da39fc', + '.random-classname-d857008e', + '.random-classname-f6dec5a2', + '.random-classname-777deef .random-classname-86d838f9 .random-classname-d58b473d > :not(.random-classname-5e341c77) .random-classname-ca400aff [data-random-attr-9f0e71f6=random-attr-value-3298c0dd]', + '::before .random-classname-777deef .random-classname-d5ff4193 .random-classname-d58b473d ::before .random-classname-ca400aff :nth-child(13)', + '.random-classname-49516a72 >', + '.random-classname-425a185a', + '.random-classname-86d838f9 .random-classname-d58b473d .random-classname-5e341c77 .random-classname-3884542e', + '.random-classname-7da08342', + '.random-classname-89e287c4', + ':first-child .random-classname-5863996', + '.random-classname-4ee5a5b', + '.random-classname-e7fdf049 >', + '::slotted > .random-classname-58d77331 :not(.random-classname-777deef) :not(.random-classname-d5ff4193) .random-classname-d58b473d > ::before ::slotted >', + '.random-classname-dca65911', + '.random-classname-bd58bdcf', + '.random-classname-777deef .random-classname-86d838f9 .random-classname-d58b473d .random-classname-fb599e73 >', + '::slotted .random-classname-32e5d66b > ::slotted :nth-child(13) .random-classname-ffddb180 ::slotted .random-classname-f4a8d08b .random-classname-777deef > .random-classname-d5ff4193 ::slotted', + '.random-classname-777deef .random-classname-86d838f9 :first-child', + '.random-classname-3fc606ad', + '.random-classname-8c48bd67', + '.random-classname-777deef .random-classname-b6ee3631 >', + '.random-classname-10800c57 > .random-classname-bec0989e [data-random-attr-533b0c06=random-attr-value-29cef3ad] .random-classname-f4a8d08b .random-classname-777deef .random-classname-2c75bf9', + '.random-classname-777deef .random-classname-5b931a3d', + '.random-classname-ba214e9b', + '.random-classname-3e74c185', + '[data-random-attr-c007b5ff]', + '.random-classname-2683df5b ::slotted ::slotted .random-classname-32e5d66b :not(::slotted) :not(:nth-child(13)) .random-classname-ffddb180 :not(::slotted) ::before .random-classname-777deef .random-classname-611781a3', + '.random-classname-bec0989e [data-random-attr-533b0c06=random-attr-value-29cef3ad] .random-classname-f4a8d08b .random-classname-777deef [data-random-attr-20beb15]', + '.random-classname-ffddb180 .random-classname-8355cb4 > .random-classname-58d77331 ::before', + '.random-classname-bec0989e > .random-classname-307456b2 .random-classname-f4a8d08b :not(.random-classname-d95f0797)', + '.random-classname-4833b8a5 >', + '[data-random-attr-533b0c06=random-attr-value-29cef3ad] .random-classname-f4a8d08b .random-classname-4edecba9', + '.random-classname-94d12ced', + '.random-classname-d063fda7', + '[data-random-attr-4602a071]', + '.random-classname-92d60443 .random-classname-52b53227 ::slotted ::before .random-classname-2683df5b ::slotted ::slotted .random-classname-32e5d66b ::slotted :nth-child(13) .random-classname-ffddb180 ::slotted ::slotted', + '[data-random-attr-a18e37d9] :nth-child(13) .random-classname-bec0989e [data-random-attr-533b0c06=random-attr-value-29cef3ad] ::before', + '.random-classname-92d60443 [data-random-attr-787c48f1] .random-classname-ca13d6af .random-classname-8a0f0c37 .random-classname-2683df5b ::slotted .random-classname-508c2a63 .random-classname-32e5d66b .random-classname-ff3552cf :nth-child(13) .random-classname-ffddb180 .random-classname-8355cb4 :last-child', + '.random-classname-a9593fc5', + '.random-classname-cc3e0e3f', + '[data-random-attr-a18e37d9] .random-classname-10800c57 > .random-classname-bec0989e [data-random-attr-aac7980d]', + '.random-classname-ff3552cf .random-classname-877cc41d > .random-classname-ffddb180 ::slotted', + ':nth-child(13) .random-classname-bec0989e .random-classname-e888f955', + '.random-classname-877cc41d .random-classname-ffddb180 > .random-classname-30ef4e4f', + ':not(.random-classname-bec0989e) .random-classname-10f977d7', + ':nth-child(11) >', + '.random-classname-f5791611 > .random-classname-fe8129d5 .random-classname-10800c57 .random-classname-bec0989e .random-classname-7e74c986', + '.random-classname-877cc41d .random-classname-a34d621a >', + '.random-classname-b057445c', + '.random-classname-459d59ee', + '.random-classname-f4bd0502', + '.random-classname-497ff756', + '.random-classname-9e7d58f8', + '.random-classname-5eb9d7a0', + '.random-classname-c0056429 [data-random-attr-787c48f1] .random-classname-ca13d6af .random-classname-a5f2d0fd .random-classname-2683df5b ::slotted > .random-classname-508c2a63 .random-classname-32e5d66b .random-classname-ff3552cf .random-classname-60add926 >', + '.random-classname-bded0d49 .random-classname-f5791611 .random-classname-fe8129d5 > .random-classname-7e6e2b48', + '.random-classname-32e5d66b ::slotted .random-classname-45589bba', + '[data-random-attr-a18e37d9] > .random-classname-ad75cefc >', + '::slotted > .random-classname-508c2a63 .random-classname-32e5d66b ::after', + '.random-classname-f5791611 [data-random-attr-ab7cd198=random-attr-value-25202817]', + '::slotted ::slotted .random-classname-32e5d66b ::slotted', + '.random-classname-218b5045 :first-child > .random-classname-f5791611 .random-classname-7319d029 >', + '::slotted :not(.random-classname-b229b696)', + '.random-classname-218b5045 :first-child :first-child', + '.random-classname-520c40e0', + '.random-classname-218b5045 .random-classname-bded0d49 :not(.random-classname-29b77d12)', + '.random-classname-c3d91c17 > .random-classname-9729fd3b .random-classname-92d60443 [data-random-attr-787c48f1] :not(::slotted) .random-classname-a5f2d0fd .random-classname-2683df5b ::slotted ::slotted .random-classname-9d446866 >', + '::slotted [data-random-attr-7ed7c6b9] .random-classname-8a0f0c37 .random-classname-2683df5b > :not(.random-classname-218b5045) .random-classname-4d20a26b', + '.random-classname-5496decf', + '.random-classname-ad43a3d9', + '.random-classname-2683df5b .random-classname-218b5045 .random-classname-e9b2f01d >', + '::before .random-classname-2683df5b :not(::slotted) .random-classname-c32d6d80', + '.random-classname-2683df5b .random-classname-218b5045 .random-classname-e7a772b2', + '::slotted [data-random-attr-7171e806=random-attr-value-a401fad]', + '.random-classname-b7699c8b', + '.random-classname-bb274f5', + '.random-classname-9729fd3b .random-classname-92d60443 [data-random-attr-787c48f1] > ::slotted ::before .random-classname-2683df5b ::slotted >', + ':not([data-random-attr-7ed7c6b9]) .random-classname-8a0f0c37 .random-classname-2683df5b .random-classname-aef7733d', + '.random-classname-7d8f9f9b', + '.random-classname-9f643a85', + '.random-classname-9729fd3b [data-random-attr-13c90d6d] ::slotted .random-classname-2191ab5 ::before > .random-classname-eb4ff2a3', + '.random-classname-12f1eacd', + '.random-classname-668c8c0e >', + '[data-random-attr-ea67210c=random-attr-value-750268fb] .random-classname-8290a234 > [data-random-attr-9fd61ea8=random-attr-value-a8ed71e7] .random-classname-a4c0ac75 .random-classname-85140e6f :last-child .random-classname-fad63bf7 .random-classname-fbde5205 .random-classname-e1454b09 ::slotted ::before ::slotted .random-classname-c3d91c17 [data-random-attr-daf18925] .random-classname-92d60443 :not([data-random-attr-787c48f1]) .random-classname-ca13d6af > ::placeholder', + ':not([data-random-attr-cdc3f861]) [data-random-attr-daf18925] [data-random-attr-13c90d6d] [data-random-attr-787c48f1] > .random-classname-2191ab5 .random-classname-a6fbd418', + '::slotted ::slotted ::after >', + '[data-random-attr-7ed7c6b9] > :last-child >', + '.random-classname-93939fae', + '.random-classname-fbde5205 .random-classname-e1454b09 ::slotted .random-classname-f990bd1 .random-classname-220b6a8f .random-classname-c5256ddd > .random-classname-9729fd3b :not(.random-classname-c0056429) .random-classname-deac6c2', + '.random-classname-bf2b1744', + '[data-random-attr-29fef516=random-attr-value-e32e297d]', + '[data-random-attr-2b528341] .random-classname-fbde5205 .random-classname-e1454b09 .random-classname-922ef24d :first-child .random-classname-36ce599 > .random-classname-c5256ddd .random-classname-9729fd3b .random-classname-c0056429 ::slotted', + '[data-random-attr-cdc3f861] ::slotted [data-random-attr-13c90d6d] > .random-classname-62b1b8c5', + '.random-classname-1d4c9abd .random-classname-fbde5205 .random-classname-e1454b09 .random-classname-922ef24d :first-child ::slotted .random-classname-c5256ddd .random-classname-9729fd3b [data-random-attr-13c90d6d] ::slotted', + '.random-classname-d6a61a7f .random-classname-922ef24d .random-classname-f990bd1 .random-classname-36ce599 .random-classname-c5256ddd [data-random-attr-daf18925] [data-random-attr-13c90d6d] [data-random-attr-11f036c7]', + '.random-classname-9729fd3b .random-classname-92d60443 > .random-classname-1be3b255 >', + '.random-classname-85140e6f .random-classname-78059479 > .random-classname-1d4c9abd .random-classname-152c2b1b .random-classname-d6a61a7f ::slotted .random-classname-f990bd1 .random-classname-36ce599 [data-random-attr-cdc3f861] > .random-classname-9729fd3b .random-classname-92d60443 .random-classname-b2bea7f3', + '.random-classname-ad7805fb', + '.random-classname-c99a4fe5', + '[data-random-attr-dffd335f]', + '.random-classname-e9b536e9', + '.random-classname-a1a52503', + '.random-classname-d753fee7', + '.random-classname-6be250b', + '.random-classname-278e9175', + '.random-classname-f54c3b6f', + '.random-classname-95474979', + '.random-classname-633f2613', + '[data-random-attr-86d71fbd]', + ':nth-child(1)', + '.random-classname-b1c2fca0', + '.random-classname-56d26ed2', + '.random-classname-1dfdee23 .random-classname-f990bd1 > .random-classname-220b6a8f .random-classname-c3d91c17 :first-child >', + '::before > .random-classname-36ce599 .random-classname-c3d91c17 .random-classname-422563fc >', + '.random-classname-fd7b58f0', + '[data-random-attr-f6341fa2=random-attr-value-98811a99]', + '.random-classname-ea91b433', + '.random-classname-625ecd61', + '.random-classname-edec9a3b', + '.random-classname-1dfdee23 .random-classname-f990bd1 :not(.random-classname-e60aeb9f)', + '.random-classname-b958bf27', + '[data-random-attr-d9205df1]', + '.random-classname-85140e6f :last-child .random-classname-fad63bf7 .random-classname-fbde5205 .random-classname-e1454b09 ::slotted .random-classname-f990bd1 :first-child', + ':first-child ::slotted', + ':last-child > .random-classname-fad63bf7 > .random-classname-fbde5205 .random-classname-83255fd', + '.random-classname-51c9d937', + '.random-classname-8290a234 :not([data-random-attr-9fd61ea8=random-attr-value-a8ed71e7]) .random-classname-a4c0ac75 .random-classname-85140e6f :last-child > .random-classname-1d4c9abd .random-classname-fbde5205 :first-child', + '.random-classname-8e950249', + '.random-classname-378e763', + '.random-classname-152c2b1b .random-classname-3c4e8ed5 >', + ':last-child > .random-classname-1d4c9abd > [data-random-attr-8bf6c91d]', + '.random-classname-8290a234 [data-random-attr-9fd61ea8=random-attr-value-a8ed71e7] > .random-classname-906d480b > .random-classname-85140e6f .random-classname-78059479 > .random-classname-1d4c9abd .random-classname-f6d95957', + '.random-classname-85140e6f [data-random-attr-d12e4c65] >', + '.random-classname-f47c4b62 > .random-classname-1351174a :not(.random-classname-8290a234) .random-classname-9a75ed86 .random-classname-906d480b .random-classname-85140e6f .random-classname-95debb69', + '.random-classname-a539bf67', + '[data-random-attr-3ac08831]', + ':nth-child(7) .random-classname-8290a234 > ::before .random-classname-906d480b > .random-classname-85140e6f .random-classname-7313ad8b', + '.random-classname-e2e3edf9', + '.random-classname-85140e6f > .random-classname-8e6be977', + '.random-classname-3e01f09b', + '.random-classname-8290a234 [data-random-attr-9fd61ea8=random-attr-value-a8ed71e7] .random-classname-906d480b .random-classname-77f7b385', + '.random-classname-a8200489', + ':not(.random-classname-3a6252c8)', + '.random-classname-9524280f', + '.random-classname-d6dbff19', + '.random-classname-d01bc8c9 :not(::after) .random-classname-a446ca4e .random-classname-6dcfbeb0 > :first-child :nth-child(7) .random-classname-8290a234 .random-classname-3ab08cb3', + '.random-classname-a0e55bc0', + '.random-classname-3db2baf2', + '.random-classname-d76578da', + '.random-classname-4897cae', + '.random-classname-96f20010', + '[data-random-attr-5897f3c2=random-attr-value-1537a039]', + '.random-classname-72156ad3', + '.random-classname-9cff827d', + '.random-classname-38860701', + '.random-classname-618724db', + '.random-classname-f7ae31c5', + '[data-random-attr-f949d03f]', + '.random-classname-1d781fe3', + '.random-classname-19ad5c7a .random-classname-a446ca4e :not(.random-classname-6dcfbeb0) .random-classname-f47c4b62 .random-classname-ce1437c7', + '.random-classname-19ad5c7a > .random-classname-a446ca4e .random-classname-6dcfbeb0 ::before', + ':last-child .random-classname-d01bc8c9 ::after > .random-classname-a446ca4e .random-classname-6dcfbeb0 > :last-child', + '.random-classname-352d945f', + '[data-random-attr-c1813fe9]', + '.random-classname-a446ca4e > .random-classname-6dcfbeb0 .random-classname-4bfac52d', + '.random-classname-5c5a9e08 .random-classname-a446ca4e .random-classname-6dcfbeb0 [data-random-attr-c3339cb1]', + '[data-random-attr-8dfe3d69] :first-child .random-classname-260e8ff5 > .random-classname-4ebeff9 :not(.random-classname-87d6ee3d) > .random-classname-4c844ec1 .random-classname-6bdd29ff > [data-random-attr-1ad2c987] .random-classname-100549ab .random-classname-3baf3f15 > .random-classname-29150119 .random-classname-6f0adeb3 [data-random-attr-c00b14bb] > .random-classname-d057ce1f > :not(.random-classname-6b5a0bc3) .random-classname-72b8b471 .random-classname-92d27e35 .random-classname-4821a239 .random-classname-8d58a47d :last-child .random-classname-d01bc8c9 .random-classname-5c5a9e08 > .random-classname-a446ca4e .random-classname-6dcfbeb0 .random-classname-1641ca75', + '.random-classname-a446ca4e > .random-classname-6dcfbeb0 > .random-classname-72399279', + '.random-classname-496d5713', + '.random-classname-c16687f', + '.random-classname-9470c909', + '[data-random-attr-a849abb7] .random-classname-f24b6db > :nth-child(3) .random-classname-34b3d807', + '.random-classname-29fbb995', + '::slotted :nth-child(3) :not(.random-classname-90094bdd)', + '.random-classname-99a400ed > .random-classname-3cfe3cb > ::slotted .random-classname-9748bcd3 > .random-classname-da0c4c9f', + '.random-classname-d057ce1f ::slotted > .random-classname-72b8b471 .random-classname-92d27e35 .random-classname-4821a239 > .random-classname-431c6b6d', + '.random-classname-9748bcd3 > .random-classname-4255da4b', + '[data-random-attr-e429c4b9]', + '::before .random-classname-99a400ed > .random-classname-3cfe3cb .random-classname-25b9a37', + '[data-random-attr-bf1740bf]', + '::before ::before ::before ::slotted .random-classname-3cfe3cb ::before', + '.random-classname-820fb847', + '.random-classname-29150119 ::before .random-classname-5fef83e1 > ::before .random-classname-849f47d5', + '.random-classname-ecaffb97 .random-classname-d057ce1f .random-classname-ebdf20cf', + '.random-classname-10308689 ::before :not(.random-classname-100549ab) .random-classname-58445a0f .random-classname-29150119 > ::before ::before ::before :first-child', + ':not(.random-classname-87d6ee3d) :not(.random-classname-4c844ec1) .random-classname-6bdd29ff > [data-random-attr-1ad2c987] .random-classname-100549ab > .random-classname-3baf3f15 .random-classname-29150119 > .random-classname-6f0adeb3 [data-random-attr-c00b14bb] ::before', + '.random-classname-58445a0f .random-classname-29150119 ::before .random-classname-5fef83e1 ::before', + '.random-classname-eb2731cf > ::slotted .random-classname-2e08ae65 :not(.random-classname-3904daad) .random-classname-260e8ff5 .random-classname-4ebeff9 .random-classname-87d6ee3d > [data-random-attr-e82d829b] .random-classname-6bdd29ff .random-classname-24aa35a3 .random-classname-100549ab > .random-classname-3baf3f15 :not(.random-classname-29150119) .random-classname-6f0adeb3 .random-classname-ecaffb97 .random-classname-dc584067', + '.random-classname-4d18e6f5', + '.random-classname-a858acef', + '.random-classname-6f0adeb3 [data-random-attr-c00b14bb] > .random-classname-2d35ef93', + '.random-classname-e76975c1', + '.random-classname-228c58ff', + '.random-classname-100549ab > .random-classname-58445a0f .random-classname-29150119 > ::before ::placeholder', + '.random-classname-7426a9a1 [data-random-attr-8dfe3d69] > :first-child .random-classname-260e8ff5 .random-classname-4ebeff9 > .random-classname-87d6ee3d > [data-random-attr-e82d829b] > .random-classname-6bdd29ff [data-random-attr-1ad2c987] .random-classname-100549ab .random-classname-3baf3f15 > .random-classname-29150119 .random-classname-6f0adeb3 [data-random-attr-69b012a4=random-attr-value-93d13db3]', + '::before :not(.random-classname-254fc6cc)', + '.random-classname-6f0adeb3 .random-classname-b5067d1f', + '[data-random-attr-23413def] .random-classname-2ec71093 [data-random-attr-ca295b77] > [data-random-attr-e82d829b] .random-classname-10308689 > ::before .random-classname-100549ab .random-classname-58445a0f > .random-classname-29150119 ::before ::slotted', + '.random-classname-29150119 .random-classname-6f0adeb3 ::before', + '.random-classname-29150119 .random-classname-42269bd3', + '[data-random-attr-1ad2c987] .random-classname-100549ab .random-classname-3baf3f15 [data-random-attr-1b6a630d]', + '.random-classname-3d90c8bc', + '.random-classname-c1283d4e', + '[data-random-attr-abf8a9b0=random-attr-value-9ddbb14f]', + '::before .random-classname-6bdd29ff .random-classname-24aa35a3 .random-classname-100549ab .random-classname-e6be09f3', + ':first-child ::slotted [data-random-attr-8dfe3d69] :first-child .random-classname-260e8ff5 > :not(.random-classname-4ebeff9) .random-classname-87d6ee3d [data-random-attr-e82d829b] .random-classname-6bdd29ff > [data-random-attr-1ad2c987] .random-classname-d363a7fb', + '.random-classname-4c844ec1 > :not(.random-classname-10308689) .random-classname-79c25cd .random-classname-df3148e9', + '.random-classname-35cede2d', + '::before .random-classname-67e4c5b1', + '.random-classname-87d6ee3d [data-random-attr-e82d829b] .random-classname-6bdd29ff [data-random-attr-1ad2c987] .random-classname-9b990375', + '.random-classname-9e0fdb79', + '.random-classname-260e8ff5 .random-classname-4ebeff9 .random-classname-87d6ee3d .random-classname-4c844ec1 > .random-classname-6bdd29ff .random-classname-24aa35a3 ::after', + '.random-classname-2ec71093 > [data-random-attr-ca295b77] ::before .random-classname-10308689 ::before .random-classname-61d146a0', + '[data-random-attr-1ad2c987] > .random-classname-e2d948d2', + '[data-random-attr-ca295b77] [data-random-attr-e82d829b] > .random-classname-10308689 .random-classname-56bbe94d', + '.random-classname-f264912b', + '.random-classname-e477295', + '[data-random-attr-d540598f]', + '.random-classname-9f42ac99', + '.random-classname-e0d31633', + '.random-classname-39d0456b > :first-child .random-classname-d1adcb57 > [data-random-attr-8dfe3d69] :first-child > .random-classname-260e8ff5 :not(.random-classname-4ebeff9) .random-classname-87d6ee3d [data-random-attr-e82d829b] :not(.random-classname-6bdd29ff) [data-random-attr-1e5a3c3b]', + '.random-classname-34763a74', + '.random-classname-c5831ae8', + '.random-classname-4c844ec1 .random-classname-10308689 > .random-classname-b72ae89c >', + '.random-classname-6bdd29ff .random-classname-845bc82e', + '.random-classname-2ec71093 > [data-random-attr-ca295b77] .random-classname-4c844ec1 .random-classname-10308689 > .random-classname-53dd5bc4 >', + '.random-classname-4ebeff9 .random-classname-87d6ee3d ::before .random-classname-e04c2d96', + '[data-random-attr-ca295b77] ::placeholder', + '.random-classname-87d6ee3d > .random-classname-a922afe0', + '.random-classname-2ec71093 [data-random-attr-ca295b77] .random-classname-ddbbc963', + '.random-classname-174faf8d', + '.random-classname-5fd9b947', + '[data-random-attr-b528fd11]', + '.random-classname-7614dc30', + '.random-classname-260e8ff5 .random-classname-4ebeff9 .random-classname-87d6ee3d .random-classname-22295a64', + '.random-classname-7426a9a1 .random-classname-2cf95df .random-classname-af2b167 [data-random-attr-23413def] ::after', + '.random-classname-5bd0cb9e', + '.random-classname-d1adcb57 ::slotted > ::slotted .random-classname-dfa639b2', + '.random-classname-ee73cf8b', + '.random-classname-368b4def', + '.random-classname-3564b963 ::before .random-classname-172870d5 ::before .random-classname-7426a9a1 > ::slotted .random-classname-802a2093', + '[data-random-attr-8dfe3d69] .random-classname-6abadec1', + ':nth-child(1) >', + '.random-classname-680ddcc8', + '::slotted ::slotted > .random-classname-7f93d87c', + ':first-child > ::slotted [data-random-attr-8dfe3d69] > .random-classname-20d6a30e', + '.random-classname-c5ee35af .random-classname-de8777fd > ::before :not(::before) > .random-classname-3564b963 :last-child :not(.random-classname-172870d5) [data-random-attr-185e6ed9] .random-classname-7426a9a1 .random-classname-2cf95df .random-classname-1b75eeb3', + '[data-random-attr-ca1b9ca5]', + '::slotted .random-classname-57b590ed', + '.random-classname-92711bf .random-classname-3564b963 ::before > :not(.random-classname-39d0456b) :first-child ::slotted [data-random-attr-8dfe3d69] .random-classname-6d1a01a7', + '[data-random-attr-185e6ed9] .random-classname-39b4471', + '.random-classname-3c92962f', + '.random-classname-5563239', + '.random-classname-e2bbccd3', + '.random-classname-360e347d', + '.random-classname-39d0456b :not(:first-child) ::placeholder', + '::before .random-classname-172870d5 > [data-random-attr-185e6ed9] .random-classname-ba8d7de6', + '.random-classname-7c46ee08', + '.random-classname-de8777fd ::before :not(::before) .random-classname-3564b963 .random-classname-2c161f8d .random-classname-172870d5 ::before .random-classname-4c2c9a4e', + '.random-classname-b4068e5b > :not(.random-classname-92711bf) > .random-classname-3564b963 > .random-classname-2c161f8d .random-classname-39d0456b > :not(:first-child) .random-classname-24114458', + '.random-classname-80393ae5', + '.random-classname-f35a565f', + '.random-classname-eb2731cf .random-classname-2efaf803 >', + '.random-classname-8a7e1e6f', + '.random-classname-2a922abd', + '.random-classname-d8354b37 ::before > ::before .random-classname-3564b963 .random-classname-2c161f8d :last-child', + '.random-classname-b4068e5b .random-classname-92711bf .random-classname-3564b963 :last-child .random-classname-fed42a7f', + '[data-random-attr-2718824d]', + '.random-classname-92711bf .random-classname-3564b963 > .random-classname-2c161f8d > :first-child >', + '.random-classname-2c161f8d .random-classname-cb372b95', + '[data-random-attr-de0d2c17] >', + '::before > .random-classname-f9170d3b', + '.random-classname-32311925', + '.random-classname-a855db4b :first-child .random-classname-de8777fd ::before .random-classname-95f5f429 >', + ':first-child ::before > .random-classname-b4068e5b .random-classname-ea2d4227', + ':first-child .random-classname-de8777fd ::before > .random-classname-477caab5', + '.random-classname-784e10c4', + '.random-classname-10f5ae38', + '.random-classname-e85c4c2a', + ':nth-child(10)', + '.random-classname-de8777fd > .random-classname-fc7702bf', + '.random-classname-6c8e1ff1 > :not(.random-classname-c5ee35af) .random-classname-3d67ba47', + '.random-classname-ab2cb9d5', + '.random-classname-e63fb127 ::before .random-classname-c5ee35af .random-classname-d99a541d', + '.random-classname-4247db9 :not(::before)', + '.random-classname-72b006df', + '.random-classname-999083ad >', + ':not(::before) .random-classname-e63fb127 .random-classname-a855db4b .random-classname-c5ee35af .random-classname-90f58f5', + '::before .random-classname-c5ee35af .random-classname-3f01eeef >', + '[data-random-attr-8d8e498f] :first-child > .random-classname-f6b7db17 [data-random-attr-acad2c3b] :last-child ::before .random-classname-e63fb127 ::before ::slotted >', + '.random-classname-5bf0d73d', + '.random-classname-d70e39b', + '.random-classname-2c8e1aff', + '.random-classname-db59b6a3 >', + '.random-classname-d66be295 .random-classname-ccf61c99 .random-classname-f6b7db17 .random-classname-37740f61 .random-classname-b6db9d9f .random-classname-7fbf1343 .random-classname-e63fb127 .random-classname-a855db4b > [data-random-attr-4539f051] >', + '.random-classname-e63fb127 > .random-classname-a4c5fd22', + '.random-classname-f25762d1 > .random-classname-d66be295 .random-classname-ccf61c99 .random-classname-f6b7db17 .random-classname-37740f61 .random-classname-b6db9d9f .random-classname-7fbf1343 .random-classname-e63fb127 .random-classname-a26c7ca4', + '.random-classname-e63fb127 :not(::placeholder)', + '.random-classname-e63fb127 :not(.random-classname-2f9970cc)', + '.random-classname-92164ac0', + '.random-classname-54e481f2', + '.random-classname-9bcce9f4', + '::slotted .random-classname-7d68f0e7 .random-classname-60f9370b .random-classname-dfff6d6f > .random-classname-a6dc7813 .random-classname-c66fda1b .random-classname-9c70d905 .random-classname-db14c209 > :not(::slotted) > ::slotted :not([data-random-attr-8d8e498f]) ::before .random-classname-f6b7db17 [data-random-attr-acad2c3b] .random-classname-b6db9d9f ::before .random-classname-df0a4b46 >', + ':first-child > :not(.random-classname-63271ac5) .random-classname-b1643fc9 .random-classname-d75c28c7 ::slotted .random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-338e2ad7 > .random-classname-b1f0b1e5 .random-classname-c710b8e9 ::before .random-classname-60f9370b .random-classname-e3057375 > .random-classname-db8b4b79 .random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f .random-classname-9eb77d23 .random-classname-f25762d1 .random-classname-d66be295 :first-child .random-classname-f6b7db17 :not(.random-classname-37740f61) .random-classname-b6db9d9f .random-classname-7fbf1343 [data-random-attr-b28c4735]', + '.random-classname-f6b7db17 [data-random-attr-acad2c3b] > .random-classname-b6db9d9f > ::before :last-child', + '.random-classname-d66be295 > ::before .random-classname-f6b7db17 .random-classname-37740f61 .random-classname-7b6f9025 > .random-classname-7fbf1343 ::before', + ':last-child ::before ::before', + '.random-classname-df59733f', + '.random-classname-bd8fe1c9', + '[data-random-attr-936872e3]', + ':not([data-random-attr-acad2c3b]) :last-child ::before', + '.random-classname-7b6f9025 .random-classname-9dcb2eeb', + '.random-classname-9eb77d23 ::slotted [data-random-attr-8d8e498f] :first-child .random-classname-f6b7db17 [data-random-attr-acad2c3b] .random-classname-7b6f9025 > :not(.random-classname-a6382c59) >', + '.random-classname-3096bcd7', + '.random-classname-58b9d400', + '.random-classname-22d1d32', + ':not(.random-classname-f25762d1) .random-classname-d66be295 ::before .random-classname-f6b7db17 .random-classname-37740f61 .random-classname-b6db9d9f .random-classname-2a80fa86 >', + '.random-classname-b6db9d9f ::placeholder', + '.random-classname-37740f61 .random-classname-b6db9d9f > .random-classname-da458850', + '[data-random-attr-acad2c3b] .random-classname-db5c6856', + '.random-classname-d99ff1f8', + '[data-random-attr-8d8e498f] :not(.random-classname-ccf61c99) .random-classname-f6b7db17 [data-random-attr-acad2c3b] :not(::placeholder)', + '.random-classname-df2f90a0', + '.random-classname-b8b022d2', + '.random-classname-d6a8a26', + '.random-classname-e9b0448', + '[data-random-attr-8efdcba=random-attr-value-d0b944d1]', + '.random-classname-7b11b32b', + '[data-random-attr-69943e99]', + '.random-classname-b1247833', + '.random-classname-84326d17', + '.random-classname-f6b7db17 > .random-classname-37740f61 :not(.random-classname-6ad7de3b)', + '::before .random-classname-f6b7db17 > [data-random-attr-acad2c3b] .random-classname-15a86f9f >', + '.random-classname-f25762d1 > .random-classname-d66be295 :not(::before) > .random-classname-f6b7db17 .random-classname-37740f61 ::before', + '.random-classname-f6b7db17 [data-random-attr-9644e3b5]', + '.random-classname-f25762d1 .random-classname-d66be295 .random-classname-ccf61c99 .random-classname-f6b7db17 > :not(.random-classname-ef039fb9)', + '.random-classname-5097b9fd', + '.random-classname-ccf61c99 .random-classname-f6b7db17 .random-classname-6ca8dd37', + '.random-classname-9eb77d23 .random-classname-f25762d1 .random-classname-d66be295 :first-child :not(.random-classname-f6b7db17) [data-random-attr-de0eab63] >', + '.random-classname-db14c209 [data-random-attr-8412594d] ::slotted > [data-random-attr-8d8e498f] ::before .random-classname-f6b7db17 .random-classname-93c24f11', + '.random-classname-9eb77d23 .random-classname-f25762d1 .random-classname-d66be295 ::before .random-classname-f6b7db17 > :nth-child(3)', + '::slotted [data-random-attr-8d8e498f] :not(.random-classname-ccf61c99) :not(.random-classname-f6b7db17) ::placeholder', + ':first-child .random-classname-f6b7db17 > .random-classname-1f19b08c', + '.random-classname-db14c209 > [data-random-attr-8412594d] ::slotted :not([data-random-attr-8d8e498f]) :first-child .random-classname-c9413b2', + '.random-classname-191521b4', + '.random-classname-f9c01906', + '[data-random-attr-336ed628=random-attr-value-ec4bc367]', + ':not(::slotted)', + '.random-classname-9c70d905 .random-classname-7e5397f ::slotted .random-classname-f25762d1 > .random-classname-d66be295 .random-classname-ccf61c99 .random-classname-5d0091f5', + '[data-random-attr-8d8e498f] .random-classname-ccf61c99 .random-classname-d1bc8fef', + '.random-classname-af09303d', + '[data-random-attr-2a0eed77]', + '.random-classname-b89b0c1', + '.random-classname-21e22889', + '.random-classname-c3179f70', + '[data-random-attr-8d8e498f] :first-child ::before', + '.random-classname-2288a01f', + '.random-classname-dfff6d6f .random-classname-a6dc7813 .random-classname-c66fda1b > .random-classname-9c70d905 .random-classname-db14c209 ::slotted ::slotted [data-random-attr-8d8e498f] .random-classname-4c088846', + '.random-classname-d66be295 > .random-classname-a33b4768', + '.random-classname-79315cb', + '.random-classname-24a68035', + '.random-classname-1de5d82f', + '::before > .random-classname-60f9370b .random-classname-dfff6d6f .random-classname-a6dc7813 .random-classname-c66fda1b .random-classname-9c70d905 .random-classname-db14c209 .random-classname-9eb77d23 ::slotted [data-random-attr-8d8e498f] ::slotted', + '.random-classname-e3057375 .random-classname-db8b4b79 .random-classname-ee8f1a41 .random-classname-9c70d905 > .random-classname-7e5397f > [data-random-attr-8412594d] > .random-classname-f25762d1 :not(.random-classname-d66be295) .random-classname-6bace67d >', + '.random-classname-25a13db7', + '.random-classname-147c68db', + '.random-classname-200815c5', + '.random-classname-ae82f7e6', + '.random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f ::slotted .random-classname-f25762d1 > .random-classname-d66be295 .random-classname-f28e467a', + '.random-classname-8d1544e', + '.random-classname-b1f0b1e5 :not(.random-classname-c710b8e9) .random-classname-196d4e2d > .random-classname-60f9370b .random-classname-e3057375 [data-random-attr-a32a41bd] .random-classname-ee8f1a41 .random-classname-9c70d905 .random-classname-7e5397f ::slotted > .random-classname-f25762d1 .random-classname-d66be295 .random-classname-237a7562', + '.random-classname-9c70d905 .random-classname-db14c209 [data-random-attr-8412594d] ::slotted [data-random-attr-9c14814a=random-attr-value-f5370021]', + '.random-classname-7e5397f .random-classname-9eb77d23 .random-classname-f25762d1 > .random-classname-3697185f', + '.random-classname-c66fda1b .random-classname-9c70d905 .random-classname-db14c209 [data-random-attr-8412594d] ::slotted :last-child', + '.random-classname-5427a0b', + '.random-classname-9eb77d23 ::slotted .random-classname-9aeab679', + '.random-classname-f25762d1 .random-classname-e79fcdf7 >', + '.random-classname-1815dd1b', + '.random-classname-7ea1ec7f', + '.random-classname-35faed09', + '::slotted ::before .random-classname-60f9370b .random-classname-dfff6d6f .random-classname-a6dc7813 .random-classname-c66fda1b .random-classname-9c70d905 > .random-classname-db14c209 > ::slotted .random-classname-c01de023', + '.random-classname-43db44d', + '.random-classname-9cafdc07', + '[data-random-attr-ad02edd1]', + '.random-classname-db14c209 .random-classname-fc43bc8f >', + '.random-classname-7e5397f .random-classname-40130799 >', + '.random-classname-db14c209 ::slotted', + '.random-classname-d12e5a61', + '[data-random-attr-839caf3b]', + '::slotted .random-classname-196d4e2d > .random-classname-60f9370b :not(.random-classname-dfff6d6f) > ::slotted > .random-classname-c66fda1b .random-classname-9c70d905 .random-classname-db14c209 > .random-classname-1aa10b25', + ':not(.random-classname-4f9ef643) >', + ':not(.random-classname-9c70d905) ::before >', + '.random-classname-60f9370b .random-classname-e3057375 .random-classname-db8b4b79 .random-classname-ee8f1a41 .random-classname-9c70d905 ::slotted', + '::slotted .random-classname-c66fda1b > .random-classname-9c70d905 :nth-child(13)', + '.random-classname-1fc4b838 >', + '::slotted .random-classname-91c27e9d :last-child .random-classname-bc3be55f :not(::slotted) > .random-classname-7d68f0e7 .random-classname-60f9370b .random-classname-dfff6d6f .random-classname-a6dc7813 .random-classname-c66fda1b .random-classname-9c70d905 .random-classname-98ff915b', + '.random-classname-db8b4b79 .random-classname-ee8f1a41 > :last-child', + '.random-classname-37cfbc47', + '.random-classname-e3057375 [data-random-attr-a32a41bd] .random-classname-ee8f1a41 > .random-classname-57a4f811', + '.random-classname-dfff6d6f .random-classname-a6dc7813 .random-classname-c66fda1b ::slotted', + '.random-classname-5866061d >', + '.random-classname-277f4b7d .random-classname-d7d1eab7 .random-classname-57d7a13f .random-classname-b1643fc9 .random-classname-5e569891 :first-child ::slotted .random-classname-91c27e9d .random-classname-338e2ad7 .random-classname-bc3be55f ::slotted .random-classname-7d68f0e7 > .random-classname-60f9370b .random-classname-dfff6d6f ::slotted .random-classname-c66fda1b .random-classname-47c6837b', + '[data-random-attr-eb30c8df] >', + '.random-classname-4855606', + '.random-classname-89901b28', + '.random-classname-dc01ccdc', + '.random-classname-be3f766e', + '.random-classname-b9d0c804', + '[data-random-attr-16e5a3d6=random-attr-value-e545893d]', + ':not(.random-classname-a6dc7813) .random-classname-65751085', + '.random-classname-e39fdcff', + '.random-classname-60f9370b .random-classname-dfff6d6f ::slotted > ::slotted', + '.random-classname-211d80cd', + '.random-classname-60f9370b .random-classname-e3057375 > .random-classname-217fcd0f', + '.random-classname-c72c84a7', + '.random-classname-964b935', + '.random-classname-47320d39', + '.random-classname-47935fd3', + '.random-classname-91c27e9d ::slotted :not(.random-classname-bc3be55f) ::slotted .random-classname-196d4e2d .random-classname-60f9370b .random-classname-dfff6d6f [data-random-attr-3c3b9db]', + '.random-classname-6f388ec5', + '.random-classname-f50d353f', + '.random-classname-bc3be55f ::slotted ::before ::after >', + '.random-classname-1406fceb .random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-338e2ad7 > .random-classname-b1f0b1e5 .random-classname-c710b8e9 .random-classname-196d4e2d [data-random-attr-fca31cbc=random-attr-value-dc8650eb]', + '.random-classname-4824354f', + '[data-random-attr-aca7be59]', + '.random-classname-b1f0b1e5 .random-classname-c710b8e9 ::before :not(.random-classname-ebcf729d)', + '.random-classname-bc3be55f > ::slotted .random-classname-1d19e921', + '.random-classname-c36aebfb', + '.random-classname-9476f732', + ':last-child .random-classname-b1f0b1e5 .random-classname-c710b8e9 .random-classname-b40b7486', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d :first-child .random-classname-57d7a13f .random-classname-6c6280e3 .random-classname-5e569891 > ::slotted ::slotted .random-classname-91c27e9d :last-child .random-classname-bc3be55f ::after', + '.random-classname-b10964ee', + '[data-random-attr-fcd95250=random-attr-value-b414016f]', + '.random-classname-91c27e9d :last-child .random-classname-bc3be55f > ::slotted', + '.random-classname-b29135bd', + ':last-child .random-classname-bc3be55f ::placeholder', + '.random-classname-b1f0b1e5 .random-classname-78887d4', + '::slotted > :not(.random-classname-91c27e9d) > .random-classname-338e2ad7 > .random-classname-bc3be55f :last-child', + '.random-classname-2011e88e', + '.random-classname-83c5b6f0', + ':nth-child(2)', + '::slotted > .random-classname-bc3be55f ::slotted', + '.random-classname-7134e52f > .random-classname-7ef38bd3 .random-classname-277f4b7d .random-classname-fa45e001 .random-classname-63271ac5 .random-classname-6c6280e3 .random-classname-d75c28c7 ::slotted .random-classname-fc9c0a59 .random-classname-91c27e9d .random-classname-338e2ad7 .random-classname-b1f0b1e5 .random-classname-85ea4361 >', + ':last-child .random-classname-bc3be55f .random-classname-294f0425', + '.random-classname-91c27e9d :last-child > .random-classname-b1f0b1e5 .random-classname-f181e743', + '.random-classname-405b3c9c', + '.random-classname-d3733c2e', + '.random-classname-6c6280e3 .random-classname-d75c28c7 ::slotted > :not(.random-classname-fc9c0a59) .random-classname-91c27e9d .random-classname-338e2ad7 :nth-child(5)', + '.random-classname-35db87ec', + '.random-classname-a9b5b3fe', + '.random-classname-ce8343e0', + '.random-classname-c15c7812', + '.random-classname-3339366', + '.random-classname-91c27e9d .random-classname-4666d9fa >', + '.random-classname-4bcee4d5', + ':first-child .random-classname-57d7a13f .random-classname-b1643fc9 .random-classname-5e569891 ::slotted ::slotted ::before', + '::slotted ::slotted ::slotted >', + '.random-classname-fc9c0a59 [data-random-attr-8d5729df]', + '.random-classname-1874383', + '.random-classname-6f86cead', + '[data-random-attr-1a6cc567]', + ':first-child .random-classname-fc9c0a59 .random-classname-e572c4d0 >', + '::before .random-classname-7ef38bd3 .random-classname-277f4b7d :first-child .random-classname-57d7a13f .random-classname-b1643fc9 .random-classname-5e569891 :first-child :last-child', + '.random-classname-39e882c1', + '[data-random-attr-280ebdff] >', + '::before .random-classname-d75c28c7 .random-classname-1406fceb > :nth-child(3)', + '.random-classname-5e569891 > ::slotted > ::after', + '.random-classname-9bee0422 >', + '.random-classname-e8965876', + '.random-classname-7b9e80a', + '.random-classname-d89defcc', + '.random-classname-7ef38bd3 .random-classname-277f4b7d :first-child .random-classname-63271ac5 .random-classname-6c6280e3 .random-classname-d75c28c7 .random-classname-633b39c0', + '.random-classname-6c6280e3 .random-classname-5e569891 ::after >', + '.random-classname-5acec6da', + '.random-classname-7ef38bd3 .random-classname-277f4b7d :first-child > .random-classname-57d7a13f ::before .random-classname-5e569891 ::after', + '.random-classname-d75c28c7 .random-classname-72b01c2', + ':first-child .random-classname-57d7a13f ::before .random-classname-5e569891 [data-random-attr-d53699aa=random-attr-value-d3087d01] >', + '.random-classname-b1643fc9 .random-classname-d75c28c7 .random-classname-140f0adb', + '.random-classname-6ecd163f', + '.random-classname-a77a7cc9', + '[data-random-attr-36fcc5e3]', + '.random-classname-bc347591', + '.random-classname-7ef38bd3 > .random-classname-277f4b7d > .random-classname-d7d1eab7 .random-classname-57d7a13f .random-classname-6c6280e3 ::placeholder', + '.random-classname-fa45e001 .random-classname-63271ac5 .random-classname-b1643fc9 ::slotted', + '.random-classname-277f4b7d > .random-classname-fa45e001 > .random-classname-63271ac5 .random-classname-470f5b2d', + '.random-classname-c89b4879', + '.random-classname-277f4b7d .random-classname-fa45e001 .random-classname-57d7a13f .random-classname-3ccd4ff7 >', + ':first-child .random-classname-63271ac5 > .random-classname-24f3c605', + '.random-classname-277f4b7d .random-classname-d7d1eab7 .random-classname-57d7a13f > ::slotted', + '.random-classname-72c23fd1', + '.random-classname-57d7a13f .random-classname-755e0f95', + '.random-classname-5b99fe8f', + '.random-classname-9fbc9999', + '[data-random-attr-da7c8b33]', + '[data-random-attr-ea32513b]', + '.random-classname-9a0fd25', + '.random-classname-7ef38bd3 > .random-classname-57121829', + '.random-classname-7134e52f .random-classname-7ef38bd3 > .random-classname-3ae8d843', + '.random-classname-b3e17ab9 >', + ], +}; diff --git a/apps/stress-test/src/fixtures/xs_1.js b/apps/stress-test/src/fixtures/xs_1.js new file mode 100644 index 0000000000000..05393f2aae497 --- /dev/null +++ b/apps/stress-test/src/fixtures/xs_1.js @@ -0,0 +1,1027 @@ +export default { + tree: { + value: { + name: '0-0', + classNames: ['.random-classname-7134e52f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '1-11', + classNames: ['.random-classname-7ef38bd3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-3', + classNames: ['.random-classname-277f4b7d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-d7d1eab7', '.random-classname-fa45e001'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-63271ac5', '.random-classname-57d7a13f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-b1643fc9', '.random-classname-6c6280e3'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '2-7', + classNames: ['.random-classname-d75c28c7', '.random-classname-5e569891'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-7', + classNames: ['.random-classname-1406fceb'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-7', + classNames: ['.random-classname-73399455', '.random-classname-1f39a14f'], + attributes: [ + { + key: 'data-random-attr-fc9c0a59', + selector: '[data-random-attr-fc9c0a59]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-7', + classNames: ['.random-classname-6082f9f3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-7', + classNames: ['.random-classname-338e2ad7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-7', + classNames: ['.random-classname-1797b521'], + attributes: [ + { + key: 'data-random-attr-f5c697fb', + selector: '[data-random-attr-f5c697fb]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-7', + classNames: ['.random-classname-b1f0b1e5'], + attributes: [ + { + key: 'data-random-attr-bc3be55f', + selector: '[data-random-attr-bc3be55f]', + }, + ], + siblings: [':nth-child(11)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-b686d9a8'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '2-7', + classNames: ['.random-classname-8429335c'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '2-7', + classNames: ['.random-classname-11d8bc02'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '2-7', + classNames: ['.random-classname-47539e56'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '2-7', + classNames: ['.random-classname-61db9bea', '.random-classname-ee822eac'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-7', + classNames: ['.random-classname-561ef6a0'], + attributes: [ + { + key: 'data-random-attr-956278d2', + value: 'random-attr-value-db14c209', + selector: '[data-random-attr-956278d2=random-attr-value-db14c209]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '2-7', + classNames: ['.random-classname-8412594d', '.random-classname-835cc907'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-7', + classNames: ['.random-classname-f25762d1', '.random-classname-f3b812b'], + attributes: [ + { + key: 'data-random-attr-d66be295', + selector: '[data-random-attr-d66be295]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-ccf61c99', '.random-classname-8880633'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '2-3', + classNames: ['.random-classname-f6b7db17', '.random-classname-37740f61'], + attributes: [ + { + key: 'data-random-attr-acad2c3b', + selector: '[data-random-attr-acad2c3b]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-7b6f9025'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-b6db9d9f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-aeb85b29', '.random-classname-7fbf1343'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-11', + classNames: ['.random-classname-8307f46d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-e63fb127', '.random-classname-6c8e1ff1'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-f834e1b5'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-c5ee35af', '.random-classname-4247db9'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-d8354b37', '.random-classname-8e8e9481'], + attributes: [], + siblings: [':nth-child(11)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-a8205fe0', '.random-classname-23f412'], + attributes: [], + siblings: [':nth-child(8)'], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-e719a947'], + attributes: [ + { + key: 'data-random-attr-789e6d11', + selector: '[data-random-attr-789e6d11]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-172870d5', '.random-classname-eb2731cf'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-bf55273'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-b40ceb1d'], + attributes: [ + { + key: 'data-random-attr-d1adcb57', + selector: '[data-random-attr-d1adcb57]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-6c04007b'], + attributes: [], + siblings: [':nth-child(13)'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-b97769b2', '.random-classname-be10e7b4'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '2-1', + classNames: ['.random-classname-6bb3fc28'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-d07fff9a', '.random-classname-ab5b3ddc'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-11', + classNames: ['.random-classname-7ce70f6e'], + attributes: [ + { + key: 'data-random-attr-774e0d0', + value: 'random-attr-value-23413def', + selector: '[data-random-attr-774e0d0=random-attr-value-23413def]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-4ebeff9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-2ec71093', '.random-classname-87d6ee3d'], + attributes: [ + { + key: 'data-random-attr-ca295b77', + selector: '[data-random-attr-ca295b77]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-4c844ec1', '.random-classname-e82d829b'], + attributes: [ + { + key: 'data-random-attr-67331585', + selector: '[data-random-attr-67331585]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-10308689', '.random-classname-24aa35a3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-79c25cd'], + attributes: [ + { + key: 'data-random-attr-1ad2c987', + selector: '[data-random-attr-1ad2c987]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-f36bb751', '.random-classname-100549ab'], + attributes: [ + { + key: 'data-random-attr-3baf3f15', + selector: '[data-random-attr-3baf3f15]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-29150119', '.random-classname-6f0adeb3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-ecaffb97', '.random-classname-5fef83e1'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-c00b14bb', '.random-classname-5ffc0ca5'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-d057ce1f', '.random-classname-3f225fa9'], + attributes: [ + { + key: 'data-random-attr-6b5a0bc3', + selector: '[data-random-attr-6b5a0bc3]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-23c1f1a7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-10', + classNames: ['.random-classname-72b8b471'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-10', + classNames: ['.random-classname-3cfe3cb'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-10', + classNames: ['.random-classname-3838862f'], + attributes: [ + { + key: 'data-random-attr-4821a239', + selector: '[data-random-attr-4821a239]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '2-10', + classNames: ['.random-classname-8d58a47d', '.random-classname-a849abb7'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-10', + classNames: ['.random-classname-f24b6db'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-10', + classNames: ['.random-classname-8047823f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-10', + classNames: ['.random-classname-d01bc8c9', '.random-classname-a0c7f1e3'], + attributes: [ + { + key: 'data-random-attr-94e46c0d', + selector: '[data-random-attr-94e46c0d]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-10', + classNames: ['.random-classname-76c829c7', '.random-classname-a4ff4191'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-10', + classNames: ['.random-classname-8a404d55'], + attributes: [ + { + key: 'data-random-attr-3525c24f', + selector: '[data-random-attr-3525c24f]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-10', + classNames: ['.random-classname-7608aaf3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-affe6bd7', '.random-classname-cd0e9e21'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '2-9', + classNames: ['.random-classname-e789aae5', '.random-classname-8fb4465f'], + attributes: [ + { + key: 'data-random-attr-dc64c1e9', + selector: '[data-random-attr-dc64c1e9]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '2-9', + classNames: ['.random-classname-4325672d', '.random-classname-a8ed71e7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-9', + classNames: ['.random-classname-cc875eb1'], + attributes: [ + { + key: 'data-random-attr-906d480b', + selector: '[data-random-attr-906d480b]', + }, + ], + siblings: [':first-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '2-9', + classNames: ['.random-classname-78059479', '.random-classname-ddd2a913'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-9', + classNames: ['.random-classname-fad63bf7'], + attributes: [ + { + key: 'data-random-attr-2b528341', + selector: '[data-random-attr-2b528341]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-9', + classNames: ['.random-classname-152c2b1b'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-9', + classNames: ['.random-classname-e7d3e5d2', '.random-classname-9cba58d4'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '2-9', + classNames: ['.random-classname-6e0ef48', '.random-classname-778bffba'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '2-9', + classNames: ['.random-classname-646037f0'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-38629224', '.random-classname-20c792f6'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [ + { + value: { + name: '2-5', + classNames: ['.random-classname-6de58a8a'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-5d2364c'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-fbf4a840'], + attributes: [ + { + key: 'data-random-attr-164a3b72', + value: 'random-attr-value-c0056429', + selector: '[data-random-attr-164a3b72=random-attr-value-c0056429]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-92d60443', '.random-classname-13c90d6d'], + attributes: [ + { + key: 'data-random-attr-52b53227', + selector: '[data-random-attr-52b53227]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-174aec4b', '.random-classname-2191ab5'], + attributes: [ + { + key: 'data-random-attr-ca13d6af', + selector: '[data-random-attr-ca13d6af]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-11', + classNames: ['.random-classname-a6a4d553'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-1', + classNames: ['.random-classname-a5f2d0fd'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + ], + }, + selectors: [ + '::before >', + '.random-classname-7134e52f .random-classname-7ef38bd3', + '.random-classname-277f4b7d', + ':first-child', + '::before .random-classname-7ef38bd3 .random-classname-57d7a13f >', + '.random-classname-7134e52f .random-classname-b1643fc9', + '::before > .random-classname-6c6280e3 .random-classname-5e569891', + '.random-classname-1406fceb', + '::before .random-classname-b1643fc9 .random-classname-1f39a14f', + ':first-child .random-classname-6082f9f3', + ':first-child .random-classname-338e2ad7', + '.random-classname-1797b521', + '::before > .random-classname-6c6280e3 ::placeholder >', + '.random-classname-b686d9a8', + '::before > :first-child ::after >', + '.random-classname-7134e52f .random-classname-b686d9a8 .random-classname-11d8bc02 >', + '.random-classname-47539e56', + '::after', + '.random-classname-7134e52f .random-classname-b686d9a8 :not(.random-classname-61db9bea)', + '.random-classname-561ef6a0', + '[data-random-attr-956278d2=random-attr-value-db14c209]', + '::slotted', + '.random-classname-7134e52f .random-classname-b686d9a8 .random-classname-8412594d', + '.random-classname-7134e52f .random-classname-8880633', + '.random-classname-f6b7db17', + '.random-classname-37740f61', + '[data-random-attr-acad2c3b]', + '.random-classname-7134e52f .random-classname-8880633 .random-classname-7b6f9025 >', + '.random-classname-b6db9d9f', + '.random-classname-7134e52f .random-classname-aeb85b29', + '.random-classname-7fbf1343 .random-classname-8307f46d', + '::slotted >', + '::before .random-classname-7fbf1343 > .random-classname-f834e1b5', + '::before .random-classname-7fbf1343 .random-classname-d8354b37', + '.random-classname-7134e52f .random-classname-aeb85b29 .random-classname-a8205fe0', + '.random-classname-7fbf1343 .random-classname-e719a947', + '.random-classname-172870d5', + '::before .random-classname-7fbf1343 .random-classname-bf55273 >', + ':not(.random-classname-7134e52f) > .random-classname-aeb85b29 .random-classname-b40ceb1d', + '::before > .random-classname-7fbf1343 > :nth-child(13) >', + '.random-classname-7134e52f > :first-child >', + '::before :not(.random-classname-be10e7b4) .random-classname-6bb3fc28', + '.random-classname-d07fff9a', + '.random-classname-ab5b3ddc', + '::before .random-classname-ab5b3ddc [data-random-attr-774e0d0=random-attr-value-23413def]', + '.random-classname-4ebeff9', + '.random-classname-87d6ee3d >', + '.random-classname-7134e52f > .random-classname-d07fff9a .random-classname-4c844ec1', + '.random-classname-24aa35a3', + '.random-classname-7134e52f .random-classname-d07fff9a .random-classname-79c25cd', + ':not(.random-classname-100549ab) >', + '.random-classname-d07fff9a .random-classname-29150119', + '::before .random-classname-ab5b3ddc .random-classname-5fef83e1', + '.random-classname-7134e52f .random-classname-d07fff9a > .random-classname-c00b14bb', + '::before > .random-classname-ab5b3ddc .random-classname-3f225fa9', + '.random-classname-7134e52f :not(.random-classname-23c1f1a7)', + '::before .random-classname-23c1f1a7 .random-classname-72b8b471 >', + '.random-classname-3cfe3cb', + '::before', + '.random-classname-23c1f1a7 ::slotted', + '.random-classname-7134e52f .random-classname-23c1f1a7 > .random-classname-a849abb7', + '::before .random-classname-23c1f1a7 ::before', + '.random-classname-7134e52f .random-classname-23c1f1a7 .random-classname-8047823f >', + '.random-classname-d01bc8c9', + '.random-classname-a0c7f1e3', + '[data-random-attr-94e46c0d]', + '.random-classname-7134e52f > .random-classname-23c1f1a7 .random-classname-76c829c7 >', + '::before :not(.random-classname-23c1f1a7) .random-classname-8a404d55', + '.random-classname-7134e52f :not(.random-classname-23c1f1a7) > .random-classname-7608aaf3', + '::before .random-classname-affe6bd7', + '.random-classname-e789aae5', + '.random-classname-8fb4465f', + '[data-random-attr-dc64c1e9]', + '::before > .random-classname-affe6bd7 .random-classname-a8ed71e7', + '.random-classname-cc875eb1', + '[data-random-attr-906d480b]', + '.random-classname-78059479', + '.random-classname-ddd2a913', + '.random-classname-fad63bf7', + '[data-random-attr-2b528341]', + '.random-classname-152c2b1b', + ':nth-child(7)', + '.random-classname-7134e52f .random-classname-affe6bd7 ::placeholder', + '.random-classname-778bffba', + '.random-classname-646037f0', + '::before > ::after >', + ':not(.random-classname-7134e52f) .random-classname-38629224 .random-classname-6de58a8a >', + '::placeholder', + '.random-classname-7134e52f ::after .random-classname-fbf4a840', + '::before .random-classname-20c792f6 ::before', + '.random-classname-38629224 [data-random-attr-ca13d6af]', + '.random-classname-a6a4d553', + '.random-classname-a5f2d0fd', + ], +}; diff --git a/apps/stress-test/src/fixtures/xs_2.js b/apps/stress-test/src/fixtures/xs_2.js new file mode 100644 index 0000000000000..ec1a23a1b857e --- /dev/null +++ b/apps/stress-test/src/fixtures/xs_2.js @@ -0,0 +1,684 @@ +export default { + tree: { + value: { + name: '0-0', + classNames: ['.random-classname-7134e52f'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '1-9', + classNames: ['.random-classname-7ef38bd3'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-3', + classNames: ['.random-classname-277f4b7d'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-d7d1eab7', '.random-classname-fa45e001'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-63271ac5', '.random-classname-57d7a13f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-9', + classNames: ['.random-classname-b1643fc9', '.random-classname-6c6280e3'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '2-3', + classNames: ['.random-classname-d75c28c7', '.random-classname-5e569891'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-1406fceb'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-73399455', '.random-classname-1f39a14f'], + attributes: [ + { + key: 'data-random-attr-fc9c0a59', + selector: '[data-random-attr-fc9c0a59]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-9', + classNames: ['.random-classname-6082f9f3'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '2-1', + classNames: ['.random-classname-338e2ad7'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-9', + classNames: ['.random-classname-1797b521'], + attributes: [ + { + key: 'data-random-attr-f5c697fb', + selector: '[data-random-attr-f5c697fb]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-5', + classNames: ['.random-classname-b1f0b1e5'], + attributes: [ + { + key: 'data-random-attr-bc3be55f', + selector: '[data-random-attr-bc3be55f]', + }, + ], + siblings: [':nth-child(11)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-b686d9a8'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-8429335c'], + attributes: [], + siblings: [':first-child'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-11d8bc02'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-47539e56'], + attributes: [], + siblings: [], + pseudos: ['::after'], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-9', + classNames: ['.random-classname-61db9bea', '.random-classname-ee822eac'], + attributes: [], + siblings: [':last-child'], + pseudos: [], + }, + children: [ + { + value: { + name: '2-5', + classNames: ['.random-classname-561ef6a0', '.random-classname-956278d2'], + attributes: [ + { + key: 'data-random-attr-94ad63d4', + value: 'random-attr-value-9eb77d23', + selector: '[data-random-attr-94ad63d4=random-attr-value-9eb77d23]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-835cc907', '.random-classname-f25762d1'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-f3b812b', '.random-classname-d66be295'], + attributes: [ + { + key: 'data-random-attr-8d8e498f', + selector: '[data-random-attr-8d8e498f]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-8880633', '.random-classname-bb7e94dd'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '2-5', + classNames: ['.random-classname-37740f61'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-9', + classNames: ['.random-classname-acad2c3b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [ + { + value: { + name: '2-10', + classNames: ['.random-classname-b6db9d9f'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-10', + classNames: ['.random-classname-aeb85b29'], + attributes: [ + { + key: 'data-random-attr-7fbf1343', + selector: '[data-random-attr-7fbf1343]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-10', + classNames: ['.random-classname-e63fb127'], + attributes: [ + { + key: 'data-random-attr-6c8e1ff1', + selector: '[data-random-attr-6c8e1ff1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-10', + classNames: ['.random-classname-a855db4b'], + attributes: [], + siblings: [':last-child'], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '2-10', + classNames: ['.random-classname-4247db9', '.random-classname-400da453'], + attributes: [], + siblings: [':first-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-10', + classNames: ['.random-classname-d8354b37'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-10', + classNames: ['.random-classname-b4068e5b', '.random-classname-cbb4d745'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-10', + classNames: ['.random-classname-92711bf', '.random-classname-67438449'], + attributes: [ + { + key: 'data-random-attr-3564b963', + selector: '[data-random-attr-3564b963]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-10', + classNames: ['.random-classname-e719a947'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-10', + classNames: ['.random-classname-789e6d11', '.random-classname-39d0456b'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-9', + classNames: ['.random-classname-eb2731cf'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-3', + classNames: ['.random-classname-185e6ed9'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-b40ceb1d', '.random-classname-d1adcb57'], + attributes: [ + { + key: 'data-random-attr-7426a9a1', + selector: '[data-random-attr-7426a9a1]', + }, + ], + siblings: [':last-child'], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-3', + classNames: ['.random-classname-2e08ae65'], + attributes: [ + { + key: 'data-random-attr-2cf95df', + selector: '[data-random-attr-2cf95df]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-9', + classNames: ['.random-classname-8dfe3d69', '.random-classname-40306f83'], + attributes: [ + { + key: 'data-random-attr-3904daad', + selector: '[data-random-attr-3904daad]', + }, + ], + siblings: [], + pseudos: ['::slotted'], + }, + children: [ + { + value: { + name: '2-1', + classNames: ['.random-classname-c8d04a31', '.random-classname-5532bf8b'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + ], + }, + { + value: { + name: '1-9', + classNames: ['.random-classname-260e8ff5', '.random-classname-23413def'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [ + { + value: { + name: '2-11', + classNames: ['.random-classname-4ebeff9'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-2ec71093'], + attributes: [], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-ca295b77'], + attributes: [ + { + key: 'data-random-attr-4c844ec1', + selector: '[data-random-attr-4c844ec1]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-e82d829b'], + attributes: [], + siblings: [':nth-child(7)'], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-87e15e54'], + attributes: [ + { + key: 'data-random-attr-275d9ea6', + value: 'random-attr-value-79c25cd', + selector: '[data-random-attr-275d9ea6=random-attr-value-79c25cd]', + }, + ], + siblings: [':nth-child(1)'], + pseudos: ['::after'], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-59c0d30e', '.random-classname-40848570'], + attributes: [], + siblings: [], + pseudos: ['::placeholder'], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-cc60f7a4', '.random-classname-f4329476'], + attributes: [ + { + key: 'data-random-attr-bdde9318', + value: 'random-attr-value-ecaffb97', + selector: '[data-random-attr-bdde9318=random-attr-value-ecaffb97]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-c00b14bb', '.random-classname-5ffc0ca5'], + attributes: [], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-d057ce1f'], + attributes: [ + { + key: 'data-random-attr-3f225fa9', + selector: '[data-random-attr-3f225fa9]', + }, + ], + siblings: [], + pseudos: [], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-6b5a0bc3', '.random-classname-99a400ed'], + attributes: [ + { + key: 'data-random-attr-23c1f1a7', + selector: '[data-random-attr-23c1f1a7]', + }, + ], + siblings: [], + pseudos: ['::before'], + }, + children: [], + }, + { + value: { + name: '2-11', + classNames: ['.random-classname-3cfe3cb', '.random-classname-92d27e35'], + attributes: [], + siblings: [], + pseudos: ['::slotted'], + }, + children: [], + }, + ], + }, + ], + }, + selectors: [ + '::before >', + '.random-classname-7134e52f .random-classname-7ef38bd3', + '.random-classname-277f4b7d', + ':first-child', + '::before .random-classname-7ef38bd3 .random-classname-57d7a13f >', + '.random-classname-7134e52f .random-classname-b1643fc9', + '::before > .random-classname-6c6280e3 .random-classname-5e569891', + '.random-classname-1406fceb', + '::before .random-classname-b1643fc9 .random-classname-1f39a14f', + '.random-classname-7134e52f .random-classname-6082f9f3', + '::before .random-classname-338e2ad7', + '.random-classname-1797b521', + '::before > [data-random-attr-f5c697fb] ::placeholder >', + '.random-classname-b686d9a8', + '::before > [data-random-attr-f5c697fb] ::after >', + '.random-classname-7134e52f .random-classname-1797b521 .random-classname-11d8bc02 >', + '.random-classname-47539e56', + '::after', + '.random-classname-7134e52f :not(.random-classname-61db9bea)', + '.random-classname-956278d2', + '.random-classname-7134e52f :last-child .random-classname-835cc907', + '::before', + '.random-classname-7134e52f :last-child .random-classname-bb7e94dd', + '::before :last-child .random-classname-37740f61', + '.random-classname-acad2c3b >', + '::before ::before .random-classname-b6db9d9f', + '[data-random-attr-7fbf1343] >', + '::before [data-random-attr-6c8e1ff1] >', + '.random-classname-7134e52f .random-classname-acad2c3b > :last-child', + '.random-classname-4247db9', + '.random-classname-400da453', + '.random-classname-d8354b37', + '::before ::before > .random-classname-cbb4d745', + '.random-classname-7134e52f .random-classname-acad2c3b .random-classname-92711bf', + '.random-classname-e719a947', + '.random-classname-789e6d11', + '::before .random-classname-eb2731cf >', + '.random-classname-7134e52f .random-classname-eb2731cf .random-classname-185e6ed9', + '.random-classname-b40ceb1d', + '.random-classname-d1adcb57', + '[data-random-attr-7426a9a1]', + ':last-child', + ':not(.random-classname-eb2731cf) .random-classname-2e08ae65 >', + '.random-classname-8dfe3d69', + '.random-classname-40306f83', + '[data-random-attr-3904daad]', + '::slotted', + '.random-classname-c8d04a31 >', + '.random-classname-260e8ff5', + '.random-classname-23413def', + ':not(.random-classname-7134e52f) .random-classname-260e8ff5 .random-classname-4ebeff9 >', + '::before .random-classname-23413def ::before', + '.random-classname-ca295b77', + '[data-random-attr-4c844ec1]', + '.random-classname-e82d829b', + ':nth-child(7)', + '::placeholder', + '.random-classname-87e15e54', + '[data-random-attr-275d9ea6=random-attr-value-79c25cd]', + ':nth-child(1)', + '.random-classname-59c0d30e', + '.random-classname-40848570', + '.random-classname-7134e52f > .random-classname-260e8ff5 .random-classname-cc60f7a4', + '.random-classname-5ffc0ca5', + '.random-classname-7134e52f .random-classname-260e8ff5 .random-classname-d057ce1f', + ':not(.random-classname-99a400ed) >', + '.random-classname-260e8ff5 .random-classname-3cfe3cb', + ], +}; diff --git a/apps/stress-test/src/pages/v8/simple-stress/index.html b/apps/stress-test/src/pages/v8/simple-stress/index.html index 9ff4031b96219..fb88d2f33a8b7 100644 --- a/apps/stress-test/src/pages/v8/simple-stress/index.html +++ b/apps/stress-test/src/pages/v8/simple-stress/index.html @@ -3,7 +3,7 @@ - v8: Stress Tree + v8: Simple Stress
diff --git a/apps/stress-test/src/pages/v8/stress-tree/index.html b/apps/stress-test/src/pages/v8/stress-tree/index.html index fb88d2f33a8b7..9ff4031b96219 100644 --- a/apps/stress-test/src/pages/v8/stress-tree/index.html +++ b/apps/stress-test/src/pages/v8/stress-tree/index.html @@ -3,7 +3,7 @@ - v8: Simple Stress + v8: Stress Tree
diff --git a/apps/stress-test/src/pages/v8/stress-tree/index.tsx b/apps/stress-test/src/pages/v8/stress-tree/index.tsx index 3fdd630f0cdcb..f72cd57f02140 100644 --- a/apps/stress-test/src/pages/v8/stress-tree/index.tsx +++ b/apps/stress-test/src/pages/v8/stress-tree/index.tsx @@ -1,18 +1,16 @@ import * as React from 'react'; import * as ReactDOM from 'react-dom'; -import { initializeIcons, DefaultButton, ThemeProvider } from '@fluentui/react'; -import { ReactSelectorTreeComponentRenderer } from '../../../shared/react/ReactSelectorTree'; -import { TestTree } from '../../../shared/react/TestTree'; +import { initializeIcons, ThemeProvider } from '@fluentui/react'; +import { getTestOptions } from '../../../shared/utils/testOptions'; +import { ReactTest } from '../../../shared/react/ReactTest'; initializeIcons(); -const componentRenderer: ReactSelectorTreeComponentRenderer = (node, depth, index) => { - return ; -}; +const { fixtureName, rendererName } = getTestOptions(); ReactDOM.render( - + , document.getElementById('root'), ); diff --git a/apps/stress-test/src/pages/v9/stress-tree/index.tsx b/apps/stress-test/src/pages/v9/stress-tree/index.tsx index 9a7e5f16c8136..0b68f24ef58ad 100644 --- a/apps/stress-test/src/pages/v9/stress-tree/index.tsx +++ b/apps/stress-test/src/pages/v9/stress-tree/index.tsx @@ -1,21 +1,15 @@ import * as React from 'react'; import * as ReactDOM from 'react-dom'; -import { Button, FluentProvider, webLightTheme } from '@fluentui/react-components'; -import { ReactSelectorTreeComponentRenderer } from '../../../shared/react/ReactSelectorTree'; -import { TestTree } from '../../../shared/react/TestTree'; +import { FluentProvider, webLightTheme } from '@fluentui/react-components'; +import { ReactTest } from '../../../shared/react/ReactTest'; +import { getTestOptions } from '../../../shared/utils/testOptions'; -const componentRenderer: ReactSelectorTreeComponentRenderer = (node, depth, index) => { - return ( - - ); -}; +const { fixtureName, rendererName } = getTestOptions(); ReactDOM.render( - + , document.getElementById('root'), ); diff --git a/apps/stress-test/src/pages/wc/simple-stress/index.wc.ts b/apps/stress-test/src/pages/wc/simple-stress/index.wc.ts index 951bb24195e7a..56b380dd02c4d 100644 --- a/apps/stress-test/src/pages/wc/simple-stress/index.wc.ts +++ b/apps/stress-test/src/pages/wc/simple-stress/index.wc.ts @@ -9,9 +9,9 @@ import { import { StressApp } from '../../../components/wc/stressApp.wc'; import { StressComponent } from '../../../components/wc/stressComponent.wc'; import { StressContainer } from '../../../components/wc/stressContainer.wc'; -import { getTestParams } from '../../../shared/testParams'; +import { getTestOptions } from '../../../shared/utils/testOptions'; -const testParams = getTestParams(); +const testParams = getTestOptions(); document.querySelector('stress-app')?.setAttribute('numchildren', testParams.numStartNodes.toString()); diff --git a/apps/stress-test/src/pages/wc/stress-tree/index.html b/apps/stress-test/src/pages/wc/stress-tree/index.html new file mode 100644 index 0000000000000..c20b268b0cb78 --- /dev/null +++ b/apps/stress-test/src/pages/wc/stress-tree/index.html @@ -0,0 +1,11 @@ + + + + + + WC: Stress Tree + + +
+ + diff --git a/apps/stress-test/src/pages/wc/stress-tree/index.wc.ts b/apps/stress-test/src/pages/wc/stress-tree/index.wc.ts new file mode 100644 index 0000000000000..c5a4e6778605b --- /dev/null +++ b/apps/stress-test/src/pages/wc/stress-tree/index.wc.ts @@ -0,0 +1,5 @@ +import { wcTest } from '../../../shared/wc/WCTest'; + +wcTest().then(testNode => { + document.querySelector('#app')?.appendChild(testNode!); +}); diff --git a/apps/stress-test/src/renderers/v8/button.tsx b/apps/stress-test/src/renderers/v8/button.tsx new file mode 100644 index 0000000000000..74ca75be0686d --- /dev/null +++ b/apps/stress-test/src/renderers/v8/button.tsx @@ -0,0 +1,9 @@ +import * as React from 'react'; +import { DefaultButton } from '@fluentui/react'; +import { ReactSelectorTreeComponentRenderer } from '../../shared/react/types'; + +const componentRenderer: ReactSelectorTreeComponentRenderer = (node, depth, index) => { + return ; +}; + +export default componentRenderer; diff --git a/apps/stress-test/src/renderers/v9/button.tsx b/apps/stress-test/src/renderers/v9/button.tsx new file mode 100644 index 0000000000000..729f2b76b6a5e --- /dev/null +++ b/apps/stress-test/src/renderers/v9/button.tsx @@ -0,0 +1,9 @@ +import * as React from 'react'; +import { Button } from '@fluentui/react-components'; +import { ReactSelectorTreeComponentRenderer } from '../../shared/react/types'; + +const componentRenderer: ReactSelectorTreeComponentRenderer = (node, depth, index) => { + return ; +}; + +export default componentRenderer; diff --git a/apps/stress-test/src/renderers/wc/button.ts b/apps/stress-test/src/renderers/wc/button.ts new file mode 100644 index 0000000000000..c9bbc64f44cb1 --- /dev/null +++ b/apps/stress-test/src/renderers/wc/button.ts @@ -0,0 +1,13 @@ +import { fluentButton, provideFluentDesignSystem } from '@fluentui/web-components'; +import { DOMSelectorTreeComponentRenderer } from '../../shared/vanilla/types'; + +provideFluentDesignSystem().register(fluentButton()); + +const componentRenderer: DOMSelectorTreeComponentRenderer = (node, depth, index) => { + const btn = document.createElement('fluent-button'); + btn.innerHTML = node.value.name + ' ' + index; + + return btn; +}; + +export default componentRenderer; diff --git a/apps/stress-test/src/shared/css/RandomSelector.ts b/apps/stress-test/src/shared/css/RandomSelector.ts index 85357e18f7b8e..caa8248bdcd67 100644 --- a/apps/stress-test/src/shared/css/RandomSelector.ts +++ b/apps/stress-test/src/shared/css/RandomSelector.ts @@ -1,4 +1,4 @@ -import { random, Random } from '../random'; +import { random, Random } from '../utils/random'; export const defaultSelectorTypes = [ 'class', diff --git a/apps/stress-test/src/shared/css/injectStyles.ts b/apps/stress-test/src/shared/css/injectStyles.ts index f4422a7f7bf6a..211e4aa61b80c 100644 --- a/apps/stress-test/src/shared/css/injectStyles.ts +++ b/apps/stress-test/src/shared/css/injectStyles.ts @@ -1,6 +1,5 @@ // Inspired by: https://github.com/nolanlawson/shadow-selector-benchmark - -import { random } from '../random'; +import { random } from '../utils/random'; const colors = [ 'aliceblue', @@ -206,3 +205,7 @@ export function injectGlobalCss(css?: string) { performance.measure('fluent-inject-global-css', 'fluent-inject-global-css-start'); return style; } + +export const styleInjector = (selectors: string[]): HTMLStyleElement => { + return injectGlobalCss(randomCssFromSelectors(selectors)); +}; diff --git a/apps/stress-test/src/shared/react/ReactSelectorTree.tsx b/apps/stress-test/src/shared/react/ReactSelectorTree.tsx index a89cc78cd9b7f..7dd0df4d8bb2c 100644 --- a/apps/stress-test/src/shared/react/ReactSelectorTree.tsx +++ b/apps/stress-test/src/shared/react/ReactSelectorTree.tsx @@ -1,38 +1,16 @@ import * as React from 'react'; - -import { RandomTree, TreeNode } from '../tree/RandomTree'; +import { TreeNode } from '../tree/RandomTree'; import { ReactTree } from './ReactTree'; -import { selectorTreeCreator, RandomSelectorTreeNode } from '../tree/RandomSelectorTreeNode'; -import { performanceMeasure } from '../performanceMeasure'; -import { injectGlobalCss, randomCssFromSelectors } from '../css/injectStyles'; - -export type ReactSelectorTreeNode = TreeNode; - -export type ReactSelectorTreeComponentRenderer = ( - node: ReactSelectorTreeNode, - depth: number, - index: number, -) => JSX.Element; +import { RandomSelectorTreeNode, SelectorTreeNode } from '../tree/RandomSelectorTreeNode'; +import { ReactSelectorTreeComponentRenderer } from './types'; -type ReactSelectorTreeProps = Partial<{ - minBreadth: number; - maxBreadth: number; - minDepth: number; - maxDepth: number; - seed: number; - injectStyles: boolean; - styleInjector: (selectors: string[]) => HTMLStyleElement; -}> & { +type ReactSelectorTreeProps = { + tree?: TreeNode; componentRenderer: ReactSelectorTreeComponentRenderer; }; -type ReactSelectorTreeState = { - tree: ReactSelectorTreeNode; - selectors: string[]; -}; - const buildRenderer = (componentRenderer: ReactSelectorTreeComponentRenderer) => { - const renderer = (node: ReactSelectorTreeNode, depth: number, index: number): JSX.Element => { + const renderer = (node: SelectorTreeNode, depth: number, index: number): JSX.Element => { const { value } = node; const className = value.classNames.map(cn => cn.substring(1)).join(' '); @@ -50,44 +28,6 @@ const buildRenderer = (componentRenderer: ReactSelectorTreeComponentRenderer) => return renderer; }; - -const styleInjector = (selectors: string[]): HTMLStyleElement => { - performanceMeasure(); - return injectGlobalCss(randomCssFromSelectors(selectors)); -}; - -export const ReactSelectorTree: React.FC = ({ - minBreadth, - maxBreadth, - minDepth, - maxDepth, - seed, - injectStyles, - componentRenderer, -}) => { - const [data, setData] = React.useState({} as ReactSelectorTreeState); - const styles = React.useRef(); - - React.useEffect(() => { - const selectors = [] as string[]; - const treeBuilder = new RandomTree({ minBreadth, maxBreadth, minDepth, maxDepth, seed }); - const tree = treeBuilder.build(selectorTreeCreator(selectors)); - const dedupedSelectors = Array.from(new Set(selectors)); - - setData({ - tree, - selectors: dedupedSelectors, - }); - }, [minBreadth, maxBreadth, minDepth, maxDepth, seed]); - - React.useEffect(() => { - if (!injectStyles && styles.current) { - document.head.removeChild(styles.current); - styles.current = undefined; - } else if (injectStyles && !styles.current) { - styles.current = styleInjector(data.selectors); - } - }, [injectStyles]); - - return <>{data.tree ? : null}; +export const ReactSelectorTree: React.FC = ({ tree, componentRenderer }) => { + return <>{tree ? : null}; }; diff --git a/apps/stress-test/src/shared/react/ReactTest.tsx b/apps/stress-test/src/shared/react/ReactTest.tsx new file mode 100644 index 0000000000000..77e106364f486 --- /dev/null +++ b/apps/stress-test/src/shared/react/ReactTest.tsx @@ -0,0 +1,77 @@ +import * as React from 'react'; +import { getTestOptions, TestOptions } from '../utils/testOptions'; +import { loadTestData, TestRenderer } from '../utils/testUtils'; +import { RandomSelectorTreeNode } from '../tree/RandomSelectorTreeNode'; +import { RandomTree, TreeNode } from '../tree/RandomTree'; +import { TestInjectStyles } from './TestInjectStyles'; +import { TestMount } from './TestMount'; +import { TestRemoveAll } from './TestRemoveAll'; +import { TestReRenderAll } from './TestReRenderAll'; + +type TestData = { + tree?: TreeNode; + selectors?: string[]; + testOptions: TestOptions; + renderer?: TestRenderer; +}; + +type ReactTestProps = { + target: string; + fixtureName: string; + rendererName: string; +}; + +export const ReactTest: React.FC = ({ target, fixtureName, rendererName }) => { + const [testData, setTestData] = React.useState({ + testOptions: getTestOptions(), + }); + + React.useEffect(() => { + loadTestData(target, fixtureName, rendererName).then(({ fixture, renderer }) => { + const selectors = fixture.selectors; + const fixtureTree = fixture.tree; + + const treeBuilder = new RandomTree(); + const tree = treeBuilder.fromFixture(fixtureTree); + + setTestData({ + ...testData, + tree, + selectors, + renderer, + }); + }); + }, []); + + const { + testOptions: { test }, + tree, + selectors, + renderer, + } = testData; + + let Test; + switch (test) { + case 'inject-styles': + Test = TestInjectStyles; + break; + + case 'mount': + Test = TestMount; + break; + + case 're-render-all': + Test = TestReRenderAll; + break; + + case 'remove-all': + Test = TestRemoveAll; + break; + + default: + Test = TestMount; + break; + } + + return ; +}; diff --git a/apps/stress-test/src/shared/react/TestChangeNumNodes.tsx b/apps/stress-test/src/shared/react/TestChangeNumNodes.tsx deleted file mode 100644 index 30225a6398e44..0000000000000 --- a/apps/stress-test/src/shared/react/TestChangeNumNodes.tsx +++ /dev/null @@ -1,47 +0,0 @@ -import * as React from 'react'; -import { performanceMeasure } from '../performanceMeasure'; -import { getTestParams } from '../testParams'; -import { ReactSelectorTree } from './ReactSelectorTree'; -import type { TestProps } from './types'; - -export const TestChangeNumNodes: React.FC = ({ - minBreadth, - maxBreadth, - minDepth, - maxDepth, - seed, - componentRenderer, -}) => { - const [treeParams, setTreeParams] = React.useState({ - minBreadth, - maxBreadth, - minDepth, - maxDepth, - seed, - }); - - React.useEffect(() => { - const { test, addBreadth, removeBreadth, addDepth, removeDepth } = getTestParams(); - - let newBreadth: number = 0; - let newDepth: number = 0; - if (test === 'add-node') { - newBreadth = Number(addBreadth); - newDepth = Number(addDepth); - } else if (test === 'remove-node') { - newBreadth = Number(removeBreadth); - newDepth = Number(removeDepth); - } - - setTimeout(() => { - performanceMeasure(); - setTreeParams({ - ...treeParams, - maxBreadth: Number(maxBreadth) + newBreadth, - maxDepth: Number(maxDepth) + newDepth, - }); - }, 2000); - }, []); - - return ; -}; diff --git a/apps/stress-test/src/shared/react/TestInjectStyles.tsx b/apps/stress-test/src/shared/react/TestInjectStyles.tsx index 47b355d5a8ee7..c57af6dbe38f7 100644 --- a/apps/stress-test/src/shared/react/TestInjectStyles.tsx +++ b/apps/stress-test/src/shared/react/TestInjectStyles.tsx @@ -1,32 +1,16 @@ import * as React from 'react'; +import { styleInjector } from '../css/injectStyles'; +import { performanceMeasure } from '../utils/performanceMeasure'; import { ReactSelectorTree } from './ReactSelectorTree'; import type { TestProps } from './types'; -export const TestInjectStyles: React.FC = ({ - minBreadth, - maxBreadth, - minDepth, - maxDepth, - seed, - componentRenderer, -}) => { - const [injectStyles, setInjectStyles] = React.useState(false); - +export const TestInjectStyles: React.FC = ({ tree, selectors, componentRenderer }) => { React.useEffect(() => { setTimeout(() => { - setInjectStyles(true); + styleInjector(selectors); + performanceMeasure(); }, 2000); }, []); - return ( - - ); + return ; }; diff --git a/apps/stress-test/src/shared/react/TestMount.tsx b/apps/stress-test/src/shared/react/TestMount.tsx new file mode 100644 index 0000000000000..86f1f976d0cdc --- /dev/null +++ b/apps/stress-test/src/shared/react/TestMount.tsx @@ -0,0 +1,17 @@ +import * as React from 'react'; +import { styleInjector } from '../css/injectStyles'; +import { performanceMeasure } from '../utils/performanceMeasure'; +import { ReactSelectorTree } from './ReactSelectorTree'; +import type { TestProps } from './types'; + +export const TestMount: React.FC = ({ tree, selectors, componentRenderer, testOptions }) => { + // eslint-disable-next-line no-restricted-properties + React.useLayoutEffect(() => { + if (testOptions.withStyles === 'true') { + styleInjector(selectors); + } + performanceMeasure(); + }, []); + + return ; +}; diff --git a/apps/stress-test/src/shared/react/TestReRenderAll.tsx b/apps/stress-test/src/shared/react/TestReRenderAll.tsx new file mode 100644 index 0000000000000..842e5ada346d3 --- /dev/null +++ b/apps/stress-test/src/shared/react/TestReRenderAll.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { styleInjector } from '../css/injectStyles'; +import { performanceMeasure } from '../utils/performanceMeasure'; +import { ReactSelectorTree } from './ReactSelectorTree'; +import type { TestProps } from './types'; + +export const TestReRenderAll: React.FC = ({ tree, selectors, componentRenderer, testOptions }) => { + const [theTree, setTheTree] = React.useState(tree); + + React.useEffect(() => { + if (testOptions.withStyles === 'true') { + styleInjector(selectors); + } + }, []); + + React.useEffect(() => { + if (theTree === undefined && tree) { + setTheTree(tree); + + setTimeout(() => { + setTheTree(undefined); + + setTimeout(() => { + setTheTree(tree); + performanceMeasure(); + }, 2000); + }, 2000); + } + }, [tree]); + + return ; +}; diff --git a/apps/stress-test/src/shared/react/TestRemoveAll.tsx b/apps/stress-test/src/shared/react/TestRemoveAll.tsx new file mode 100644 index 0000000000000..394270894a9c2 --- /dev/null +++ b/apps/stress-test/src/shared/react/TestRemoveAll.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { styleInjector } from '../css/injectStyles'; +import { performanceMeasure } from '../utils/performanceMeasure'; +import { ReactSelectorTree } from './ReactSelectorTree'; +import type { TestProps } from './types'; + +export const TestRemoveAll: React.FC = ({ tree, selectors, componentRenderer, testOptions }) => { + const [theTree, setTheTree] = React.useState(tree); + + React.useEffect(() => { + if (testOptions.withStyles === 'true') { + styleInjector(selectors); + } + }, []); + + React.useEffect(() => { + if (theTree === undefined && tree) { + setTheTree(tree); + + setTimeout(() => { + setTheTree(undefined); + performanceMeasure(); + }, 2000); + } + }, [tree]); + + return ; +}; diff --git a/apps/stress-test/src/shared/react/TestTree.tsx b/apps/stress-test/src/shared/react/TestTree.tsx deleted file mode 100644 index 1f13a61821d0e..0000000000000 --- a/apps/stress-test/src/shared/react/TestTree.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import * as React from 'react'; -import { getTestParams } from '../testParams'; -import { ReactSelectorTreeComponentRenderer } from './ReactSelectorTree'; -import { TestChangeNumNodes } from './TestChangeNumNodes'; -import { TestInjectStyles } from './TestInjectStyles'; - -export type TestProps = { - componentRenderer: ReactSelectorTreeComponentRenderer; -}; - -export const TestTree: React.FC = ({ componentRenderer }) => { - const { test, ...testOptions } = getTestParams(); - - return ( - <> - {test === 'inject-styles' && } - {(test === 'add-node' || test === 'remove-node') && ( - - )} - - ); -}; diff --git a/apps/stress-test/src/shared/react/types.ts b/apps/stress-test/src/shared/react/types.ts index 252ea0f7fb271..96eab1e699dc3 100644 --- a/apps/stress-test/src/shared/react/types.ts +++ b/apps/stress-test/src/shared/react/types.ts @@ -1,10 +1,12 @@ -import type { ReactSelectorTreeComponentRenderer } from './ReactSelectorTree'; +import { TestOptions } from '../utils/testOptions'; +import { RandomSelectorTreeNode, SelectorTreeNode } from '../tree/RandomSelectorTreeNode'; +import { TreeNode } from '../tree/RandomTree'; + +export type ReactSelectorTreeComponentRenderer = (node: SelectorTreeNode, depth: number, index: number) => JSX.Element; export type TestProps = { componentRenderer: ReactSelectorTreeComponentRenderer; - minBreadth?: number; - maxBreadth?: number; - minDepth?: number; - maxDepth?: number; - seed?: number; + tree: TreeNode; + selectors: string[]; + testOptions: TestOptions; }; diff --git a/apps/stress-test/src/shared/tree/RandomSelectorTreeNode.ts b/apps/stress-test/src/shared/tree/RandomSelectorTreeNode.ts index 07db0cbbcb6b4..28b0cb2f87c27 100644 --- a/apps/stress-test/src/shared/tree/RandomSelectorTreeNode.ts +++ b/apps/stress-test/src/shared/tree/RandomSelectorTreeNode.ts @@ -1,6 +1,6 @@ import { RandomSelector } from '../css/RandomSelector'; import { TreeNode, TreeNodeCreateCallback } from './RandomTree'; -import { random } from '../random'; +import { random } from '../utils/random'; export type Attribute = { key: string; @@ -16,6 +16,8 @@ export type RandomSelectorTreeNode = { pseudos: string[]; }; +export type SelectorTreeNode = TreeNode; + const { coin, choice } = random(); const randomSelector = new RandomSelector(); diff --git a/apps/stress-test/src/shared/tree/RandomTree.ts b/apps/stress-test/src/shared/tree/RandomTree.ts index e08db18506941..acd53db3600b7 100644 --- a/apps/stress-test/src/shared/tree/RandomTree.ts +++ b/apps/stress-test/src/shared/tree/RandomTree.ts @@ -1,4 +1,5 @@ -import { random, Random } from '../random'; +import { random, Random } from '../utils/random'; +import { TestFixture } from '../utils/testUtils'; type TreeParams = { minDepth?: number; @@ -54,6 +55,20 @@ export class RandomTree { return this._doBuild(createNode, root, 1); }; + public fromFixture = (fixture: TestFixture['tree'], parent: TreeNode | null = null): TreeNode => { + const root: TreeNode = { + value: fixture.value, + children: [], + parent, + }; + + for (const child of fixture.children) { + root.children.push(this.fromFixture(child, root)); + } + + return root; + }; + private _randomDepth = (max?: number): number => { return this.rando.range(this.minDepth, max ?? this.maxDepth); }; diff --git a/apps/stress-test/src/shared/performanceMeasure.ts b/apps/stress-test/src/shared/utils/performanceMeasure.ts similarity index 100% rename from apps/stress-test/src/shared/performanceMeasure.ts rename to apps/stress-test/src/shared/utils/performanceMeasure.ts diff --git a/apps/stress-test/src/shared/random.ts b/apps/stress-test/src/shared/utils/random.ts similarity index 100% rename from apps/stress-test/src/shared/random.ts rename to apps/stress-test/src/shared/utils/random.ts diff --git a/apps/stress-test/src/shared/requestPostAnimationFrame.ts b/apps/stress-test/src/shared/utils/requestPostAnimationFrame.ts similarity index 100% rename from apps/stress-test/src/shared/requestPostAnimationFrame.ts rename to apps/stress-test/src/shared/utils/requestPostAnimationFrame.ts diff --git a/apps/stress-test/src/shared/testParams.ts b/apps/stress-test/src/shared/utils/testOptions.ts similarity index 80% rename from apps/stress-test/src/shared/testParams.ts rename to apps/stress-test/src/shared/utils/testOptions.ts index 50ec13b397429..99d2a16847563 100644 --- a/apps/stress-test/src/shared/testParams.ts +++ b/apps/stress-test/src/shared/utils/testOptions.ts @@ -1,19 +1,18 @@ -export type TestParams = { +export type TestOptions = { test: string; - numStartNodes: number; - numAddNodes: number; - numRemoveNodes: number; + fixtureName: string; + rendererName: string; [key: string]: string | number; }; -export type GetTestParamsFn = () => TestParams; +export type GetTestOptionsFn = () => TestOptions; -let params: TestParams; -export const getTestParams = () => { +let params: TestOptions; +export const getTestOptions = () => { if (params) { return params; } - params = {} as TestParams; + params = {} as TestOptions; if (typeof window === 'undefined') { return params; @@ -41,7 +40,7 @@ export const getTestParams = () => { numRemoveNodes = 99; } - params.test = test as TestParams['test']; + params.test = test as TestOptions['test']; params.numStartNodes = numStartNodes; params.numAddNodes = numAddNodes; params.numRemoveNodes = numRemoveNodes; diff --git a/apps/stress-test/src/shared/utils/testUtils.ts b/apps/stress-test/src/shared/utils/testUtils.ts new file mode 100644 index 0000000000000..a7bca826dc235 --- /dev/null +++ b/apps/stress-test/src/shared/utils/testUtils.ts @@ -0,0 +1,28 @@ +export type TestFixture = { + tree: { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + value: any; + children: TestFixture['tree'][]; + }; + selectors: string[]; +}; + +// eslint-disable-next-line @typescript-eslint/no-explicit-any +export type TestRenderer = (node: any, depth: number, index: number) => any; + +export type LoaderResult = { + fixture: TestFixture; + renderer: TestRenderer; +}; + +export const loadTestData = (target: string, fixtureName: string, rendererName: string): Promise => { + return Promise.all([ + import(`../../fixtures/${fixtureName}`), + import(`../../renderers/${target}/${rendererName}`), + ]).then(([fixtureResult, rendererResult]) => { + const { default: fixture } = fixtureResult; + const { default: renderer } = rendererResult; + + return { fixture, renderer }; + }); +}; diff --git a/apps/stress-test/src/shared/vanilla/TestInjectStyles.ts b/apps/stress-test/src/shared/vanilla/TestInjectStyles.ts new file mode 100644 index 0000000000000..b766e94159006 --- /dev/null +++ b/apps/stress-test/src/shared/vanilla/TestInjectStyles.ts @@ -0,0 +1,22 @@ +import { styleInjector } from '../css/injectStyles'; +import { performanceMeasure } from '../utils/performanceMeasure'; +import { TestOptions } from '../utils/testOptions'; +import { SelectorTreeNode } from '../tree/RandomSelectorTreeNode'; +import { DOMSelectorTreeComponentRenderer } from './types'; +import { renderVanillaSelectorTree } from './VanillaSelectorTree'; + +export const testInjectStyles = ( + tree: SelectorTreeNode, + selectors: string[], + componentRenderer: DOMSelectorTreeComponentRenderer, + testOptions: TestOptions, +): HTMLElement => { + const vanillaTree = renderVanillaSelectorTree(tree, selectors, componentRenderer, testOptions); + + setTimeout(() => { + styleInjector(selectors); + performanceMeasure(); + }, 2000); + + return vanillaTree; +}; diff --git a/apps/stress-test/src/shared/vanilla/TestMount.ts b/apps/stress-test/src/shared/vanilla/TestMount.ts new file mode 100644 index 0000000000000..6477cff149f09 --- /dev/null +++ b/apps/stress-test/src/shared/vanilla/TestMount.ts @@ -0,0 +1,17 @@ +import { performanceMeasure } from '../utils/performanceMeasure'; +import { TestOptions } from '../utils/testOptions'; +import { SelectorTreeNode } from '../tree/RandomSelectorTreeNode'; +import { DOMSelectorTreeComponentRenderer } from './types'; +import { renderVanillaSelectorTree } from './VanillaSelectorTree'; + +export const testMount = ( + tree: SelectorTreeNode, + selectors: string[], + componentRenderer: DOMSelectorTreeComponentRenderer, + testOptions: TestOptions, +): HTMLElement => { + const vanillaTree = renderVanillaSelectorTree(tree, selectors, componentRenderer, testOptions); + + requestAnimationFrame(() => performanceMeasure()); + return vanillaTree; +}; diff --git a/apps/stress-test/src/shared/vanilla/TestReRenderAll.ts b/apps/stress-test/src/shared/vanilla/TestReRenderAll.ts new file mode 100644 index 0000000000000..49c19994e14f3 --- /dev/null +++ b/apps/stress-test/src/shared/vanilla/TestReRenderAll.ts @@ -0,0 +1,33 @@ +import { styleInjector } from '../css/injectStyles'; +import { performanceMeasure } from '../utils/performanceMeasure'; +import { TestOptions } from '../utils/testOptions'; +import { SelectorTreeNode } from '../tree/RandomSelectorTreeNode'; +import { DOMSelectorTreeComponentRenderer } from './types'; +import { renderVanillaSelectorTree } from './VanillaSelectorTree'; + +export const testReRenderAll = ( + tree: SelectorTreeNode, + selectors: string[], + componentRenderer: DOMSelectorTreeComponentRenderer, + testOptions: TestOptions, +): HTMLElement => { + if (testOptions.withStyles === 'true') { + styleInjector(selectors); + } + + const wrapper = document.createElement('div'); + wrapper.appendChild(renderVanillaSelectorTree(tree, selectors, componentRenderer, testOptions)); + + setTimeout(() => { + while (wrapper.hasChildNodes()) { + wrapper.removeChild(wrapper.lastChild!); + } + + setTimeout(() => { + wrapper.appendChild(renderVanillaSelectorTree(tree, selectors, componentRenderer, testOptions)); + performanceMeasure(); + }, 2000); + }, 2000); + + return wrapper; +}; diff --git a/apps/stress-test/src/shared/vanilla/TestRemoveAll.ts b/apps/stress-test/src/shared/vanilla/TestRemoveAll.ts new file mode 100644 index 0000000000000..6597662b9fb9c --- /dev/null +++ b/apps/stress-test/src/shared/vanilla/TestRemoveAll.ts @@ -0,0 +1,29 @@ +import { styleInjector } from '../css/injectStyles'; +import { performanceMeasure } from '../utils/performanceMeasure'; +import { TestOptions } from '../utils/testOptions'; +import { SelectorTreeNode } from '../tree/RandomSelectorTreeNode'; +import { DOMSelectorTreeComponentRenderer } from './types'; +import { renderVanillaSelectorTree } from './VanillaSelectorTree'; + +export const testRemoveAll = ( + tree: SelectorTreeNode, + selectors: string[], + componentRenderer: DOMSelectorTreeComponentRenderer, + testOptions: TestOptions, +): HTMLElement => { + if (testOptions.withStyles === 'true') { + styleInjector(selectors); + } + + const wrapper = document.createElement('div'); + wrapper.appendChild(renderVanillaSelectorTree(tree, selectors, componentRenderer, testOptions)); + + setTimeout(() => { + while (wrapper.hasChildNodes()) { + wrapper.removeChild(wrapper.lastChild!); + } + performanceMeasure(); + }, 2000); + + return wrapper; +}; diff --git a/apps/stress-test/src/shared/vanilla/VanillaSelectorTree.ts b/apps/stress-test/src/shared/vanilla/VanillaSelectorTree.ts new file mode 100644 index 0000000000000..308fbd70abe43 --- /dev/null +++ b/apps/stress-test/src/shared/vanilla/VanillaSelectorTree.ts @@ -0,0 +1,33 @@ +import { TestOptions } from '../utils/testOptions'; +import { SelectorTreeNode } from '../tree/RandomSelectorTreeNode'; +import { DOMSelectorTreeComponentRenderer } from './types'; +import { renderVanillaTree } from './VanillaTree'; + +const itemRenderer = (componentRenderer: DOMSelectorTreeComponentRenderer) => ( + node: SelectorTreeNode, + depth: number, + index: number, +): HTMLElement => { + const { value } = node; + + const div = document.createElement('div'); + div.classList.add(...value.classNames.map(cn => cn.substring(1))); + value.attributes.forEach(attr => { + div.setAttribute(attr.key, attr.value ?? ''); + }); + + div.style.marginLeft = `${depth * 10}px`; + div.appendChild(componentRenderer(node, depth, index)); + + return div; +}; + +export const renderVanillaSelectorTree = ( + tree: SelectorTreeNode, + _selectors: string[], + componentRenderer: DOMSelectorTreeComponentRenderer, + _testOptions: TestOptions, +): HTMLElement => { + const vanillaTree = renderVanillaTree(tree, itemRenderer(componentRenderer)); + return vanillaTree; +}; diff --git a/apps/stress-test/src/shared/vanilla/VanillaTree.ts b/apps/stress-test/src/shared/vanilla/VanillaTree.ts new file mode 100644 index 0000000000000..8939b00b10c9b --- /dev/null +++ b/apps/stress-test/src/shared/vanilla/VanillaTree.ts @@ -0,0 +1,25 @@ +import { TreeNode } from '../tree/RandomTree'; + +export type VanillaTreeItemRenderer = (node: T, depth: number, index: number) => HTMLElement; + +// eslint-disable-next-line @typescript-eslint/no-explicit-any +export const renderVanillaTree = >( + tree: T, + itemRenderer: VanillaTreeItemRenderer, + depth: number = 0, + index: number = 0, +): HTMLElement => { + const root = document.createElement('div'); + root.classList.add('vanilla-tree-node'); + + root.appendChild(itemRenderer(tree, depth, index)); + + tree.children.forEach((child, i) => { + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore + const node = renderVanillaTree(child, itemRenderer, depth + 1, i + 1); + root.appendChild(node); + }); + + return root; +}; diff --git a/apps/stress-test/src/shared/vanilla/types.ts b/apps/stress-test/src/shared/vanilla/types.ts new file mode 100644 index 0000000000000..3700ac3358187 --- /dev/null +++ b/apps/stress-test/src/shared/vanilla/types.ts @@ -0,0 +1,3 @@ +import { SelectorTreeNode } from '../tree/RandomSelectorTreeNode'; + +export type DOMSelectorTreeComponentRenderer = (node: SelectorTreeNode, depth: number, index: number) => HTMLElement; diff --git a/apps/stress-test/src/shared/wc/TestInjectStyles.ts b/apps/stress-test/src/shared/wc/TestInjectStyles.ts new file mode 100644 index 0000000000000..c6ef945fc2faf --- /dev/null +++ b/apps/stress-test/src/shared/wc/TestInjectStyles.ts @@ -0,0 +1,29 @@ +import { TestOptions } from '../utils/testOptions'; +import { WCSelectorTree } from './WCSelectorTree'; +import { WCTestTree } from './types'; +import { SelectorTreeNode } from '../tree/RandomSelectorTreeNode'; +import { DOMSelectorTreeComponentRenderer } from '../vanilla/types'; +import { styleInjector } from '../css/injectStyles'; +import { performanceMeasure } from '../utils/performanceMeasure'; + +export class TestInjectStyles extends HTMLElement implements WCTestTree { + constructor( + tree: SelectorTreeNode, + selectors: string[], + componentRenderer: DOMSelectorTreeComponentRenderer, + testOptions: TestOptions, + ) { + super(); + + const domTree = new WCSelectorTree(componentRenderer, testOptions); + domTree.tree = tree; + this.appendChild(domTree); + + setTimeout(() => { + styleInjector(selectors); + performanceMeasure(); + }, 2000); + } +} + +window.customElements.define('wc-test-inject-styles', TestInjectStyles); diff --git a/apps/stress-test/src/shared/wc/TestMount.ts b/apps/stress-test/src/shared/wc/TestMount.ts new file mode 100644 index 0000000000000..ce48424fea25c --- /dev/null +++ b/apps/stress-test/src/shared/wc/TestMount.ts @@ -0,0 +1,25 @@ +import { performanceMeasure } from '../utils/performanceMeasure'; +import { TestOptions } from '../utils/testOptions'; +import { SelectorTreeNode } from '../tree/RandomSelectorTreeNode'; +import { DOMSelectorTreeComponentRenderer } from '../vanilla/types'; +import { WCTestTree } from './types'; +import { WCSelectorTree } from './WCSelectorTree'; + +export class TestMount extends HTMLElement implements WCTestTree { + constructor( + tree: SelectorTreeNode, + _selectors: string[], + componentRenderer: DOMSelectorTreeComponentRenderer, + testOptions: TestOptions, + ) { + super(); + + const domTree = new WCSelectorTree(componentRenderer, testOptions); + domTree.tree = tree; + + this.appendChild(domTree); + requestAnimationFrame(() => performanceMeasure()); + } +} + +window.customElements.define('wc-test-mount', TestMount); diff --git a/apps/stress-test/src/shared/wc/TestReRenderAll.ts b/apps/stress-test/src/shared/wc/TestReRenderAll.ts new file mode 100644 index 0000000000000..d51f36b69ece2 --- /dev/null +++ b/apps/stress-test/src/shared/wc/TestReRenderAll.ts @@ -0,0 +1,37 @@ +import { TestOptions } from '../utils/testOptions'; +import { WCSelectorTree } from './WCSelectorTree'; +import { WCTestTree } from './types'; +import { SelectorTreeNode } from '../tree/RandomSelectorTreeNode'; +import { DOMSelectorTreeComponentRenderer } from '../vanilla/types'; +import { styleInjector } from '../css/injectStyles'; +import { performanceMeasure } from '../utils/performanceMeasure'; + +export class TestReRenderAll extends HTMLElement implements WCTestTree { + constructor( + tree: SelectorTreeNode, + selectors: string[], + componentRenderer: DOMSelectorTreeComponentRenderer, + testOptions: TestOptions, + ) { + super(); + + if (testOptions.withStyles === 'true') { + styleInjector(selectors); + } + + const domTree = new WCSelectorTree(componentRenderer, testOptions); + domTree.tree = tree; + this.appendChild(domTree); + + setTimeout(() => { + domTree.tree = null; + + setTimeout(() => { + domTree.tree = tree; + requestAnimationFrame(() => performanceMeasure()); + }, 2000); + }, 2000); + } +} + +window.customElements.define('wc-test-re-render-all', TestReRenderAll); diff --git a/apps/stress-test/src/shared/wc/TestRemoveAll.ts b/apps/stress-test/src/shared/wc/TestRemoveAll.ts new file mode 100644 index 0000000000000..18f1190be2818 --- /dev/null +++ b/apps/stress-test/src/shared/wc/TestRemoveAll.ts @@ -0,0 +1,33 @@ +import { TestOptions } from '../utils/testOptions'; +import { WCSelectorTree } from './WCSelectorTree'; +import { WCTestTree } from './types'; +import { SelectorTreeNode } from '../tree/RandomSelectorTreeNode'; +import { DOMSelectorTreeComponentRenderer } from '../vanilla/types'; +import { styleInjector } from '../css/injectStyles'; +import { performanceMeasure } from '../utils/performanceMeasure'; + +export class TestRemoveAll extends HTMLElement implements WCTestTree { + constructor( + tree: SelectorTreeNode, + selectors: string[], + componentRenderer: DOMSelectorTreeComponentRenderer, + testOptions: TestOptions, + ) { + super(); + + if (testOptions.withStyles === 'true') { + styleInjector(selectors); + } + + const domTree = new WCSelectorTree(componentRenderer, testOptions); + domTree.tree = tree; + this.appendChild(domTree); + + setTimeout(() => { + domTree.tree = null; + requestAnimationFrame(() => performanceMeasure()); + }, 2000); + } +} + +window.customElements.define('wc-test-remove-all', TestRemoveAll); diff --git a/apps/stress-test/src/shared/wc/WCSelectorTree.ts b/apps/stress-test/src/shared/wc/WCSelectorTree.ts new file mode 100644 index 0000000000000..957d862e5d621 --- /dev/null +++ b/apps/stress-test/src/shared/wc/WCSelectorTree.ts @@ -0,0 +1,64 @@ +import { TestOptions } from '../utils/testOptions'; +import { SelectorTreeNode } from '../tree/RandomSelectorTreeNode'; +import { DOMSelectorTreeComponentRenderer } from '../vanilla/types'; +import { WCTree } from './WCTree'; + +const template = document.createElement('template'); +template.innerHTML = `
`; + +export class WCSelectorTree extends HTMLElement { + private _root: HTMLElement | ShadowRoot; + private _testOptions: TestOptions; + private _tree: SelectorTreeNode | null; + private _componentRenderer: DOMSelectorTreeComponentRenderer; + + constructor(componentRenderer: DOMSelectorTreeComponentRenderer, testOptions: TestOptions) { + super(); + + this._testOptions = testOptions; + this._tree = null; + + this._componentRenderer = componentRenderer; + + if (this._testOptions?.useShadowRoot === 'true') { + this._root = this.attachShadow({ mode: 'open' }); + } else { + this._root = this; + } + } + + public set tree(value: SelectorTreeNode | null) { + this._tree = value; + + if (value === null) { + while (this._root.hasChildNodes()) { + this._root.removeChild(this._root.lastChild!); + } + } else { + const wcTree = new WCTree(this._itemRenderer, undefined, undefined, this._testOptions?.useShadowRoot === 'true'); + wcTree.tree = value; + this._root.appendChild(wcTree); + } + } + + public get tree() { + return this._tree; + } + + private _itemRenderer = (node: SelectorTreeNode, depth: number, index: number): HTMLElement => { + const { value } = node; + + const div = document.createElement('div'); + div.classList.add(...value.classNames.map(cn => cn.substring(1))); + value.attributes.forEach(attr => { + div.setAttribute(attr.key, attr.value ?? ''); + }); + + div.style.marginLeft = `${depth * 10}px`; + div.appendChild(this._componentRenderer(node, depth, index)); + + return div; + }; +} + +window.customElements.define('wc-selector-tree', WCSelectorTree); diff --git a/apps/stress-test/src/shared/wc/WCTest.ts b/apps/stress-test/src/shared/wc/WCTest.ts new file mode 100644 index 0000000000000..75728eab96661 --- /dev/null +++ b/apps/stress-test/src/shared/wc/WCTest.ts @@ -0,0 +1,55 @@ +import { getTestOptions } from '../utils/testOptions'; +import { loadTestData } from '../utils/testUtils'; +import { RandomSelectorTreeNode } from '../tree/RandomSelectorTreeNode'; +import { RandomTree } from '../tree/RandomTree'; +import { testInjectStyles } from '../vanilla/TestInjectStyles'; +import { testMount } from '../vanilla/TestMount'; +import { testRemoveAll } from '../vanilla/TestRemoveAll'; +import { testReRenderAll } from '../vanilla/TestReRenderAll'; +import { TestInjectStyles } from './TestInjectStyles'; +import { TestMount } from './TestMount'; +import { TestRemoveAll } from './TestRemoveAll'; +import { TestReRenderAll } from './TestReRenderAll'; + +export const wcTest = (): Promise => { + const testOptions = getTestOptions(); + const { test, fixtureName, rendererName } = testOptions; + + return loadTestData('wc', fixtureName, rendererName).then(({ fixture, renderer }) => { + const selectors: string[] = fixture.selectors; + const fixtureTree = fixture.tree; + + const treeBuilder = new RandomTree(); + const tree = treeBuilder.fromFixture(fixtureTree); + const { wcRenderer } = testOptions; + + let testFn; + + const isVanilla = wcRenderer === 'vanilla'; + + if (test === 'inject-styles') { + testFn = isVanilla ? testInjectStyles : TestInjectStyles; + } else if (test === 'mount') { + testFn = isVanilla ? testMount : TestMount; + } else if (test === 're-render-all') { + testFn = isVanilla ? testReRenderAll : TestReRenderAll; + } else if (test === 'remove-all') { + testFn = isVanilla ? testRemoveAll : TestRemoveAll; + } + + if (testFn) { + if (isVanilla) { + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore + return testFn(tree, selectors, renderer, testOptions); + } else { + /* eslint-disable */ + // @ts-ignore + return new testFn(tree, selectors, renderer, testOptions); + /* eslint-enable */ + } + } + + return null; + }); +}; diff --git a/apps/stress-test/src/shared/wc/WCTree.ts b/apps/stress-test/src/shared/wc/WCTree.ts new file mode 100644 index 0000000000000..7218232a7d8d2 --- /dev/null +++ b/apps/stress-test/src/shared/wc/WCTree.ts @@ -0,0 +1,64 @@ +import { TreeNode } from '../tree/RandomTree'; + +export type WCTreeItemRenderer = (node: T, depth: number, index: number) => HTMLElement; + +const template = document.createElement('template'); +template.innerHTML = ` +
+`; + +// eslint-disable-next-line @typescript-eslint/no-explicit-any +export class WCTree> extends HTMLElement { + private _root: HTMLElement | ShadowRoot; + private _tree: T | null; + private _itemRenderer: WCTreeItemRenderer; + private _depth: number; + private _index: number; + private _useShadowRoot: boolean; + + constructor(itemRenderer: WCTreeItemRenderer, depth: number = 0, index = 0, useShadowRoot: boolean = false) { + super(); + + this._useShadowRoot = useShadowRoot; + + if (useShadowRoot) { + this._root = this.attachShadow({ mode: 'open' }); + } else { + this._root = this; + } + this._tree = null; + this._itemRenderer = itemRenderer; + this._depth = depth; + this._index = index; + } + + public set tree(value: T | null) { + this._tree = value; + this._render(); + } + + public get tree(): T | null { + return this._tree; + } + + private _render() { + if (this._tree === null) { + while (this._root.hasChildNodes()) { + this._root.removeChild(this._root.lastChild!); + } + return; + } + + this._root.appendChild(this._itemRenderer(this._tree, this._depth, this._index)); + + this._tree.children.forEach((child, i) => { + const node = new WCTree(this._itemRenderer, this._depth + 1, i + 1, this._useShadowRoot); + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore + node.tree = child; + this._root.appendChild(node); + }); + } +} + +window.customElements.define('wc-tree', WCTree); diff --git a/apps/stress-test/src/shared/wc/types.ts b/apps/stress-test/src/shared/wc/types.ts new file mode 100644 index 0000000000000..48fbc32bde2cd --- /dev/null +++ b/apps/stress-test/src/shared/wc/types.ts @@ -0,0 +1,4 @@ +export interface WCTestTree {} +export interface TestOptions { + [key: string]: string | number; +} diff --git a/apps/stress-test/webpack/griffelConfig.js b/apps/stress-test/webpack/griffelConfig.js index 8d0ac6fb0e98d..ea07021909427 100644 --- a/apps/stress-test/webpack/griffelConfig.js +++ b/apps/stress-test/webpack/griffelConfig.js @@ -2,29 +2,11 @@ const { GriffelCSSExtractionPlugin } = require('@griffel/webpack-extraction-plug const MiniCssExtractPlugin = require('mini-css-extract-plugin'); /** -<<<<<<< HEAD * @typedef {('runtime' | 'buildtime' | 'extraction')} GriffelMode */ /** * @type {import('webpack').RuleSetRule} -======= - * Webpack configuration object. - * @typedef {import('webpack').Configuration} WebpackConfig - */ - -/** - * Webpack rules set. - * @typedef {import('webpack').RuleSetRule} WebpackRuleSetRule - */ - -/** - * @typedef {('runtime' | 'buildtime' | 'extrraction')} GriffelMode - */ - -/** - * @type {WebpackRuleSetRule} ->>>>>>> a82206debc (stress-test: add build commands) */ const griffelWebpackLoader = { test: /\.(ts|tsx)$/, @@ -40,11 +22,7 @@ const griffelWebpackLoader = { }; /** -<<<<<<< HEAD * @type {import('webpack').RuleSetRule} -======= - * @type {WebpackRuleSetRule} ->>>>>>> a82206debc (stress-test: add build commands) */ const griffelExtractionLoader = { test: /\.(js|ts|tsx)$/, @@ -66,28 +44,17 @@ const cssLoader = { * * NOTE: this function mutates the `config` object passed in to it. * -<<<<<<< HEAD * @param {import('webpack').Configuration} config - Webpack configuration object to modify. * @param {GriffelMode} griffelMode * @returns {import('webpack').Configuration} Modified Webpack configuration object. -======= - * @param {WebpackConfig} config - Webpack configuration object to modify. - * @param {GriffelMode} griffelMode - * @returns {WebpackConfig} Modified Webpack configuration object. ->>>>>>> a82206debc (stress-test: add build commands) */ const configureGriffel = (config, griffelMode) => { console.log(`Griffel running in ${griffelMode} mode.`); -<<<<<<< HEAD config.module = config.module || {}; let rules = config.module.rules || []; let plugins = config.plugins || []; -======= - let rules = config.module.rules || []; - let plugins = config.module.plugins || []; ->>>>>>> a82206debc (stress-test: add build commands) if (griffelMode === 'extraction') { rules = [griffelExtractionLoader, griffelWebpackLoader, cssLoader, ...rules]; From 476c22a41999cdc054e25a086c33974057365024 Mon Sep 17 00:00:00 2001 From: Sean Monahan Date: Thu, 15 Sep 2022 16:15:07 -0700 Subject: [PATCH 06/14] fix react test rendering issue --- apps/stress-test/src/shared/react/ReactTest.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/apps/stress-test/src/shared/react/ReactTest.tsx b/apps/stress-test/src/shared/react/ReactTest.tsx index 77e106364f486..f571e0943601f 100644 --- a/apps/stress-test/src/shared/react/ReactTest.tsx +++ b/apps/stress-test/src/shared/react/ReactTest.tsx @@ -73,5 +73,11 @@ export const ReactTest: React.FC = ({ target, fixtureName, rende break; } - return ; + return ( + <> + {selectors && tree && ( + + )} + + ); }; From 7f7f203fd5437b97d326c21a9a25274e2f93feae Mon Sep 17 00:00:00 2001 From: Sean Monahan Date: Thu, 15 Sep 2022 16:42:58 -0700 Subject: [PATCH 07/14] add 'add' test case --- .../src/shared/react/ReactTest.tsx | 5 +++ apps/stress-test/src/shared/react/TestAdd.tsx | 29 +++++++++++++++ .../stress-test/src/shared/vanilla/TestAdd.ts | 27 ++++++++++++++ apps/stress-test/src/shared/wc/TestAdd.ts | 35 +++++++++++++++++++ apps/stress-test/src/shared/wc/WCTest.ts | 4 +++ 5 files changed, 100 insertions(+) create mode 100644 apps/stress-test/src/shared/react/TestAdd.tsx create mode 100644 apps/stress-test/src/shared/vanilla/TestAdd.ts create mode 100644 apps/stress-test/src/shared/wc/TestAdd.ts diff --git a/apps/stress-test/src/shared/react/ReactTest.tsx b/apps/stress-test/src/shared/react/ReactTest.tsx index f571e0943601f..44b42f68836dd 100644 --- a/apps/stress-test/src/shared/react/ReactTest.tsx +++ b/apps/stress-test/src/shared/react/ReactTest.tsx @@ -7,6 +7,7 @@ import { TestInjectStyles } from './TestInjectStyles'; import { TestMount } from './TestMount'; import { TestRemoveAll } from './TestRemoveAll'; import { TestReRenderAll } from './TestReRenderAll'; +import { TestAdd } from './TestAdd'; type TestData = { tree?: TreeNode; @@ -68,6 +69,10 @@ export const ReactTest: React.FC = ({ target, fixtureName, rende Test = TestRemoveAll; break; + case 'add': + Test = TestAdd; + break; + default: Test = TestMount; break; diff --git a/apps/stress-test/src/shared/react/TestAdd.tsx b/apps/stress-test/src/shared/react/TestAdd.tsx new file mode 100644 index 0000000000000..1996cc5ee1193 --- /dev/null +++ b/apps/stress-test/src/shared/react/TestAdd.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { styleInjector } from '../css/injectStyles'; +import { performanceMeasure } from '../utils/performanceMeasure'; +import { ReactSelectorTree } from './ReactSelectorTree'; +import type { TestProps } from './types'; + +export const TestAdd: React.FC = ({ tree, selectors, componentRenderer, testOptions }) => { + const [added, setAdded] = React.useState(false); + + React.useEffect(() => { + if (testOptions.withStyles === 'true') { + styleInjector(selectors); + } + }, []); + + React.useEffect(() => { + setTimeout(() => { + setAdded(true); + performanceMeasure(); + }, 2000); + }, []); + + return ( + <> + + {added && } + + ); +}; diff --git a/apps/stress-test/src/shared/vanilla/TestAdd.ts b/apps/stress-test/src/shared/vanilla/TestAdd.ts new file mode 100644 index 0000000000000..c2fc08ee1a66c --- /dev/null +++ b/apps/stress-test/src/shared/vanilla/TestAdd.ts @@ -0,0 +1,27 @@ +import { styleInjector } from '../css/injectStyles'; +import { performanceMeasure } from '../utils/performanceMeasure'; +import { TestOptions } from '../utils/testOptions'; +import { SelectorTreeNode } from '../tree/RandomSelectorTreeNode'; +import { DOMSelectorTreeComponentRenderer } from './types'; +import { renderVanillaSelectorTree } from './VanillaSelectorTree'; + +export const testAdd = ( + tree: SelectorTreeNode, + selectors: string[], + componentRenderer: DOMSelectorTreeComponentRenderer, + testOptions: TestOptions, +): HTMLElement => { + if (testOptions.withStyles === 'true') { + styleInjector(selectors); + } + + const wrapper = document.createElement('div'); + wrapper.appendChild(renderVanillaSelectorTree(tree, selectors, componentRenderer, testOptions)); + + setTimeout(() => { + wrapper.appendChild(renderVanillaSelectorTree(tree, selectors, componentRenderer, testOptions)); + performanceMeasure(); + }, 2000); + + return wrapper; +}; diff --git a/apps/stress-test/src/shared/wc/TestAdd.ts b/apps/stress-test/src/shared/wc/TestAdd.ts new file mode 100644 index 0000000000000..7cd1c3a2b3706 --- /dev/null +++ b/apps/stress-test/src/shared/wc/TestAdd.ts @@ -0,0 +1,35 @@ +import { TestOptions } from '../utils/testOptions'; +import { WCSelectorTree } from './WCSelectorTree'; +import { WCTestTree } from './types'; +import { SelectorTreeNode } from '../tree/RandomSelectorTreeNode'; +import { DOMSelectorTreeComponentRenderer } from '../vanilla/types'; +import { styleInjector } from '../css/injectStyles'; +import { performanceMeasure } from '../utils/performanceMeasure'; + +export class TestAdd extends HTMLElement implements WCTestTree { + constructor( + tree: SelectorTreeNode, + selectors: string[], + componentRenderer: DOMSelectorTreeComponentRenderer, + testOptions: TestOptions, + ) { + super(); + + if (testOptions.withStyles === 'true') { + styleInjector(selectors); + } + + const domTree = new WCSelectorTree(componentRenderer, testOptions); + domTree.tree = tree; + this.appendChild(domTree); + + setTimeout(() => { + const addDomTree = new WCSelectorTree(componentRenderer, testOptions); + addDomTree.tree = tree; + this.appendChild(addDomTree); + requestAnimationFrame(() => performanceMeasure()); + }, 2000); + } +} + +window.customElements.define('wc-test-add', TestAdd); diff --git a/apps/stress-test/src/shared/wc/WCTest.ts b/apps/stress-test/src/shared/wc/WCTest.ts index 75728eab96661..f2ad75fb68f03 100644 --- a/apps/stress-test/src/shared/wc/WCTest.ts +++ b/apps/stress-test/src/shared/wc/WCTest.ts @@ -10,6 +10,8 @@ import { TestInjectStyles } from './TestInjectStyles'; import { TestMount } from './TestMount'; import { TestRemoveAll } from './TestRemoveAll'; import { TestReRenderAll } from './TestReRenderAll'; +import { TestAdd } from './TestAdd'; +import { testAdd } from '../vanilla/TestAdd'; export const wcTest = (): Promise => { const testOptions = getTestOptions(); @@ -35,6 +37,8 @@ export const wcTest = (): Promise => { testFn = isVanilla ? testReRenderAll : TestReRenderAll; } else if (test === 'remove-all') { testFn = isVanilla ? testRemoveAll : TestRemoveAll; + } else if (test === 'add') { + testFn = isVanilla ? testAdd : TestAdd; } if (testFn) { From d4ae4bab42c83f5544cfb1f5e542cc94af005d20 Mon Sep 17 00:00:00 2001 From: Sean Monahan Date: Fri, 16 Sep 2022 12:45:48 -0700 Subject: [PATCH 08/14] notes on better fast usage --- .../src/components/wc/stressApp.wc.ts | 63 +++++++++++++------ .../src/components/wc/stressComponent.wc.ts | 22 +++---- 2 files changed, 55 insertions(+), 30 deletions(-) diff --git a/apps/stress-test/src/components/wc/stressApp.wc.ts b/apps/stress-test/src/components/wc/stressApp.wc.ts index c4c993d473ae7..71723bb19513a 100644 --- a/apps/stress-test/src/components/wc/stressApp.wc.ts +++ b/apps/stress-test/src/components/wc/stressApp.wc.ts @@ -1,4 +1,13 @@ -import { FASTElement, customElement, attr, html, css, repeat, ValueConverter } from '@microsoft/fast-element'; +import { + FASTElement, + customElement, + attr, + html, + css, + repeat, + ValueConverter, + // observable, +} from '@microsoft/fast-element'; import { getTestOptions } from '../../shared/utils/testOptions'; import { performanceMeasure } from '../../shared/utils/performanceMeasure'; import { StressComponent } from './stressComponent.wc'; @@ -13,10 +22,11 @@ const styles = css` const template = html` ${repeat( - el => new Array(el.numchildren), + el => new Array(el.numchildren), // TODO: don't recreate the array html` ctx.parent.checked} >`, + // use a property bind 👆 (:checked=${(el, ctx) => ctx.parent.checked}) leave this one probably )} `; @@ -38,28 +48,43 @@ const numberConverter: ValueConverter = { }) export class StressApp extends FASTElement { @attr({ converter: numberConverter }) public numchildren: number = 10; - @attr({ mode: 'boolean' }) public checked: boolean = false; + @attr({ mode: 'boolean' }) public checked: boolean = false; // change to observable property + + // @observable - primary mechanism for state management + // just creates a property + + private _hasMountedOnce: boolean; + constructor() { + super(); + this._hasMountedOnce = false; + } public connectedCallback(): void { super.connectedCallback(); - const { test, numStartNodes, numAddNodes, numRemoveNodes } = getTestOptions(); + // Don't assume this only runs once + // Consider if you need a disconnect + + if (!this._hasMountedOnce) { + this._hasMountedOnce = true; + const { test, numStartNodes, numAddNodes, numRemoveNodes } = getTestOptions(); - if (test === 'prop-update') { - setTimeout(() => { - performanceMeasure('stress', 'start'); - this.checked = true; - }, 2000); - } else if (test === 'add-node') { - setTimeout(() => { - performanceMeasure('stress', 'start'); - this.numchildren = Number(numStartNodes) + Number(numAddNodes); - }, 2000); - } else if (test === 'remove-node') { - setTimeout(() => { - performanceMeasure('stress', 'start'); - this.numchildren = Number(numStartNodes) - Number(numRemoveNodes); - }, 2000); + if (test === 'prop-update') { + setTimeout(() => { + performanceMeasure('stress', 'start'); + this.checked = true; + }, 2000); + } else if (test === 'add-node') { + setTimeout(() => { + performanceMeasure('stress', 'start'); + this.numchildren = Number(numStartNodes) + Number(numAddNodes); + }, 2000); + } else if (test === 'remove-node') { + setTimeout(() => { + performanceMeasure('stress', 'start'); + this.numchildren = Number(numStartNodes) - Number(numRemoveNodes); + }, 2000); + } } } } diff --git a/apps/stress-test/src/components/wc/stressComponent.wc.ts b/apps/stress-test/src/components/wc/stressComponent.wc.ts index 63a0adb9a4f94..c41b17577c56c 100644 --- a/apps/stress-test/src/components/wc/stressComponent.wc.ts +++ b/apps/stress-test/src/components/wc/stressComponent.wc.ts @@ -1,7 +1,7 @@ import { FASTElement, customElement, attr, html, css } from '@microsoft/fast-element'; const styles = css` - .stress-component { + :host { display: flex; flex-direction: column; row-gap: 10px; @@ -12,17 +12,17 @@ const styles = css` } `; +// classes on the host are a bit of an anti-pattern +// most common use for