diff --git a/lighthouse-cli/test/cli/__snapshots__/index-test.js.snap b/lighthouse-cli/test/cli/__snapshots__/index-test.js.snap index 8c7a4b43a2b0..2480a8ae5fd8 100644 --- a/lighthouse-cli/test/cli/__snapshots__/index-test.js.snap +++ b/lighthouse-cli/test/cli/__snapshots__/index-test.js.snap @@ -153,6 +153,9 @@ Object { Object { "path": "third-party-summary", }, + Object { + "path": "third-party-facades", + }, Object { "path": "largest-contentful-paint-element", }, @@ -998,6 +1001,11 @@ Object { "id": "third-party-summary", "weight": 0, }, + Object { + "group": "diagnostics", + "id": "third-party-facades", + "weight": 0, + }, Object { "group": "diagnostics", "id": "largest-contentful-paint-element", diff --git a/lighthouse-cli/test/fixtures/perf/third-party.html b/lighthouse-cli/test/fixtures/perf/third-party.html new file mode 100644 index 000000000000..d060d1ac6f96 --- /dev/null +++ b/lighthouse-cli/test/fixtures/perf/third-party.html @@ -0,0 +1,14 @@ + + + + + +
We need some content to have a valid FCP/LCP
+ + + + diff --git a/lighthouse-cli/test/smokehouse/test-definitions/perf/expectations.js b/lighthouse-cli/test/smokehouse/test-definitions/perf/expectations.js index 8da7c8e4bd8e..6ea08e054812 100644 --- a/lighthouse-cli/test/smokehouse/test-definitions/perf/expectations.js +++ b/lighthouse-cli/test/smokehouse/test-definitions/perf/expectations.js @@ -359,4 +359,31 @@ module.exports = [ }, }, }, + { + lhr: { + requestedUrl: 'http://localhost:10200/perf/third-party.html', + finalUrl: 'http://localhost:10200/perf/third-party.html', + audits: { + 'third-party-facades': { + score: 0, + displayValue: '1 facade alternative available', + details: { + items: [ + { + product: 'YouTube Embedded Player (Video)', + blockingTime: 0, + transferSize: '651128 +/- 100000', + subItems: { + type: 'subitems', + items: { + length: '>5', // We don't care exactly how many it has, just ensure we surface the subresources. + }, + }, + }, + ], + }, + }, + }, + }, + }, ]; diff --git a/lighthouse-core/audits/third-party-facades.js b/lighthouse-core/audits/third-party-facades.js new file mode 100644 index 000000000000..4de1bdc0f1c4 --- /dev/null +++ b/lighthouse-core/audits/third-party-facades.js @@ -0,0 +1,220 @@ +/** + * @license Copyright 2020 The Lighthouse Authors. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. + */ +'use strict'; + +/** + * @fileoverview Audit which identifies third-party code on the page which can be lazy loaded. + * The audit will recommend a facade alternative which is used to imitate the third-party resource until it is needed. + * + * Entity: Set of domains which are used by a company or product area to deliver third-party resources + * Product: Specific piece of software belonging to an entity. Entities can have multiple products. + * Facade: Placeholder for a product which looks likes the actual product and replaces itself with that product when the user needs it. + */ + +/** @typedef {import("third-party-web").IEntity} ThirdPartyEntity */ +/** @typedef {import("third-party-web").IProduct} ThirdPartyProduct*/ +/** @typedef {import("third-party-web").IFacade} ThirdPartyFacade*/ + +/** @typedef {{product: ThirdPartyProduct, entity: ThirdPartyEntity}} FacadableProduct */ + +const Audit = require('./audit.js'); +const i18n = require('../lib/i18n/i18n.js'); +const thirdPartyWeb = require('../lib/third-party-web.js'); +const NetworkRecords = require('../computed/network-records.js'); +const MainResource = require('../computed/main-resource.js'); +const MainThreadTasks = require('../computed/main-thread-tasks.js'); +const ThirdPartySummary = require('./third-party-summary.js'); + +const UIStrings = { + /** Title of a diagnostic audit that provides details about the third-party code on a web page that can be lazy loaded with a facade alternative. This descriptive title is shown to users when no resources have facade alternatives available. A facade is a lightweight component which looks like the desired resource. Lazy loading means resources are deferred until they are needed. Third-party code refers to resources that are not within the control of the site owner. */ + title: 'Lazy load third-party resources with facades', + /** Title of a diagnostic audit that provides details about the third-party code on a web page that can be lazy loaded with a facade alternative. This descriptive title is shown to users when one or more third-party resources have available facade alternatives. A facade is a lightweight component which looks like the desired resource. Lazy loading means resources are deferred until they are needed. Third-party code refers to resources that are not within the control of the site owner. */ + failureTitle: 'Some third-party resources can be lazy loaded with a facade', + /** Description of a Lighthouse audit that identifies the third-party code on the page that can be lazy loaded with a facade alternative. This is displayed after a user expands the section to see more. No character length limits. 'Learn More' becomes link text to additional documentation. A facade is a lightweight component which looks like the desired resource. Lazy loading means resources are deferred until they are needed. Third-party code refers to resources that are not within the control of the site owner. */ + description: 'Some third-party embeds can be lazy loaded. ' + + 'Consider replacing them with a facade until they are required. [Learn more](https://web.dev/efficiently-load-third-party-javascript/).', + /** Summary text for the result of a Lighthouse audit that identifies the third-party code on a web page that can be lazy loaded with a facade alternative. This text summarizes the number of lazy loading facades that can be used on the page. A facade is a lightweight component which looks like the desired resource. */ + displayValue: `{itemCount, plural, + =1 {# facade alternative available} + other {# facade alternatives available} + }`, + /** Label for a table column that displays the name of the product that a URL is used for. The products in the column will be pieces of software used on the page, like the "YouTube Embedded Player" or the "Drift Live Chat" box. */ + columnProduct: 'Product', + /** + * @description Template for a table entry that gives the name of a product which we categorize as video related. + * @example {YouTube Embedded Player} productName + */ + categoryVideo: '{productName} (Video)', + /** + * @description Template for a table entry that gives the name of a product which we categorize as customer success related. Customer success means the product supports customers by offering chat and contact solutions. + * @example {Intercom Widget} productName + */ + categoryCustomerSuccess: '{productName} (Customer Success)', + /** + * @description Template for a table entry that gives the name of a product which we categorize as marketing related. + * @example {Drift Live Chat} productName + */ + categoryMarketing: '{productName} (Marketing)', + /** + * @description Template for a table entry that gives the name of a product which we categorize as social related. + * @example {Facebook Messenger Customer Chat} productName + */ + categorySocial: '{productName} (Social)', +}; + +const str_ = i18n.createMessageInstanceIdFn(__filename, UIStrings); + +/** @type {Record} */ +const CATEGORY_UI_MAP = { + 'video': UIStrings.categoryVideo, + 'customer-success': UIStrings.categoryCustomerSuccess, + 'marketing': UIStrings.categoryMarketing, + 'social': UIStrings.categorySocial, +}; + +class ThirdPartyFacades extends Audit { + /** + * @return {LH.Audit.Meta} + */ + static get meta() { + return { + id: 'third-party-facades', + title: str_(UIStrings.title), + failureTitle: str_(UIStrings.failureTitle), + description: str_(UIStrings.description), + requiredArtifacts: ['traces', 'devtoolsLogs', 'URL'], + }; + } + + /** + * Sort items by transfer size and combine small items into a single row. + * Items will be mutated in place to a maximum of 6 rows. + * @param {ThirdPartySummary.URLSummary[]} items + */ + static condenseItems(items) { + items.sort((a, b) => b.transferSize - a.transferSize); + + // Items <1KB are condensed. If all items are <1KB, condense all but the largest. + let splitIndex = items.findIndex((item) => item.transferSize < 1000) || 1; + // Show details for top 5 items. + if (splitIndex === -1 || splitIndex > 5) splitIndex = 5; + // If there is only 1 item to condense, leave it as is. + if (splitIndex >= items.length - 1) return; + + const remainder = items.splice(splitIndex); + const finalItem = remainder.reduce((result, item) => { + result.transferSize += item.transferSize; + result.blockingTime += item.blockingTime; + return result; + }); + + // If condensed row is still <1KB, don't show it. + if (finalItem.transferSize < 1000) return; + + finalItem.url = str_(i18n.UIStrings.otherResourcesLabel); + items.push(finalItem); + } + + /** + * @param {Map} byURL + * @param {ThirdPartyEntity | undefined} mainEntity + * @return {FacadableProduct[]} + */ + static getProductsWithFacade(byURL, mainEntity) { + /** @type {Map} */ + const facadableProductMap = new Map(); + for (const url of byURL.keys()) { + const entity = thirdPartyWeb.getEntity(url); + if (!entity || thirdPartyWeb.isFirstParty(url, mainEntity)) continue; + + const product = thirdPartyWeb.getProduct(url); + if (!product || !product.facades || !product.facades.length) continue; + + if (facadableProductMap.has(product.name)) continue; + facadableProductMap.set(product.name, {product, entity}); + } + + return Array.from(facadableProductMap.values()); + } + + /** + * @param {LH.Artifacts} artifacts + * @param {LH.Audit.Context} context + * @return {Promise} + */ + static async audit(artifacts, context) { + const settings = context.settings; + const trace = artifacts.traces[Audit.DEFAULT_PASS]; + const devtoolsLog = artifacts.devtoolsLogs[Audit.DEFAULT_PASS]; + const networkRecords = await NetworkRecords.request(devtoolsLog, context); + const mainResource = await MainResource.request({devtoolsLog, URL: artifacts.URL}, context); + const mainEntity = thirdPartyWeb.getEntity(mainResource.url); + const tasks = await MainThreadTasks.request(trace, context); + const multiplier = settings.throttlingMethod === 'simulate' ? + settings.throttling.cpuSlowdownMultiplier : 1; + const summaries = ThirdPartySummary.getSummaries(networkRecords, tasks, multiplier); + const facadableProducts = + ThirdPartyFacades.getProductsWithFacade(summaries.byURL, mainEntity); + + /** @type {LH.Audit.Details.TableItem[]} */ + const results = []; + for (const {product, entity} of facadableProducts) { + const categoryTemplate = CATEGORY_UI_MAP[product.categories[0]]; + + let productWithCategory; + if (categoryTemplate) { + // Display product name with category next to it in the same column. + productWithCategory = str_(categoryTemplate, {productName: product.name}); + } else { + // Just display product name if no category is found. + productWithCategory = product.name; + } + + const urls = summaries.urls.get(entity); + const entitySummary = summaries.byEntity.get(entity); + if (!urls || !entitySummary) continue; + + const items = Array.from(urls).map((url) => { + const urlStats = summaries.byURL.get(url); + return /** @type {ThirdPartySummary.URLSummary} */ ({url, ...urlStats}); + }); + this.condenseItems(items); + results.push({ + product: productWithCategory, + transferSize: entitySummary.transferSize, + blockingTime: entitySummary.blockingTime, + subItems: {type: 'subitems', items}, + }); + } + + if (!results.length) { + return { + score: 1, + notApplicable: true, + }; + } + + /** @type {LH.Audit.Details.Table['headings']} */ + const headings = [ + /* eslint-disable max-len */ + {key: 'product', itemType: 'text', subItemsHeading: {key: 'url', itemType: 'url'}, text: str_(UIStrings.columnProduct)}, + {key: 'transferSize', itemType: 'bytes', subItemsHeading: {key: 'transferSize'}, granularity: 1, text: str_(i18n.UIStrings.columnTransferSize)}, + {key: 'blockingTime', itemType: 'ms', subItemsHeading: {key: 'blockingTime'}, granularity: 1, text: str_(i18n.UIStrings.columnBlockingTime)}, + /* eslint-enable max-len */ + ]; + + return { + score: 0, + displayValue: str_(UIStrings.displayValue, { + itemCount: results.length, + }), + details: Audit.makeTableDetails(headings, results), + }; + } +} + +module.exports = ThirdPartyFacades; +module.exports.UIStrings = UIStrings; diff --git a/lighthouse-core/audits/third-party-summary.js b/lighthouse-core/audits/third-party-summary.js index 464e58c8833b..8873913e420e 100644 --- a/lighthouse-core/audits/third-party-summary.js +++ b/lighthouse-core/audits/third-party-summary.js @@ -24,13 +24,9 @@ const UIStrings = { 'your page has primarily finished loading. [Learn more](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/loading-third-party-javascript/).', /** Label for a table column that displays the name of a third-party provider that potentially links to their website. */ columnThirdParty: 'Third-Party', - /** Label for a table column that displays how much time each row spent blocking other work on the main thread, entries will be the number of milliseconds spent. */ - columnBlockingTime: 'Main-Thread Blocking Time', /** Summary text for the result of a Lighthouse audit that identifies the code on a web page that the user doesn't control (referred to as "third-party code"). This text summarizes the number of distinct entities that were found on the page. */ displayValue: 'Third-party code blocked the main thread for ' + `{timeInMs, number, milliseconds}\xa0ms`, - /** Label used to identify a value in a table where many individual values are aggregated to a single value, for brevity. "Other resources" could also be read as "the rest of the resources". Resource refers to network resources requested by the browser. */ - otherValue: 'Other resources', }; const str_ = i18n.createMessageInstanceIdFn(__filename, UIStrings); @@ -41,21 +37,24 @@ const PASS_THRESHOLD_IN_MS = 250; /** @typedef {import("third-party-web").IEntity} ThirdPartyEntity */ /** - * @typedef {{ - * mainThreadTime: number, - * transferSize: number, - * blockingTime: number, - * }} Summary + * @typedef Summary + * @property {number} mainThreadTime + * @property {number} transferSize + * @property {number} blockingTime */ /** - * @typedef {{ - * transferSize: number, - * blockingTime: number, - * url: string | LH.IcuMessage, - * }} URLSummary + * @typedef URLSummary + * @property {number} transferSize + * @property {number} blockingTime + * @property {string | LH.IcuMessage} url */ +/** @typedef SummaryMaps + * @property {Map} byEntity Map of impact summaries for each entity. + * @property {Map} byURL Map of impact summaries for each URL. + * @property {Map} urls Map of URLs under each entity. + */ /** * Don't bother showing resources smaller than 4KiB since they're likely to be pixels, which isn't @@ -85,7 +84,7 @@ class ThirdPartySummary extends Audit { * @param {Array} networkRecords * @param {Array} mainThreadTasks * @param {number} cpuMultiplier - * @return {{byEntity: Map, byURL: Map, urls: Map}} + * @return {SummaryMaps} */ static getSummaries(networkRecords, mainThreadTasks, cpuMultiplier) { /** @type {Map} */ @@ -142,7 +141,7 @@ class ThirdPartySummary extends Audit { /** * @param {ThirdPartyEntity} entity - * @param {{byEntity: Map, byURL: Map, urls: Map}} summaries + * @param {SummaryMaps} summaries * @param {Summary} stats * @return {Array} */ @@ -179,7 +178,7 @@ class ThirdPartySummary extends Audit { // we'll replace the tail entries with single remainder entry. items = items.slice(0, numSubItems); const remainder = { - url: str_(UIStrings.otherValue), + url: str_(i18n.UIStrings.otherResourcesLabel), transferSize: stats.transferSize - subitemSummary.transferSize, blockingTime: stats.blockingTime - subitemSummary.blockingTime, }; @@ -237,7 +236,7 @@ class ThirdPartySummary extends Audit { /* eslint-disable max-len */ {key: 'entity', itemType: 'link', text: str_(UIStrings.columnThirdParty), subItemsHeading: {key: 'url', itemType: 'url'}}, {key: 'transferSize', granularity: 1, itemType: 'bytes', text: str_(i18n.UIStrings.columnTransferSize), subItemsHeading: {key: 'transferSize'}}, - {key: 'blockingTime', granularity: 1, itemType: 'ms', text: str_(UIStrings.columnBlockingTime), subItemsHeading: {key: 'blockingTime'}}, + {key: 'blockingTime', granularity: 1, itemType: 'ms', text: str_(i18n.UIStrings.columnBlockingTime), subItemsHeading: {key: 'blockingTime'}}, /* eslint-enable max-len */ ]; diff --git a/lighthouse-core/config/default-config.js b/lighthouse-core/config/default-config.js index a5945cda7470..73e9e8af715d 100644 --- a/lighthouse-core/config/default-config.js +++ b/lighthouse-core/config/default-config.js @@ -236,6 +236,7 @@ const defaultConfig = { 'timing-budget', 'resource-summary', 'third-party-summary', + 'third-party-facades', 'largest-contentful-paint-element', 'layout-shift-elements', 'long-tasks', @@ -467,6 +468,7 @@ const defaultConfig = { {id: 'timing-budget', weight: 0, group: 'budgets'}, {id: 'resource-summary', weight: 0, group: 'diagnostics'}, {id: 'third-party-summary', weight: 0, group: 'diagnostics'}, + {id: 'third-party-facades', weight: 0, group: 'diagnostics'}, {id: 'largest-contentful-paint-element', weight: 0, group: 'diagnostics'}, {id: 'layout-shift-elements', weight: 0, group: 'diagnostics'}, {id: 'uses-passive-event-listeners', weight: 0, group: 'diagnostics'}, diff --git a/lighthouse-core/lib/i18n/i18n.js b/lighthouse-core/lib/i18n/i18n.js index 99a1317270ea..4006d0be7ae5 100644 --- a/lighthouse-core/lib/i18n/i18n.js +++ b/lighthouse-core/lib/i18n/i18n.js @@ -68,6 +68,8 @@ const UIStrings = { columnWastedBytes: 'Potential Savings', /** Label for a column in a data table; entries will be the number of milliseconds the user could reduce page load by if they implemented the suggestions. */ columnWastedMs: 'Potential Savings', + /** Label for a table column that displays how much time each row spent blocking other work on the main thread, entries will be the number of milliseconds spent. */ + columnBlockingTime: 'Main-Thread Blocking Time', /** Label for a column in a data table; entries will be the number of milliseconds spent during a particular activity. */ columnTimeSpent: 'Time Spent', /** Label for a column in a data table; entries will be the location of a specific line of code in a file, in the format "line: 102". */ @@ -108,6 +110,8 @@ const UIStrings = { otherResourceType: 'Other', /** Label for a row in a data table; entries will be the total number and byte size of all third-party resources loaded by a web page. 'Third-party resources are items loaded from URLs that aren't controlled by the owner of the web page. */ thirdPartyResourceType: 'Third-party', + /** Label used to identify a value in a table where many individual values are aggregated to a single value, for brevity. "Other resources" could also be read as "the rest of the resources". Resource refers to network resources requested by the browser. */ + otherResourcesLabel: 'Other resources', /** The name of the metric that marks the time at which the first text or image is painted by the browser. Shown to users as the label for the numeric metric value. Ideally fits within a ~40 character limit. */ firstContentfulPaintMetric: 'First Contentful Paint', /** The name of the metric that marks when the page has displayed content and the CPU is not busy executing the page's scripts. Shown to users as the label for the numeric metric value. Ideally fits within a ~40 character limit. */ diff --git a/lighthouse-core/lib/i18n/locales/ar-XB.json b/lighthouse-core/lib/i18n/locales/ar-XB.json index d7170724e875..71b10b027331 100644 --- a/lighthouse-core/lib/i18n/locales/ar-XB.json +++ b/lighthouse-core/lib/i18n/locales/ar-XB.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "‏‮Sets‬‏ ‏‮a‬‏ ‏‮theme‬‏ ‏‮color‬‏ ‏‮for‬‏ ‏‮the‬‏ ‏‮address‬‏ ‏‮bar‬‏." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "‏‮Main‬‏-‏‮Thread‬‏ ‏‮Blocking‬‏ ‏‮Time‬‏" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "‏‮Third‬‏-‏‮Party‬‏" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "‏‮Reduce‬‏ ‏‮the‬‏ ‏‮impact‬‏ ‏‮of‬‏ ‏‮third‬‏-‏‮party‬‏ ‏‮code‬‏" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "‏‮Other‬‏ ‏‮resources‬‏" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "‏‮Minimize‬‏ ‏‮third‬‏-‏‮party‬‏ ‏‮usage‬‏" }, diff --git a/lighthouse-core/lib/i18n/locales/ar.json b/lighthouse-core/lib/i18n/locales/ar.json index 9b63a2b77b3f..e4ea182d7e80 100644 --- a/lighthouse-core/lib/i18n/locales/ar.json +++ b/lighthouse-core/lib/i18n/locales/ar.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "ضبط لون تصميم لشريط العناوين" }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "وقت حظر سلسلة المحادثات الأساسية" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "الجهة الخارجية" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "تقليل تأثير رمز الجهة الخارجية" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "موارد أخرى" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "تقليل استخدام الرموز التابعة لجهات خارجية" }, diff --git a/lighthouse-core/lib/i18n/locales/bg.json b/lighthouse-core/lib/i18n/locales/bg.json index acd55ddd20a4..2872129ca0cc 100644 --- a/lighthouse-core/lib/i18n/locales/bg.json +++ b/lighthouse-core/lib/i18n/locales/bg.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Зададен е тематичен цвят за адресната лента." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Време на блокиране на основната нишка" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Трета страна" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Намалете влиянието на кода от трети страни" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Други ресурси" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Сведете до минимум използването на код на трети страни" }, diff --git a/lighthouse-core/lib/i18n/locales/ca.json b/lighthouse-core/lib/i18n/locales/ca.json index b1be17703c91..8413e7e3a74a 100644 --- a/lighthouse-core/lib/i18n/locales/ca.json +++ b/lighthouse-core/lib/i18n/locales/ca.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Estableix un color temàtic per a la barra d'adreces." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Temps de bloqueig del fil principal" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Tercers" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Redueix l'impacte del codi de tercers" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Altres recursos" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Redueix l'ús de tercers" }, diff --git a/lighthouse-core/lib/i18n/locales/cs.json b/lighthouse-core/lib/i18n/locales/cs.json index c539663e4620..2198330431da 100644 --- a/lighthouse-core/lib/i18n/locales/cs.json +++ b/lighthouse-core/lib/i18n/locales/cs.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Nastavuje barvu motivu adresního řádku." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Doba blokování hlavního podprocesu" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Třetí strana" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Snižte vliv kódu třetích stran" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Jiné zdroje" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Minimalizujte používání kódu od třetích stran" }, diff --git a/lighthouse-core/lib/i18n/locales/da.json b/lighthouse-core/lib/i18n/locales/da.json index 17b148508052..aa73c53f8019 100644 --- a/lighthouse-core/lib/i18n/locales/da.json +++ b/lighthouse-core/lib/i18n/locales/da.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Angiver en temafarve til adresselinjen." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Tidspunkt for blokering af den primære tråd" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Tredjepart" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Reducer virkningen af tredjepartskode" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Andre ressourcer" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Minimer brugen af tredjeparter" }, diff --git a/lighthouse-core/lib/i18n/locales/de.json b/lighthouse-core/lib/i18n/locales/de.json index fd375ec15feb..8742c8aa3fb4 100644 --- a/lighthouse-core/lib/i18n/locales/de.json +++ b/lighthouse-core/lib/i18n/locales/de.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Legt eine Designfarbe für die Adressleiste fest." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Dauer der Blockierung des Hauptthreads" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Drittanbieter" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Die Auswirkungen von Drittanbieter-Code minimieren" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Weitere Ressourcen" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Drittanbieternutzung minimieren" }, diff --git a/lighthouse-core/lib/i18n/locales/el.json b/lighthouse-core/lib/i18n/locales/el.json index f4547e03d016..089cdf25010e 100644 --- a/lighthouse-core/lib/i18n/locales/el.json +++ b/lighthouse-core/lib/i18n/locales/el.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Ορίζει ένα χρώμα θέματος για τη γραμμή διευθύνσεων." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Χρόνος αποκλεισμού κύριου νήματος" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Τρίτο μέρος" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Μείωση αντίκτυπου του κώδικα τρίτου μέρους" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Άλλοι πόροι" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Ελαχιστοποίηση χρήσης τρίτων μερών" }, diff --git a/lighthouse-core/lib/i18n/locales/en-GB.json b/lighthouse-core/lib/i18n/locales/en-GB.json index 77b70f84f8fb..30e917ae20a6 100644 --- a/lighthouse-core/lib/i18n/locales/en-GB.json +++ b/lighthouse-core/lib/i18n/locales/en-GB.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Sets a theme colour for the address bar." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Main-thread blocking time" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Third-party" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Reduce the impact of third-party code" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Other resources" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Minimise third-party usage" }, diff --git a/lighthouse-core/lib/i18n/locales/en-US.json b/lighthouse-core/lib/i18n/locales/en-US.json index ef5aa6818ad0..bfb51d2f5737 100644 --- a/lighthouse-core/lib/i18n/locales/en-US.json +++ b/lighthouse-core/lib/i18n/locales/en-US.json @@ -1319,8 +1319,32 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Sets a theme color for the address bar." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Main-Thread Blocking Time" + "lighthouse-core/audits/third-party-facades.js | categoryCustomerSuccess": { + "message": "{productName} (Customer Success)" + }, + "lighthouse-core/audits/third-party-facades.js | categoryMarketing": { + "message": "{productName} (Marketing)" + }, + "lighthouse-core/audits/third-party-facades.js | categorySocial": { + "message": "{productName} (Social)" + }, + "lighthouse-core/audits/third-party-facades.js | categoryVideo": { + "message": "{productName} (Video)" + }, + "lighthouse-core/audits/third-party-facades.js | columnProduct": { + "message": "Product" + }, + "lighthouse-core/audits/third-party-facades.js | description": { + "message": "Some third-party embeds can be lazy loaded. Consider replacing them with a facade until they are required. [Learn more](https://web.dev/efficiently-load-third-party-javascript/)." + }, + "lighthouse-core/audits/third-party-facades.js | displayValue": { + "message": "{itemCount, plural,\n =1 {# facade alternative available}\n other {# facade alternatives available}\n }" + }, + "lighthouse-core/audits/third-party-facades.js | failureTitle": { + "message": "Some third-party resources can be lazy loaded with a facade" + }, + "lighthouse-core/audits/third-party-facades.js | title": { + "message": "Lazy load third-party resources with facades" }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Third-Party" @@ -1334,9 +1358,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Reduce the impact of third-party code" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Other resources" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Minimize third-party usage" }, @@ -1613,6 +1634,9 @@ "lighthouse-core/gather/gather-runner.js | warningTimeout": { "message": "The page loaded too slowly to finish within the time limit. Results may be incomplete." }, + "lighthouse-core/lib/i18n/i18n.js | columnBlockingTime": { + "message": "Main-Thread Blocking Time" + }, "lighthouse-core/lib/i18n/i18n.js | columnCacheTTL": { "message": "Cache TTL" }, @@ -1715,6 +1739,9 @@ "lighthouse-core/lib/i18n/i18n.js | ms": { "message": "{timeInMs, number, milliseconds} ms" }, + "lighthouse-core/lib/i18n/i18n.js | otherResourcesLabel": { + "message": "Other resources" + }, "lighthouse-core/lib/i18n/i18n.js | otherResourceType": { "message": "Other" }, diff --git a/lighthouse-core/lib/i18n/locales/en-XA.json b/lighthouse-core/lib/i18n/locales/en-XA.json index 3aa7ede9a98e..442e2a3351b9 100644 --- a/lighthouse-core/lib/i18n/locales/en-XA.json +++ b/lighthouse-core/lib/i18n/locales/en-XA.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "[Šéţš å ţĥémé çöļöŕ ƒöŕ ţĥé åððŕéšš бåŕ. one two three four five six seven eight]" }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "[Måîñ-Ţĥŕéåð Бļöçķîñĝ Ţîmé one two three]" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "[Ţĥîŕð-Þåŕţý one two]" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "[Ŕéðûçé ţĥé îmþåçţ öƒ ţĥîŕð-þåŕţý çöðé one two three four five six seven eight]" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "[Öţĥéŕ ŕéšöûŕçéš one two]" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "[Mîñîmîžé ţĥîŕð-þåŕţý ûšåĝé one two three]" }, diff --git a/lighthouse-core/lib/i18n/locales/en-XL.json b/lighthouse-core/lib/i18n/locales/en-XL.json index 5b4ca31d5e78..f898a681795b 100644 --- a/lighthouse-core/lib/i18n/locales/en-XL.json +++ b/lighthouse-core/lib/i18n/locales/en-XL.json @@ -1319,8 +1319,32 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Ŝét̂ś â t́ĥém̂é ĉól̂ór̂ f́ôŕ t̂h́ê ád̂d́r̂éŝś b̂ár̂." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "M̂áîń-T̂h́r̂éâd́ B̂ĺôćk̂ín̂ǵ T̂ím̂é" + "lighthouse-core/audits/third-party-facades.js | categoryCustomerSuccess": { + "message": "{productName} (Ĉúŝt́ôḿêŕ Ŝúĉćêśŝ)" + }, + "lighthouse-core/audits/third-party-facades.js | categoryMarketing": { + "message": "{productName} (M̂ár̂ḱêt́îńĝ)" + }, + "lighthouse-core/audits/third-party-facades.js | categorySocial": { + "message": "{productName} (Ŝóĉíâĺ)" + }, + "lighthouse-core/audits/third-party-facades.js | categoryVideo": { + "message": "{productName} (V̂íd̂éô)" + }, + "lighthouse-core/audits/third-party-facades.js | columnProduct": { + "message": "P̂ŕôd́ûćt̂" + }, + "lighthouse-core/audits/third-party-facades.js | description": { + "message": "Ŝóm̂é t̂h́îŕd̂-ṕâŕt̂ý êḿb̂éd̂ś ĉán̂ b́ê ĺâźŷ ĺôád̂éd̂. Ćôńŝíd̂ér̂ ŕêṕl̂áĉín̂ǵ t̂h́êḿ ŵít̂h́ â f́âćâd́ê ún̂t́îĺ t̂h́êý âŕê ŕêq́ûír̂éd̂. [Ĺêár̂ń m̂ór̂é](https://web.dev/efficiently-load-third-party-javascript/)." + }, + "lighthouse-core/audits/third-party-facades.js | displayValue": { + "message": "{itemCount, plural,\n =1 {# f̂áĉád̂é âĺt̂ér̂ńât́îv́ê áv̂áîĺâb́l̂é}\n other {# f̂áĉád̂é âĺt̂ér̂ńât́îv́êś âv́âíl̂áb̂ĺê}\n }" + }, + "lighthouse-core/audits/third-party-facades.js | failureTitle": { + "message": "Ŝóm̂é t̂h́îŕd̂-ṕâŕt̂ý r̂éŝóûŕĉéŝ ćâń b̂é l̂áẑý l̂óâd́êd́ ŵít̂h́ â f́âćâd́ê" + }, + "lighthouse-core/audits/third-party-facades.js | title": { + "message": "L̂áẑý l̂óâd́ t̂h́îŕd̂-ṕâŕt̂ý r̂éŝóûŕĉéŝ ẃît́ĥ f́âćâd́êś" }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "T̂h́îŕd̂-Ṕâŕt̂ý" @@ -1334,9 +1358,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "R̂éd̂úĉé t̂h́ê ím̂ṕâćt̂ óf̂ t́ĥír̂d́-p̂ár̂t́ŷ ćôd́ê" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Ôt́ĥér̂ ŕêśôúr̂ćêś" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "M̂ín̂ím̂íẑé t̂h́îŕd̂-ṕâŕt̂ý ûśâǵê" }, @@ -1613,6 +1634,9 @@ "lighthouse-core/gather/gather-runner.js | warningTimeout": { "message": "T̂h́ê ṕâǵê ĺôád̂éd̂ t́ôó ŝĺôẃl̂ý t̂ó f̂ín̂íŝh́ ŵít̂h́îń t̂h́ê t́îḿê ĺîḿît́. R̂éŝúl̂t́ŝ ḿâý b̂é îńĉóm̂ṕl̂ét̂é." }, + "lighthouse-core/lib/i18n/i18n.js | columnBlockingTime": { + "message": "M̂áîń-T̂h́r̂éâd́ B̂ĺôćk̂ín̂ǵ T̂ím̂é" + }, "lighthouse-core/lib/i18n/i18n.js | columnCacheTTL": { "message": "Ĉáĉh́ê T́T̂Ĺ" }, @@ -1715,6 +1739,9 @@ "lighthouse-core/lib/i18n/i18n.js | ms": { "message": "{timeInMs, number, milliseconds} m̂ś" }, + "lighthouse-core/lib/i18n/i18n.js | otherResourcesLabel": { + "message": "Ôt́ĥér̂ ŕêśôúr̂ćêś" + }, "lighthouse-core/lib/i18n/i18n.js | otherResourceType": { "message": "Ôt́ĥér̂" }, diff --git a/lighthouse-core/lib/i18n/locales/es-419.json b/lighthouse-core/lib/i18n/locales/es-419.json index d3688473a910..41d92ed9ff1f 100644 --- a/lighthouse-core/lib/i18n/locales/es-419.json +++ b/lighthouse-core/lib/i18n/locales/es-419.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Establece un color de tema para la barra de direcciones." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Tiempo de bloqueo del subproceso principal" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Terceros" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Reduce el impacto del código de terceros" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Otros recursos" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Minimiza el uso del código de terceros" }, diff --git a/lighthouse-core/lib/i18n/locales/es.json b/lighthouse-core/lib/i18n/locales/es.json index 1e8f57b44fa0..4b396a671779 100644 --- a/lighthouse-core/lib/i18n/locales/es.json +++ b/lighthouse-core/lib/i18n/locales/es.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Establece un color personalizado en la barra de direcciones." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Tiempo de bloqueo del hilo principal" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Proveedor externo" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Reduce el impacto del código de terceros" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Otros recursos" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Reducir el uso de código de terceros" }, diff --git a/lighthouse-core/lib/i18n/locales/fi.json b/lighthouse-core/lib/i18n/locales/fi.json index 61368a179ae9..2bdd4b1c437a 100644 --- a/lighthouse-core/lib/i18n/locales/fi.json +++ b/lighthouse-core/lib/i18n/locales/fi.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Asettaa osoitepalkin teemavärin" }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Pääsäikeen estoaika" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Kolmas osapuoli" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Vähennä kolmannen osapuolen koodin vaikutusta" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Muut resurssit" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Minimoi kolmannen osapuolen käyttö" }, diff --git a/lighthouse-core/lib/i18n/locales/fil.json b/lighthouse-core/lib/i18n/locales/fil.json index 1e415d566e34..e56209f94ff2 100644 --- a/lighthouse-core/lib/i18n/locales/fil.json +++ b/lighthouse-core/lib/i18n/locales/fil.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Nagtatakda ng kulay ng tema para sa address bar." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Oras ng Pag-block ng Pangunahing Thread" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Third-Party" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Bawasan ang epekto ng code ng third party" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Iba pang resource" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Bawasan ang paggamit ng third-party" }, diff --git a/lighthouse-core/lib/i18n/locales/fr.json b/lighthouse-core/lib/i18n/locales/fr.json index 23d2b39a6e48..e88f06f95322 100644 --- a/lighthouse-core/lib/i18n/locales/fr.json +++ b/lighthouse-core/lib/i18n/locales/fr.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Une couleur de thème est configurée pour la barre d'adresse." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Durée de blocage du thread principal" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Tiers" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Réduire l'impact du code tiers" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Autres ressources" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Réduire au maximum l'utilisation de code tiers" }, diff --git a/lighthouse-core/lib/i18n/locales/he.json b/lighthouse-core/lib/i18n/locales/he.json index 2093b02c58f8..609901ded59a 100644 --- a/lighthouse-core/lib/i18n/locales/he.json +++ b/lighthouse-core/lib/i18n/locales/he.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "מגדיר צבע עיצוב עבור סרגל הכתובות." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "משך החסימה של התהליכון הראשי" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "צד שלישי" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "עליך להפחית את השפעת הקוד של צד שלישי" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "משאבים אחרים" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "צמצום השימוש בצדדים שלישיים" }, diff --git a/lighthouse-core/lib/i18n/locales/hi.json b/lighthouse-core/lib/i18n/locales/hi.json index 7db1e1f841cb..aff78a80dcfd 100644 --- a/lighthouse-core/lib/i18n/locales/hi.json +++ b/lighthouse-core/lib/i18n/locales/hi.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "'पता बार' के लिए थीम का रंग सेट करता है." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "मुख्य थ्रेड ब्लॉक होने का समय" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "तीसरा पक्ष" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "तीसरे पक्ष के कोड का असर कम करें" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "अन्य संसाधन" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "तीसरे पक्ष के इस्तेमाल को कम करें" }, diff --git a/lighthouse-core/lib/i18n/locales/hr.json b/lighthouse-core/lib/i18n/locales/hr.json index 8af624ddbabd..28d0b9af9e36 100644 --- a/lighthouse-core/lib/i18n/locales/hr.json +++ b/lighthouse-core/lib/i18n/locales/hr.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Postavlja boju teme za adresnu traku." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Vrijeme blokiranja glavne niti" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Treća strana" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Smanjite utjecaj koda trećih strana" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Ostali resursi" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Smanjenje upotrebe koda trećih strana" }, diff --git a/lighthouse-core/lib/i18n/locales/hu.json b/lighthouse-core/lib/i18n/locales/hu.json index 590a4dddff96..12d20965b89e 100644 --- a/lighthouse-core/lib/i18n/locales/hu.json +++ b/lighthouse-core/lib/i18n/locales/hu.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "A téma színét állítja be a címsávon." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Fő szál akadályozásának időtartama" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Harmadik fél" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Csökkentse a harmadik felek kódjai által kiváltott hatást" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Egyéb források" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Minimalizálja a harmadik felektől származó kódok használatát" }, diff --git a/lighthouse-core/lib/i18n/locales/id.json b/lighthouse-core/lib/i18n/locales/id.json index 1559262ea569..ec852e86ef4a 100644 --- a/lighthouse-core/lib/i18n/locales/id.json +++ b/lighthouse-core/lib/i18n/locales/id.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Menyetel warna tema untuk kolom URL." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Waktu Pemblokiran Thread Utama" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Pihak Ketiga" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Kurangi dampak kode pihak ketiga" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Resource lainnya" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Meminimalkan penggunaan pihak ketiga" }, diff --git a/lighthouse-core/lib/i18n/locales/it.json b/lighthouse-core/lib/i18n/locales/it.json index 7980f11c69f8..856eae9d651c 100644 --- a/lighthouse-core/lib/i18n/locales/it.json +++ b/lighthouse-core/lib/i18n/locales/it.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Imposta un colore tema per la barra degli indirizzi." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Durata blocco thread principale" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Terza parte" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Riduci l'impatto del codice di terze parti" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Altre risorse" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Riduci al minimo l'utilizzo di codice di terze parti" }, diff --git a/lighthouse-core/lib/i18n/locales/ja.json b/lighthouse-core/lib/i18n/locales/ja.json index 391277ebc6e8..db9cee8a696c 100644 --- a/lighthouse-core/lib/i18n/locales/ja.json +++ b/lighthouse-core/lib/i18n/locales/ja.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "アドレスバーにテーマの色が設定されています。" }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "メインスレッドのブロック時間" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "第三者" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "第三者コードの影響を抑えてください" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "その他のリソース" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "第三者の使用の最小化" }, diff --git a/lighthouse-core/lib/i18n/locales/ko.json b/lighthouse-core/lib/i18n/locales/ko.json index 206f38191da6..ce128bb5faaa 100644 --- a/lighthouse-core/lib/i18n/locales/ko.json +++ b/lighthouse-core/lib/i18n/locales/ko.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "주소 표시줄의 테마 색상을 설정함" }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "기본 스레드 차단 시간" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "타사" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "타사 코드의 영향을 줄임" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "기타 리소스" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "타사 사용량 최소화" }, diff --git a/lighthouse-core/lib/i18n/locales/lt.json b/lighthouse-core/lib/i18n/locales/lt.json index 41f27baedf63..298d7ad58343 100644 --- a/lighthouse-core/lib/i18n/locales/lt.json +++ b/lighthouse-core/lib/i18n/locales/lt.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Nustatoma adreso juostos temos spalva." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Pagrindinės grupės blokavimo laikas" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Trečioji šalis" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Sumažina trečiosios šalies kodo poveikį" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Kiti ištekliai" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Trečiųjų šalių kodo naudojimo sumažinimas" }, diff --git a/lighthouse-core/lib/i18n/locales/lv.json b/lighthouse-core/lib/i18n/locales/lv.json index a1dfa92771d7..37f89386a164 100644 --- a/lighthouse-core/lib/i18n/locales/lv.json +++ b/lighthouse-core/lib/i18n/locales/lv.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Lapa iestata adreses joslas motīva krāsu." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Galvenā pavediena bloķēšanas laiks" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Trešā puse" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Samaziniet trešo pušu koda ietekmi" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Citi resursi" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Samaziniet trešās puses koda lietojumu" }, diff --git a/lighthouse-core/lib/i18n/locales/nl.json b/lighthouse-core/lib/i18n/locales/nl.json index 64c43ddb6dd4..71b813835f51 100644 --- a/lighthouse-core/lib/i18n/locales/nl.json +++ b/lighthouse-core/lib/i18n/locales/nl.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Hiermee wordt een themakleur voor de adresbalk ingesteld." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Tijd dat primaire thread is geblokkeerd" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Derden" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "De impact van code van derden beperken" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Andere bronnen" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Gebruik door derden minimaliseren" }, diff --git a/lighthouse-core/lib/i18n/locales/no.json b/lighthouse-core/lib/i18n/locales/no.json index 801d50089d5b..99dd89f6c86e 100644 --- a/lighthouse-core/lib/i18n/locales/no.json +++ b/lighthouse-core/lib/i18n/locales/no.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Angir en temafarge for adressefeltet." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Blokkeringstid i hovedtråden" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Tredjepart" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Reduser innvirkningen av tredjepartskode" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Andre ressurser" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Minimer bruken av tredjepartskode" }, diff --git a/lighthouse-core/lib/i18n/locales/pl.json b/lighthouse-core/lib/i18n/locales/pl.json index 8ebdbe9297a4..ac508a70bebb 100644 --- a/lighthouse-core/lib/i18n/locales/pl.json +++ b/lighthouse-core/lib/i18n/locales/pl.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Ustawia motyw kolorystyczny paska adresu." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Czas blokowania głównego wątku" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Dostawca zewnętrzny" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Ogranicz wpływ kodu spoza witryny" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Inne zasoby" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Minimalizacja wykorzystania kodu zewnętrznego" }, diff --git a/lighthouse-core/lib/i18n/locales/pt-PT.json b/lighthouse-core/lib/i18n/locales/pt-PT.json index e7c7aaa83c9a..d73e45d9f55d 100644 --- a/lighthouse-core/lib/i18n/locales/pt-PT.json +++ b/lighthouse-core/lib/i18n/locales/pt-PT.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Define uma cor do tema para a barra de endereço" }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Tempo de bloqueio do thread principal" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Terceiros" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Reduza o impacto do código de terceiros" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Outros recursos" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Minimize a utilização de terceiros" }, diff --git a/lighthouse-core/lib/i18n/locales/pt.json b/lighthouse-core/lib/i18n/locales/pt.json index 15b83f8cb61a..ca8d6b1f1701 100644 --- a/lighthouse-core/lib/i18n/locales/pt.json +++ b/lighthouse-core/lib/i18n/locales/pt.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Foi definida uma cor de tema para a barra de endereços." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Tempo de bloqueio da linha de execução principal" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Terceiros" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Reduza o impacto de códigos de terceiros" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Outros recursos" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Reduzir o uso de terceiros" }, diff --git a/lighthouse-core/lib/i18n/locales/ro.json b/lighthouse-core/lib/i18n/locales/ro.json index f2760def9c9e..15dfb26874df 100644 --- a/lighthouse-core/lib/i18n/locales/ro.json +++ b/lighthouse-core/lib/i18n/locales/ro.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Setează o culoare tematică pentru bara de adrese." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Timpul de blocare a firului principal" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Terță parte" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Redu impactul codului de la terți" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Alte resurse" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Minimalizează folosirea terțelor părți" }, diff --git a/lighthouse-core/lib/i18n/locales/ru.json b/lighthouse-core/lib/i18n/locales/ru.json index e3a0954e6e1a..a07a2c149baa 100644 --- a/lighthouse-core/lib/i18n/locales/ru.json +++ b/lighthouse-core/lib/i18n/locales/ru.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Изменяет цвет адресной строки в соответствии с темой" }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Время блокировки основного потока" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Сторонний поставщик" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Уменьшите влияние стороннего кода" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Другие ресурсы" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Уменьшение использования стороннего кода" }, diff --git a/lighthouse-core/lib/i18n/locales/sk.json b/lighthouse-core/lib/i18n/locales/sk.json index 0731ee6fcb88..841093bd5607 100644 --- a/lighthouse-core/lib/i18n/locales/sk.json +++ b/lighthouse-core/lib/i18n/locales/sk.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Nastavuje farbu motívu pre panel s adresou." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Čas blokovania hlavného vlákna" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Tretia strana" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Zníženie vplyvu kódu tretích strán" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Ďalšie zdroje" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Minimalizujte použitie riešení tretích strán" }, diff --git a/lighthouse-core/lib/i18n/locales/sl.json b/lighthouse-core/lib/i18n/locales/sl.json index 10f2aa2a9967..62f91b0f75ca 100644 --- a/lighthouse-core/lib/i18n/locales/sl.json +++ b/lighthouse-core/lib/i18n/locales/sl.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Nastavi barvo teme za naslovno vrstico." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Čas blokiranja glavne niti" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Drugi ponudniki" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Zmanjšanje vpliva kode drugega ponudnika" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Drugi viri" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Zmanjšajte uporabo komponent drugih ponudnikov" }, diff --git a/lighthouse-core/lib/i18n/locales/sr-Latn.json b/lighthouse-core/lib/i18n/locales/sr-Latn.json index 5bcddac0abbd..695ced79d5d3 100644 --- a/lighthouse-core/lib/i18n/locales/sr-Latn.json +++ b/lighthouse-core/lib/i18n/locales/sr-Latn.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Podešava boju teme za traku za adresu." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Period blokiranja glavne niti" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Nezavisni dobavljač" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Smanjite uticaj koda nezavisnog dobavljača" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Ostali resursi" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Smanjite korišćenje sadržaja treće strane" }, diff --git a/lighthouse-core/lib/i18n/locales/sr.json b/lighthouse-core/lib/i18n/locales/sr.json index 99381823eb7a..687a76dfeb90 100644 --- a/lighthouse-core/lib/i18n/locales/sr.json +++ b/lighthouse-core/lib/i18n/locales/sr.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Подешава боју теме за траку за адресу." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Период блокирања главне нити" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Независни добављач" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Смањите утицај кода независног добављача" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Остали ресурси" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Смањите коришћење садржаја треће стране" }, diff --git a/lighthouse-core/lib/i18n/locales/sv.json b/lighthouse-core/lib/i18n/locales/sv.json index 48c240e9c6ef..415f8a860976 100644 --- a/lighthouse-core/lib/i18n/locales/sv.json +++ b/lighthouse-core/lib/i18n/locales/sv.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Anger ett färgtema för adressfältet." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Tidsåtgång för blockering av huvudtråd" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Tredje part" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Minska påverkan från tredjepartskod" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Övriga resurser" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Minimera användning av tredjepartskod" }, diff --git a/lighthouse-core/lib/i18n/locales/ta.json b/lighthouse-core/lib/i18n/locales/ta.json index 222f0bd7f457..ea70aa5fdb33 100644 --- a/lighthouse-core/lib/i18n/locales/ta.json +++ b/lighthouse-core/lib/i18n/locales/ta.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "முகவரிப் பட்டிக்கான தீம் வண்ணத்தை அமைக்கும்." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "முக்கியத் தொடரிழையில் தடுப்பதற்குச் செலவிட்ட நேரம்" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "மூன்றாம் தரப்பு" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "மூன்றாம் தரப்புக் குறியீட்டின் பாதிப்பைக் குறைக்கவும்" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "இதர மூலங்கள்" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "மூன்றாம் தரப்பு உபயோகத்தைக் குறைத்தல்" }, diff --git a/lighthouse-core/lib/i18n/locales/te.json b/lighthouse-core/lib/i18n/locales/te.json index 8b31a6eaf600..3963baa89834 100644 --- a/lighthouse-core/lib/i18n/locales/te.json +++ b/lighthouse-core/lib/i18n/locales/te.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "చిరునామా బార్ కోసం థీమ్ రంగు సెట్ చేయబడింది." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "ప్రధాన థ్రెడ్ బ్లాక్ చేయబడే సమయం" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "మూడవ పక్షం" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "మూడవ పక్షం కోడ్ ప్రభావాన్ని తగ్గించండి" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "ఇతర రిసోర్స్‌లు" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "మూడవ పక్ష వినియోగాన్ని కనీస స్థాయికి తగ్గించండి" }, diff --git a/lighthouse-core/lib/i18n/locales/th.json b/lighthouse-core/lib/i18n/locales/th.json index a3366d275431..c791a95fa08f 100644 --- a/lighthouse-core/lib/i18n/locales/th.json +++ b/lighthouse-core/lib/i18n/locales/th.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "กำหนดสีธีมของแถบที่อยู่" }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "เวลาในการบล็อกเทรดหลัก" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "บุคคลที่สาม" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "ลดผลกระทบจากโค้ดของบุคคลที่สาม" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "ทรัพยากรอื่นๆ" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "ลดการใช้ของบุคคลที่สาม" }, diff --git a/lighthouse-core/lib/i18n/locales/tr.json b/lighthouse-core/lib/i18n/locales/tr.json index 62f63cbeb13e..b92edfb9a28a 100644 --- a/lighthouse-core/lib/i18n/locales/tr.json +++ b/lighthouse-core/lib/i18n/locales/tr.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Adres çubuğu için tema rengi ayarlar." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Ana İleti Dizisi Engelleme Süresi" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Üçüncü Taraf" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Üçüncü taraf kodun etkisini azaltın" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Diğer kaynaklar" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Üçüncü taraf kullanımını en aza indirme" }, diff --git a/lighthouse-core/lib/i18n/locales/uk.json b/lighthouse-core/lib/i18n/locales/uk.json index baea16e4fc4e..638be4bda9fb 100644 --- a/lighthouse-core/lib/i18n/locales/uk.json +++ b/lighthouse-core/lib/i18n/locales/uk.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Змінює колір адресного рядка відповідно до теми." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Час блокування основного ланцюжка" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Сторонні розробники" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Зменште вплив стороннього коду" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Інші ресурси" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Зменште використання стороннього коду" }, diff --git a/lighthouse-core/lib/i18n/locales/vi.json b/lighthouse-core/lib/i18n/locales/vi.json index 6bfd43ba4d98..681765e04994 100644 --- a/lighthouse-core/lib/i18n/locales/vi.json +++ b/lighthouse-core/lib/i18n/locales/vi.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "Đặt màu giao diện cho thanh địa chỉ." }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "Thời gian chặn chuỗi chính" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "Bên thứ ba" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "Giảm mức ảnh hưởng của mã bên thứ ba" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "Tài nguyên khác" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "Giảm thiểu mức sử dụng của bên thứ ba" }, diff --git a/lighthouse-core/lib/i18n/locales/zh-HK.json b/lighthouse-core/lib/i18n/locales/zh-HK.json index ea9cd1c36ece..d1db36ded41b 100644 --- a/lighthouse-core/lib/i18n/locales/zh-HK.json +++ b/lighthouse-core/lib/i18n/locales/zh-HK.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "設定網址列的主題顏色。" }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "主要執行緒封鎖時間" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "第三方" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "減低第三方程式碼的影響" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "其他資源" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "減少第三方程式碼使用量" }, diff --git a/lighthouse-core/lib/i18n/locales/zh-TW.json b/lighthouse-core/lib/i18n/locales/zh-TW.json index 77af4c6cf911..95da49c6fc8f 100644 --- a/lighthouse-core/lib/i18n/locales/zh-TW.json +++ b/lighthouse-core/lib/i18n/locales/zh-TW.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "設定網址列的主題顏色。" }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "主要執行緒封鎖時間" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "第三方" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "降低第三方程式碼的影響" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "其他資源" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "盡量減少第三方程式碼的使用量" }, diff --git a/lighthouse-core/lib/i18n/locales/zh.json b/lighthouse-core/lib/i18n/locales/zh.json index eb597b638a53..5a7a43f6e555 100644 --- a/lighthouse-core/lib/i18n/locales/zh.json +++ b/lighthouse-core/lib/i18n/locales/zh.json @@ -1313,9 +1313,6 @@ "lighthouse-core/audits/themed-omnibox.js | title": { "message": "为地址栏设置主题背景颜色。" }, - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": { - "message": "主线程拦截时间" - }, "lighthouse-core/audits/third-party-summary.js | columnThirdParty": { "message": "第三方" }, @@ -1328,9 +1325,6 @@ "lighthouse-core/audits/third-party-summary.js | failureTitle": { "message": "降低第三方代码的影响" }, - "lighthouse-core/audits/third-party-summary.js | otherValue": { - "message": "其他资源" - }, "lighthouse-core/audits/third-party-summary.js | title": { "message": "尽量减少第三方使用" }, diff --git a/lighthouse-core/lib/third-party-web.js b/lighthouse-core/lib/third-party-web.js index 4b0cf60797ac..e2336cf90233 100644 --- a/lighthouse-core/lib/third-party-web.js +++ b/lighthouse-core/lib/third-party-web.js @@ -8,19 +8,22 @@ const thirdPartyWeb = require('third-party-web/httparchive-nostats-subset'); /** @typedef {import("third-party-web").IEntity} ThirdPartyEntity */ +/** @typedef {import("third-party-web").IProduct} ThirdPartyProduct */ /** - * `third-party-web` throws when the passed in string doesn't appear to have any domain whatsoever. - * We pass in some not-so-url-like things, so make the dependent-code simpler by making this call safe. * @param {string} url * @return {ThirdPartyEntity|undefined} */ function getEntity(url) { - try { - return thirdPartyWeb.getEntity(url); - } catch (_) { - return undefined; - } + return thirdPartyWeb.getEntity(url); +} + +/** + * @param {string} url + * @return {ThirdPartyProduct|undefined} + */ +function getProduct(url) { + return thirdPartyWeb.getProduct(url); } /** @@ -44,6 +47,7 @@ function isFirstParty(url, mainDocumentEntity) { module.exports = { getEntity, + getProduct, isThirdParty, isFirstParty, }; diff --git a/lighthouse-core/report/html/renderer/report-ui-features.js b/lighthouse-core/report/html/renderer/report-ui-features.js index ae35e209bdb9..35c837a0d3d1 100644 --- a/lighthouse-core/report/html/renderer/report-ui-features.js +++ b/lighthouse-core/report/html/renderer/report-ui-features.js @@ -219,8 +219,9 @@ class ReportUIFeatures { _setupThirdPartyFilter() { // Some audits should not display the third party filter option. const thirdPartyFilterAuditExclusions = [ - // This audit deals explicitly with third party resources. + // These audits deal explicitly with third party resources. 'uses-rel-preconnect', + 'third-party-facades', ]; // Some audits should hide third party by default. const thirdPartyFilterAuditHideByDefault = [ diff --git a/lighthouse-core/test/audits/third-party-facades-test.js b/lighthouse-core/test/audits/third-party-facades-test.js new file mode 100644 index 000000000000..bebc45402477 --- /dev/null +++ b/lighthouse-core/test/audits/third-party-facades-test.js @@ -0,0 +1,461 @@ +/** + * @license Copyright 2020 The Lighthouse Authors. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an AS IS' BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. + */ +'use strict'; + +const ThirdPartyFacades = require('../../audits/third-party-facades.js'); +const networkRecordsToDevtoolsLog = require('../network-records-to-devtools-log.js'); +const createTestTrace = require('../create-test-trace.js'); + +const pwaTrace = require('../fixtures/traces/progressive-app-m60.json'); +const pwaDevtoolsLog = require('../fixtures/traces/progressive-app-m60.devtools.log.json'); +const videoEmbedsTrace = require('../fixtures/traces/video-embeds-m84.json'); +const videoEmbedsDevtolsLog = require('../fixtures/traces/video-embeds-m84.devtools.log.json'); +const noThirdPartyTrace = require('../fixtures/traces/no-tracingstarted-m74.json'); + +function intercomProductUrl(id) { + return `https://widget.intercom.io/widget/${id}`; +} + +function intercomResourceUrl(id) { + return `https://js.intercomcdn.com/frame-modern.${id}.js`; +} + +function youtubeProductUrl(id) { + return `https://www.youtube.com/embed/${id}`; +} + +function youtubeResourceUrl(id) { + return `https://i.ytimg.com/${id}/maxresdefault.jpg`; +} + +/* eslint-env jest */ +describe('Third party facades audit', () => { + it('correctly identifies a third party product with facade alternative', async () => { + const artifacts = { + devtoolsLogs: { + defaultPass: networkRecordsToDevtoolsLog([ + {transferSize: 2000, url: 'https://example.com'}, + {transferSize: 4000, url: intercomProductUrl('1')}, + {transferSize: 8000, url: intercomResourceUrl('a')}, + ]), + }, + traces: {defaultPass: createTestTrace({timeOrigin: 0, traceEnd: 2000})}, + URL: {finalUrl: 'https://example.com'}, + }; + + const settings = {throttlingMethod: 'simulate', throttling: {cpuSlowdownMultiplier: 4}}; + const results = await ThirdPartyFacades.audit(artifacts, {computedCache: new Map(), settings}); + + expect(results.score).toBe(0); + expect(results.displayValue).toBeDisplayString('1 facade alternative available'); + expect(results.details.items[0].product) + .toBeDisplayString('Intercom Widget (Customer Success)'); + expect(results.details.items).toMatchObject([ + { + transferSize: 12000, + blockingTime: 0, + subItems: { + type: 'subitems', + items: [ + { + url: 'https://js.intercomcdn.com/frame-modern.a.js', + mainThreadTime: 0, + blockingTime: 0, + transferSize: 8000, + }, + { + url: 'https://widget.intercom.io/widget/1', + mainThreadTime: 0, + blockingTime: 0, + transferSize: 4000, + }, + ], + }, + }, + ]); + }); + + it('handles multiple products with facades', async () => { + const artifacts = { + devtoolsLogs: { + defaultPass: networkRecordsToDevtoolsLog([ + {transferSize: 2000, url: 'https://example.com'}, + {transferSize: 4000, url: intercomProductUrl('1')}, + {transferSize: 3000, url: youtubeProductUrl('2')}, + {transferSize: 8000, url: intercomResourceUrl('a')}, + {transferSize: 7000, url: youtubeResourceUrl('b')}, + ]), + }, + traces: {defaultPass: createTestTrace({timeOrigin: 0, traceEnd: 2000})}, + URL: {finalUrl: 'https://example.com'}, + }; + + const settings = {throttlingMethod: 'simulate', throttling: {cpuSlowdownMultiplier: 4}}; + const results = await ThirdPartyFacades.audit(artifacts, {computedCache: new Map(), settings}); + + expect(results.score).toBe(0); + expect(results.displayValue).toBeDisplayString('2 facade alternatives available'); + expect(results.details.items[0].product) + .toBeDisplayString('Intercom Widget (Customer Success)'); + expect(results.details.items[1].product).toBeDisplayString('YouTube Embedded Player (Video)'); + expect(results.details.items).toMatchObject([ + { + transferSize: 12000, + blockingTime: 0, + subItems: { + type: 'subitems', + items: [ + { + url: 'https://js.intercomcdn.com/frame-modern.a.js', + mainThreadTime: 0, + blockingTime: 0, + transferSize: 8000, + }, + { + url: 'https://widget.intercom.io/widget/1', + mainThreadTime: 0, + blockingTime: 0, + transferSize: 4000, + }, + ], + }, + }, + { + transferSize: 10000, + blockingTime: 0, + subItems: { + type: 'subitems', + items: [ + { + url: 'https://i.ytimg.com/b/maxresdefault.jpg', + mainThreadTime: 0, + blockingTime: 0, + transferSize: 7000, + }, + { + url: 'https://www.youtube.com/embed/2', + mainThreadTime: 0, + blockingTime: 0, + transferSize: 3000, + }, + ], + }, + }, + ]); + }); + + it('handle multiple requests to same product resource', async () => { + const artifacts = { + devtoolsLogs: { + defaultPass: networkRecordsToDevtoolsLog([ + {transferSize: 2000, url: 'https://example.com'}, + {transferSize: 2000, url: intercomProductUrl('1')}, + {transferSize: 8000, url: intercomResourceUrl('a')}, + {transferSize: 2000, url: intercomProductUrl('1')}, + ]), + }, + traces: {defaultPass: createTestTrace({timeOrigin: 0, traceEnd: 2000})}, + URL: {finalUrl: 'https://example.com'}, + }; + + const settings = {throttlingMethod: 'simulate', throttling: {cpuSlowdownMultiplier: 4}}; + const results = await ThirdPartyFacades.audit(artifacts, {computedCache: new Map(), settings}); + + expect(results.score).toBe(0); + expect(results.displayValue).toBeDisplayString('1 facade alternative available'); + expect(results.details.items[0].product) + .toBeDisplayString('Intercom Widget (Customer Success)'); + expect(results.details.items).toMatchObject([ + { + transferSize: 12000, + blockingTime: 0, + subItems: { + type: 'subitems', + items: [ + { + url: 'https://js.intercomcdn.com/frame-modern.a.js', + mainThreadTime: 0, + blockingTime: 0, + transferSize: 8000, + }, + { + url: 'https://widget.intercom.io/widget/1', + mainThreadTime: 0, + blockingTime: 0, + transferSize: 4000, + }, + ], + }, + }, + ]); + }); + + it('does not report first party resources', async () => { + const artifacts = { + devtoolsLogs: { + defaultPass: networkRecordsToDevtoolsLog([ + {transferSize: 2000, url: 'https://intercomcdn.com'}, + {transferSize: 4000, url: intercomProductUrl('1')}, + ]), + }, + traces: {defaultPass: createTestTrace({timeOrigin: 0, traceEnd: 2000})}, + URL: {finalUrl: 'https://intercomcdn.com'}, + }; + + const settings = {throttlingMethod: 'simulate', throttling: {cpuSlowdownMultiplier: 4}}; + const results = await ThirdPartyFacades.audit(artifacts, {computedCache: new Map(), settings}); + + expect(results).toEqual({ + score: 1, + notApplicable: true, + }); + }); + + it('only reports resources which have facade alternatives', async () => { + const artifacts = { + // This devtools log has third party requests but none have facades + devtoolsLogs: {defaultPass: pwaDevtoolsLog}, + traces: {defaultPass: pwaTrace}, + URL: {finalUrl: 'https://pwa-rocks.com'}, + }; + + const settings = {throttlingMethod: 'simulate', throttling: {cpuSlowdownMultiplier: 4}}; + const results = await ThirdPartyFacades.audit(artifacts, {computedCache: new Map(), settings}); + + expect(results).toEqual({ + score: 1, + notApplicable: true, + }); + }); + + it('not applicable when no third party resources are present', async () => { + const artifacts = { + devtoolsLogs: { + defaultPass: networkRecordsToDevtoolsLog([ + {transferSize: 2000, url: 'https://example.com'}, + ]), + }, + traces: {defaultPass: noThirdPartyTrace}, + URL: {finalUrl: 'https://example.com'}, + }; + + const settings = {throttlingMethod: 'simulate', throttling: {cpuSlowdownMultiplier: 4}}; + const results = await ThirdPartyFacades.audit(artifacts, {computedCache: new Map(), settings}); + + expect(results).toEqual({ + score: 1, + notApplicable: true, + }); + }); + + it('handles real trace', async () => { + const artifacts = { + devtoolsLogs: {defaultPass: videoEmbedsDevtolsLog}, + traces: {defaultPass: videoEmbedsTrace}, + URL: {finalUrl: 'https://example.com'}, + }; + + const settings = {throttlingMethod: 'simulate', throttling: {cpuSlowdownMultiplier: 4}}; + const results = await ThirdPartyFacades.audit(artifacts, {computedCache: new Map(), settings}); + + expect(results.score).toBe(0); + expect(results.displayValue).toBeDisplayString('2 facade alternatives available'); + expect(results.details.items[0].product).toBeDisplayString('YouTube Embedded Player (Video)'); + expect(results.details.items[1].product).toBeDisplayString('Vimeo Embedded Player (Video)'); + expect(results.details.items).toMatchObject( + [ + { + transferSize: 651350, + blockingTime: 0, + subItems: { + items: [ + { + blockingTime: 0, + mainThreadTime: 0, + transferSize: 459603, + url: 'https://www.youtube.com/s/player/e0d83c30/player_ias.vflset/en_US/base.js', + }, + { + blockingTime: 0, + mainThreadTime: 0, + transferSize: 66273, + url: 'https://i.ytimg.com/vi/tgbNymZ7vqY/maxresdefault.jpg', + }, + { + blockingTime: 0, + mainThreadTime: 0, + transferSize: 50213, + url: 'https://www.youtube.com/s/player/e0d83c30/www-embed-player.vflset/www-embed-player.js', + }, + { + blockingTime: 0, + mainThreadTime: 0, + transferSize: 46813, + url: 'https://www.youtube.com/s/player/e0d83c30/www-player.css', + }, + { + blockingTime: 0, + mainThreadTime: 0, + transferSize: 11477, + url: 'https://www.youtube.com/s/player/e0d83c30/player_ias.vflset/en_US/embed.js', + }, + { + blockingTime: 0, + mainThreadTime: 0, + transferSize: 16971, + url: { + formattedDefault: 'Other resources', + }, + }, + ], + type: 'subitems', + }, + }, + { + transferSize: 184495, + blockingTime: 0, + subItems: { + items: [ + { + blockingTime: 0, + mainThreadTime: 0, + transferSize: 145772, + url: 'https://f.vimeocdn.com/p/3.22.3/js/player.js', + }, + { + blockingTime: 0, + mainThreadTime: 0, + transferSize: 17633, + url: 'https://f.vimeocdn.com/p/3.22.3/css/player.css', + }, + { + blockingTime: 0, + mainThreadTime: 0, + transferSize: 9313, + url: 'https://i.vimeocdn.com/video/784397921.webp?mw=1200&mh=675&q=70', + }, + { + blockingTime: 0, + mainThreadTime: 0, + transferSize: 8300, + url: 'https://player.vimeo.com/video/336812660', + }, + { + blockingTime: 0, + mainThreadTime: 0, + transferSize: 1474, + url: 'https://f.vimeocdn.com/js_opt/modules/utils/vuid.min.js', + }, + { + blockingTime: 0, + mainThreadTime: 0, + transferSize: 2003, + url: { + formattedDefault: 'Other resources', + }, + }, + ], + type: 'subitems', + }, + }, + ] + ); + }); + + describe('.condenseItems', () => { + it('basic case', () => { + const items = [ + {url: 'd', transferSize: 500, blockingTime: 5}, + {url: 'b', transferSize: 1000, blockingTime: 0}, + {url: 'c', transferSize: 500, blockingTime: 5}, + {url: 'e', transferSize: 500, blockingTime: 5}, + {url: 'a', transferSize: 5000, blockingTime: 0}, + ]; + ThirdPartyFacades.condenseItems(items); + expect(items).toMatchObject([ + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'b', transferSize: 1000, blockingTime: 0}, + {url: {formattedDefault: 'Other resources'}, transferSize: 1500, blockingTime: 15}, + ]); + }); + + it('only shown top 5 items', () => { + const items = [ + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'a', transferSize: 5000, blockingTime: 5}, + {url: 'a', transferSize: 5000, blockingTime: 5}, + ]; + ThirdPartyFacades.condenseItems(items); + expect(items).toMatchObject([ + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: {formattedDefault: 'Other resources'}, transferSize: 10000, blockingTime: 10}, + ]); + }); + + it('hide condensed row if total transfer size <1KB', () => { + const items = [ + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'b', transferSize: 100, blockingTime: 0}, + {url: 'c', transferSize: 100, blockingTime: 0}, + ]; + ThirdPartyFacades.condenseItems(items); + expect(items).toMatchObject([ + {url: 'a', transferSize: 5000, blockingTime: 0}, + ]); + }); + + it('always show at least one item', () => { + const items = [ + {url: 'a', transferSize: 500, blockingTime: 0}, + {url: 'b', transferSize: 500, blockingTime: 0}, + {url: 'c', transferSize: 500, blockingTime: 0}, + ]; + ThirdPartyFacades.condenseItems(items); + expect(items).toMatchObject([ + {url: 'a', transferSize: 500, blockingTime: 0}, + {url: {formattedDefault: 'Other resources'}, transferSize: 1000, blockingTime: 0}, + ]); + }); + + it('single small item', () => { + const items = [ + {url: 'a', transferSize: 500, blockingTime: 0}, + ]; + ThirdPartyFacades.condenseItems(items); + expect(items).toMatchObject([ + {url: 'a', transferSize: 500, blockingTime: 0}, + ]); + }); + + it('do not condense if only one item to condense', () => { + const items = [ + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'c', transferSize: 500, blockingTime: 0}, + ]; + ThirdPartyFacades.condenseItems(items); + expect(items).toMatchObject([ + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'a', transferSize: 5000, blockingTime: 0}, + {url: 'c', transferSize: 500, blockingTime: 0}, + ]); + }); + }); +}); diff --git a/lighthouse-core/test/fixtures/traces/video-embeds-m84.devtools.log.json b/lighthouse-core/test/fixtures/traces/video-embeds-m84.devtools.log.json new file mode 100644 index 000000000000..1af6902f7ce2 --- /dev/null +++ b/lighthouse-core/test/fixtures/traces/video-embeds-m84.devtools.log.json @@ -0,0 +1,234 @@ +[ + {"method":"Page.lifecycleEvent","params":{"frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A","loaderId":"7786083121DC69321F8379E792981015","name":"commit","timestamp":47785.913186}}, + {"method":"Page.lifecycleEvent","params":{"frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A","loaderId":"7786083121DC69321F8379E792981015","name":"DOMContentLoaded","timestamp":47785.913248}}, + {"method":"Page.lifecycleEvent","params":{"frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A","loaderId":"7786083121DC69321F8379E792981015","name":"load","timestamp":47785.913373}}, + {"method":"Page.lifecycleEvent","params":{"frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A","loaderId":"7786083121DC69321F8379E792981015","name":"networkAlmostIdle","timestamp":47785.913674}}, + {"method":"Page.lifecycleEvent","params":{"frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A","loaderId":"7786083121DC69321F8379E792981015","name":"networkIdle","timestamp":47785.913674}}, + {"method":"Network.requestWillBeSent","params":{"requestId":"DA13668C4781FCB2BF6F3AB0F3313AB7","loaderId":"DA13668C4781FCB2BF6F3AB0F3313AB7","documentURL":"http://localhost:8686/yt-embed.html","request":{"url":"http://localhost:8686/yt-embed.html","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.042202,"wallTime":1600197631.790902,"initiator":{"type":"other"},"type":"Document","frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A","hasUserGesture":false}}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"DA13668C4781FCB2BF6F3AB0F3313AB7","associatedCookies":[],"headers":{"Host":"localhost:8686","Connection":"keep-alive","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4143.7 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Sec-Fetch-Site":"none","Sec-Fetch-Mode":"navigate","Sec-Fetch-User":"?1","Sec-Fetch-Dest":"document","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"}}}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"DA13668C4781FCB2BF6F3AB0F3313AB7","blockedCookies":[],"headers":{"Server":"SimpleHTTP/0.6 Python/3.6.8","Date":"Tue, 15 Sep 2020 19:20:31 GMT","Content-type":"text/html","Content-Length":"330","Last-Modified":"Tue, 15 Sep 2020 19:18:47 GMT"},"headersText":"HTTP/1.0 200 OK\r\nServer: SimpleHTTP/0.6 Python/3.6.8\r\nDate: Tue, 15 Sep 2020 19:20:31 GMT\r\nContent-type: text/html\r\nContent-Length: 330\r\nLast-Modified: Tue, 15 Sep 2020 19:18:47 GMT\r\n\r\n"}}, + {"method":"Network.responseReceived","params":{"requestId":"DA13668C4781FCB2BF6F3AB0F3313AB7","loaderId":"DA13668C4781FCB2BF6F3AB0F3313AB7","timestamp":47786.045107,"type":"Document","response":{"url":"http://localhost:8686/yt-embed.html","status":200,"statusText":"OK","headers":{"Content-type":"text/html","Content-Length":"330","Last-Modified":"Tue, 15 Sep 2020 19:18:47 GMT"},"mimeType":"text/html","requestHeaders":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Accept-Encoding":"gzip, deflate, br"},"connectionReused":false,"connectionId":26,"remoteIPAddress":"127.0.0.1","remotePort":8686,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":185,"timing":{"requestTime":47786.042861,"dnsStart":0.259,"dnsEnd":0.267,"connectStart":0.267,"connectEnd":0.662,"sendStart":0.705,"sendEnd":0.754,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":1.36},"responseTime":1600197631792.842,"protocol":"http/1.0","securityState":"secure"},"frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A"}}, + {"method":"Page.frameStartedLoading","params":{"frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A"}}, + {"method":"Page.lifecycleEvent","params":{"frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A","loaderId":"DA13668C4781FCB2BF6F3AB0F3313AB7","name":"init","timestamp":47786.046825}}, + {"method":"Page.frameNavigated","params":{"frame":{"id":"8ECEE70925EB8E7B8C2100384AFF4D1A","loaderId":"DA13668C4781FCB2BF6F3AB0F3313AB7","url":"http://localhost:8686/yt-embed.html","securityOrigin":"http://localhost:8686","mimeType":"text/html"}}}, + {"method":"Network.dataReceived","params":{"requestId":"DA13668C4781FCB2BF6F3AB0F3313AB7","timestamp":47786.055227,"dataLength":330,"encodedDataLength":0}}, + {"method":"Network.loadingFinished","params":{"requestId":"DA13668C4781FCB2BF6F3AB0F3313AB7","timestamp":47786.044624,"encodedDataLength":515,"shouldReportCorbBlocking":false}}, + {"method":"Page.frameAttached","params":{"frameId":"D215705AC29C284D9BB2459B7020E798","parentFrameId":"8ECEE70925EB8E7B8C2100384AFF4D1A"}}, + {"method":"Page.lifecycleEvent","params":{"frameId":"D215705AC29C284D9BB2459B7020E798","loaderId":"4128E72F76ADE3A94BAEE1D2D1778B34","name":"init","timestamp":47786.057252}}, + {"method":"Page.lifecycleEvent","params":{"frameId":"D215705AC29C284D9BB2459B7020E798","loaderId":"4128E72F76ADE3A94BAEE1D2D1778B34","name":"DOMContentLoaded","timestamp":47786.057809}}, + {"method":"Page.frameStartedLoading","params":{"frameId":"D215705AC29C284D9BB2459B7020E798"}}, + {"method":"Network.requestWillBeSent","params":{"requestId":"7409A683C44F8397F7103BD7E03CB6C9","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","documentURL":"https://www.youtube.com/embed/tgbNymZ7vqY","request":{"url":"https://www.youtube.com/embed/tgbNymZ7vqY","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.065491,"wallTime":1600197631.814196,"initiator":{"type":"parser","url":"http://localhost:8686/yt-embed.html","lineNumber":5},"type":"Document","frameId":"D215705AC29C284D9BB2459B7020E798","hasUserGesture":false}}, + {"method":"Page.frameAttached","params":{"frameId":"A0D1CEFE4B294AB844A8912CA96784F9","parentFrameId":"8ECEE70925EB8E7B8C2100384AFF4D1A"}}, + {"method":"Page.lifecycleEvent","params":{"frameId":"A0D1CEFE4B294AB844A8912CA96784F9","loaderId":"FB4672AF3C2DC8E3D150CB86D14D72B5","name":"init","timestamp":47786.058683}}, + {"method":"Page.lifecycleEvent","params":{"frameId":"A0D1CEFE4B294AB844A8912CA96784F9","loaderId":"FB4672AF3C2DC8E3D150CB86D14D72B5","name":"DOMContentLoaded","timestamp":47786.059034}}, + {"method":"Page.frameStartedLoading","params":{"frameId":"A0D1CEFE4B294AB844A8912CA96784F9"}}, + {"method":"Network.requestWillBeSent","params":{"requestId":"51B3229F5358F49D44871ADE7185528C","loaderId":"51B3229F5358F49D44871ADE7185528C","documentURL":"http://player.vimeo.com/video/336812660","request":{"url":"http://player.vimeo.com/video/336812660","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.069162,"wallTime":1600197631.817867,"initiator":{"type":"parser","url":"http://localhost:8686/yt-embed.html","lineNumber":6},"type":"Document","frameId":"A0D1CEFE4B294AB844A8912CA96784F9","hasUserGesture":false}}, + {"method":"Page.domContentEventFired","params":{"timestamp":47786.059918}}, + {"method":"Page.lifecycleEvent","params":{"frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A","loaderId":"DA13668C4781FCB2BF6F3AB0F3313AB7","name":"DOMContentLoaded","timestamp":47786.059918}}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"51B3229F5358F49D44871ADE7185528C","associatedCookies":[],"headers":{"Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4143.7 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9"}}}, + {"method":"Network.requestWillBeSent","params":{"requestId":"51B3229F5358F49D44871ADE7185528C","loaderId":"51B3229F5358F49D44871ADE7185528C","documentURL":"https://player.vimeo.com/video/336812660","request":{"url":"https://player.vimeo.com/video/336812660","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.073945,"wallTime":1600197631.822702,"initiator":{"type":"parser","url":"http://localhost:8686/yt-embed.html","lineNumber":6},"redirectResponse":{"url":"http://player.vimeo.com/video/336812660","status":307,"statusText":"Internal Redirect","headers":{},"mimeType":"","requestHeaders":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9"},"connectionReused":false,"connectionId":0,"remoteIPAddress":"","remotePort":0,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":47786.069794,"sendStart":0.066,"sendEnd":0.066,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.066},"responseTime":1600197631818.549,"protocol":"http/1.1","securityState":"insecure"},"type":"Document","frameId":"A0D1CEFE4B294AB844A8912CA96784F9","hasUserGesture":false}}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"51B3229F5358F49D44871ADE7185528C","blockedCookies":[],"headers":{"Location":"https://player.vimeo.com/video/336812660","Non-Authoritative-Reason":"HSTS"},"headersText":"HTTP/1.1 307 Internal Redirect\r\nLocation: https://player.vimeo.com/video/336812660\r\nNon-Authoritative-Reason: HSTS\r\n\r\n"}}, + {"method":"Page.lifecycleEvent","params":{"frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A","loaderId":"DA13668C4781FCB2BF6F3AB0F3313AB7","name":"firstPaint","timestamp":47786.179669}}, + {"method":"Page.lifecycleEvent","params":{"frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A","loaderId":"DA13668C4781FCB2BF6F3AB0F3313AB7","name":"firstContentfulPaint","timestamp":47786.179669}}, + {"method":"Page.lifecycleEvent","params":{"frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A","loaderId":"DA13668C4781FCB2BF6F3AB0F3313AB7","name":"firstMeaningfulPaintCandidate","timestamp":47786.179669}}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"7409A683C44F8397F7103BD7E03CB6C9","associatedCookies":[],"headers":{":method":"GET",":authority":"www.youtube.com",":scheme":"https",":path":"/embed/tgbNymZ7vqY","upgrade-insecure-requests":"1","user-agent":"Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4143.7 Mobile Safari/537.36 Chrome-Lighthouse","accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","sec-fetch-site":"cross-site","sec-fetch-mode":"navigate","sec-fetch-dest":"iframe","referer":"http://localhost:8686/yt-embed.html","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9"}}}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"51B3229F5358F49D44871ADE7185528C","associatedCookies":[],"headers":{"Host":"player.vimeo.com","Connection":"keep-alive","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4143.7 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Sec-Fetch-Site":"cross-site","Sec-Fetch-Mode":"navigate","Sec-Fetch-Dest":"iframe","Referer":"http://localhost:8686/yt-embed.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"}}}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"51B3229F5358F49D44871ADE7185528C","blockedCookies":[],"headers":{"Connection":"keep-alive","Content-Length":"5372","Server":"nginx","Content-Type":"text/html; charset=UTF-8","X-Xss-Protection":"1; mode=block","Content-Security-Policy":"script-src 'self' 'unsafe-inline' blob: resource: https://f.vimeocdn.com https://vimeo.com https://js-agent.newrelic.com https://imasdk.googleapis.com/ https://adservice.google.com/ https://s0.2mdn.net/instream/video/ https://bam.nr-data.net https://src.litix.io https://www.gstatic.com https://cdn.streamroot.io https://f.vimeocdn.com; style-src 'self' 'unsafe-inline' https://f.vimeocdn.com https://f.vimeocdn.com; connect-src 'self' ws: wss: https://vimeo.com https://vimeo.dev https://api.vimeo.com https://api.vimeo.dev https://*.ci.vimeows.com https://csi.gstatic.com https://fresnel.vimeocdn.com https://fresnel-player-dev.vimeows.com https://player-telemetry.vimeo.com https://*.akamaized.net https://*.akamaized-staging.net https://*.vimeocdn.com https://netflux.cloud.vimeo.com https://lic.staging.drmtoday.com https://lic.drmtoday.com https://wv.service.expressplay.com https://fp.service.expressplay.com https://pr.service.expressplay.com https://sentry.io https://storage.googleapis.com https://bam.nr-data.net https://live-api.cloud.vimeo.com https://live-api-dev.cloud.vimeo.com https://*.litix.io/ https://collector.vhx.tv https://collector.vhxstaging.com https://backend.dna-delivery.com https://mimir.cloud.vimeo.com; media-src 'self' blob: https://*.vimeocdn.com https://*.akamaized.net https://*.akamaized-staging.net https://*.gvt1.com https://live-api.cloud.vimeo.com https://live-api-dev.cloud.vimeo.com; object-src 'self' https://*.vimeocdn.com https://*.akamaized.net https://*.akamaized-staging.net; default-src 'none'; img-src 'self' data: https://i.vimeocdn.com https://secure-b.vimeocdn.com https://f.vimeocdn.com https://vimeo.com https://secure.gravatar.com https://i0.wp.com https://i1.wp.com https://i2.wp.com https://pagead2.googlesyndication.com https://player.vimeo.com https://*.ci.vimeows.com https://f.vimeocdn.com; frame-src 'self' https://imasdk.googleapis.com/ https://f.vimeocdn.com","X-Content-Type-Options":"nosniff","Content-Encoding":"gzip","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Link":"; rel=preconnect; crossorigin\n; rel=preconnect; crossorigin\n; rel=preconnect; crossorigin","P3p":"CP=\"This is not a P3P policy! See https://vimeo.com/privacy\"","Expires":"Tue, 15 Sep 2020 19:25:46 GMT","Via":"1.1 varnish\n1.1 varnish","Cache-Control":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","X-Varnish-Cache":"1","X-VServer":"infra-playproxy-a-6","X-Vimeo-DC":"ge","Accept-Ranges":"bytes","Date":"Tue, 15 Sep 2020 19:20:32 GMT","Age":"0","X-Served-By":"cache-mdw17330-MDW","X-Cache":"MISS","X-Cache-Hits":"0","X-Timer":"S1600197632.973719,VS0,VE35","Vary":"Accept-Encoding","X-Player-Backend":"p"},"headersText":"HTTP/1.1 200 OK\r\nConnection: keep-alive\r\nContent-Length: 5372\r\nServer: nginx\r\nContent-Type: text/html; charset=UTF-8\r\nX-Xss-Protection: 1; mode=block\r\nContent-Security-Policy: script-src 'self' 'unsafe-inline' blob: resource: https://f.vimeocdn.com https://vimeo.com https://js-agent.newrelic.com https://imasdk.googleapis.com/ https://adservice.google.com/ https://s0.2mdn.net/instream/video/ https://bam.nr-data.net https://src.litix.io https://www.gstatic.com https://cdn.streamroot.io https://f.vimeocdn.com; style-src 'self' 'unsafe-inline' https://f.vimeocdn.com https://f.vimeocdn.com; connect-src 'self' ws: wss: https://vimeo.com https://vimeo.dev https://api.vimeo.com https://api.vimeo.dev https://*.ci.vimeows.com https://csi.gstatic.com https://fresnel.vimeocdn.com https://fresnel-player-dev.vimeows.com https://player-telemetry.vimeo.com https://*.akamaized.net https://*.akamaized-staging.net https://*.vimeocdn.com https://netflux.cloud.vimeo.com https://lic.staging.drmtoday.com https://lic.drmtoday.com https://wv.service.expressplay.com https://fp.service.expressplay.com https://pr.service.expressplay.com https://sentry.io https://storage.googleapis.com https://bam.nr-data.net https://live-api.cloud.vimeo.com https://live-api-dev.cloud.vimeo.com https://*.litix.io/ https://collector.vhx.tv https://collector.vhxstaging.com https://backend.dna-delivery.com https://mimir.cloud.vimeo.com; media-src 'self' blob: https://*.vimeocdn.com https://*.akamaized.net https://*.akamaized-staging.net https://*.gvt1.com https://live-api.cloud.vimeo.com https://live-api-dev.cloud.vimeo.com; object-src 'self' https://*.vimeocdn.com https://*.akamaized.net https://*.akamaized-staging.net; default-src 'none'; img-src 'self' data: https://i.vimeocdn.com https://secure-b.vimeocdn.com https://f.vimeocdn.com https://vimeo.com https://secure.gravatar.com https://i0.wp.com https://i1.wp.com https://i2.wp.com https://pagead2.googlesyndication.com https://player.vimeo.com https://*.ci.vimeows.com https://f.vimeocdn.com; frame-src 'self' https://imasdk.googleapis.com/ https://f.vimeocdn.com\r\nX-Content-Type-Options: nosniff\r\nContent-Encoding: gzip\r\nStrict-Transport-Security: max-age=31536000; includeSubDomains; preload\r\nLink: ; rel=preconnect; crossorigin\r\nLink: ; rel=preconnect; crossorigin\r\nLink: ; rel=preconnect; crossorigin\r\nP3p: CP=\"This is not a P3P policy! See https://vimeo.com/privacy\"\r\nExpires: Tue, 15 Sep 2020 19:25:46 GMT\r\nVia: 1.1 varnish\r\nCache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0\r\nX-Varnish-Cache: 1\r\nX-VServer: infra-playproxy-a-6\r\nX-Vimeo-DC: ge\r\nAccept-Ranges: bytes\r\nDate: Tue, 15 Sep 2020 19:20:32 GMT\r\nVia: 1.1 varnish\r\nAge: 0\r\nX-Served-By: cache-mdw17330-MDW\r\nX-Cache: MISS\r\nX-Cache-Hits: 0\r\nX-Timer: S1600197632.973719,VS0,VE35\r\nVary: Accept-Encoding\r\nX-Player-Backend: p\r\n\r\n"}}, + {"method":"Network.responseReceived","params":{"requestId":"51B3229F5358F49D44871ADE7185528C","loaderId":"51B3229F5358F49D44871ADE7185528C","timestamp":47786.297169,"type":"Document","response":{"url":"https://player.vimeo.com/video/336812660","status":200,"statusText":"OK","headers":{"Content-Length":"5372","Content-Type":"text/html; charset=UTF-8","Content-Encoding":"gzip","Link":"; rel=preconnect; crossorigin\n; rel=preconnect; crossorigin\n; rel=preconnect; crossorigin","Cache-Control":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","Accept-Ranges":"bytes"},"mimeType":"text/html","requestHeaders":{"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Accept-Encoding":"gzip, deflate, br"},"connectionReused":false,"connectionId":47,"remoteIPAddress":"151.101.0.217","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":2928,"timing":{"requestTime":47786.074447,"dnsStart":0.189,"dnsEnd":54.756,"connectStart":54.756,"connectEnd":149.581,"sslStart":82.328,"sslEnd":149.576,"sendStart":149.64,"sendEnd":149.694,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":217.141},"responseTime":1600197632040.066,"protocol":"http/1.1","securityState":"secure"},"frameId":"A0D1CEFE4B294AB844A8912CA96784F9"}}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"7409A683C44F8397F7103BD7E03CB6C9","blockedCookies":[{"blockedReasons":["SameSiteUnspecifiedTreatedAsLax"],"cookieLine":"GPS=1; path=/; domain=.youtube.com; expires=Tue, 15-Sep-2020 19:50:31 GMT","cookie":{"name":"GPS","value":"1","domain":".youtube.com","path":"/","expires":1600199431.05266,"size":4,"httpOnly":false,"secure":false,"session":false,"priority":"Medium"}}],"headers":{"status":"200","strict-transport-security":"max-age=31536000","p3p":"CP=\"This is not a P3P policy! See http://support.google.com/accounts/answer/151657?hl=en for more info.\"","cache-control":"no-cache","content-type":"text/html; charset=utf-8","expires":"Tue, 27 Apr 1971 19:44:06 GMT","x-content-type-options":"nosniff","content-encoding":"br","content-length":"9925","date":"Tue, 15 Sep 2020 19:20:32 GMT","server":"YouTube Frontend Proxy","x-xss-protection":"0","set-cookie":"VISITOR_INFO1_LIVE=FQVG-TcC8XQ; path=/; domain=.youtube.com; secure; expires=Sun, 14-Mar-2021 19:20:31 GMT; httponly; samesite=None\nGPS=1; path=/; domain=.youtube.com; expires=Tue, 15-Sep-2020 19:50:31 GMT\nVISITOR_INFO1_LIVE=FQVG-TcC8XQ; path=/; domain=.youtube.com; secure; expires=Sun, 14-Mar-2021 19:20:31 GMT; httponly; samesite=None\nYSC=82k-4YzMCUo; path=/; domain=.youtube.com; secure; httponly; samesite=None","alt-svc":"h3-29=\":443\"; ma=2592000,h3-27=\":443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-T050=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""}}}, + {"method":"Network.responseReceived","params":{"requestId":"7409A683C44F8397F7103BD7E03CB6C9","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","timestamp":47786.305093,"type":"Document","response":{"url":"https://www.youtube.com/embed/tgbNymZ7vqY","status":200,"statusText":"","headers":{"status":"200","cache-control":"no-cache","content-type":"text/html; charset=utf-8","content-encoding":"br","content-length":"9925"},"mimeType":"text/html","requestHeaders":{"accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","accept-encoding":"gzip, deflate, br"},"connectionReused":false,"connectionId":46,"remoteIPAddress":"172.217.1.46","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":760,"timing":{"requestTime":47786.066226,"dnsStart":0.163,"dnsEnd":36.584,"connectStart":36.584,"connectEnd":127.561,"sslStart":90.384,"sslEnd":127.557,"sendStart":127.682,"sendEnd":127.8,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":237.647},"responseTime":1600197632052.458,"protocol":"h2","securityState":"secure"},"frameId":"D215705AC29C284D9BB2459B7020E798"}}, + {"method":"Page.frameStoppedLoading","params":{"frameId":"A0D1CEFE4B294AB844A8912CA96784F9"}}, + {"method":"Page.frameDetached","params":{"frameId":"A0D1CEFE4B294AB844A8912CA96784F9"}}, + {"method":"Page.frameStoppedLoading","params":{"frameId":"D215705AC29C284D9BB2459B7020E798"}}, + {"method":"Page.frameDetached","params":{"frameId":"D215705AC29C284D9BB2459B7020E798"}}, + {"method":"Network.dataReceived","params":{"requestId":"51B3229F5358F49D44871ADE7185528C","timestamp":47786.316371,"dataLength":16850,"encodedDataLength":0},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.loadingFinished","params":{"requestId":"51B3229F5358F49D44871ADE7185528C","timestamp":47786.292956,"encodedDataLength":8300,"shouldReportCorbBlocking":false},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"7409A683C44F8397F7103BD7E03CB6C9","timestamp":47786.320966,"dataLength":29781,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.loadingFinished","params":{"requestId":"7409A683C44F8397F7103BD7E03CB6C9","timestamp":47786.30509,"encodedDataLength":10703,"shouldReportCorbBlocking":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56010.2","loaderId":"51B3229F5358F49D44871ADE7185528C","documentURL":"https://player.vimeo.com/video/336812660","request":{"url":"https://i.vimeocdn.com/video/784397921.jpg?mw=80&q=85","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.321019,"wallTime":1600197632.06971,"initiator":{"type":"parser","url":"https://player.vimeo.com/video/336812660","lineNumber":0},"type":"Image","frameId":"A0D1CEFE4B294AB844A8912CA96784F9","hasUserGesture":false},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56010.3","loaderId":"51B3229F5358F49D44871ADE7185528C","documentURL":"https://player.vimeo.com/video/336812660","request":{"url":"https://f.vimeocdn.com/p/3.22.3/js/player.js","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.323442,"wallTime":1600197632.072133,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"7","url":"https://player.vimeo.com/video/336812660","lineNumber":0,"columnNumber":15662}]}},"type":"Script","frameId":"A0D1CEFE4B294AB844A8912CA96784F9","hasUserGesture":false},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56010.4","loaderId":"51B3229F5358F49D44871ADE7185528C","documentURL":"https://player.vimeo.com/video/336812660","request":{"url":"https://f.vimeocdn.com/p/3.22.3/css/player.css","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.323908,"wallTime":1600197632.072599,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"7","url":"https://player.vimeo.com/video/336812660","lineNumber":0,"columnNumber":16230}]}},"type":"Stylesheet","frameId":"A0D1CEFE4B294AB844A8912CA96784F9","hasUserGesture":false},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56010.5","loaderId":"51B3229F5358F49D44871ADE7185528C","documentURL":"https://player.vimeo.com/video/336812660","request":{"url":"https://f.vimeocdn.com/js_opt/modules/utils/vuid.min.js","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.324141,"wallTime":1600197632.072832,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"7","url":"https://player.vimeo.com/video/336812660","lineNumber":0,"columnNumber":16741}]}},"type":"Script","frameId":"A0D1CEFE4B294AB844A8912CA96784F9","hasUserGesture":false},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56007.2","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","documentURL":"https://www.youtube.com/embed/tgbNymZ7vqY","request":{"url":"https://www.youtube.com/s/player/e0d83c30/www-player.css","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.323617,"wallTime":1600197632.072308,"initiator":{"type":"parser","url":"https://www.youtube.com/embed/tgbNymZ7vqY","lineNumber":1},"type":"Stylesheet","frameId":"D215705AC29C284D9BB2459B7020E798","hasUserGesture":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56007.3","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","documentURL":"https://www.youtube.com/embed/tgbNymZ7vqY","request":{"url":"https://www.youtube.com/s/player/e0d83c30/www-embed-player.vflset/www-embed-player.js","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.323874,"wallTime":1600197632.072565,"initiator":{"type":"parser","url":"https://www.youtube.com/embed/tgbNymZ7vqY","lineNumber":2},"type":"Script","frameId":"D215705AC29C284D9BB2459B7020E798","hasUserGesture":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56007.4","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","documentURL":"https://www.youtube.com/embed/tgbNymZ7vqY","request":{"url":"https://www.youtube.com/s/player/e0d83c30/player_ias.vflset/en_US/base.js","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.324034,"wallTime":1600197632.072727,"initiator":{"type":"parser","url":"https://www.youtube.com/embed/tgbNymZ7vqY","lineNumber":3},"type":"Script","frameId":"D215705AC29C284D9BB2459B7020E798","hasUserGesture":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56007.5","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","documentURL":"https://www.youtube.com/embed/tgbNymZ7vqY","request":{"url":"https://www.youtube.com/yts/jsbin/fetch-polyfill-vfl6MZH8P/fetch-polyfill.js","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.324204,"wallTime":1600197632.072896,"initiator":{"type":"parser","url":"https://www.youtube.com/embed/tgbNymZ7vqY","lineNumber":4},"type":"Script","frameId":"D215705AC29C284D9BB2459B7020E798","hasUserGesture":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.resourceChangedPriority","params":{"requestId":"56010.2","newPriority":"High","timestamp":47786.325661},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"56007.2","associatedCookies":[{"blockedReasons":[],"cookie":{"name":"VISITOR_INFO1_LIVE","value":"FQVG-TcC8XQ","domain":".youtube.com","path":"/","expires":1615749631.052688,"size":29,"httpOnly":true,"secure":true,"session":false,"sameSite":"None","priority":"Medium"}},{"blockedReasons":[],"cookie":{"name":"YSC","value":"82k-4YzMCUo","domain":".youtube.com","path":"/","expires":-1,"size":14,"httpOnly":true,"secure":true,"session":true,"sameSite":"None","priority":"Medium"}}],"headers":{":method":"GET",":authority":"www.youtube.com",":scheme":"https",":path":"/s/player/e0d83c30/www-player.css","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36","accept":"text/css,*/*;q=0.1","sec-fetch-site":"same-origin","sec-fetch-mode":"no-cors","sec-fetch-dest":"style","referer":"https://www.youtube.com/embed/tgbNymZ7vqY","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","cookie":"VISITOR_INFO1_LIVE=FQVG-TcC8XQ; YSC=82k-4YzMCUo"}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"56007.3","associatedCookies":[{"blockedReasons":[],"cookie":{"name":"VISITOR_INFO1_LIVE","value":"FQVG-TcC8XQ","domain":".youtube.com","path":"/","expires":1615749631.052688,"size":29,"httpOnly":true,"secure":true,"session":false,"sameSite":"None","priority":"Medium"}},{"blockedReasons":[],"cookie":{"name":"YSC","value":"82k-4YzMCUo","domain":".youtube.com","path":"/","expires":-1,"size":14,"httpOnly":true,"secure":true,"session":true,"sameSite":"None","priority":"Medium"}}],"headers":{":method":"GET",":authority":"www.youtube.com",":scheme":"https",":path":"/s/player/e0d83c30/www-embed-player.vflset/www-embed-player.js","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36","accept":"*/*","sec-fetch-site":"same-origin","sec-fetch-mode":"no-cors","sec-fetch-dest":"script","referer":"https://www.youtube.com/embed/tgbNymZ7vqY","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","cookie":"VISITOR_INFO1_LIVE=FQVG-TcC8XQ; YSC=82k-4YzMCUo"}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"56007.4","associatedCookies":[{"blockedReasons":[],"cookie":{"name":"VISITOR_INFO1_LIVE","value":"FQVG-TcC8XQ","domain":".youtube.com","path":"/","expires":1615749631.052688,"size":29,"httpOnly":true,"secure":true,"session":false,"sameSite":"None","priority":"Medium"}},{"blockedReasons":[],"cookie":{"name":"YSC","value":"82k-4YzMCUo","domain":".youtube.com","path":"/","expires":-1,"size":14,"httpOnly":true,"secure":true,"session":true,"sameSite":"None","priority":"Medium"}}],"headers":{":method":"GET",":authority":"www.youtube.com",":scheme":"https",":path":"/s/player/e0d83c30/player_ias.vflset/en_US/base.js","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36","accept":"*/*","sec-fetch-site":"same-origin","sec-fetch-mode":"no-cors","sec-fetch-dest":"script","referer":"https://www.youtube.com/embed/tgbNymZ7vqY","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","cookie":"VISITOR_INFO1_LIVE=FQVG-TcC8XQ; YSC=82k-4YzMCUo"}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"56007.5","associatedCookies":[{"blockedReasons":[],"cookie":{"name":"VISITOR_INFO1_LIVE","value":"FQVG-TcC8XQ","domain":".youtube.com","path":"/","expires":1615749631.052688,"size":29,"httpOnly":true,"secure":true,"session":false,"sameSite":"None","priority":"Medium"}},{"blockedReasons":[],"cookie":{"name":"YSC","value":"82k-4YzMCUo","domain":".youtube.com","path":"/","expires":-1,"size":14,"httpOnly":true,"secure":true,"session":true,"sameSite":"None","priority":"Medium"}}],"headers":{":method":"GET",":authority":"www.youtube.com",":scheme":"https",":path":"/yts/jsbin/fetch-polyfill-vfl6MZH8P/fetch-polyfill.js","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36","accept":"*/*","sec-fetch-site":"same-origin","sec-fetch-mode":"no-cors","sec-fetch-dest":"script","referer":"https://www.youtube.com/embed/tgbNymZ7vqY","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","cookie":"VISITOR_INFO1_LIVE=FQVG-TcC8XQ; YSC=82k-4YzMCUo"}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"56007.4","blockedCookies":[],"headers":{"status":"200","accept-ranges":"bytes","vary":"Accept-Encoding, Origin","content-encoding":"gzip","content-type":"text/javascript","content-length":"459175","date":"Mon, 14 Sep 2020 17:25:18 GMT","expires":"Tue, 14 Sep 2021 17:25:18 GMT","last-modified":"Mon, 14 Sep 2020 00:19:34 GMT","x-content-type-options":"nosniff","server":"sffe","x-xss-protection":"0","cache-control":"public, max-age=31536000","age":"93314","alt-svc":"h3-29=\":443\"; ma=2592000,h3-27=\":443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-T050=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceived","params":{"requestId":"56007.4","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","timestamp":47786.3485,"type":"Script","response":{"url":"https://www.youtube.com/s/player/e0d83c30/player_ias.vflset/en_US/base.js","status":200,"statusText":"","headers":{"content-encoding":"gzip","last-modified":"Mon, 14 Sep 2020 00:19:34 GMT","content-type":"text/javascript","status":"200","cache-control":"public, max-age=31536000","accept-ranges":"bytes","content-length":"459175"},"mimeType":"text/javascript","connectionReused":true,"connectionId":46,"remoteIPAddress":"172.217.1.46","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":167,"timing":{"requestTime":47786.326268,"sendStart":1.2,"sendEnd":1.593,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":21.507},"responseTime":1600197632096.377,"protocol":"h2","securityState":"secure"},"frameId":"D215705AC29C284D9BB2459B7020E798"},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.350078,"dataLength":8415,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.351533,"dataLength":9954,"encodedDataLength":5584},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.352671,"dataLength":8206,"encodedDataLength":4188},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.362277,"dataLength":65536,"encodedDataLength":2792},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.36557,"dataLength":10513,"encodedDataLength":27202},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.374737,"dataLength":62570,"encodedDataLength":22336},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.381266,"dataLength":9686,"encodedDataLength":3470},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.384741,"dataLength":31661,"encodedDataLength":11168},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.385853,"dataLength":11259,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.391426,"dataLength":65536,"encodedDataLength":4188},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"56010.2","associatedCookies":[],"headers":{":method":"GET",":authority":"i.vimeocdn.com",":scheme":"https",":path":"/video/784397921.jpg?mw=80&q=85","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36","accept":"image/avif,image/webp,image/apng,image/*,*/*;q=0.8","sec-fetch-site":"cross-site","sec-fetch-mode":"no-cors","sec-fetch-dest":"image","referer":"https://player.vimeo.com/video/336812660","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9"}},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.393052,"dataLength":51807,"encodedDataLength":42558},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"56010.4","associatedCookies":[],"headers":{":method":"GET",":authority":"f.vimeocdn.com",":scheme":"https",":path":"/p/3.22.3/css/player.css","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36","accept":"text/css,*/*;q=0.1","sec-fetch-site":"cross-site","sec-fetch-mode":"no-cors","sec-fetch-dest":"style","referer":"https://player.vimeo.com/video/336812660","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9"}},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"56010.3","associatedCookies":[],"headers":{":method":"GET",":authority":"f.vimeocdn.com",":scheme":"https",":path":"/p/3.22.3/js/player.js","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36","accept":"*/*","sec-fetch-site":"cross-site","sec-fetch-mode":"no-cors","sec-fetch-dest":"script","referer":"https://player.vimeo.com/video/336812660","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9"}},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"56010.5","associatedCookies":[],"headers":{":method":"GET",":authority":"f.vimeocdn.com",":scheme":"https",":path":"/js_opt/modules/utils/vuid.min.js","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36","accept":"*/*","sec-fetch-site":"cross-site","sec-fetch-mode":"no-cors","sec-fetch-dest":"script","referer":"https://player.vimeo.com/video/336812660","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9"}},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.397928,"dataLength":65536,"encodedDataLength":35578},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.399506,"dataLength":30600,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.401899,"dataLength":68914,"encodedDataLength":24410},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.405198,"dataLength":24095,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.405672,"dataLength":17208,"encodedDataLength":13242},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.405973,"dataLength":19424,"encodedDataLength":5584},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.406896,"dataLength":18344,"encodedDataLength":5584},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.410366,"dataLength":49991,"encodedDataLength":16752},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.414022,"dataLength":65536,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"56007.5","blockedCookies":[],"headers":{"status":"200","accept-ranges":"bytes","vary":"Accept-Encoding, Origin","content-encoding":"gzip","content-type":"text/javascript","timing-allow-origin":"https://www.youtube.com","content-length":"3027","date":"Mon, 14 Sep 2020 08:57:57 GMT","expires":"Tue, 22 Sep 2020 08:57:57 GMT","last-modified":"Mon, 14 Sep 2020 02:05:43 GMT","x-content-type-options":"nosniff","server":"sffe","x-xss-protection":"0","cache-control":"public, max-age=691200","age":"123755","alt-svc":"h3-29=\":443\"; ma=2592000,h3-27=\":443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-T050=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.415332,"dataLength":34053,"encodedDataLength":32786},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceived","params":{"requestId":"56007.5","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","timestamp":47786.415613,"type":"Script","response":{"url":"https://www.youtube.com/yts/jsbin/fetch-polyfill-vfl6MZH8P/fetch-polyfill.js","status":200,"statusText":"","headers":{"content-encoding":"gzip","status":"200","content-length":"3027","last-modified":"Mon, 14 Sep 2020 02:05:43 GMT","content-type":"text/javascript","cache-control":"public, max-age=691200","accept-ranges":"bytes"},"mimeType":"text/javascript","connectionReused":true,"connectionId":46,"remoteIPAddress":"172.217.1.46","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":155,"timing":{"requestTime":47786.326585,"sendStart":0.945,"sendEnd":1.277,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":88.147},"responseTime":1600197632163.337,"protocol":"h2","securityState":"secure"},"frameId":"D215705AC29C284D9BB2459B7020E798"},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.5","timestamp":47786.415694,"dataLength":8543,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.5","timestamp":47786.41597,"dataLength":0,"encodedDataLength":3036},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.loadingFinished","params":{"requestId":"56007.5","timestamp":47786.415028,"encodedDataLength":3191,"shouldReportCorbBlocking":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.416979,"dataLength":65536,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"56010.2","blockedCookies":[],"headers":{"status":"200","content-type":"image/jpeg","etag":"ac7b4a8d2bfa6d5c0a78a039202e768e","viewmaster-server":"viewmaster-us-central1-jj73","cache-control":"public, max-age=2592000","via":"vvarnish\n1.1 varnish\n1.1 varnish","x-backend-server":"varnish","access-control-allow-origin":"*","accept-ranges":"bytes","date":"Tue, 15 Sep 2020 19:20:32 GMT","age":"1069713","x-served-by":"cache-dfw18666-DFW, cache-pwk4931-PWK","x-cache":"miss, HIT, HIT","x-cache-hits":"178, 1","x-timer":"S1600197632.133380,VS0,VE1","content-length":"777"}},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.418198,"dataLength":90694,"encodedDataLength":39048},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceived","params":{"requestId":"56010.2","loaderId":"51B3229F5358F49D44871ADE7185528C","timestamp":47786.418839,"type":"Image","response":{"url":"https://i.vimeocdn.com/video/784397921.jpg?mw=80&q=85","status":200,"statusText":"","headers":{"status":"200","content-length":"777","etag":"ac7b4a8d2bfa6d5c0a78a039202e768e","content-type":"image/jpeg","cache-control":"public, max-age=2592000","accept-ranges":"bytes"},"mimeType":"image/jpeg","connectionReused":false,"connectionId":112,"remoteIPAddress":"199.232.78.109","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":289,"timing":{"requestTime":47786.32147,"dnsStart":0.163,"dnsEnd":27.853,"connectStart":27.853,"connectEnd":70.426,"sslStart":45.436,"sslEnd":70.422,"sendStart":70.706,"sendEnd":70.787,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":95.714},"responseTime":1600197632165.812,"protocol":"h2","securityState":"secure"},"frameId":"A0D1CEFE4B294AB844A8912CA96784F9"},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"56010.2","timestamp":47786.418947,"dataLength":777,"encodedDataLength":0},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.loadingFinished","params":{"requestId":"56010.2","timestamp":47786.417381,"encodedDataLength":1075,"shouldReportCorbBlocking":false},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.420784,"dataLength":152922,"encodedDataLength":50934},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"56010.3","blockedCookies":[],"headers":{"status":"200","x-guploader-uploadid":"ABg5-UxFpHkqirvxcbyELILj37EmO4QR6bozrjgSenfPt8vXSXw8TRPqmW0-3uBXqY6C2HaqOJn1LriB97pFtnfCo5U","last-modified":"Fri, 11 Sep 2020 14:27:19 GMT","etag":"\"e9f3d3344e7dc70dcfb4aacd4a25e00e\"","content-type":"application/javascript","content-encoding":"br","server":"UploadServer","via":"1.1 varnish\n1.1 varnish","accept-ranges":"bytes","date":"Tue, 15 Sep 2020 19:20:32 GMT","age":"362791","x-served-by":"cache-bwi5142-BWI, cache-mdw17373-MDW","x-cache":"MISS, HIT","x-cache-hits":"1, 165984","x-timer":"S1600197632.137128,VS0,VE0","vary":"Accept-Encoding","cache-control":"max-age=1209600","content-length":"145320"}},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"56010.4","blockedCookies":[],"headers":{"status":"200","x-guploader-uploadid":"ABg5-Ux5HLFhTx7Z5xQEUMn3hEhE9XbNcRrUMuysF0bi1JoFtdYRP2SF7lzdd6HlpMDH6TqjymVQQhXixjFWFcdxFrY","last-modified":"Fri, 11 Sep 2020 14:27:19 GMT","etag":"\"b9e9f7e3eb53e1d8a1b8450b0ece5935\"","content-type":"text/css","content-encoding":"br","server":"UploadServer","via":"1.1 varnish\n1.1 varnish","accept-ranges":"bytes","date":"Tue, 15 Sep 2020 19:20:32 GMT","age":"362791","x-served-by":"cache-bwi5146-BWI, cache-mdw17373-MDW","x-cache":"HIT, HIT","x-cache-hits":"1, 163361","x-timer":"S1600197632.137162,VS0,VE0","vary":"Accept-Encoding","cache-control":"max-age=1209600","access-control-allow-origin":"*","content-length":"17398"}},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.responseReceived","params":{"requestId":"56010.4","loaderId":"51B3229F5358F49D44871ADE7185528C","timestamp":47786.42314,"type":"Stylesheet","response":{"url":"https://f.vimeocdn.com/p/3.22.3/css/player.css","status":200,"statusText":"","headers":{"content-encoding":"br","status":"200","content-length":"17398","last-modified":"Fri, 11 Sep 2020 14:27:19 GMT","etag":"\"b9e9f7e3eb53e1d8a1b8450b0ece5935\"","content-type":"text/css","cache-control":"max-age=1209600","accept-ranges":"bytes"},"mimeType":"text/css","connectionReused":false,"connectionId":109,"remoteIPAddress":"151.101.186.109","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":217,"timing":{"requestTime":47786.324528,"dnsStart":0,"dnsEnd":24.443,"connectStart":24.443,"connectEnd":70.258,"sslStart":42.505,"sslEnd":70.254,"sendStart":70.923,"sendEnd":71.11,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":97.784},"responseTime":1600197632170.908,"protocol":"h2","securityState":"secure"},"frameId":"A0D1CEFE4B294AB844A8912CA96784F9"},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"56010.4","timestamp":47786.425007,"dataLength":65536,"encodedDataLength":0},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"56010.4","timestamp":47786.425177,"dataLength":1119,"encodedDataLength":9009},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.425485,"dataLength":10580,"encodedDataLength":65572},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.425969,"dataLength":201007,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.430182,"dataLength":17434,"encodedDataLength":5584},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.43614,"dataLength":65536,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"56007.3","blockedCookies":[],"headers":{"status":"200","accept-ranges":"bytes","vary":"Accept-Encoding, Origin","content-encoding":"gzip","content-type":"text/javascript","content-length":"50124","date":"Mon, 14 Sep 2020 17:25:18 GMT","expires":"Tue, 14 Sep 2021 17:25:18 GMT","last-modified":"Mon, 14 Sep 2020 00:19:34 GMT","x-content-type-options":"nosniff","server":"sffe","x-xss-protection":"0","cache-control":"public, max-age=31536000","age":"93314","alt-svc":"h3-29=\":443\"; ma=2592000,h3-27=\":443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-T050=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceived","params":{"requestId":"56007.3","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","timestamp":47786.436985,"type":"Script","response":{"url":"https://www.youtube.com/s/player/e0d83c30/www-embed-player.vflset/www-embed-player.js","status":200,"statusText":"","headers":{"content-encoding":"gzip","last-modified":"Mon, 14 Sep 2020 00:19:34 GMT","content-type":"text/javascript","status":"200","cache-control":"public, max-age=31536000","accept-ranges":"bytes","content-length":"50124"},"mimeType":"text/javascript","connectionReused":true,"connectionId":46,"remoteIPAddress":"172.217.1.46","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":53,"timing":{"requestTime":47786.325979,"sendStart":1.3,"sendEnd":1.88,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":110.272},"responseTime":1600197632184.859,"protocol":"h2","securityState":"secure"},"frameId":"D215705AC29C284D9BB2459B7020E798"},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.3","timestamp":47786.437723,"dataLength":65536,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.4","timestamp":47786.437969,"dataLength":90250,"encodedDataLength":40876},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.3","timestamp":47786.439955,"dataLength":46544,"encodedDataLength":39766},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"56007.2","blockedCookies":[],"headers":{"status":"200","accept-ranges":"bytes","vary":"Accept-Encoding, Origin","content-encoding":"gzip","content-type":"text/css","content-length":"46698","date":"Mon, 14 Sep 2020 17:28:40 GMT","expires":"Tue, 14 Sep 2021 17:28:40 GMT","last-modified":"Mon, 14 Sep 2020 00:19:34 GMT","x-content-type-options":"nosniff","server":"sffe","x-xss-protection":"0","cache-control":"public, max-age=31536000","age":"93112","alt-svc":"h3-29=\":443\"; ma=2592000,h3-27=\":443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-T050=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.3","timestamp":47786.441465,"dataLength":29124,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceived","params":{"requestId":"56007.2","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","timestamp":47786.442002,"type":"Stylesheet","response":{"url":"https://www.youtube.com/s/player/e0d83c30/www-player.css","status":200,"statusText":"","headers":{"content-encoding":"gzip","last-modified":"Mon, 14 Sep 2020 00:19:34 GMT","content-type":"text/css","status":"200","cache-control":"public, max-age=31536000","accept-ranges":"bytes","content-length":"46698"},"mimeType":"text/css","connectionReused":true,"connectionId":46,"remoteIPAddress":"172.217.1.46","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":88,"timing":{"requestTime":47786.324095,"sendStart":2.597,"sendEnd":3.469,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":117.126},"responseTime":1600197632189.804,"protocol":"h2","securityState":"secure"},"frameId":"D215705AC29C284D9BB2459B7020E798"},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56010.4","timestamp":47786.44209,"dataLength":55417,"encodedDataLength":0},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.3","timestamp":47786.443003,"dataLength":0,"encodedDataLength":10394},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.loadingFinished","params":{"requestId":"56007.3","timestamp":47786.440933,"encodedDataLength":50213,"shouldReportCorbBlocking":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.2","timestamp":47786.443066,"dataLength":65536,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.2","timestamp":47786.44318,"dataLength":65536,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56010.4","timestamp":47786.443418,"dataLength":40710,"encodedDataLength":5484},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.2","timestamp":47786.443762,"dataLength":65536,"encodedDataLength":46725},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.2","timestamp":47786.443876,"dataLength":20456,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.2","timestamp":47786.444107,"dataLength":65536,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.2","timestamp":47786.444214,"dataLength":37144,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56010.4","timestamp":47786.447429,"dataLength":0,"encodedDataLength":2923},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.loadingFinished","params":{"requestId":"56010.4","timestamp":47786.4434,"encodedDataLength":17633,"shouldReportCorbBlocking":false},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.loadingFinished","params":{"requestId":"56007.2","timestamp":47786.444266,"encodedDataLength":46813,"shouldReportCorbBlocking":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceived","params":{"requestId":"56010.3","loaderId":"51B3229F5358F49D44871ADE7185528C","timestamp":47786.449337,"type":"Script","response":{"url":"https://f.vimeocdn.com/p/3.22.3/js/player.js","status":200,"statusText":"","headers":{"content-encoding":"br","status":"200","content-length":"145320","last-modified":"Fri, 11 Sep 2020 14:27:19 GMT","etag":"\"e9f3d3344e7dc70dcfb4aacd4a25e00e\"","content-type":"application/javascript","cache-control":"max-age=1209600","accept-ranges":"bytes"},"mimeType":"application/javascript","connectionReused":true,"connectionId":109,"remoteIPAddress":"151.101.186.109","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":371,"timing":{"requestTime":47786.323843,"sendStart":71.657,"sendEnd":71.796,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":98.192},"responseTime":1600197632170.613,"protocol":"h2","securityState":"secure"},"frameId":"A0D1CEFE4B294AB844A8912CA96784F9"},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"56010.3","timestamp":47786.449422,"dataLength":49186,"encodedDataLength":0},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.loadingFinished","params":{"requestId":"56007.4","timestamp":47786.436996,"encodedDataLength":459603,"shouldReportCorbBlocking":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56010.3","timestamp":47786.468293,"dataLength":131072,"encodedDataLength":57401},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"56010.5","blockedCookies":[],"headers":{"status":"200","server":"Apache","last-modified":"Tue, 30 Jun 2020 18:34:52 GMT","etag":"\"a51-5a9516e540b00\"","cache-control":"max-age=315360000","expires":"Fri, 28 Jun 2030 20:27:40 GMT","content-encoding":"gzip","x-vimeo-dc":"ge","timing-allow-origin":"*","content-type":"text/javascript; charset=utf-8","via":"1.1 varnish\n1.1 varnish","accept-ranges":"bytes","date":"Tue, 15 Sep 2020 19:20:32 GMT","age":"6648772","x-served-by":"cache-bwi5130-BWI, cache-mdw17373-MDW","x-cache":"HIT, HIT","x-cache-hits":"1, 781279","x-timer":"S1600197632.139559,VS0,VE0","vary":"Accept-Encoding","content-length":"1215"}},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"56010.3","timestamp":47786.47144,"dataLength":50408,"encodedDataLength":0},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"56010.3","timestamp":47786.47273,"dataLength":46058,"encodedDataLength":10387},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56007.14","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","documentURL":"https://www.youtube.com/embed/tgbNymZ7vqY","request":{"url":"https://googleads.g.doubleclick.net/pagead/id","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.48466,"wallTime":1600197632.233352,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"xg","scriptId":"7","url":"https://www.youtube.com/s/player/e0d83c30/www-embed-player.vflset/www-embed-player.js","lineNumber":511,"columnNumber":493}]}},"type":"XHR","frameId":"D215705AC29C284D9BB2459B7020E798","hasUserGesture":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56007.15","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","documentURL":"https://www.youtube.com/embed/tgbNymZ7vqY","request":{"url":"https://static.doubleclick.net/instream/ad_status.js","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.487095,"wallTime":1600197632.235787,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"af","scriptId":"7","url":"https://www.youtube.com/s/player/e0d83c30/www-embed-player.vflset/www-embed-player.js","lineNumber":424,"columnNumber":101}]}},"type":"Script","frameId":"D215705AC29C284D9BB2459B7020E798","hasUserGesture":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56010.3","timestamp":47786.490766,"dataLength":29303,"encodedDataLength":6855},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"56010.3","timestamp":47786.492384,"dataLength":139511,"encodedDataLength":37017},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"56010.3","timestamp":47786.494474,"dataLength":16840,"encodedDataLength":0},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"56010.3","timestamp":47786.496535,"dataLength":61910,"encodedDataLength":0},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.responseReceived","params":{"requestId":"56010.5","loaderId":"51B3229F5358F49D44871ADE7185528C","timestamp":47786.497101,"type":"Script","response":{"url":"https://f.vimeocdn.com/js_opt/modules/utils/vuid.min.js","status":200,"statusText":"","headers":{"content-encoding":"gzip","status":"200","content-length":"1215","last-modified":"Tue, 30 Jun 2020 18:34:52 GMT","etag":"\"a51-5a9516e540b00\"","content-type":"text/javascript; charset=utf-8","cache-control":"max-age=315360000","accept-ranges":"bytes"},"mimeType":"text/javascript","connectionReused":true,"connectionId":109,"remoteIPAddress":"151.101.186.109","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":241,"timing":{"requestTime":47786.325692,"sendStart":69.843,"sendEnd":69.949,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":144.838},"responseTime":1600197632219.138,"protocol":"h2","securityState":"secure"},"frameId":"A0D1CEFE4B294AB844A8912CA96784F9"},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"56010.5","timestamp":47786.497191,"dataLength":2641,"encodedDataLength":0},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.loadingFinished","params":{"requestId":"56010.5","timestamp":47786.496546,"encodedDataLength":1474,"shouldReportCorbBlocking":false},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56010.7","loaderId":"51B3229F5358F49D44871ADE7185528C","documentURL":"https://player.vimeo.com/video/336812660","request":{"url":"https://vimeo.com/ablincoln/vuid?pid=a88cdaf56540a693f597632ffeeaf6a38f56542a1600197631","method":"POST","headers":{"Content-Type":"text/plain;charset=UTF-8"},"hasPostData":true,"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.499144,"wallTime":1600197632.247837,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"9","url":"https://f.vimeocdn.com/js_opt/modules/utils/vuid.min.js","lineNumber":0,"columnNumber":2568}]}},"type":"Other","frameId":"A0D1CEFE4B294AB844A8912CA96784F9","hasUserGesture":false},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"56010.3","timestamp":47786.499429,"dataLength":93529,"encodedDataLength":33741},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.loadingFinished","params":{"requestId":"56010.3","timestamp":47786.497091,"encodedDataLength":145772,"shouldReportCorbBlocking":false},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"56007.16","associatedCookies":[{"blockedReasons":[],"cookie":{"name":"VISITOR_INFO1_LIVE","value":"FQVG-TcC8XQ","domain":".youtube.com","path":"/","expires":1615749631.052688,"size":29,"httpOnly":true,"secure":true,"session":false,"sameSite":"None","priority":"Medium"}},{"blockedReasons":[],"cookie":{"name":"YSC","value":"82k-4YzMCUo","domain":".youtube.com","path":"/","expires":-1,"size":14,"httpOnly":true,"secure":true,"session":true,"sameSite":"None","priority":"Medium"}}],"headers":{":method":"GET",":authority":"www.youtube.com",":scheme":"https",":path":"/s/player/e0d83c30/player_ias.vflset/en_US/embed.js","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36","accept":"*/*","sec-fetch-site":"same-origin","sec-fetch-mode":"no-cors","sec-fetch-dest":"script","referer":"https://www.youtube.com/embed/tgbNymZ7vqY","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","cookie":"VISITOR_INFO1_LIVE=FQVG-TcC8XQ; YSC=82k-4YzMCUo"}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56007.16","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","documentURL":"https://www.youtube.com/embed/tgbNymZ7vqY","request":{"url":"https://www.youtube.com/s/player/e0d83c30/player_ias.vflset/en_US/embed.js","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.560845,"wallTime":1600197632.309538,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"QN","scriptId":"6","url":"https://www.youtube.com/s/player/e0d83c30/player_ias.vflset/en_US/base.js","lineNumber":3014,"columnNumber":124}]}},"type":"Script","frameId":"D215705AC29C284D9BB2459B7020E798","hasUserGesture":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"56010.7","associatedCookies":[{"blockedReasons":[],"cookie":{"name":"vuid","value":"pl2063834542.17039668","domain":".vimeo.com","path":"/","expires":1663269632,"size":25,"httpOnly":false,"secure":true,"session":false,"sameSite":"None","priority":"Medium"}}],"headers":{"Host":"vimeo.com","Connection":"keep-alive","Content-Length":"0","User-Agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36","Content-Type":"text/plain;charset=UTF-8","Accept":"*/*","Origin":"https://player.vimeo.com","Sec-Fetch-Site":"same-site","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"empty","Referer":"https://player.vimeo.com/video/336812660","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9","Cookie":"vuid=pl2063834542.17039668"}},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"56007.16","blockedCookies":[],"headers":{"status":"200","accept-ranges":"bytes","vary":"Accept-Encoding, Origin","content-encoding":"gzip","content-type":"text/javascript","content-length":"11094","date":"Mon, 14 Sep 2020 17:25:22 GMT","expires":"Tue, 14 Sep 2021 17:25:22 GMT","last-modified":"Mon, 14 Sep 2020 00:19:34 GMT","x-content-type-options":"nosniff","server":"sffe","x-xss-protection":"0","cache-control":"public, max-age=31536000","age":"93310","alt-svc":"h3-29=\":443\"; ma=2592000,h3-27=\":443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-T050=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"56007.14","associatedCookies":[],"headers":{":method":"GET",":authority":"googleads.g.doubleclick.net",":scheme":"https",":path":"/pagead/id","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36","accept":"*/*","origin":"https://www.youtube.com","sec-fetch-site":"cross-site","sec-fetch-mode":"cors","sec-fetch-dest":"empty","referer":"https://www.youtube.com/embed/tgbNymZ7vqY","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9"}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"56007.15","associatedCookies":[],"headers":{":method":"GET",":authority":"static.doubleclick.net",":scheme":"https",":path":"/instream/ad_status.js","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36","accept":"*/*","sec-fetch-site":"cross-site","sec-fetch-mode":"no-cors","sec-fetch-dest":"script","referer":"https://www.youtube.com/embed/tgbNymZ7vqY","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9"}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"56010.8","associatedCookies":[],"headers":{":method":"GET",":authority":"i.vimeocdn.com",":scheme":"https",":path":"/video/784397921.webp?mw=1200&mh=675&q=70","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36","accept":"image/avif,image/webp,image/apng,image/*,*/*;q=0.8","sec-fetch-site":"cross-site","sec-fetch-mode":"no-cors","sec-fetch-dest":"image","referer":"https://player.vimeo.com/video/336812660","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9"}},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56007.17","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","documentURL":"https://www.youtube.com/embed/tgbNymZ7vqY","request":{"url":"data:image/png;base64,FILLER","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.568002,"wallTime":1600197632.316695,"initiator":{"type":"parser","url":"https://www.youtube.com/s/player/e0d83c30/www-player.css"},"type":"Image","frameId":"D215705AC29C284D9BB2459B7020E798","hasUserGesture":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestServedFromCache","params":{"requestId":"56007.17"},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceived","params":{"requestId":"56007.17","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","timestamp":47786.568024,"type":"Image","response":{"url":"data:image/png;base64,FILLER","status":200,"statusText":"OK","headers":{"Content-Type":"image/png"},"mimeType":"image/png","connectionReused":false,"connectionId":0,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"protocol":"data","securityState":"unknown"},"frameId":"D215705AC29C284D9BB2459B7020E798"},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.17","timestamp":47786.56803,"dataLength":175,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.loadingFinished","params":{"requestId":"56007.17","timestamp":47786.568034,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56007.18","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","documentURL":"https://www.youtube.com/embed/tgbNymZ7vqY","request":{"url":"https://yt3.ggpht.com/a/AATXAJxtCYVD65XPtigYUOad-Nd2v3EvnXnz__MkJrg=s68-c-k-c0x00ffffff-no-rj","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.568581,"wallTime":1600197632.317274,"initiator":{"type":"parser","url":"https://www.youtube.com/embed/tgbNymZ7vqY"},"type":"Image","frameId":"D215705AC29C284D9BB2459B7020E798","hasUserGesture":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56007.19","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","documentURL":"https://www.youtube.com/embed/tgbNymZ7vqY","request":{"url":"https://i.ytimg.com/vi/tgbNymZ7vqY/maxresdefault.jpg","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.569482,"wallTime":1600197632.318174,"initiator":{"type":"parser","url":"https://www.youtube.com/embed/tgbNymZ7vqY"},"type":"Image","frameId":"D215705AC29C284D9BB2459B7020E798","hasUserGesture":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56007.6","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","documentURL":"https://www.youtube.com/embed/tgbNymZ7vqY","request":{"url":"https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxPKTU1Kg.ttf","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.602037,"wallTime":1600197632.350731,"initiator":{"type":"parser","url":"https://www.youtube.com/embed/tgbNymZ7vqY"},"type":"Font","frameId":"D215705AC29C284D9BB2459B7020E798","hasUserGesture":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.resourceChangedPriority","params":{"requestId":"56007.18","newPriority":"High","timestamp":47786.606936},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.resourceChangedPriority","params":{"requestId":"56007.19","newPriority":"High","timestamp":47786.606951},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56010.8","loaderId":"51B3229F5358F49D44871ADE7185528C","documentURL":"https://player.vimeo.com/video/336812660","request":{"url":"https://i.vimeocdn.com/video/784397921.webp?mw=1200&mh=675&q=70","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.605767,"wallTime":1600197632.35446,"initiator":{"type":"parser","url":"https://player.vimeo.com/video/336812660","lineNumber":0},"type":"Image","frameId":"A0D1CEFE4B294AB844A8912CA96784F9","hasUserGesture":false},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56010.9","loaderId":"51B3229F5358F49D44871ADE7185528C","documentURL":"https://player.vimeo.com/video/336812660","request":{"url":"https://fresnel.vimeocdn.com/add/player-stats?beacon=1&session-id=a88cdaf56540a693f597632ffeeaf6a38f56542a1600197631","method":"POST","headers":{"Content-Type":"text/plain;charset=UTF-8"},"postData":"[{\"autoplay\":false,\"background\":false,\"clip_id\":336812660,\"context\":\"embed.main\",\"device_pixel_ratio\":2,\"drm\":false,\"embed\":true,\"is_mod\":false,\"is_spatial\":false,\"logged_in\":false,\"looping\":false,\"owner_id\":90564994,\"product\":\"vimeo-vod\",\"referrer\":\"http://localhost:8686/yt-embed.html\",\"session_id\":\"a88cdaf56540a693f597632ffeeaf6a38f56542a1600197631\",\"stayed_on_auto\":true,\"version\":\"3.22.3\",\"version_backend\":\"1.21.1\",\"viewer_id\":0,\"viewer_team_id\":0,\"viewer_team_origin_user_id\":0,\"vuid\":\"pl2063834542.17039668\",\"account_type\":\"enterprise\",\"privacy\":\"anybody\",\"audio_bitrate\":0,\"auto\":true,\"average_speed\":0,\"cdn\":\"akfire_interconnect_quic\",\"delivery\":\"dash\",\"dropped_frames\":0,\"dropped_frame_percent\":0,\"event_time\":1600197631,\"ended\":false,\"forced_embed_quality\":\"none\",\"fullscreen\":false,\"highest_available_profile\":\"175\",\"highest_profile\":null,\"max_speed\":0,\"mime\":\"application/vnd.vimeo.dash+json\",\"min_speed\":0,\"most_used_profile\":null,\"origin\":\"gcs\",\"profile_id\":null,\"codec\":\"\",\"quality_downswitch_count\":0,\"quality_upswitch_count\":0,\"quality_switch_count\":0,\"separate_av\":true,\"target_profile_id\":null,\"ttfb\":0,\"video_bitrate\":0,\"video_duration\":55,\"video_file_id\":null,\"chromecast_test\":1,\"chromecast_group\":false,\"name\":\"video-ready\"}]","hasPostData":true,"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.608265,"wallTime":1600197632.356958,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"8","url":"https://f.vimeocdn.com/p/3.22.3/js/player.js","lineNumber":9,"columnNumber":237643}]}},"type":"Other","frameId":"A0D1CEFE4B294AB844A8912CA96784F9","hasUserGesture":false},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.responseReceived","params":{"requestId":"56007.16","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","timestamp":47786.60909,"type":"Script","response":{"url":"https://www.youtube.com/s/player/e0d83c30/player_ias.vflset/en_US/embed.js","status":200,"statusText":"","headers":{"content-encoding":"gzip","last-modified":"Mon, 14 Sep 2020 00:19:34 GMT","content-type":"text/javascript","status":"200","cache-control":"public, max-age=31536000","accept-ranges":"bytes","content-length":"11094"},"mimeType":"text/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"172.217.1.46","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":383,"timing":{"requestTime":47786.561199,"dnsStart":0,"dnsEnd":0,"connectStart":0,"connectEnd":0,"sslStart":0,"sslEnd":0,"sendStart":0.283,"sendEnd":0.455,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":19.711},"responseTime":1600197632329.537,"protocol":"h3-Q050","securityState":"secure"},"frameId":"D215705AC29C284D9BB2459B7020E798"},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.16","timestamp":47786.60921,"dataLength":35953,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.16","timestamp":47786.610343,"dataLength":0,"encodedDataLength":11094},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.loadingFinished","params":{"requestId":"56007.16","timestamp":47786.581515,"encodedDataLength":11477,"shouldReportCorbBlocking":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"56007.15","blockedCookies":[],"headers":{"status":"200","accept-ranges":"bytes","content-type":"text/javascript","access-control-allow-origin":"*","timing-allow-origin":"*","content-length":"29","date":"Tue, 15 Sep 2020 19:14:45 GMT","expires":"Tue, 15 Sep 2020 19:29:45 GMT","last-modified":"Thu, 12 Dec 2013 23:40:16 GMT","x-content-type-options":"nosniff","server":"sffe","x-xss-protection":"0","cache-control":"public, max-age=900","age":"347","alt-svc":"h3-Q050=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-27=\":443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-T050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceived","params":{"requestId":"56007.15","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","timestamp":47786.630201,"type":"Script","response":{"url":"https://static.doubleclick.net/instream/ad_status.js","status":200,"statusText":"","headers":{"last-modified":"Thu, 12 Dec 2013 23:40:16 GMT","status":"200","content-type":"text/javascript","cache-control":"public, max-age=900","accept-ranges":"bytes","content-length":"29"},"mimeType":"text/javascript","connectionReused":false,"connectionId":151,"remoteIPAddress":"172.217.9.38","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":377,"timing":{"requestTime":47786.487395,"dnsStart":0.117,"dnsEnd":48.513,"connectStart":48.513,"connectEnd":116.683,"sslStart":74.387,"sslEnd":116.68,"sendStart":116.781,"sendEnd":116.857,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":142.036},"responseTime":1600197632378.034,"protocol":"h2","securityState":"secure"},"frameId":"D215705AC29C284D9BB2459B7020E798"},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.15","timestamp":47786.630285,"dataLength":29,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.loadingFinished","params":{"requestId":"56007.15","timestamp":47786.629669,"encodedDataLength":415,"shouldReportCorbBlocking":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"56010.8","blockedCookies":[],"headers":{"status":"200","content-type":"image/webp","etag":"cb2f59f448702c8a5630ca93a4196adc","x-viewmaster-webp-format":"lossy","viewmaster-server":"viewmaster-us-central1-qf6x","cache-control":"public, max-age=2592000","via":"vvarnish\n1.1 varnish\n1.1 varnish","x-backend-server":"varnish","access-control-allow-origin":"*","accept-ranges":"bytes","date":"Tue, 15 Sep 2020 19:20:32 GMT","age":"2082635","x-served-by":"cache-dfw18674-DFW, cache-pwk4931-PWK","x-cache":"miss, HIT, HIT","x-cache-hits":"1, 1","x-timer":"S1600197632.349166,VS0,VE1","content-length":"9128"}},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.responseReceived","params":{"requestId":"56010.8","loaderId":"51B3229F5358F49D44871ADE7185528C","timestamp":47786.635785,"type":"Image","response":{"url":"https://i.vimeocdn.com/video/784397921.webp?mw=1200&mh=675&q=70","status":200,"statusText":"","headers":{"status":"200","content-length":"9128","etag":"cb2f59f448702c8a5630ca93a4196adc","content-type":"image/webp","cache-control":"public, max-age=2592000","accept-ranges":"bytes"},"mimeType":"image/webp","connectionReused":true,"connectionId":112,"remoteIPAddress":"199.232.78.109","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":176,"timing":{"requestTime":47786.606134,"sendStart":0.179,"sendEnd":0.28,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":27.927},"responseTime":1600197632382.678,"protocol":"h2","securityState":"secure"},"frameId":"A0D1CEFE4B294AB844A8912CA96784F9"},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.dataReceived","params":{"requestId":"56010.8","timestamp":47786.635866,"dataLength":9128,"encodedDataLength":0},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.loadingFinished","params":{"requestId":"56010.8","timestamp":47786.63528,"encodedDataLength":9313,"shouldReportCorbBlocking":false},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"56010.9","associatedCookies":[],"headers":{":method":"POST",":authority":"fresnel.vimeocdn.com",":scheme":"https",":path":"/add/player-stats?beacon=1&session-id=a88cdaf56540a693f597632ffeeaf6a38f56542a1600197631","content-length":"1251","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36","content-type":"text/plain;charset=UTF-8","accept":"*/*","origin":"https://player.vimeo.com","sec-fetch-site":"cross-site","sec-fetch-mode":"no-cors","sec-fetch-dest":"empty","referer":"https://player.vimeo.com/video/336812660","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9"}},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"56007.18","associatedCookies":[],"headers":{":method":"GET",":authority":"yt3.ggpht.com",":scheme":"https",":path":"/a/AATXAJxtCYVD65XPtigYUOad-Nd2v3EvnXnz__MkJrg=s68-c-k-c0x00ffffff-no-rj","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36","accept":"image/avif,image/webp,image/apng,image/*,*/*;q=0.8","sec-fetch-site":"cross-site","sec-fetch-mode":"no-cors","sec-fetch-dest":"image","referer":"https://www.youtube.com/embed/tgbNymZ7vqY","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9"}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"56007.19","associatedCookies":[],"headers":{":method":"GET",":authority":"i.ytimg.com",":scheme":"https",":path":"/vi/tgbNymZ7vqY/maxresdefault.jpg","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36","accept":"image/avif,image/webp,image/apng,image/*,*/*;q=0.8","sec-fetch-site":"cross-site","sec-fetch-mode":"no-cors","sec-fetch-dest":"image","referer":"https://www.youtube.com/embed/tgbNymZ7vqY","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9"}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"56007.14","blockedCookies":[],"headers":{"status":"302","p3p":"policyref=\"https://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml\", CP=\"CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"","timing-allow-origin":"*","location":"https://googleads.g.doubleclick.net/pagead/id?slf_rd=1","access-control-allow-credentials":"true","access-control-allow-origin":"https://www.youtube.com","date":"Tue, 15 Sep 2020 19:20:32 GMT","pragma":"no-cache","expires":"Fri, 01 Jan 1990 00:00:00 GMT","cache-control":"no-cache, no-store, must-revalidate","content-type":"text/html; charset=UTF-8","x-content-type-options":"nosniff","server":"cafe","content-length":"0","x-xss-protection":"0","set-cookie":"test_cookie=CheckForPermission; expires=Tue, 15-Sep-2020 19:35:32 GMT; path=/; domain=.doubleclick.net; Secure; SameSite=none","alt-svc":"h3-29=\"googleads.g.doubleclick.net:443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-27=\"googleads.g.doubleclick.net:443\"; ma=2592000,h3-27=\":443\"; ma=2592000,h3-T051=\"googleads.g.doubleclick.net:443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-T050=\"googleads.g.doubleclick.net:443\"; ma=2592000,h3-T050=\":443\"; ma=2592000,h3-Q050=\"googleads.g.doubleclick.net:443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\"googleads.g.doubleclick.net:443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\"googleads.g.doubleclick.net:443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\"googleads.g.doubleclick.net:443\"; ma=2592000; v=\"46,43\",quic=\":443\"; ma=2592000; v=\"46,43\""}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56007.14","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","documentURL":"https://www.youtube.com/embed/tgbNymZ7vqY","request":{"url":"https://googleads.g.doubleclick.net/pagead/id?slf_rd=1","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.673984,"wallTime":1600197632.422678,"initiator":{"type":"parser","url":"https://www.youtube.com/embed/tgbNymZ7vqY","lineNumber":0},"redirectResponse":{"url":"https://googleads.g.doubleclick.net/pagead/id","status":302,"statusText":"","headers":{"status":"302","content-length":"0","content-type":"text/html; charset=UTF-8","cache-control":"no-cache, no-store, must-revalidate"},"mimeType":"text/html","connectionReused":false,"connectionId":150,"remoteIPAddress":"172.217.4.194","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":1012,"timing":{"requestTime":47786.485017,"dnsStart":0.174,"dnsEnd":44.086,"connectStart":44.086,"connectEnd":109.738,"sslStart":63.365,"sslEnd":109.731,"sendStart":109.897,"sendEnd":109.989,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":188.084},"responseTime":1600197632421.68,"protocol":"h2","securityState":"secure"},"type":"XHR","frameId":"D215705AC29C284D9BB2459B7020E798","hasUserGesture":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"56007.18","blockedCookies":[],"headers":{"status":"200","access-control-expose-headers":"Content-Length","etag":"\"v10\"","expires":"Thu, 10 Sep 2020 12:19:38 GMT","content-disposition":"inline;filename=\"unnamed.jpg\"","content-type":"image/jpeg","vary":"Origin","access-control-allow-origin":"*","timing-allow-origin":"*","x-content-type-options":"nosniff","date":"Tue, 15 Sep 2020 16:28:38 GMT","server":"fife","content-length":"2639","x-xss-protection":"0","age":"10314","cache-control":"public, max-age=86400, no-transform","alt-svc":"h3-Q050=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-27=\":443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-T050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceived","params":{"requestId":"56007.18","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","timestamp":47786.682168,"type":"Image","response":{"url":"https://yt3.ggpht.com/a/AATXAJxtCYVD65XPtigYUOad-Nd2v3EvnXnz__MkJrg=s68-c-k-c0x00ffffff-no-rj","status":200,"statusText":"","headers":{"status":"200","content-length":"2639","etag":"\"v10\"","content-type":"image/jpeg","cache-control":"public, max-age=86400, no-transform"},"mimeType":"image/jpeg","connectionReused":false,"connectionId":186,"remoteIPAddress":"172.217.9.33","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":429,"timing":{"requestTime":47786.568895,"dnsStart":0.18,"dnsEnd":37.824,"connectStart":37.824,"connectEnd":89.697,"sslStart":55.068,"sslEnd":89.691,"sendStart":89.842,"sendEnd":89.932,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":110.806},"responseTime":1600197632428.292,"protocol":"h2","securityState":"secure"},"frameId":"D215705AC29C284D9BB2459B7020E798"},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.18","timestamp":47786.682249,"dataLength":2639,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.loadingFinished","params":{"requestId":"56007.18","timestamp":47786.681621,"encodedDataLength":3077,"shouldReportCorbBlocking":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"56007.19","blockedCookies":[],"headers":{"status":"200","accept-ranges":"bytes","content-type":"image/jpeg","timing-allow-origin":"*","content-length":"65873","date":"Tue, 15 Sep 2020 19:01:49 GMT","expires":"Tue, 15 Sep 2020 21:01:49 GMT","etag":"\"0\"","x-content-type-options":"nosniff","server":"sffe","x-xss-protection":"0","cache-control":"public, max-age=7200","age":"1123","alt-svc":"h3-29=\":443\"; ma=2592000,h3-27=\":443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-T050=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceived","params":{"requestId":"56007.19","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","timestamp":47786.695331,"type":"Image","response":{"url":"https://i.ytimg.com/vi/tgbNymZ7vqY/maxresdefault.jpg","status":200,"statusText":"","headers":{"etag":"\"0\"","content-type":"image/jpeg","status":"200","cache-control":"public, max-age=7200","accept-ranges":"bytes","content-length":"65873"},"mimeType":"image/jpeg","connectionReused":false,"connectionId":181,"remoteIPAddress":"172.217.8.214","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":355,"timing":{"requestTime":47786.569798,"dnsStart":0.182,"dnsEnd":35.828,"connectStart":35.828,"connectEnd":91.177,"sslStart":52.472,"sslEnd":91.173,"sendStart":91.272,"sendEnd":91.352,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":122.919},"responseTime":1600197632441.314,"protocol":"h2","securityState":"secure"},"frameId":"D215705AC29C284D9BB2459B7020E798"},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.19","timestamp":47786.695423,"dataLength":5575,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.19","timestamp":47786.696713,"dataLength":6980,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.19","timestamp":47786.699249,"dataLength":8367,"encodedDataLength":12564},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.19","timestamp":47786.701507,"dataLength":6980,"encodedDataLength":8376},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.19","timestamp":47786.703162,"dataLength":1396,"encodedDataLength":6980},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"56010.9","blockedCookies":[],"headers":{"status":"200","access-control-allow-credentials":"true","access-control-allow-origin":"https://player.vimeo.com","date":"Tue, 15 Sep 2020 19:20:32 GMT","content-length":"0","via":"1.1 google","alt-svc":"clear"}},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.responseReceived","params":{"requestId":"56010.9","loaderId":"51B3229F5358F49D44871ADE7185528C","timestamp":47786.704156,"type":"Other","response":{"url":"https://fresnel.vimeocdn.com/add/player-stats?beacon=1&session-id=a88cdaf56540a693f597632ffeeaf6a38f56542a1600197631","status":200,"statusText":"","headers":{"status":"200","content-length":"0"},"mimeType":"text/plain","connectionReused":false,"connectionId":191,"remoteIPAddress":"34.120.202.204","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":110,"timing":{"requestTime":47786.608785,"dnsStart":0.113,"dnsEnd":0.118,"connectStart":0.118,"connectEnd":44.498,"sslStart":15.325,"sslEnd":44.493,"sendStart":44.601,"sendEnd":44.701,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":94.751},"responseTime":1600197632452.174,"protocol":"h2","securityState":"secure"},"frameId":"A0D1CEFE4B294AB844A8912CA96784F9"},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.loadingFinished","params":{"requestId":"56010.9","timestamp":47786.703717,"encodedDataLength":110,"shouldReportCorbBlocking":false},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A","loaderId":"DA13668C4781FCB2BF6F3AB0F3313AB7","name":"networkAlmostIdle","timestamp":47786.059957}}, + {"method":"Page.lifecycleEvent","params":{"frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A","loaderId":"DA13668C4781FCB2BF6F3AB0F3313AB7","name":"firstMeaningfulPaint","timestamp":47786.179669}}, + {"method":"Page.lifecycleEvent","params":{"frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A","loaderId":"DA13668C4781FCB2BF6F3AB0F3313AB7","name":"networkIdle","timestamp":47786.059957}}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"56007.6","associatedCookies":[],"headers":{":method":"GET",":authority":"fonts.gstatic.com",":scheme":"https",":path":"/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxPKTU1Kg.ttf","origin":"https://www.youtube.com","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36","accept":"*/*","sec-fetch-site":"cross-site","sec-fetch-mode":"cors","sec-fetch-dest":"font","referer":"https://www.youtube.com/embed/tgbNymZ7vqY","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9"}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"56007.14","associatedCookies":[{"blockedReasons":[],"cookie":{"name":"test_cookie","value":"CheckForPermission","domain":".doubleclick.net","path":"/","expires":1600198532.421805,"size":29,"httpOnly":false,"secure":true,"session":false,"sameSite":"None","priority":"Medium"}}],"headers":{":method":"GET",":authority":"googleads.g.doubleclick.net",":scheme":"https",":path":"/pagead/id?slf_rd=1","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36","accept":"*/*","origin":"https://www.youtube.com","sec-fetch-site":"cross-site","sec-fetch-mode":"cors","sec-fetch-dest":"empty","referer":"https://www.youtube.com/embed/tgbNymZ7vqY","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","cookie":"test_cookie=CheckForPermission"}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.19","timestamp":47786.726555,"dataLength":16025,"encodedDataLength":1396},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.19","timestamp":47786.727898,"dataLength":2792,"encodedDataLength":16034},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"56007.6","blockedCookies":[],"headers":{"status":"200","accept-ranges":"bytes","vary":"Accept-Encoding","content-encoding":"gzip","content-type":"font/ttf","access-control-allow-origin":"*","timing-allow-origin":"*","content-length":"14353","date":"Tue, 15 Sep 2020 07:45:21 GMT","expires":"Wed, 15 Sep 2021 07:45:21 GMT","last-modified":"Mon, 16 Oct 2017 17:32:51 GMT","x-content-type-options":"nosniff","server":"sffe","x-xss-protection":"0","age":"41711","cache-control":"public, max-age=31536000","alt-svc":"h3-29=\":443\"; ma=2592000,h3-27=\":443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-T050=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceived","params":{"requestId":"56007.6","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","timestamp":47786.73018,"type":"Font","response":{"url":"https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxPKTU1Kg.ttf","status":200,"statusText":"","headers":{"content-encoding":"gzip","status":"200","content-length":"14353","last-modified":"Mon, 16 Oct 2017 17:32:51 GMT","content-type":"font/ttf","cache-control":"public, max-age=31536000","accept-ranges":"bytes"},"mimeType":"font/ttf","connectionReused":false,"connectionId":199,"remoteIPAddress":"172.217.0.3","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":397,"timing":{"requestTime":47786.609857,"dnsStart":0.131,"dnsEnd":35.412,"connectStart":35.412,"connectEnd":95.703,"sslStart":63.471,"sslEnd":95.699,"sendStart":95.8,"sendEnd":95.882,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":119.779},"responseTime":1600197632478.239,"protocol":"h2","securityState":"secure"},"frameId":"D215705AC29C284D9BB2459B7020E798"},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.19","timestamp":47786.731444,"dataLength":11159,"encodedDataLength":2792},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.19","timestamp":47786.733819,"dataLength":6599,"encodedDataLength":11168},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.19","timestamp":47786.734106,"dataLength":0,"encodedDataLength":6608},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.loadingFinished","params":{"requestId":"56007.19","timestamp":47786.733333,"encodedDataLength":66273,"shouldReportCorbBlocking":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.6","timestamp":47786.734901,"dataLength":17329,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.6","timestamp":47786.743989,"dataLength":3535,"encodedDataLength":12564},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.6","timestamp":47786.759485,"dataLength":0,"encodedDataLength":1798},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.loadingFinished","params":{"requestId":"56007.6","timestamp":47786.743963,"encodedDataLength":14759,"shouldReportCorbBlocking":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Page.loadEventFired","params":{"timestamp":47786.774417}}, + {"method":"Page.lifecycleEvent","params":{"frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A","loaderId":"DA13668C4781FCB2BF6F3AB0F3313AB7","name":"load","timestamp":47786.774417}}, + {"method":"Page.frameStoppedLoading","params":{"frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A"}}, + {"method":"Network.requestWillBeSent","params":{"requestId":"56001.2","loaderId":"DA13668C4781FCB2BF6F3AB0F3313AB7","documentURL":"http://localhost:8686/yt-embed.html","request":{"url":"http://localhost:8686/favicon.ico","method":"GET","headers":{},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"no-referrer-when-downgrade"},"timestamp":47786.776671,"wallTime":1600197632.525365,"initiator":{"type":"other"},"type":"Other","frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A","hasUserGesture":false}}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"56001.2","associatedCookies":[],"headers":{"Host":"localhost:8686","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4143.7 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"image/avif,image/webp,image/apng,image/*,*/*;q=0.8","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"image","Referer":"http://localhost:8686/yt-embed.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"}}}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"56001.2","blockedCookies":[],"headers":{"Server":"SimpleHTTP/0.6 Python/3.6.8","Date":"Tue, 15 Sep 2020 19:20:32 GMT","Connection":"close","Content-Type":"text/html;charset=utf-8","Content-Length":"469"},"headersText":"HTTP/1.0 404 File not found\r\nServer: SimpleHTTP/0.6 Python/3.6.8\r\nDate: Tue, 15 Sep 2020 19:20:32 GMT\r\nConnection: close\r\nContent-Type: text/html;charset=utf-8\r\nContent-Length: 469\r\n\r\n"}}, + {"method":"Network.responseReceived","params":{"requestId":"56001.2","loaderId":"DA13668C4781FCB2BF6F3AB0F3313AB7","timestamp":47786.778393,"type":"Other","response":{"url":"http://localhost:8686/favicon.ico","status":404,"statusText":"File not found","headers":{"Content-Length":"469","Content-Type":"text/html;charset=utf-8"},"mimeType":"text/html","connectionReused":true,"connectionId":31,"remoteIPAddress":"127.0.0.1","remotePort":8686,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":184,"timing":{"requestTime":47786.77703,"sendStart":0.176,"sendEnd":0.221,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.927},"responseTime":1600197632526.586,"protocol":"http/1.0","securityState":"secure"},"frameId":"8ECEE70925EB8E7B8C2100384AFF4D1A"}}, + {"method":"Network.dataReceived","params":{"requestId":"56001.2","timestamp":47786.778628,"dataLength":469,"encodedDataLength":0}}, + {"method":"Network.dataReceived","params":{"requestId":"56001.2","timestamp":47786.778874,"dataLength":0,"encodedDataLength":469}}, + {"method":"Network.loadingFinished","params":{"requestId":"56001.2","timestamp":47786.778266,"encodedDataLength":653,"shouldReportCorbBlocking":false}}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"56007.14","blockedCookies":[],"headers":{"status":"200","p3p":"policyref=\"https://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml\", CP=\"CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR\"","timing-allow-origin":"*","access-control-allow-credentials":"true","access-control-allow-origin":"https://www.youtube.com","content-type":"application/json; charset=UTF-8","date":"Tue, 15 Sep 2020 19:20:32 GMT","pragma":"no-cache","expires":"Fri, 01 Jan 1990 00:00:00 GMT","cache-control":"no-cache, no-store, must-revalidate","x-content-type-options":"nosniff","content-disposition":"attachment; filename=\"f.txt\"","content-encoding":"gzip","server":"cafe","content-length":"133","x-xss-protection":"0","set-cookie":"test_cookie=; domain=.doubleclick.net; path=/; expires=Mon, 21 Jul 2008 23:59:00 GMT; SameSite=none; Secure\nIDE=AHWqTUkwqZAglOH_6PFh4sqUYyc0K0jsXY_Ce0WIfNzGy8j_jI7Ldydn8sN2wN7E; expires=Thu, 15-Sep-2022 19:20:32 GMT; path=/; domain=.doubleclick.net; Secure; HttpOnly; SameSite=none","alt-svc":"h3-29=\"googleads.g.doubleclick.net:443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-27=\"googleads.g.doubleclick.net:443\"; ma=2592000,h3-27=\":443\"; ma=2592000,h3-T051=\"googleads.g.doubleclick.net:443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-T050=\"googleads.g.doubleclick.net:443\"; ma=2592000,h3-T050=\":443\"; ma=2592000,h3-Q050=\"googleads.g.doubleclick.net:443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\"googleads.g.doubleclick.net:443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\"googleads.g.doubleclick.net:443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\"googleads.g.doubleclick.net:443\"; ma=2592000; v=\"46,43\",quic=\":443\"; ma=2592000; v=\"46,43\""}},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceived","params":{"requestId":"56007.14","loaderId":"7409A683C44F8397F7103BD7E03CB6C9","timestamp":47786.789835,"type":"XHR","response":{"url":"https://googleads.g.doubleclick.net/pagead/id?slf_rd=1","status":200,"statusText":"","headers":{"content-encoding":"gzip","status":"200","content-length":"133","content-type":"application/json; charset=UTF-8","cache-control":"no-cache, no-store, must-revalidate"},"mimeType":"application/json","connectionReused":false,"connectionId":0,"remoteIPAddress":"172.217.4.194","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":1121,"timing":{"requestTime":47786.674157,"dnsStart":0.112,"dnsEnd":0.12,"connectStart":0.328,"connectEnd":67.778,"sslStart":0.328,"sslEnd":67.778,"sendStart":36.97,"sendEnd":37.086,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":114.785},"responseTime":1600197632537.57,"protocol":"h3-Q050","securityState":"secure"},"frameId":"D215705AC29C284D9BB2459B7020E798"},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.14","timestamp":47786.789969,"dataLength":113,"encodedDataLength":0},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.dataReceived","params":{"requestId":"56007.14","timestamp":47786.791217,"dataLength":0,"encodedDataLength":133},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.loadingFinished","params":{"requestId":"56007.14","timestamp":47786.789606,"encodedDataLength":1254,"shouldReportCorbBlocking":false},"sessionId":"DA677F833BBB83B41D000F18A18B822E"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"56010.7","blockedCookies":[],"headers":{"Connection":"keep-alive","Server":"nginx","Expires":"Tue, 15 Sep 2020 07:20:33 GMT","Cache-Control":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","X-UA-Compatible":"IE=edge","X-XSS-Protection":"1; mode=block","X-Content-Type-Options":"nosniff","X-Frame-Options":"sameorigin","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Content-Security-Policy-Report-Only":"default-src https: data: blob: wss: 'unsafe-inline' 'unsafe-eval'; report-uri /_csp","X-BApp-Server":"pweb-v3126-6m5fd","X-Vimeo-DC":"ge","Accept-Ranges":"bytes\nbytes","Via":"1.1 varnish\n1.1 varnish","Date":"Tue, 15 Sep 2020 19:20:33 GMT","X-Served-By":"cache-bwi5142-BWI, cache-chi21152-CHI","X-Cache":"MISS, MISS","X-Cache-Hits":"0, 0","X-Timer":"S1600197632.317759,VS0,VE1036","Vary":"User-Agent"},"headersText":"HTTP/1.1 204 No Content\r\nConnection: keep-alive\r\nServer: nginx\r\nExpires: Tue, 15 Sep 2020 07:20:33 GMT\r\nCache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0\r\nX-UA-Compatible: IE=edge\r\nX-XSS-Protection: 1; mode=block\r\nX-Content-Type-Options: nosniff\r\nX-Frame-Options: sameorigin\r\nStrict-Transport-Security: max-age=31536000; includeSubDomains; preload\r\nContent-Security-Policy-Report-Only: default-src https: data: blob: wss: 'unsafe-inline' 'unsafe-eval'; report-uri /_csp\r\nX-BApp-Server: pweb-v3126-6m5fd\r\nX-Vimeo-DC: ge\r\nAccept-Ranges: bytes\r\nVia: 1.1 varnish\r\nAccept-Ranges: bytes\r\nDate: Tue, 15 Sep 2020 19:20:33 GMT\r\nVia: 1.1 varnish\r\nX-Served-By: cache-bwi5142-BWI, cache-chi21152-CHI\r\nX-Cache: MISS, MISS\r\nX-Cache-Hits: 0, 0\r\nX-Timer: S1600197632.317759,VS0,VE1036\r\nVary: User-Agent\r\n\r\n"},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.responseReceived","params":{"requestId":"56010.7","loaderId":"51B3229F5358F49D44871ADE7185528C","timestamp":47787.642967,"type":"Other","response":{"url":"https://vimeo.com/ablincoln/vuid?pid=a88cdaf56540a693f597632ffeeaf6a38f56542a1600197631","status":204,"statusText":"No Content","headers":{"Cache-Control":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","Accept-Ranges":"bytes, bytes"},"mimeType":"text/plain","connectionReused":false,"connectionId":149,"remoteIPAddress":"151.101.0.217","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":818,"timing":{"requestTime":47786.499527,"dnsStart":0.097,"dnsEnd":25.829,"connectStart":25.829,"connectEnd":77.571,"sslStart":44.659,"sslEnd":77.567,"sendStart":77.624,"sendEnd":77.682,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":1142.011},"responseTime":1600197633390.104,"protocol":"http/1.1","securityState":"secure"},"frameId":"A0D1CEFE4B294AB844A8912CA96784F9"},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"}, + {"method":"Network.loadingFinished","params":{"requestId":"56010.7","timestamp":47787.64191,"encodedDataLength":818,"shouldReportCorbBlocking":false},"sessionId":"9ACCDD85E62DB148629025C55DB5B6D7"} +] \ No newline at end of file diff --git a/lighthouse-core/test/fixtures/traces/video-embeds-m84.json b/lighthouse-core/test/fixtures/traces/video-embeds-m84.json new file mode 100644 index 000000000000..0d06558ec2d2 --- /dev/null +++ b/lighthouse-core/test/fixtures/traces/video-embeds-m84.json @@ -0,0 +1,266 @@ +{ + "traceEvents": [ + {"args":{"data":{"frameTreeNodeId":2,"frames":[{"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A","name":"","processId":56001,"url":"about:blank"}],"persistentIds":true}},"cat":"disabled-by-default-devtools.timeline","name":"TracingStartedInBrowser","ph":"I","pid":55969,"s":"t","tid":775,"ts":47786037668,"tts":734763}, + {"args":{"data":{"type":"beforeunload"}},"cat":"devtools.timeline","dur":10,"name":"EventDispatch","ph":"X","pid":56001,"tdur":10,"tid":775,"ts":47786040940,"tts":586500}, + {"args":{},"cat":"disabled-by-default-devtools.timeline","dur":4292,"name":"RunTask","ph":"X","pid":56001,"tdur":4291,"tid":775,"ts":47786046202,"tts":586834}, + {"args":{"data":{"type":"pagehide"}},"cat":"devtools.timeline","dur":5,"name":"EventDispatch","ph":"X","pid":56001,"tdur":6,"tid":775,"ts":47786046659,"tts":587290}, + {"args":{"data":{"type":"visibilitychange"}},"cat":"devtools.timeline","dur":3,"name":"EventDispatch","ph":"X","pid":56001,"tdur":4,"tid":775,"ts":47786046672,"tts":587303}, + {"args":{"data":{"type":"webkitvisibilitychange"}},"cat":"devtools.timeline","dur":2,"name":"EventDispatch","ph":"X","pid":56001,"tdur":2,"tid":775,"ts":47786046678,"tts":587310}, + {"args":{"data":{"type":"unload"}},"cat":"devtools.timeline","dur":2,"name":"EventDispatch","ph":"X","pid":56001,"tdur":2,"tid":775,"ts":47786046688,"tts":587319}, + {"args":{"data":{"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A","priority":"VeryHigh","requestId":"DA13668C4781FCB2BF6F3AB0F3313AB7","requestMethod":"GET","url":"http://localhost:8686/yt-embed.html"}},"cat":"devtools.timeline","name":"ResourceSendRequest","ph":"I","pid":56001,"s":"t","tid":775,"ts":47786046945,"tts":587577}, + {"args":{"data":{"encodedDataLength":185,"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A","fromCache":false,"fromServiceWorker":false,"mimeType":"text/html","requestId":"DA13668C4781FCB2BF6F3AB0F3313AB7","responseTime":1600197631792.842,"statusCode":200,"timing":{"connectEnd":0.662,"connectStart":0.267,"dnsEnd":0.267,"dnsStart":0.259,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":1.36,"requestTime":47786.042861,"sendEnd":0.754,"sendStart":0.705,"sslEnd":-1,"sslStart":-1,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56001,"s":"t","tid":775,"ts":47786046977,"tts":587609}, + {"args":{"data":{"columnNumber":1,"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A","lineNumber":1,"url":""}},"cat":"devtools.timeline","dur":275,"name":"EvaluateScript","ph":"X","pid":56001,"tdur":276,"tid":775,"ts":47786049481,"tts":590112}, + {"args":{"data":{"columnNumber":1,"lineNumber":1,"notStreamedReason":"inline script","streamed":false,"url":""},"fileName":""},"cat":"v8,devtools.timeline","dur":92,"name":"v8.compile","ph":"X","pid":56001,"tdur":92,"tid":775,"ts":47786049489,"tts":590120}, + {"args":{},"cat":"v8","dur":1,"name":"v8.compile","ph":"X","pid":56001,"tdur":2,"tid":775,"ts":47786049753,"tts":590384}, + {"args":{"data":{"columnNumber":1,"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A","lineNumber":1,"url":""}},"cat":"devtools.timeline","dur":150,"name":"EvaluateScript","ph":"X","pid":56001,"tdur":150,"tid":775,"ts":47786049762,"tts":590394}, + {"args":{"data":{"columnNumber":1,"lineNumber":1,"notStreamedReason":"inline script","streamed":false,"url":""},"fileName":""},"cat":"v8,devtools.timeline","dur":90,"name":"v8.compile","ph":"X","pid":56001,"tdur":89,"tid":775,"ts":47786049766,"tts":590398}, + {"args":{},"cat":"v8","dur":2,"name":"v8.compile","ph":"X","pid":56001,"tdur":2,"tid":775,"ts":47786049909,"tts":590540}, + {"args":{"data":{"columnNumber":1,"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A","lineNumber":1,"url":""}},"cat":"devtools.timeline","dur":120,"name":"EvaluateScript","ph":"X","pid":56001,"tdur":119,"tid":775,"ts":47786049918,"tts":590550}, + {"args":{"data":{"columnNumber":1,"lineNumber":1,"notStreamedReason":"inline script","streamed":false,"url":""},"fileName":""},"cat":"v8,devtools.timeline","dur":87,"name":"v8.compile","ph":"X","pid":56001,"tdur":86,"tid":775,"ts":47786049921,"tts":590553}, + {"args":{},"cat":"v8","dur":1,"name":"v8.compile","ph":"X","pid":56001,"tdur":0,"tid":775,"ts":47786050035,"tts":590667}, + {"args":{"data":{"columnNumber":1,"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A","lineNumber":1,"url":""}},"cat":"devtools.timeline","dur":269,"name":"EvaluateScript","ph":"X","pid":56001,"tdur":269,"tid":775,"ts":47786050043,"tts":590675}, + {"args":{"data":{"columnNumber":1,"lineNumber":1,"notStreamedReason":"inline script","streamed":false,"url":""},"fileName":""},"cat":"v8,devtools.timeline","dur":70,"name":"v8.compile","ph":"X","pid":56001,"tdur":70,"tid":775,"ts":47786050046,"tts":590678}, + {"args":{},"cat":"v8","dur":1,"name":"v8.compile","ph":"X","pid":56001,"tdur":2,"tid":775,"ts":47786050309,"tts":590940}, + {"args":{"data":{"encodedDataLength":330,"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A","requestId":"DA13668C4781FCB2BF6F3AB0F3313AB7"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56001,"s":"t","tid":775,"ts":47786055211,"tts":591566}, + {"args":{"data":{"decodedBodyLength":330,"didFail":false,"encodedDataLength":515,"finishTime":47786.044624,"requestId":"DA13668C4781FCB2BF6F3AB0F3313AB7"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56001,"s":"t","tid":775,"ts":47786056173,"tts":592528}, + {"args":{},"cat":"disabled-by-default-devtools.timeline","dur":2992,"name":"RunTask","ph":"X","pid":56001,"tdur":2597,"tid":775,"ts":47786056342,"tts":592696}, + {"args":{"beginData":{"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A","startLine":0,"url":"http://localhost:8686/yt-embed.html"},"endData":{"endLine":9}},"cat":"devtools.timeline","dur":2957,"name":"ParseHTML","ph":"X","pid":56001,"tdur":2562,"tid":775,"ts":47786056351,"tts":592705}, + {"args":{"beginData":{"frame":"D215705AC29C284D9BB2459B7020E798","startLine":0,"url":"about:blank"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":57,"name":"ParseHTML","ph":"X","pid":56001,"tdur":57,"tid":775,"ts":47786057615,"tts":593747}, + {"args":{"data":{"type":"readystatechange"}},"cat":"devtools.timeline","dur":5,"name":"EventDispatch","ph":"X","pid":56001,"tdur":5,"tid":775,"ts":47786057725,"tts":593857}, + {"args":{"data":{"type":"DOMContentLoaded"}},"cat":"devtools.timeline","dur":3,"name":"EventDispatch","ph":"X","pid":56001,"tdur":3,"tid":775,"ts":47786057737,"tts":593869}, + {"args":{"data":{"type":"readystatechange"}},"cat":"devtools.timeline","dur":8,"name":"EventDispatch","ph":"X","pid":56001,"tdur":8,"tid":775,"ts":47786057920,"tts":594036}, + {"args":{"data":{"type":"beforeunload"}},"cat":"devtools.timeline","dur":5,"name":"EventDispatch","ph":"X","pid":56001,"tdur":5,"tid":775,"ts":47786058000,"tts":594116}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","startLine":0,"url":"about:blank"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":43,"name":"ParseHTML","ph":"X","pid":56001,"tdur":43,"tid":775,"ts":47786058893,"tts":594853}, + {"args":{"data":{"type":"readystatechange"}},"cat":"devtools.timeline","dur":4,"name":"EventDispatch","ph":"X","pid":56001,"tdur":4,"tid":775,"ts":47786058974,"tts":594934}, + {"args":{"data":{"type":"DOMContentLoaded"}},"cat":"devtools.timeline","dur":3,"name":"EventDispatch","ph":"X","pid":56001,"tdur":3,"tid":775,"ts":47786058984,"tts":594943}, + {"args":{"data":{"type":"readystatechange"}},"cat":"devtools.timeline","dur":5,"name":"EventDispatch","ph":"X","pid":56001,"tdur":5,"tid":775,"ts":47786059110,"tts":595070}, + {"args":{"data":{"type":"beforeunload"}},"cat":"devtools.timeline","dur":4,"name":"EventDispatch","ph":"X","pid":56001,"tdur":4,"tid":775,"ts":47786059157,"tts":595116}, + {"args":{"beginData":{"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A","startLine":10,"url":"http://localhost:8686/yt-embed.html"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":703,"name":"ParseHTML","ph":"X","pid":56001,"tdur":704,"tid":775,"ts":47786059578,"tts":595537}, + {"args":{"data":{"type":"readystatechange"}},"cat":"devtools.timeline","dur":4,"name":"EventDispatch","ph":"X","pid":56001,"tdur":5,"tid":775,"ts":47786059602,"tts":595561}, + {"args":{"data":{"type":"DOMContentLoaded"}},"cat":"devtools.timeline","dur":4,"name":"EventDispatch","ph":"X","pid":56001,"tdur":4,"tid":775,"ts":47786059631,"tts":595591}, + {"args":{},"cat":"disabled-by-default-devtools.timeline","dur":86926,"name":"RunTask","ph":"X","pid":56001,"tdur":43699,"tid":775,"ts":47786063859,"tts":596474}, + {"args":{"beginData":{"dirtyObjects":10,"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A","partialLayout":false,"totalObjects":10},"endData":{"root":[0,0,980,0,980,1743,0,1743],"rootNode":4}},"cat":"devtools.timeline","dur":85713,"name":"Layout","ph":"X","pid":56001,"tdur":42562,"tid":775,"ts":47786064030,"tts":596644}, + {"args":{"data":{"frame":"D215705AC29C284D9BB2459B7020E798"}},"cat":"disabled-by-default-devtools.timeline","name":"InvalidateLayout","ph":"I","pid":56001,"s":"t","tid":775,"ts":47786149698,"tts":639163}, + {"args":{"data":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9"}},"cat":"disabled-by-default-devtools.timeline","name":"InvalidateLayout","ph":"I","pid":56001,"s":"t","tid":775,"ts":47786149730,"tts":639192}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","startLine":0,"url":"about:blank"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":220,"name":"ParseHTML","ph":"X","pid":56010,"tdur":221,"tid":775,"ts":47786299712,"tts":62722}, + {"args":{"data":{"type":"readystatechange"}},"cat":"devtools.timeline","dur":12,"name":"EventDispatch","ph":"X","pid":56010,"tdur":11,"tid":775,"ts":47786300023,"tts":63034}, + {"args":{"data":{"type":"DOMContentLoaded"}},"cat":"devtools.timeline","dur":4,"name":"EventDispatch","ph":"X","pid":56010,"tdur":4,"tid":775,"ts":47786300060,"tts":63070}, + {"args":{"data":{"type":"readystatechange"}},"cat":"devtools.timeline","dur":5,"name":"EventDispatch","ph":"X","pid":56010,"tdur":6,"tid":775,"ts":47786300198,"tts":63208}, + {"args":{"data":{"type":"pagehide"}},"cat":"devtools.timeline","dur":6,"name":"EventDispatch","ph":"X","pid":56010,"tdur":6,"tid":775,"ts":47786305159,"tts":66347}, + {"args":{"data":{"type":"visibilitychange"}},"cat":"devtools.timeline","dur":5,"name":"EventDispatch","ph":"X","pid":56010,"tdur":4,"tid":775,"ts":47786305207,"tts":66396}, + {"args":{"data":{"type":"webkitvisibilitychange"}},"cat":"devtools.timeline","dur":2,"name":"EventDispatch","ph":"X","pid":56010,"tdur":3,"tid":775,"ts":47786305222,"tts":66409}, + {"args":{"data":{"type":"unload"}},"cat":"devtools.timeline","dur":3,"name":"EventDispatch","ph":"X","pid":56010,"tdur":3,"tid":775,"ts":47786305227,"tts":66415}, + {"args":{"data":{"encodedDataLength":2928,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","fromCache":false,"fromServiceWorker":false,"mimeType":"text/html","requestId":"51B3229F5358F49D44871ADE7185528C","responseTime":1600197632040.066,"statusCode":200,"timing":{"connectEnd":149.581,"connectStart":54.756,"dnsEnd":54.756,"dnsStart":0.189,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":217.141,"requestTime":47786.074447,"sendEnd":149.694,"sendStart":149.64,"sslEnd":149.576,"sslStart":82.328,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786305768,"tts":66916}, + {"args":{"data":{"type":"pagehide"}},"cat":"devtools.timeline","dur":7,"name":"EventDispatch","ph":"X","pid":56007,"tdur":8,"tid":775,"ts":47786309510,"tts":106108}, + {"args":{"data":{"type":"visibilitychange"}},"cat":"devtools.timeline","dur":4,"name":"EventDispatch","ph":"X","pid":56007,"tdur":4,"tid":775,"ts":47786309550,"tts":106149}, + {"args":{"data":{"type":"webkitvisibilitychange"}},"cat":"devtools.timeline","dur":3,"name":"EventDispatch","ph":"X","pid":56007,"tdur":3,"tid":775,"ts":47786309562,"tts":106161}, + {"args":{"data":{"type":"unload"}},"cat":"devtools.timeline","dur":2,"name":"EventDispatch","ph":"X","pid":56007,"tdur":1,"tid":775,"ts":47786309568,"tts":106167}, + {"args":{"data":{"encodedDataLength":760,"frame":"D215705AC29C284D9BB2459B7020E798","fromCache":false,"fromServiceWorker":false,"mimeType":"text/html","requestId":"7409A683C44F8397F7103BD7E03CB6C9","responseTime":1600197632052.458,"statusCode":200,"timing":{"connectEnd":127.561,"connectStart":36.584,"dnsEnd":36.584,"dnsStart":0.163,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":237.647,"requestTime":47786.066226,"sendEnd":127.8,"sendStart":127.682,"sslEnd":127.557,"sslStart":90.384,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786309918,"tts":106514}, + {"args":{"data":{"type":"pagehide"}},"cat":"devtools.timeline","dur":6,"name":"EventDispatch","ph":"X","pid":56001,"tdur":6,"tid":775,"ts":47786310167,"tts":641911}, + {"args":{"data":{"type":"visibilitychange"}},"cat":"devtools.timeline","dur":4,"name":"EventDispatch","ph":"X","pid":56001,"tdur":4,"tid":775,"ts":47786310180,"tts":641924}, + {"args":{"data":{"type":"webkitvisibilitychange"}},"cat":"devtools.timeline","dur":2,"name":"EventDispatch","ph":"X","pid":56001,"tdur":2,"tid":775,"ts":47786310187,"tts":641931}, + {"args":{"data":{"type":"unload"}},"cat":"devtools.timeline","dur":3,"name":"EventDispatch","ph":"X","pid":56001,"tdur":2,"tid":775,"ts":47786310191,"tts":641936}, + {"args":{"data":{"type":"pagehide"}},"cat":"devtools.timeline","dur":6,"name":"EventDispatch","ph":"X","pid":56001,"tdur":7,"tid":775,"ts":47786314014,"tts":643279}, + {"args":{"data":{"type":"visibilitychange"}},"cat":"devtools.timeline","dur":3,"name":"EventDispatch","ph":"X","pid":56001,"tdur":4,"tid":775,"ts":47786314028,"tts":643293}, + {"args":{"data":{"type":"webkitvisibilitychange"}},"cat":"devtools.timeline","dur":2,"name":"EventDispatch","ph":"X","pid":56001,"tdur":2,"tid":775,"ts":47786314039,"tts":643304}, + {"args":{"data":{"type":"unload"}},"cat":"devtools.timeline","dur":2,"name":"EventDispatch","ph":"X","pid":56001,"tdur":3,"tid":775,"ts":47786314045,"tts":643309}, + {"args":{"data":{"encodedDataLength":16850,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","requestId":"51B3229F5358F49D44871ADE7185528C"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786316342,"tts":75939}, + {"args":{"data":{"decodedBodyLength":16850,"didFail":false,"encodedDataLength":8300,"finishTime":47786.292956,"requestId":"51B3229F5358F49D44871ADE7185528C"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786319084,"tts":78385}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","startLine":0,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":0}},"cat":"devtools.timeline","dur":5056,"name":"ParseHTML","ph":"X","pid":56010,"tdur":5018,"tid":775,"ts":47786319252,"tts":78553}, + {"args":{"data":{"encodedDataLength":29781,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"7409A683C44F8397F7103BD7E03CB6C9"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786320928,"tts":115941}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","stackTrace":[{"columnNumber":14821,"functionName":"","lineNumber":1,"scriptId":"7","url":"https://player.vimeo.com/video/336812660"}],"startLine":0,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":122,"name":"ParseHTML","ph":"X","pid":56010,"tdur":122,"tid":775,"ts":47786322238,"tts":81526}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","stackTrace":[{"columnNumber":14821,"functionName":"","lineNumber":1,"scriptId":"7","url":"https://player.vimeo.com/video/336812660"}],"startLine":0,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":5,"name":"ParseHTML","ph":"X","pid":56010,"tdur":5,"tid":775,"ts":47786322386,"tts":81674}, + {"args":{"data":{"decodedBodyLength":29781,"didFail":false,"encodedDataLength":10703,"finishTime":47786.30509,"requestId":"7409A683C44F8397F7103BD7E03CB6C9"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786323163,"tts":118096}, + {"args":{"beginData":{"frame":"D215705AC29C284D9BB2459B7020E798","startLine":0,"url":"https://www.youtube.com/embed/tgbNymZ7vqY"},"endData":{"endLine":1}},"cat":"devtools.timeline","dur":2182,"name":"ParseHTML","ph":"X","pid":56007,"tdur":2146,"tid":775,"ts":47786323374,"tts":118307}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","startLine":1,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":244,"name":"ParseHTML","ph":"X","pid":56010,"tdur":221,"tid":775,"ts":47786326855,"tts":85855}, + {"args":{"data":{"type":"readystatechange"}},"cat":"devtools.timeline","dur":5,"name":"EventDispatch","ph":"X","pid":56010,"tdur":4,"tid":775,"ts":47786326880,"tts":85881}, + {"args":{"data":{"type":"DOMContentLoaded"}},"cat":"devtools.timeline","dur":4,"name":"EventDispatch","ph":"X","pid":56010,"tdur":3,"tid":775,"ts":47786326907,"tts":85907}, + {"args":{"data":{"encodedDataLength":167,"frame":"D215705AC29C284D9BB2459B7020E798","fromCache":false,"fromServiceWorker":false,"mimeType":"text/javascript","requestId":"56007.4","responseTime":1600197632096.377,"statusCode":200,"timing":{"connectEnd":-1,"connectStart":-1,"dnsEnd":-1,"dnsStart":-1,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":21.507,"requestTime":47786.326268,"sendEnd":1.593,"sendStart":1.2,"sslEnd":-1,"sslStart":-1,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786348470,"tts":122023}, + {"args":{"data":{"encodedDataLength":8415,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786350072,"tts":122290}, + {"args":{"data":{"encodedDataLength":9954,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786351528,"tts":122414}, + {"args":{"data":{"encodedDataLength":8206,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786352666,"tts":122526}, + {"args":{"data":{"encodedDataLength":65536,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786362271,"tts":122647}, + {"args":{"data":{"encodedDataLength":10513,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786365565,"tts":123031}, + {"args":{"data":{"encodedDataLength":62570,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786374732,"tts":123157}, + {"args":{"data":{"encodedDataLength":9686,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786381257,"tts":123335}, + {"args":{"data":{"encodedDataLength":31661,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786384737,"tts":123482}, + {"args":{"data":{"encodedDataLength":11259,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786385849,"tts":123571}, + {"args":{"data":{"encodedDataLength":65536,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786391419,"tts":123684}, + {"args":{"data":{"encodedDataLength":51807,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786393047,"tts":123953}, + {"args":{"data":{"encodedDataLength":65536,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786397924,"tts":124102}, + {"args":{"data":{"encodedDataLength":30600,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786399498,"tts":124219}, + {"args":{"data":{"encodedDataLength":68914,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786401894,"tts":124355}, + {"args":{"data":{"encodedDataLength":24095,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786405191,"tts":124508}, + {"args":{"data":{"encodedDataLength":17208,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786405666,"tts":124669}, + {"args":{"data":{"encodedDataLength":19424,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786405970,"tts":124798}, + {"args":{"data":{"encodedDataLength":18344,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786406883,"tts":124901}, + {"args":{"data":{"encodedDataLength":49991,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786410362,"tts":125022}, + {"args":{"data":{"encodedDataLength":65536,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786414018,"tts":125126}, + {"args":{"data":{"encodedDataLength":34053,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786415327,"tts":125253}, + {"args":{"data":{"encodedDataLength":155,"frame":"D215705AC29C284D9BB2459B7020E798","fromCache":false,"fromServiceWorker":false,"mimeType":"text/javascript","requestId":"56007.5","responseTime":1600197632163.337,"statusCode":200,"timing":{"connectEnd":-1,"connectStart":-1,"dnsEnd":-1,"dnsStart":-1,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":88.147,"requestTime":47786.326585,"sendEnd":1.277,"sendStart":0.945,"sslEnd":-1,"sslStart":-1,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786415582,"tts":125508}, + {"args":{"data":{"encodedDataLength":8543,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.5"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786415690,"tts":125615}, + {"args":{"data":{"decodedBodyLength":8543,"didFail":false,"encodedDataLength":3191,"finishTime":47786.415028,"requestId":"56007.5"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786415965,"tts":125891}, + {"args":{"data":{"encodedDataLength":65536,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786416974,"tts":125974}, + {"args":{"data":{"encodedDataLength":90694,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786418180,"tts":126184}, + {"args":{"data":{"encodedDataLength":289,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","fromCache":false,"fromServiceWorker":false,"mimeType":"image/jpeg","requestId":"56010.2","responseTime":1600197632165.812,"statusCode":200,"timing":{"connectEnd":70.426,"connectStart":27.853,"dnsEnd":27.853,"dnsStart":0.163,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":95.714,"requestTime":47786.32147,"sendEnd":70.787,"sendStart":70.706,"sslEnd":70.422,"sslStart":45.436,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786418805,"tts":87020}, + {"args":{"data":{"encodedDataLength":777,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","requestId":"56010.2"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786418942,"tts":87157}, + {"args":{"data":{"decodedBodyLength":777,"didFail":false,"encodedDataLength":1075,"finishTime":47786.417381,"requestId":"56010.2"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786419269,"tts":87483}, + {"args":{"data":{"type":"load"}},"cat":"devtools.timeline","dur":489,"name":"EventDispatch","ph":"X","pid":56010,"tdur":475,"tid":775,"ts":47786419441,"tts":87645}, + {"args":{"data":{"encodedDataLength":152922,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786420779,"tts":126470}, + {"args":{"data":{"encodedDataLength":217,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","fromCache":false,"fromServiceWorker":false,"mimeType":"text/css","requestId":"56010.4","responseTime":1600197632170.908,"statusCode":200,"timing":{"connectEnd":70.258,"connectStart":24.443,"dnsEnd":24.443,"dnsStart":0,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":97.784,"requestTime":47786.324528,"sendEnd":71.11,"sendStart":70.923,"sslEnd":70.254,"sslStart":42.505,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786423058,"tts":89233}, + {"args":{"data":{"encodedDataLength":65536,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","requestId":"56010.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786425001,"tts":89567}, + {"args":{"data":{"encodedDataLength":1119,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","requestId":"56010.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786425173,"tts":89739}, + {"args":{"data":{"encodedDataLength":10580,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786425478,"tts":126784}, + {"args":{"data":{"encodedDataLength":201007,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786425964,"tts":126973}, + {"args":{"data":{"encodedDataLength":17434,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786430177,"tts":127275}, + {"args":{"data":{"encodedDataLength":65536,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786436134,"tts":127372}, + {"args":{"data":{"encodedDataLength":53,"frame":"D215705AC29C284D9BB2459B7020E798","fromCache":false,"fromServiceWorker":false,"mimeType":"text/javascript","requestId":"56007.3","responseTime":1600197632184.859,"statusCode":200,"timing":{"connectEnd":-1,"connectStart":-1,"dnsEnd":-1,"dnsStart":-1,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":110.272,"requestTime":47786.325979,"sendEnd":1.88,"sendStart":1.3,"sslEnd":-1,"sslStart":-1,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786436949,"tts":127757}, + {"args":{"data":{"encodedDataLength":65536,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.3"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786437718,"tts":128116}, + {"args":{"data":{"encodedDataLength":90250,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786437965,"tts":128291}, + {"args":{"data":{"encodedDataLength":46544,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.3"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786439950,"tts":128432}, + {"args":{"data":{"encodedDataLength":29124,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.3"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786441459,"tts":128571}, + {"args":{"data":{"encodedDataLength":88,"frame":"D215705AC29C284D9BB2459B7020E798","fromCache":false,"fromServiceWorker":false,"mimeType":"text/css","requestId":"56007.2","responseTime":1600197632189.804,"statusCode":200,"timing":{"connectEnd":-1,"connectStart":-1,"dnsEnd":-1,"dnsStart":-1,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":117.126,"requestTime":47786.324095,"sendEnd":3.469,"sendStart":2.597,"sslEnd":-1,"sslStart":-1,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786441969,"tts":128922}, + {"args":{"data":{"encodedDataLength":55417,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","requestId":"56010.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786442084,"tts":89851}, + {"args":{"data":{"decodedBodyLength":141204,"didFail":false,"encodedDataLength":50213,"finishTime":47786.440933,"requestId":"56007.3"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786442998,"tts":129283}, + {"args":{"data":{"encodedDataLength":65536,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.2"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786443063,"tts":129348}, + {"args":{"data":{"encodedDataLength":65536,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.2"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786443165,"tts":129450}, + {"args":{"data":{"encodedDataLength":40710,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","requestId":"56010.4"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786443413,"tts":90024}, + {"args":{"data":{"encodedDataLength":65536,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.2"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786443758,"tts":129683}, + {"args":{"data":{"encodedDataLength":20456,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.2"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786443872,"tts":129798}, + {"args":{"data":{"encodedDataLength":65536,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.2"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786444103,"tts":129893}, + {"args":{"data":{"encodedDataLength":37144,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.2"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786444209,"tts":129999}, + {"args":{"data":{"decodedBodyLength":162782,"didFail":false,"encodedDataLength":17633,"finishTime":47786.4434,"requestId":"56010.4"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786447424,"tts":93791}, + {"args":{"data":{"type":"load"}},"cat":"devtools.timeline","dur":98,"name":"EventDispatch","ph":"X","pid":56010,"tdur":98,"tid":775,"ts":47786447526,"tts":93893}, + {"args":{"data":{"encodedDataLength":371,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","fromCache":false,"fromServiceWorker":false,"mimeType":"application/javascript","requestId":"56010.3","responseTime":1600197632170.613,"statusCode":200,"timing":{"connectEnd":-1,"connectStart":-1,"dnsEnd":-1,"dnsStart":-1,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":98.192,"requestTime":47786.323843,"sendEnd":71.796,"sendStart":71.657,"sslEnd":-1,"sslStart":-1,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786449300,"tts":95605}, + {"args":{"data":{"encodedDataLength":49186,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","requestId":"56010.3"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786449417,"tts":95723}, + {"args":{"data":{"decodedBodyLength":319744,"didFail":false,"encodedDataLength":46813,"finishTime":47786.444266,"requestId":"56007.2"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786449510,"tts":135146}, + {"args":{"data":{"decodedBodyLength":1422803,"didFail":false,"encodedDataLength":459603,"finishTime":47786.436996,"requestId":"56007.4"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786449670,"tts":135306}, + {"args":{"beginData":{"frame":"D215705AC29C284D9BB2459B7020E798","startLine":2,"url":"https://www.youtube.com/embed/tgbNymZ7vqY"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":38855,"name":"ParseHTML","ph":"X","pid":56007,"tdur":38816,"tid":775,"ts":47786450416,"tts":136052}, + {"args":{"data":{"type":"load"}},"cat":"devtools.timeline","dur":9,"name":"EventDispatch","ph":"X","pid":56007,"tdur":9,"tid":775,"ts":47786454191,"tts":139827}, + {"args":{"data":{"encodedDataLength":131072,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","requestId":"56010.3"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786468288,"tts":96012}, + {"args":{"data":{"encodedDataLength":50408,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","requestId":"56010.3"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786471434,"tts":96151}, + {"args":{"data":{"encodedDataLength":46058,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","requestId":"56010.3"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786472724,"tts":96339}, + {"args":{"data":{"type":"load"}},"cat":"devtools.timeline","dur":6,"name":"EventDispatch","ph":"X","pid":56007,"tdur":6,"tid":775,"ts":47786482199,"tts":167814}, + {"args":{"data":{"type":"load"}},"cat":"devtools.timeline","dur":5,"name":"EventDispatch","ph":"X","pid":56007,"tdur":5,"tid":775,"ts":47786482652,"tts":168267}, + {"args":{"data":{"type":"readystatechange"}},"cat":"devtools.timeline","dur":5,"name":"EventDispatch","ph":"X","pid":56007,"tdur":5,"tid":775,"ts":47786487626,"tts":173229}, + {"args":{"data":{"type":"DOMContentLoaded"}},"cat":"devtools.timeline","dur":7,"name":"EventDispatch","ph":"X","pid":56007,"tdur":8,"tid":775,"ts":47786487672,"tts":173272}, + {"args":{"data":{"type":"load"}},"cat":"devtools.timeline","dur":6,"name":"EventDispatch","ph":"X","pid":56007,"tdur":5,"tid":775,"ts":47786490117,"tts":175665}, + {"args":{"data":{"encodedDataLength":29303,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","requestId":"56010.3"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786490761,"tts":96492}, + {"args":{"data":{"encodedDataLength":139511,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","requestId":"56010.3"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786492376,"tts":96662}, + {"args":{"data":{"encodedDataLength":16840,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","requestId":"56010.3"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786494469,"tts":96878}, + {"args":{"data":{"encodedDataLength":61910,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","requestId":"56010.3"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786496529,"tts":96980}, + {"args":{"data":{"encodedDataLength":241,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","fromCache":false,"fromServiceWorker":false,"mimeType":"text/javascript","requestId":"56010.5","responseTime":1600197632219.138,"statusCode":200,"timing":{"connectEnd":-1,"connectStart":-1,"dnsEnd":-1,"dnsStart":-1,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":144.838,"requestTime":47786.325692,"sendEnd":69.949,"sendStart":69.843,"sslEnd":-1,"sslStart":-1,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786497068,"tts":97377}, + {"args":{"data":{"encodedDataLength":2641,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","requestId":"56010.5"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786497187,"tts":97495}, + {"args":{"data":{"decodedBodyLength":2641,"didFail":false,"encodedDataLength":1474,"finishTime":47786.496546,"requestId":"56010.5"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786497418,"tts":97726}, + {"args":{"data":{"type":"load"}},"cat":"devtools.timeline","dur":4,"name":"EventDispatch","ph":"X","pid":56010,"tdur":5,"tid":775,"ts":47786499329,"tts":99288}, + {"args":{"data":{"encodedDataLength":93529,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","requestId":"56010.3"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786499425,"tts":99384}, + {"args":{"data":{"decodedBodyLength":617817,"didFail":false,"encodedDataLength":145772,"finishTime":47786.497091,"requestId":"56010.3"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786501325,"tts":99753}, + {"args":{"data":{"type":"load"}},"cat":"devtools.timeline","dur":86439,"name":"EventDispatch","ph":"X","pid":56010,"tdur":81152,"tid":775,"ts":47786522501,"tts":120599}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","stackTrace":[{"columnNumber":456434,"functionName":"wd","lineNumber":10,"scriptId":"8","url":"https://f.vimeocdn.com/p/3.22.3/js/player.js"}],"startLine":0,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":295,"name":"ParseHTML","ph":"X","pid":56010,"tdur":295,"tid":775,"ts":47786524746,"tts":122833}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","stackTrace":[{"columnNumber":456434,"functionName":"wd","lineNumber":10,"scriptId":"8","url":"https://f.vimeocdn.com/p/3.22.3/js/player.js"}],"startLine":0,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":5,"name":"ParseHTML","ph":"X","pid":56010,"tdur":5,"tid":775,"ts":47786525068,"tts":123154}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","stackTrace":[{"columnNumber":484830,"functionName":"St","lineNumber":10,"scriptId":"8","url":"https://f.vimeocdn.com/p/3.22.3/js/player.js"}],"startLine":0,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":627,"name":"ParseHTML","ph":"X","pid":56010,"tdur":627,"tid":775,"ts":47786531886,"tts":129969}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","stackTrace":[{"columnNumber":484830,"functionName":"St","lineNumber":10,"scriptId":"8","url":"https://f.vimeocdn.com/p/3.22.3/js/player.js"}],"startLine":0,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":5,"name":"ParseHTML","ph":"X","pid":56010,"tdur":6,"tid":775,"ts":47786532556,"tts":130638}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","stackTrace":[{"columnNumber":579872,"functionName":"I","lineNumber":10,"scriptId":"8","url":"https://f.vimeocdn.com/p/3.22.3/js/player.js"}],"startLine":0,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":265,"name":"ParseHTML","ph":"X","pid":56010,"tdur":264,"tid":775,"ts":47786536651,"tts":134670}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","stackTrace":[{"columnNumber":579872,"functionName":"I","lineNumber":10,"scriptId":"8","url":"https://f.vimeocdn.com/p/3.22.3/js/player.js"}],"startLine":0,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":7,"name":"ParseHTML","ph":"X","pid":56010,"tdur":6,"tid":775,"ts":47786536973,"tts":134992}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","stackTrace":[{"columnNumber":586111,"functionName":"w","lineNumber":10,"scriptId":"8","url":"https://f.vimeocdn.com/p/3.22.3/js/player.js"}],"startLine":0,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":29,"name":"ParseHTML","ph":"X","pid":56010,"tdur":29,"tid":775,"ts":47786537810,"tts":135824}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","stackTrace":[{"columnNumber":586111,"functionName":"w","lineNumber":10,"scriptId":"8","url":"https://f.vimeocdn.com/p/3.22.3/js/player.js"}],"startLine":0,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":8,"name":"ParseHTML","ph":"X","pid":56010,"tdur":9,"tid":775,"ts":47786537861,"tts":135874}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","stackTrace":[{"columnNumber":588860,"functionName":"","lineNumber":10,"scriptId":"8","url":"https://f.vimeocdn.com/p/3.22.3/js/player.js"}],"startLine":0,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":66,"name":"ParseHTML","ph":"X","pid":56010,"tdur":65,"tid":775,"ts":47786538356,"tts":136370}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","stackTrace":[{"columnNumber":588860,"functionName":"","lineNumber":10,"scriptId":"8","url":"https://f.vimeocdn.com/p/3.22.3/js/player.js"}],"startLine":0,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":5,"name":"ParseHTML","ph":"X","pid":56010,"tdur":4,"tid":775,"ts":47786538442,"tts":136456}, + {"args":{"data":{"type":"volumechange"}},"cat":"devtools.timeline","dur":9,"name":"EventDispatch","ph":"X","pid":56007,"tdur":9,"tid":775,"ts":47786564974,"tts":233138}, + {"args":{"data":{"encodedDataLength":0,"frame":"D215705AC29C284D9BB2459B7020E798","fromCache":false,"fromServiceWorker":false,"mimeType":"image/png","requestId":"56007.17","statusCode":200}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786568015,"tts":236172}, + {"args":{"data":{"encodedDataLength":175,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.17"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786568027,"tts":236183}, + {"args":{"data":{"decodedBodyLength":0,"didFail":false,"encodedDataLength":0,"requestId":"56007.17"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786568032,"tts":236188}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","stackTrace":[{"columnNumber":601194,"functionName":"n.Ed","lineNumber":10,"scriptId":"8","url":"https://f.vimeocdn.com/p/3.22.3/js/player.js"}],"startLine":0,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":59,"name":"ParseHTML","ph":"X","pid":56010,"tdur":58,"tid":775,"ts":47786605419,"tts":198373}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","stackTrace":[{"columnNumber":601194,"functionName":"n.Ed","lineNumber":10,"scriptId":"8","url":"https://f.vimeocdn.com/p/3.22.3/js/player.js"}],"startLine":0,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":5,"name":"ParseHTML","ph":"X","pid":56010,"tdur":5,"tid":775,"ts":47786605504,"tts":198457}, + {"args":{"data":{"encodedDataLength":383,"frame":"D215705AC29C284D9BB2459B7020E798","fromCache":false,"fromServiceWorker":false,"mimeType":"text/javascript","requestId":"56007.16","responseTime":1600197632329.537,"statusCode":200,"timing":{"connectEnd":0,"connectStart":0,"dnsEnd":0,"dnsStart":0,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":19.711,"requestTime":47786.561199,"sendEnd":0.455,"sendStart":0.283,"sslEnd":0,"sslStart":0,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786609057,"tts":274454}, + {"args":{"data":{"encodedDataLength":35953,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.16"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786609202,"tts":274597}, + {"args":{"data":{"decodedBodyLength":35953,"didFail":false,"encodedDataLength":11477,"finishTime":47786.581515,"requestId":"56007.16"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786610337,"tts":275525}, + {"args":{"data":{"type":"load"}},"cat":"devtools.timeline","dur":401,"name":"EventDispatch","ph":"X","pid":56007,"tdur":401,"tid":775,"ts":47786610798,"tts":275983}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","stackTrace":[{"columnNumber":484830,"functionName":"St","lineNumber":10,"scriptId":"8","url":"https://f.vimeocdn.com/p/3.22.3/js/player.js"}],"startLine":0,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":570,"name":"ParseHTML","ph":"X","pid":56010,"tdur":570,"tid":775,"ts":47786613488,"tts":206212}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","stackTrace":[{"columnNumber":484830,"functionName":"St","lineNumber":10,"scriptId":"8","url":"https://f.vimeocdn.com/p/3.22.3/js/player.js"}],"startLine":0,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":5,"name":"ParseHTML","ph":"X","pid":56010,"tdur":5,"tid":775,"ts":47786614084,"tts":206808}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","stackTrace":[{"columnNumber":484830,"functionName":"St","lineNumber":10,"scriptId":"8","url":"https://f.vimeocdn.com/p/3.22.3/js/player.js"}],"startLine":0,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":497,"name":"ParseHTML","ph":"X","pid":56010,"tdur":497,"tid":775,"ts":47786614675,"tts":207399}, + {"args":{"beginData":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9","stackTrace":[{"columnNumber":484830,"functionName":"St","lineNumber":10,"scriptId":"8","url":"https://f.vimeocdn.com/p/3.22.3/js/player.js"}],"startLine":0,"url":"https://player.vimeo.com/video/336812660"},"endData":{"endLine":-1}},"cat":"devtools.timeline","dur":5,"name":"ParseHTML","ph":"X","pid":56010,"tdur":4,"tid":775,"ts":47786615197,"tts":207922}, + {"args":{"data":{"type":"volumechange"}},"cat":"devtools.timeline","dur":6,"name":"EventDispatch","ph":"X","pid":56010,"tdur":6,"tid":775,"ts":47786615715,"tts":208439}, + {"args":{"data":{"type":"volumechange"}},"cat":"devtools.timeline","dur":3,"name":"EventDispatch","ph":"X","pid":56010,"tdur":3,"tid":775,"ts":47786615730,"tts":208454}, + {"args":{"data":{"type":"ratechange"}},"cat":"devtools.timeline","dur":2,"name":"EventDispatch","ph":"X","pid":56010,"tdur":3,"tid":775,"ts":47786615742,"tts":208466}, + {"args":{"data":{"type":"ratechange"}},"cat":"devtools.timeline","dur":2,"name":"EventDispatch","ph":"X","pid":56010,"tdur":3,"tid":775,"ts":47786615753,"tts":208476}, + {"args":{"data":{"type":"volumechange"}},"cat":"devtools.timeline","dur":3,"name":"EventDispatch","ph":"X","pid":56010,"tdur":3,"tid":775,"ts":47786615771,"tts":208495}, + {"args":{"data":{"type":"ratechange"}},"cat":"devtools.timeline","dur":2,"name":"EventDispatch","ph":"X","pid":56010,"tdur":3,"tid":775,"ts":47786615783,"tts":208506}, + {"args":{"data":{"type":"ratechange"}},"cat":"devtools.timeline","dur":3,"name":"EventDispatch","ph":"X","pid":56010,"tdur":1,"tid":775,"ts":47786615793,"tts":208518}, + {"args":{"data":{"encodedDataLength":377,"frame":"D215705AC29C284D9BB2459B7020E798","fromCache":false,"fromServiceWorker":false,"mimeType":"text/javascript","requestId":"56007.15","responseTime":1600197632378.034,"statusCode":200,"timing":{"connectEnd":116.683,"connectStart":48.513,"dnsEnd":48.513,"dnsStart":0.117,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":142.036,"requestTime":47786.487395,"sendEnd":116.857,"sendStart":116.781,"sslEnd":116.68,"sslStart":74.387,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786630165,"tts":280242}, + {"args":{"data":{"encodedDataLength":29,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.15"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786630281,"tts":280357}, + {"args":{"data":{"decodedBodyLength":29,"didFail":false,"encodedDataLength":415,"finishTime":47786.629669,"requestId":"56007.15"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786630526,"tts":280603}, + {"args":{"data":{"type":"load"}},"cat":"devtools.timeline","dur":160,"name":"EventDispatch","ph":"X","pid":56007,"tdur":160,"tid":775,"ts":47786630724,"tts":280800}, + {"args":{"data":{"encodedDataLength":176,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","fromCache":false,"fromServiceWorker":false,"mimeType":"image/webp","requestId":"56010.8","responseTime":1600197632382.678,"statusCode":200,"timing":{"connectEnd":-1,"connectStart":-1,"dnsEnd":-1,"dnsStart":-1,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":27.927,"requestTime":47786.606134,"sendEnd":0.28,"sendStart":0.179,"sslEnd":-1,"sslStart":-1,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786635749,"tts":210456}, + {"args":{"data":{"encodedDataLength":9128,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","requestId":"56010.8"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786635863,"tts":210568}, + {"args":{"data":{"decodedBodyLength":9128,"didFail":false,"encodedDataLength":9313,"finishTime":47786.63528,"requestId":"56010.8"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786636061,"tts":210767}, + {"args":{"data":{"type":"load"}},"cat":"devtools.timeline","dur":884,"name":"EventDispatch","ph":"X","pid":56010,"tdur":884,"tid":775,"ts":47786636464,"tts":211170}, + {"args":{"data":{"type":"readystatechange"}},"cat":"devtools.timeline","dur":4,"name":"EventDispatch","ph":"X","pid":56010,"tdur":4,"tid":775,"ts":47786637368,"tts":212074}, + {"args":{"data":{"type":"load"}},"cat":"devtools.timeline","dur":164,"name":"EventDispatch","ph":"X","pid":56010,"tdur":164,"tid":775,"ts":47786637392,"tts":212098}, + {"args":{"data":{"type":"pageshow"}},"cat":"devtools.timeline","dur":5,"name":"EventDispatch","ph":"X","pid":56010,"tdur":5,"tid":775,"ts":47786637591,"tts":212297}, + {"args":{"data":{"type":"load"}},"cat":"devtools.timeline","dur":6,"name":"EventDispatch","ph":"X","pid":56001,"tdur":5,"tid":775,"ts":47786637772,"tts":646107}, + {"args":{"data":{"encodedDataLength":429,"frame":"D215705AC29C284D9BB2459B7020E798","fromCache":false,"fromServiceWorker":false,"mimeType":"image/jpeg","requestId":"56007.18","responseTime":1600197632428.292,"statusCode":200,"timing":{"connectEnd":89.697,"connectStart":37.824,"dnsEnd":37.824,"dnsStart":0.18,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":110.806,"requestTime":47786.568895,"sendEnd":89.932,"sendStart":89.842,"sslEnd":89.691,"sslStart":55.068,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786682135,"tts":284907}, + {"args":{"data":{"encodedDataLength":2639,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.18"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786682245,"tts":285018}, + {"args":{"data":{"decodedBodyLength":2639,"didFail":false,"encodedDataLength":3077,"finishTime":47786.681621,"requestId":"56007.18"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786682473,"tts":285245}, + {"args":{"data":{"encodedDataLength":355,"frame":"D215705AC29C284D9BB2459B7020E798","fromCache":false,"fromServiceWorker":false,"mimeType":"image/jpeg","requestId":"56007.19","responseTime":1600197632441.314,"statusCode":200,"timing":{"connectEnd":91.177,"connectStart":35.828,"dnsEnd":35.828,"dnsStart":0.182,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":122.919,"requestTime":47786.569798,"sendEnd":91.352,"sendStart":91.272,"sslEnd":91.173,"sslStart":52.472,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786695299,"tts":285676}, + {"args":{"data":{"encodedDataLength":5575,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.19"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786695417,"tts":285794}, + {"args":{"data":{"encodedDataLength":6980,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.19"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786696707,"tts":285989}, + {"args":{"data":{"encodedDataLength":8367,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.19"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786699243,"tts":286149}, + {"args":{"data":{"encodedDataLength":6980,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.19"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786701501,"tts":286311}, + {"args":{"data":{"encodedDataLength":1396,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.19"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786703157,"tts":286597}, + {"args":{"data":{"encodedDataLength":110,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","fromCache":false,"fromServiceWorker":false,"mimeType":"text/plain","requestId":"56010.9","responseTime":1600197632452.174,"statusCode":200,"timing":{"connectEnd":44.498,"connectStart":0.118,"dnsEnd":0.118,"dnsStart":0.113,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":94.751,"requestTime":47786.608785,"sendEnd":44.701,"sendStart":44.601,"sslEnd":44.493,"sslStart":15.325,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786704132,"tts":215192}, + {"args":{"data":{"decodedBodyLength":0,"didFail":false,"encodedDataLength":110,"finishTime":47786.703717,"requestId":"56010.9"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56010,"s":"t","tid":775,"ts":47786704355,"tts":215415}, + {"args":{"data":{"encodedDataLength":16025,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.19"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786726549,"tts":287728}, + {"args":{"data":{"encodedDataLength":2792,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.19"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786727894,"tts":288013}, + {"args":{"data":{"encodedDataLength":397,"frame":"D215705AC29C284D9BB2459B7020E798","fromCache":false,"fromServiceWorker":false,"mimeType":"font/ttf","requestId":"56007.6","responseTime":1600197632478.239,"statusCode":200,"timing":{"connectEnd":95.703,"connectStart":35.412,"dnsEnd":35.412,"dnsStart":0.131,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":119.779,"requestTime":47786.609857,"sendEnd":95.882,"sendStart":95.8,"sslEnd":95.699,"sslStart":63.471,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786730141,"tts":288290}, + {"args":{"data":{"encodedDataLength":11159,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.19"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786731437,"tts":288517}, + {"args":{"data":{"encodedDataLength":6599,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.19"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786733814,"tts":289587}, + {"args":{"data":{"decodedBodyLength":65873,"didFail":false,"encodedDataLength":66273,"finishTime":47786.733333,"requestId":"56007.19"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786734100,"tts":289873}, + {"args":{"data":{"encodedDataLength":17329,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.6"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786734897,"tts":290001}, + {"args":{"data":{"encodedDataLength":3535,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.6"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786743982,"tts":290227}, + {"args":{"data":{"decodedBodyLength":20864,"didFail":false,"encodedDataLength":14759,"finishTime":47786.743963,"requestId":"56007.6"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786759480,"tts":294386}, + {"args":{"data":{"type":"readystatechange"}},"cat":"devtools.timeline","dur":5,"name":"EventDispatch","ph":"X","pid":56007,"tdur":4,"tid":775,"ts":47786759519,"tts":294426}, + {"args":{"data":{"type":"load"}},"cat":"devtools.timeline","dur":13256,"name":"EventDispatch","ph":"X","pid":56007,"tdur":1213,"tid":775,"ts":47786759548,"tts":294455}, + {"args":{"data":{"type":"pageshow"}},"cat":"devtools.timeline","dur":3,"name":"EventDispatch","ph":"X","pid":56007,"tdur":3,"tid":775,"ts":47786772842,"tts":295706}, + {"args":{"data":{"type":"load"}},"cat":"devtools.timeline","dur":7,"name":"EventDispatch","ph":"X","pid":56001,"tdur":7,"tid":775,"ts":47786773096,"tts":646596}, + {"args":{"data":{"type":"readystatechange"}},"cat":"devtools.timeline","dur":7,"name":"EventDispatch","ph":"X","pid":56001,"tdur":7,"tid":775,"ts":47786774364,"tts":646705}, + {"args":{"data":{"type":"load"}},"cat":"devtools.timeline","dur":3,"name":"EventDispatch","ph":"X","pid":56001,"tdur":3,"tid":775,"ts":47786774385,"tts":646726}, + {"args":{"data":{"type":"pageshow"}},"cat":"devtools.timeline","dur":5,"name":"EventDispatch","ph":"X","pid":56001,"tdur":5,"tid":775,"ts":47786774469,"tts":646810}, + {"args":{"data":{"encodedDataLength":184,"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A","fromCache":false,"fromServiceWorker":false,"mimeType":"text/html","requestId":"56001.2","responseTime":1600197632526.586,"statusCode":404,"timing":{"connectEnd":-1,"connectStart":-1,"dnsEnd":-1,"dnsStart":-1,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":0.927,"requestTime":47786.77703,"sendEnd":0.221,"sendStart":0.176,"sslEnd":-1,"sslStart":-1,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56001,"s":"t","tid":775,"ts":47786778369,"tts":648032}, + {"args":{"data":{"encodedDataLength":469,"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A","requestId":"56001.2"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56001,"s":"t","tid":775,"ts":47786778617,"tts":648277}, + {"args":{"data":{"decodedBodyLength":469,"didFail":false,"encodedDataLength":653,"finishTime":47786.778266,"requestId":"56001.2"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56001,"s":"t","tid":775,"ts":47786778868,"tts":648528}, + {"args":{"data":{"type":"transitionend"}},"cat":"devtools.timeline","dur":6,"name":"EventDispatch","ph":"X","pid":56010,"tdur":6,"tid":775,"ts":47786779938,"tts":218018}, + {"args":{"data":{"type":"transitionend"}},"cat":"devtools.timeline","dur":3,"name":"EventDispatch","ph":"X","pid":56010,"tdur":4,"tid":775,"ts":47786779948,"tts":218028}, + {"args":{"data":{"encodedDataLength":1121,"frame":"D215705AC29C284D9BB2459B7020E798","fromCache":false,"fromServiceWorker":false,"mimeType":"application/json","requestId":"56007.14","responseTime":1600197632537.57,"statusCode":200,"timing":{"connectEnd":67.778,"connectStart":0.328,"dnsEnd":0.12,"dnsStart":0.112,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":114.785,"requestTime":47786.674157,"sendEnd":37.086,"sendStart":36.97,"sslEnd":67.778,"sslStart":0.328,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786789796,"tts":300092}, + {"args":{"data":{"encodedDataLength":113,"frame":"D215705AC29C284D9BB2459B7020E798","requestId":"56007.14"}},"cat":"devtools.timeline","name":"ResourceReceivedData","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786789960,"tts":300257}, + {"args":{"data":{"decodedBodyLength":113,"didFail":false,"encodedDataLength":1254,"finishTime":47786.789606,"requestId":"56007.14"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56007,"s":"t","tid":775,"ts":47786791212,"tts":301508}, + {"args":{"data":{"type":"transitionend"}},"cat":"devtools.timeline","dur":858,"name":"EventDispatch","ph":"X","pid":56010,"tdur":841,"tid":775,"ts":47786872592,"tts":222271}, + {"args":{"data":{"type":"transitionend"}},"cat":"devtools.timeline","dur":5,"name":"EventDispatch","ph":"X","pid":56010,"tdur":5,"tid":775,"ts":47786873465,"tts":223127}, + {"args":{"data":{"encodedDataLength":818,"frame":"A0D1CEFE4B294AB844A8912CA96784F9","fromCache":false,"fromServiceWorker":false,"mimeType":"text/plain","requestId":"56010.7","responseTime":1600197633390.104,"statusCode":204,"timing":{"connectEnd":77.571,"connectStart":25.829,"dnsEnd":25.829,"dnsStart":0.097,"proxyEnd":-1,"proxyStart":-1,"pushEnd":0,"pushStart":0,"receiveHeadersEnd":1142.011,"requestTime":47786.499527,"sendEnd":77.682,"sendStart":77.624,"sslEnd":77.567,"sslStart":44.659,"workerReady":-1,"workerStart":-1}}},"cat":"devtools.timeline","name":"ResourceReceiveResponse","ph":"I","pid":56010,"s":"t","tid":775,"ts":47787642896,"tts":227636}, + {"args":{"data":{"decodedBodyLength":0,"didFail":false,"encodedDataLength":818,"finishTime":47787.64191,"requestId":"56010.7"}},"cat":"devtools.timeline","name":"ResourceFinish","ph":"I","pid":56010,"s":"t","tid":775,"ts":47787643328,"tts":228068}, + {"args":{},"cat":"disabled-by-default-devtools.timeline","dur":1342,"name":"RunTask","ph":"X","pid":56001,"tdur":1342,"tid":775,"ts":47787781586,"tts":650151}, + {"args":{},"cat":"disabled-by-default-devtools.timeline","dur":1200,"name":"EvaluateScript","ph":"X","pid":56001,"tdur":1201,"tid":775,"ts":47787781647,"tts":650211}, + {"args":{"data":{"columnNumber":1,"lineNumber":1,"notStreamedReason":"inline script","streamed":false,"url":""},"fileName":""},"cat":"v8,devtools.timeline","dur":163,"name":"v8.compile","ph":"X","pid":56001,"tdur":162,"tid":775,"ts":47787781794,"tts":650360}, + {"args":{"data":{"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A","singleShot":true,"stackTrace":[{"columnNumber":5,"functionName":"","lineNumber":12,"scriptId":"15","url":""}],"timeout":50,"timerId":1}},"cat":"devtools.timeline","name":"TimerInstall","ph":"I","pid":56001,"s":"t","tid":775,"ts":47787782704,"tts":651269}, + {"args":{"snapshot":"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAHyARgDASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAII/8QAGRABAAIDAAAAAAAAAAAAAAAAAAECAzNx/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH/xAAUEQEAAAAAAAAAAAAAAAAAAAAA/9oADAMBAAIRAxEAPwDVICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcmu3JDJrtyQFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnJrtyQya7ckBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJya7ckMmu3JAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcmu3JDJrtyQFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnJrtyQya7ckBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJya7ckMmu3JAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcmu3JDJrtyQFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnJrtyQya7ckBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJya7ckMmu3JAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcmu3JDJrtyQFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnJrtyQya7ckBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJya7ckMmu3JAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcmu3JDJrtyQFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnJrtyQya7ckBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJya7ckMmu3JAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcmu3JDJrtyQFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnJrtyQya7ckBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJya7ckMmu3JAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcmu3JDJrtyQFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnJrtyQya7ckBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJya7ckMmu3JAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcmu3JDJrtyQFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnJrtyQya7ckBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJya7ckMmu3JAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcmu3JDJrtyQFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnJrtyQya7ckBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJya7ckMmu3JAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcmu3JDJrtyQFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnJrtyQya7ckBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJya7ckMmu3JAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcmu3JDJrtyQFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnJrtyQAf/2Q=="},"cat":"disabled-by-default-devtools.screenshot","id":"0x1","name":"Screenshot","ph":"O","pid":55969,"tid":775,"ts":47786037920}, + {"args":{"data":{"documentLoaderURL":"http://localhost:8686/yt-embed.html","isLoadingMainFrame":true,"navigationId":"DA13668C4781FCB2BF6F3AB0F3313AB7"},"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A"},"cat":"blink.user_timing","name":"navigationStart","ph":"R","pid":56001,"tid":775,"ts":47786040954}, + {"args":{"data":{"documentLoaderURL":"","isLoadingMainFrame":false,"navigationId":"4128E72F76ADE3A94BAEE1D2D1778B34"},"frame":"D215705AC29C284D9BB2459B7020E798"},"cat":"blink.user_timing","name":"navigationStart","ph":"R","pid":56001,"tid":775,"ts":47786057234}, + {"args":{"frame":"D215705AC29C284D9BB2459B7020E798"},"cat":"blink.user_timing,rail","name":"domContentLoadedEventEnd","ph":"R","pid":56001,"tid":775,"ts":47786057742}, + {"args":{"data":{"documentLoaderURL":"https://www.youtube.com/embed/tgbNymZ7vqY","isLoadingMainFrame":false,"navigationId":"7409A683C44F8397F7103BD7E03CB6C9"},"frame":"D215705AC29C284D9BB2459B7020E798"},"cat":"blink.user_timing","name":"navigationStart","ph":"R","pid":56007,"tid":775,"ts":47786058113}, + {"args":{"data":{"documentLoaderURL":"","isLoadingMainFrame":false,"navigationId":"FB4672AF3C2DC8E3D150CB86D14D72B5"},"frame":"A0D1CEFE4B294AB844A8912CA96784F9"},"cat":"blink.user_timing","name":"navigationStart","ph":"R","pid":56001,"tid":775,"ts":47786058670}, + {"args":{"frame":"A0D1CEFE4B294AB844A8912CA96784F9"},"cat":"blink.user_timing,rail","name":"domContentLoadedEventEnd","ph":"R","pid":56001,"tid":775,"ts":47786058989}, + {"args":{"data":{"documentLoaderURL":"http://player.vimeo.com/video/336812660","isLoadingMainFrame":false,"navigationId":"51B3229F5358F49D44871ADE7185528C"},"frame":"A0D1CEFE4B294AB844A8912CA96784F9"},"cat":"blink.user_timing","name":"navigationStart","ph":"R","pid":56010,"tid":775,"ts":47786059251}, + {"args":{"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A"},"cat":"blink.user_timing,rail","name":"domContentLoadedEventEnd","ph":"R","pid":56001,"tid":775,"ts":47786059637}, + {"args":{"data":{"navigationId":"DA13668C4781FCB2BF6F3AB0F3313AB7"},"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A"},"cat":"loading,rail,devtools.timeline","name":"firstPaint","ph":"R","pid":56001,"tid":775,"ts":47786179669}, + {"args":{"data":{"navigationId":"DA13668C4781FCB2BF6F3AB0F3313AB7"},"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A"},"cat":"loading,rail,devtools.timeline","name":"firstContentfulPaint","ph":"R","pid":56001,"tid":775,"ts":47786179669}, + {"args":{"data":{"navigationId":"DA13668C4781FCB2BF6F3AB0F3313AB7"},"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A"},"cat":"loading,rail,devtools.timeline","name":"firstMeaningfulPaintCandidate","ph":"R","pid":56001,"tid":775,"ts":47786179669}, + {"args":{"data":{"candidateIndex":1,"isMainFrame":true,"navigationId":"DA13668C4781FCB2BF6F3AB0F3313AB7","nodeId":5,"size":332,"type":"text"},"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A"},"cat":"loading,rail,devtools.timeline","name":"largestContentfulPaint::Candidate","ph":"R","pid":56001,"tid":775,"ts":47786179669}, + {"args":{"data":{"navigationId":"DA13668C4781FCB2BF6F3AB0F3313AB7"},"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A"},"cat":"loading,rail,devtools.timeline","name":"firstMeaningfulPaint","ph":"R","pid":56001,"tid":775,"ts":47786179669}, + {"args":{"afterUserInput":0,"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A"},"cat":"loading,rail,devtools.timeline","name":"firstMeaningfulPaint","ph":"R","pid":56001,"tid":775,"ts":47786179669}, + {"args":{"data":{"documentLoaderURL":"","isLoadingMainFrame":false,"navigationId":"179B3002EE9A908E8BD12254B86ACBFC"},"frame":"A0D1CEFE4B294AB844A8912CA96784F9"},"cat":"blink.user_timing","name":"navigationStart","ph":"R","pid":56010,"tid":775,"ts":47786298402}, + {"args":{"snapshot":"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"},"cat":"disabled-by-default-devtools.screenshot","id":"0x1","name":"Screenshot","ph":"O","pid":55969,"tid":775,"ts":47786554557}, + {"args":{"frame":"8ECEE70925EB8E7B8C2100384AFF4D1A"},"cat":"blink.user_timing","name":"loadEventEnd","ph":"R","pid":56001,"tid":775,"ts":47786774390}, + {"args":{"snapshot":"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"},"cat":"disabled-by-default-devtools.screenshot","id":"0x1","name":"Screenshot","ph":"O","pid":55969,"tid":775,"ts":47787071203}, + {"args":{"snapshot":"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"},"cat":"disabled-by-default-devtools.screenshot","id":"0x1","name":"Screenshot","ph":"O","pid":55969,"tid":775,"ts":47787487853} + ] +} \ No newline at end of file diff --git a/lighthouse-core/test/results/sample_v2.json b/lighthouse-core/test/results/sample_v2.json index d1a78fb291fb..66626a6e8cac 100644 --- a/lighthouse-core/test/results/sample_v2.json +++ b/lighthouse-core/test/results/sample_v2.json @@ -1795,6 +1795,13 @@ } } }, + "third-party-facades": { + "id": "third-party-facades", + "title": "Lazy load third-party resources with facades", + "description": "Some third-party embeds can be lazy loaded. Consider replacing them with a facade until they are required. [Learn more](https://web.dev/efficiently-load-third-party-javascript/).", + "score": null, + "scoreDisplayMode": "notApplicable" + }, "largest-contentful-paint-element": { "id": "largest-contentful-paint-element", "title": "Largest Contentful Paint element", @@ -4632,6 +4639,11 @@ "weight": 0, "group": "diagnostics" }, + { + "id": "third-party-facades", + "weight": 0, + "group": "diagnostics" + }, { "id": "largest-contentful-paint-element", "weight": 0, @@ -5830,6 +5842,12 @@ "duration": 100, "entryType": "measure" }, + { + "startTime": 0, + "name": "lh:audit:third-party-facades", + "duration": 100, + "entryType": "measure" + }, { "startTime": 0, "name": "lh:audit:largest-contentful-paint-element", @@ -7097,9 +7115,15 @@ "lighthouse-core/audits/third-party-summary.js | columnThirdParty": [ "audits[third-party-summary].details.headings[0].text" ], - "lighthouse-core/audits/third-party-summary.js | columnBlockingTime": [ + "lighthouse-core/lib/i18n/i18n.js | columnBlockingTime": [ "audits[third-party-summary].details.headings[2].text" ], + "lighthouse-core/audits/third-party-facades.js | title": [ + "audits[third-party-facades].title" + ], + "lighthouse-core/audits/third-party-facades.js | description": [ + "audits[third-party-facades].description" + ], "lighthouse-core/audits/largest-contentful-paint-element.js | title": [ "audits[largest-contentful-paint-element].title" ], diff --git a/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-export-run-expected.txt b/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-export-run-expected.txt index 30b8393bfba4..57304d5d24dc 100644 --- a/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-export-run-expected.txt +++ b/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-export-run-expected.txt @@ -2,11 +2,11 @@ Tests that exporting works. ++++++++ testExportHtml -# of .lh-audit divs (original): 135 +# of .lh-audit divs (original): 136 -# of .lh-audit divs (exported html): 135 +# of .lh-audit divs (exported html): 136 ++++++++ testExportJson -# of audits (json): 151 +# of audits (json): 152 diff --git a/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-successful-run-expected.txt b/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-successful-run-expected.txt index 1206b14b6bd9..71dc5a7a343e 100644 --- a/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-successful-run-expected.txt +++ b/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-successful-run-expected.txt @@ -241,6 +241,7 @@ Computing artifact: ResourceSummary Auditing: Timing budget Auditing: Keep request counts low and transfer sizes small Auditing: Minimize third-party usage +Auditing: Lazy load third-party resources with facades Auditing: Largest Contentful Paint element Auditing: Avoid large layout shifts Auditing: Avoid long main-thread tasks @@ -534,6 +535,7 @@ tap-targets: fail td-headers-attr: notApplicable th-has-data-cells: notApplicable themed-omnibox: fail +third-party-facades: notApplicable third-party-summary: notApplicable timing-budget: ERROR Chrome didn't collect any screenshots during the page load. Please make sure there is content visible on the page, and then try re-running Lighthouse. (NO_SCREENSHOTS) total-blocking-time: numeric @@ -564,5 +566,5 @@ visual-order-follows-dom: manual without-javascript: pass works-offline: fail -# of .lh-audit divs: 155 +# of .lh-audit divs: 156 diff --git a/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-view-trace-run-expected.txt b/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-view-trace-run-expected.txt index 7340ef0369c0..8221e38161dd 100644 --- a/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-view-trace-run-expected.txt +++ b/third-party/chromium-webtests/webtests/http/tests/devtools/lighthouse/lighthouse-view-trace-run-expected.txt @@ -49,6 +49,7 @@ resource-summary screenshot-thumbnails server-response-time speed-index +third-party-facades third-party-summary timing-budget total-blocking-time