All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] package/qt5/qt5webengine-chromium-catapult: new package
@ 2022-01-05 10:14 James Hilliard
  2022-01-05 10:14 ` [Buildroot] [PATCH 2/3] package/qt5/qt5webengine: bump to version 5.15.8 James Hilliard
  2022-01-05 10:14 ` [Buildroot] [PATCH 3/3] package/qt5: bump packages to latest kde submodule versions James Hilliard
  0 siblings, 2 replies; 3+ messages in thread
From: James Hilliard @ 2022-01-05 10:14 UTC (permalink / raw)
  To: buildroot
  Cc: Naumann Andreas, Joshua Henderson, Bartosz Bilas,
	Angelo Compagnucci, Peter Seiderer, Gaël Portay,
	Thomas Petazzoni, James Hilliard, Julien Corjon

This version of catapult is python3 compatible and will be used to
replace the python2 only version in qt5webengine-chromium.

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
 .../qt5webengine-chromium-catapult.hash             |  3 +++
 .../qt5webengine-chromium-catapult.mk               | 13 +++++++++++++
 2 files changed, 16 insertions(+)
 create mode 100644 package/qt5/qt5webengine-chromium-catapult/qt5webengine-chromium-catapult.hash
 create mode 100644 package/qt5/qt5webengine-chromium-catapult/qt5webengine-chromium-catapult.mk

diff --git a/package/qt5/qt5webengine-chromium-catapult/qt5webengine-chromium-catapult.hash b/package/qt5/qt5webengine-chromium-catapult/qt5webengine-chromium-catapult.hash
new file mode 100644
index 0000000000..8190a6dd5d
--- /dev/null
+++ b/package/qt5/qt5webengine-chromium-catapult/qt5webengine-chromium-catapult.hash
@@ -0,0 +1,3 @@
+# Locally calculated
+sha256  66b8593e665c4236f7b1c487548d41d3826eddbf486ff985dbdfd01cddcaa1a8  qt5webengine-chromium-catapult-5eedfe23148a234211ba477f76fc2ea2e8529189-br1.tar.gz
+sha256  f0df289ba9d03d857ad1c2f5918861376b1510b71588ffc60eff5c7a7bfedb09  LICENSE
diff --git a/package/qt5/qt5webengine-chromium-catapult/qt5webengine-chromium-catapult.mk b/package/qt5/qt5webengine-chromium-catapult/qt5webengine-chromium-catapult.mk
new file mode 100644
index 0000000000..fac3c996fa
--- /dev/null
+++ b/package/qt5/qt5webengine-chromium-catapult/qt5webengine-chromium-catapult.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# qt5webengine-chromium-catapult
+#
+################################################################################
+
+QT5WEBENGINE_CHROMIUM_CATAPULT_VERSION = 5eedfe23148a234211ba477f76fc2ea2e8529189
+QT5WEBENGINE_CHROMIUM_CATAPULT_SITE = https://chromium.googlesource.com/catapult.git
+QT5WEBENGINE_CHROMIUM_CATAPULT_SITE_METHOD = git
+QT5WEBENGINE_CHROMIUM_CATAPULT_LICENSE = BSD-3-Clause
+QT5WEBENGINE_CHROMIUM_CATAPULT_LICENSE_FILES = LICENSE
+
+$(eval $(generic-package))
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 2/3] package/qt5/qt5webengine: bump to version 5.15.8
  2022-01-05 10:14 [Buildroot] [PATCH 1/3] package/qt5/qt5webengine-chromium-catapult: new package James Hilliard
@ 2022-01-05 10:14 ` James Hilliard
  2022-01-05 10:14 ` [Buildroot] [PATCH 3/3] package/qt5: bump packages to latest kde submodule versions James Hilliard
  1 sibling, 0 replies; 3+ messages in thread
From: James Hilliard @ 2022-01-05 10:14 UTC (permalink / raw)
  To: buildroot
  Cc: Naumann Andreas, Joshua Henderson, Bartosz Bilas,
	Angelo Compagnucci, Peter Seiderer, Gaël Portay,
	Thomas Petazzoni, James Hilliard, Julien Corjon

We need to switch to the kde upstream as the existing upstream no
longer updates the qt5 branch for most packages.

We need to add a separate package for the chromium submodule so that
we can apply patches for python3 support to it and replace catapult
with a python3 compatible version.

There are python3 patches available that apply to this version with
minor modifications(to be added in a future patch).

We need to set QT5WEBENGINE_SYNC_QT_HEADERS = YES as we are building
from a repository archive instead of a release archive.

We need to add some new required dependencies to qt5webengine so that
it will build.

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
 package/qt5/qt5.mk                            |    5 +-
 .../qt5webengine-chromium/chromium-latest.inc | 1257 +++++++++++++++++
 .../qt5webengine-chromium.hash                | 1256 ++++++++++++++++
 .../qt5webengine-chromium.mk                  |   22 +
 package/qt5/qt5webengine/Config.in            |    2 +
 package/qt5/qt5webengine/chromium-latest.inc  | 1000 -------------
 package/qt5/qt5webengine/qt5webengine.hash    | 1001 +------------
 package/qt5/qt5webengine/qt5webengine.mk      |   30 +-
 8 files changed, 2561 insertions(+), 2012 deletions(-)
 create mode 100644 package/qt5/qt5webengine-chromium/chromium-latest.inc
 create mode 100644 package/qt5/qt5webengine-chromium/qt5webengine-chromium.hash
 create mode 100644 package/qt5/qt5webengine-chromium/qt5webengine-chromium.mk
 delete mode 100644 package/qt5/qt5webengine/chromium-latest.inc

diff --git a/package/qt5/qt5.mk b/package/qt5/qt5.mk
index 3ffb7b0063..0706c3548d 100644
--- a/package/qt5/qt5.mk
+++ b/package/qt5/qt5.mk
@@ -5,9 +5,8 @@
 ################################################################################
 
 QT5_VERSION_MAJOR = 5.15
-QT5_VERSION = $(QT5_VERSION_MAJOR).2
-QT5_SOURCE_TARBALL_PREFIX = everywhere-src
-QT5_SITE = https://download.qt.io/archive/qt/$(QT5_VERSION_MAJOR)/$(QT5_VERSION)/submodules
+QT5_VERSION = $(QT5_VERSION_MAJOR).8
+QT5_SITE = https://invent.kde.org/qt/qt
 
 include $(sort $(wildcard package/qt5/*/*.mk))
 
diff --git a/package/qt5/qt5webengine-chromium/chromium-latest.inc b/package/qt5/qt5webengine-chromium/chromium-latest.inc
new file mode 100644
index 0000000000..ced431c9e9
--- /dev/null
+++ b/package/qt5/qt5webengine-chromium/chromium-latest.inc
@@ -0,0 +1,1257 @@
+# (echo "QT5WEBENGINE_CHROMIUM_LICENSE_FILES = \\" ; \
+# 	find * -type f \
+#	\( -iname 'license*' -o -iname 'copying*' -o -name 'APPLE_LICENSE' -o -name 'Copyright' -o -path '*/license_texts/*' -o -path '*/licenses/*' \) \
+#	-a -not -name '*.cc' -not -name '*.py' -not -name '*.pyc' -not -name '*.h' -not -name 'LICENSE.sha1' -not -name 'licensecheck.pl*' -not -name 'license.after' -not -name 'license.before' -not -path 'chromium/third_party/catapult/*' | \
+#	sort | sed 's%^\(.*\)$%\t\1 \\%') > package/qt5/qt5webengine-chromium/chromium-latest.inc
+QT5WEBENGINE_CHROMIUM_LICENSE_FILES = \
+	chromium/base/third_party/cityhash/COPYING \
+	chromium/base/third_party/double_conversion/LICENSE \
+	chromium/base/third_party/dynamic_annotations/LICENSE \
+	chromium/base/third_party/icu/LICENSE \
+	chromium/base/third_party/libevent/LICENSE \
+	chromium/base/third_party/nspr/LICENSE \
+	chromium/base/third_party/superfasthash/LICENSE \
+	chromium/base/third_party/symbolize/LICENSE \
+	chromium/base/third_party/valgrind/LICENSE \
+	chromium/base/third_party/xdg_mime/LICENSE \
+	chromium/base/third_party/xdg_user_dirs/LICENSE \
+	chromium/buildtools/LICENSE \
+	chromium/LICENSE \
+	chromium/LICENSE.chromium_os \
+	chromium/mojo/public/LICENSE \
+	chromium/net/third_party/mozilla_security_manager/LICENSE \
+	chromium/net/third_party/nss/LICENSE \
+	chromium/net/third_party/quiche/src/LICENSE \
+	chromium/net/third_party/uri_template/LICENSE \
+	chromium/ppapi/LICENSE \
+	chromium/third_party/abseil-cpp/LICENSE \
+	chromium/third_party/angle/LICENSE \
+	chromium/third_party/angle/src/common/third_party/smhasher/LICENSE \
+	chromium/third_party/angle/src/common/third_party/xxhash/LICENSE \
+	chromium/third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/third_party/ffx_spd/LICENSE \
+	chromium/third_party/angle/src/third_party/compiler/LICENSE \
+	chromium/third_party/angle/src/third_party/libXNVCtrl/LICENSE \
+	chromium/third_party/angle/src/third_party/volk/LICENSE.md \
+	chromium/third_party/angle/third_party/rapidjson/src/bin/jsonschema/LICENSE \
+	chromium/third_party/angle/third_party/rapidjson/src/contrib/natvis/LICENSE \
+	chromium/third_party/angle/third_party/rapidjson/src/license.txt \
+	chromium/third_party/angle/third_party/vulkan-headers/src/LICENSE.txt \
+	chromium/third_party/angle/third_party/vulkan-loader/src/LICENSE.txt \
+	chromium/third_party/angle/third_party/vulkan-tools/src/LICENSE.txt \
+	chromium/third_party/angle/tools/flex-bison/third_party/m4sugar/LICENSE \
+	chromium/third_party/angle/tools/flex-bison/third_party/skeletons/LICENSE \
+	chromium/third_party/angle/util/windows/third_party/StackWalker/LICENSE \
+	chromium/third_party/apple_apsl/LICENSE \
+	chromium/third_party/arcore-android-sdk-client/LICENSE \
+	chromium/third_party/arcore-android-sdk/LICENSE \
+	chromium/third_party/axe-core/LICENSE \
+	chromium/third_party/bazel/LICENSE \
+	chromium/third_party/blanketjs/LICENSE \
+	chromium/third_party/blink/LICENSE_FOR_ABOUT_CREDITS \
+	chromium/third_party/blink/renderer/core/LICENSE-APPLE \
+	chromium/third_party/blink/renderer/core/LICENSE-LGPL-2 \
+	chromium/third_party/blink/renderer/core/LICENSE-LGPL-2.1 \
+	chromium/third_party/blink/renderer/platform/testing/data/third_party/Noto/LICENSE_OFL.txt \
+	chromium/third_party/blink/renderer/platform/testing/data/third_party/Roboto/LICENSE.txt \
+	chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/LICENSE.md \
+	chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/atomicwrites/LICENSE \
+	chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/enum/enum/LICENSE \
+	chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/h2/LICENSE \
+	chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/hpack/LICENSE \
+	chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/html5lib/LICENSE \
+	chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/hyperframe/LICENSE \
+	chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/six/LICENSE \
+	chromium/third_party/boringssl/src/LICENSE \
+	chromium/third_party/boringssl/src/third_party/fiat/LICENSE \
+	chromium/third_party/boringssl/src/third_party/googletest/LICENSE \
+	chromium/third_party/boringssl/src/third_party/wycheproof_testvectors/LICENSE \
+	chromium/third_party/bouncycastle/LICENSE \
+	chromium/third_party/breakpad/breakpad/LICENSE \
+	chromium/third_party/breakpad/breakpad/src/third_party/curl/COPYING \
+	chromium/third_party/breakpad/breakpad/src/third_party/libdisasm/LICENSE \
+	chromium/third_party/breakpad/LICENSE \
+	chromium/third_party/brotli/LICENSE \
+	chromium/third_party/bspatch/LICENSE \
+	chromium/third_party/byte_buddy/LICENSE \
+	chromium/third_party/ced/LICENSE \
+	chromium/third_party/ced/src/LICENSE \
+	chromium/third_party/chaijs/LICENSE \
+	chromium/third_party/checkstyle/LICENSE \
+	chromium/third_party/checkstyle/LICENSE.apache20 \
+	chromium/third_party/cld_3/LICENSE \
+	chromium/third_party/cld_3/src/LICENSE \
+	chromium/third_party/closure_compiler/compiler/COPYING \
+	chromium/third_party/closure_compiler/LICENSE \
+	chromium/third_party/crashpad/crashpad/LICENSE \
+	chromium/third_party/crashpad/crashpad/third_party/apple_cf/APPLE_LICENSE \
+	chromium/third_party/crashpad/crashpad/third_party/cpp-httplib/cpp-httplib/LICENSE \
+	chromium/third_party/crashpad/crashpad/third_party/getopt/LICENSE \
+	chromium/third_party/crashpad/crashpad/third_party/glibc/COPYING.LIB \
+	chromium/third_party/crashpad/crashpad/third_party/xnu/APPLE_LICENSE \
+	chromium/third_party/crc32c/src/LICENSE \
+	chromium/third_party/cros_system_api/LICENSE \
+	chromium/third_party/d3/src/LICENSE \
+	chromium/third_party/dav1d/libdav1d/COPYING \
+	chromium/third_party/dav1d/LICENSE \
+	chromium/third_party/dawn/LICENSE \
+	chromium/third_party/decklink/LICENSE \
+	chromium/third_party/devscripts/COPYING \
+	chromium/third_party/devtools-frontend/src/front_end/cm_modes/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/dagre_layout/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/sdk/wasm_source_map/LICENSES.deps \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/acorn/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/acorn-logical-assignment/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/acorn-logical-assignment/package/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/acorn-loose/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/acorn-loose/package/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/acorn-numeric-separator/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/acorn-numeric-separator/package/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/acorn/package/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/axe-core/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/codemirror/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/codemirror/package/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/fabricjs/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/i18n/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/intl-messageformat/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/intl-messageformat/package/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/lighthouse/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/lit-html/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/lit-html/package/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/lodash-isequal/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/lodash-isequal/package/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/marked/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/marked/package/LICENSE.md \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/wasmparser/LICENSE \
+	chromium/third_party/devtools-frontend/src/front_end/third_party/wasmparser/package/LICENSE \
+	chromium/third_party/devtools-frontend/src/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/abbrev/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/accepts/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/acorn-jsx/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/ajv/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/ansi-colors/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/ansi-escapes/license \
+	chromium/third_party/devtools-frontend/src/node_modules/ansi-escapes/node_modules/type-fest/license \
+	chromium/third_party/devtools-frontend/src/node_modules/ansi-regex/license \
+	chromium/third_party/devtools-frontend/src/node_modules/ansi-styles/license \
+	chromium/third_party/devtools-frontend/src/node_modules/anymatch/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/argparse/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array-find-index/license \
+	chromium/third_party/devtools-frontend/src/node_modules/array-includes/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array-includes/node_modules/es-abstract/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array-includes/node_modules/es-to-primitive/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array-includes/node_modules/has-symbols/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array-includes/node_modules/is-callable/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array-includes/node_modules/is-regex/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array-includes/node_modules/object-inspect/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array-includes/node_modules/string.prototype.trimleft/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array-includes/node_modules/string.prototype.trimright/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array.prototype.flat/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array.prototype.flat/node_modules/es-abstract/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array.prototype.flat/node_modules/es-to-primitive/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array.prototype.flat/node_modules/has-symbols/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array.prototype.flat/node_modules/is-callable/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array.prototype.flat/node_modules/is-regex/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array.prototype.flat/node_modules/object-inspect/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array.prototype.flat/node_modules/string.prototype.trimleft/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array.prototype.flat/node_modules/string.prototype.trimright/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array.prototype.map/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/array-union/license \
+	chromium/third_party/devtools-frontend/src/node_modules/arrify/license \
+	chromium/third_party/devtools-frontend/src/node_modules/asap/LICENSE.md \
+	chromium/third_party/devtools-frontend/src/node_modules/astral-regex/license \
+	chromium/third_party/devtools-frontend/src/node_modules/ast-types/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/async/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/async-limiter/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/autoprefixer/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/code-frame/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/core/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/code-frame/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/generator/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/helper-function-name/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/helper-get-function-arity/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/helper-split-export-declaration/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/highlight/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/parser/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/template/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/traverse/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/types/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/convert-source-map/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/resolve/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/safe-buffer/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/source-map/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-member-expression-to-functions/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-member-expression-to-functions/node_modules/@babel/types/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-module-imports/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-module-imports/node_modules/@babel/types/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-module-transforms/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-module-transforms/node_modules/@babel/code-frame/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-module-transforms/node_modules/@babel/helper-split-export-declaration/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-module-transforms/node_modules/@babel/highlight/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-module-transforms/node_modules/@babel/parser/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-module-transforms/node_modules/@babel/template/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-module-transforms/node_modules/@babel/types/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-optimise-call-expression/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-optimise-call-expression/node_modules/@babel/types/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/code-frame/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/generator/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/helper-function-name/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/helper-get-function-arity/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/helper-split-export-declaration/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/highlight/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/parser/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/template/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/traverse/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/types/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/source-map/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-simple-access/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-simple-access/node_modules/@babel/code-frame/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-simple-access/node_modules/@babel/highlight/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-simple-access/node_modules/@babel/parser/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-simple-access/node_modules/@babel/template/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-simple-access/node_modules/@babel/types/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/code-frame/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/generator/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/helper-function-name/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/helper-get-function-arity/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/helper-split-export-declaration/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/highlight/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/parser/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/template/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/traverse/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/types/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/source-map/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-validator-identifier/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@babel/highlight/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/bail/license \
+	chromium/third_party/devtools-frontend/src/node_modules/balanced-match/LICENSE.md \
+	chromium/third_party/devtools-frontend/src/node_modules/base64-arraybuffer/LICENSE-MIT \
+	chromium/third_party/devtools-frontend/src/node_modules/base64id/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/base64-js/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/binary-extensions/license \
+	chromium/third_party/devtools-frontend/src/node_modules/bl/LICENSE.md \
+	chromium/third_party/devtools-frontend/src/node_modules/blob/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/body-parser/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/body-parser/node_modules/debug/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/body-parser/node_modules/ms/license.md \
+	chromium/third_party/devtools-frontend/src/node_modules/brace-expansion/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/braces/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/browserslist/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/browser-stdout/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/buffer-crc32/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/buffer-from/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/buffer/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/bytes/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/callsites/license \
+	chromium/third_party/devtools-frontend/src/node_modules/camelcase-keys/license \
+	chromium/third_party/devtools-frontend/src/node_modules/camelcase/license \
+	chromium/third_party/devtools-frontend/src/node_modules/caniuse-lite/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/ccount/license \
+	chromium/third_party/devtools-frontend/src/node_modules/chai/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/chalk/license \
+	chromium/third_party/devtools-frontend/src/node_modules/character-entities-html4/license \
+	chromium/third_party/devtools-frontend/src/node_modules/character-entities-legacy/license \
+	chromium/third_party/devtools-frontend/src/node_modules/character-entities/license \
+	chromium/third_party/devtools-frontend/src/node_modules/character-reference-invalid/license \
+	chromium/third_party/devtools-frontend/src/node_modules/chardet/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/check-error/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/chokidar/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/chokidar/node_modules/fsevents/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/chokidar/node_modules/readdirp/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/chownr/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/cli-cursor/license \
+	chromium/third_party/devtools-frontend/src/node_modules/cliui/LICENSE.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/cliui/node_modules/ansi-regex/license \
+	chromium/third_party/devtools-frontend/src/node_modules/cliui/node_modules/emoji-regex/LICENSE-MIT.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/cliui/node_modules/string-width/license \
+	chromium/third_party/devtools-frontend/src/node_modules/cliui/node_modules/strip-ansi/license \
+	chromium/third_party/devtools-frontend/src/node_modules/cli-width/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/clone-regexp/license \
+	chromium/third_party/devtools-frontend/src/node_modules/collapse-white-space/license \
+	chromium/third_party/devtools-frontend/src/node_modules/color-convert/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/color-name/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/colors/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/commander/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/commondir/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/component-emitter/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/concat-map/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/connect/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/connect/node_modules/debug/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/connect/node_modules/ms/license.md \
+	chromium/third_party/devtools-frontend/src/node_modules/contains-path/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/content-type/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/cookie/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/cosmiconfig/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/cosmiconfig/node_modules/parse-json/license \
+	chromium/third_party/devtools-frontend/src/node_modules/cross-spawn/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/cssesc/LICENSE-MIT.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/custom-event/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/date-format/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/debug/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/debuglog/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/decamelize-keys/license \
+	chromium/third_party/devtools-frontend/src/node_modules/decamelize-keys/node_modules/map-obj/license \
+	chromium/third_party/devtools-frontend/src/node_modules/decamelize/license \
+	chromium/third_party/devtools-frontend/src/node_modules/deep-eql/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/deep-is/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/define-properties/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/depd/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/devtools-protocol/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/dezalgo/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/diff/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/di/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/dir-glob/license \
+	chromium/third_party/devtools-frontend/src/node_modules/doctrine/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/doctrine/LICENSE.closure-compiler \
+	chromium/third_party/devtools-frontend/src/node_modules/doctrine/LICENSE.esprima \
+	chromium/third_party/devtools-frontend/src/node_modules/domelementtype/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/domhandler/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/dom-serializer/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/dom-serializer/node_modules/domelementtype/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/dom-serializer/node_modules/entities/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/domutils/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/ee-first/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/electron-to-chromium/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/emoji-regex/LICENSE-MIT.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/encodeurl/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/end-of-stream/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/engine.io-client/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/engine.io-client/node_modules/debug/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/engine.io-client/node_modules/ms/license.md \
+	chromium/third_party/devtools-frontend/src/node_modules/engine.io/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/engine.io/node_modules/debug/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/engine.io/node_modules/ms/license.md \
+	chromium/third_party/devtools-frontend/src/node_modules/engine.io-parser/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/entities/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/ent/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/error-ex/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/es-abstract/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/es-abstract/node_modules/has-symbols/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/es-abstract/node_modules/string.prototype.trimend/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/es-abstract/node_modules/string.prototype.trimstart/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/es-array-method-boxes-properly/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/escape-html/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/escape-string-regexp/license \
+	chromium/third_party/devtools-frontend/src/node_modules/escodegen/LICENSE.BSD \
+	chromium/third_party/devtools-frontend/src/node_modules/escodegen/node_modules/esprima/LICENSE.BSD \
+	chromium/third_party/devtools-frontend/src/node_modules/es-get-iterator/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/es-get-iterator/node_modules/has-symbols/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/es-get-iterator/node_modules/isarray/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-import-resolver-node/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-import-resolver-node/node_modules/debug/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-import-resolver-node/node_modules/ms/license.md \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-import-resolver-node/node_modules/resolve/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-module-utils/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-module-utils/node_modules/debug/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-module-utils/node_modules/ms/license.md \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint/node_modules/ansi-regex/license \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint/node_modules/globals/license \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint/node_modules/optionator/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint/node_modules/semver/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint/node_modules/strip-ansi/license \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint/node_modules/strip-json-comments/license \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/memo-parser/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/debug/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/doctrine/LICENSE.BSD \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/doctrine/LICENSE.closure-compiler \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/doctrine/LICENSE.esprima \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/find-up/license \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/load-json-file/license \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/locate-path/license \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/ms/license.md \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/path-exists/license \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/path-type/license \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/pify/license \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/p-limit/license \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/p-locate/license \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/p-try/license \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/read-pkg/license \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/read-pkg-up/license \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/resolve/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-mocha/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-rulesdir/LICENSE.md \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-scope/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-utils/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/eslint-visitor-keys/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/espree/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/espree/node_modules/acorn/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/esquery/license.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/esquery/node_modules/estraverse/LICENSE.BSD \
+	chromium/third_party/devtools-frontend/src/node_modules/es-to-primitive/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/estraverse/LICENSE.BSD \
+	chromium/third_party/devtools-frontend/src/node_modules/esutils/LICENSE.BSD \
+	chromium/third_party/devtools-frontend/src/node_modules/eventemitter3/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/execall/license \
+	chromium/third_party/devtools-frontend/src/node_modules/extend/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/external-editor/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/extract-zip/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/fast-deep-equal/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/fast-glob/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/fast-glob/node_modules/picomatch/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/fast-json-stable-stringify/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/fast-levenshtein/LICENSE.md \
+	chromium/third_party/devtools-frontend/src/node_modules/fastq/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/fd-slicer/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/figures/license \
+	chromium/third_party/devtools-frontend/src/node_modules/file-entry-cache/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/fill-range/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/finalhandler/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/finalhandler/node_modules/debug/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/finalhandler/node_modules/ms/license.md \
+	chromium/third_party/devtools-frontend/src/node_modules/find-up/license \
+	chromium/third_party/devtools-frontend/src/node_modules/find-up/node_modules/path-exists/license \
+	chromium/third_party/devtools-frontend/src/node_modules/flat-cache/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/flat-cache/node_modules/rimraf/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/flat/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/flatted/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/follow-redirects/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/follow-redirects/node_modules/debug/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/fs-constants/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/fs-extra/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/fs.realpath/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/functional-red-black-tree/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/function-bind/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/gensync/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/get-caller-file/LICENSE.md \
+	chromium/third_party/devtools-frontend/src/node_modules/get-func-name/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/get-stdin/license \
+	chromium/third_party/devtools-frontend/src/node_modules/get-stream/license \
+	chromium/third_party/devtools-frontend/src/node_modules/global-modules/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/global-prefix/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/globals/license \
+	chromium/third_party/devtools-frontend/src/node_modules/globby/license \
+	chromium/third_party/devtools-frontend/src/node_modules/globby/node_modules/ignore/LICENSE-MIT \
+	chromium/third_party/devtools-frontend/src/node_modules/globby/node_modules/slash/license \
+	chromium/third_party/devtools-frontend/src/node_modules/globjoin/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/glob/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/glob-parent/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/graceful-fs/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/hard-rejection/license \
+	chromium/third_party/devtools-frontend/src/node_modules/has-binary2/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/has-flag/license \
+	chromium/third_party/devtools-frontend/src/node_modules/has/LICENSE-MIT \
+	chromium/third_party/devtools-frontend/src/node_modules/has-symbols/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/he/LICENSE-MIT.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/hosted-git-info/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/html-escaper/LICENSE.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/htmlparser2/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/html-tags/license \
+	chromium/third_party/devtools-frontend/src/node_modules/http-errors/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/http-errors/node_modules/inherits/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/http-proxy/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/iconv-lite/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/ieee754/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/ignore/LICENSE-MIT \
+	chromium/third_party/devtools-frontend/src/node_modules/import-fresh/license \
+	chromium/third_party/devtools-frontend/src/node_modules/import-lazy/license \
+	chromium/third_party/devtools-frontend/src/node_modules/indent-string/license \
+	chromium/third_party/devtools-frontend/src/node_modules/indexes-of/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/inflight/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/inherits/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/ini/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/inquirer/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/ansi-regex/license \
+	chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/ansi-styles/license \
+	chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/chalk/license \
+	chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/color-convert/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/color-name/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/has-flag/license \
+	chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/is-fullwidth-code-point/license \
+	chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/string-width/license \
+	chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/strip-ansi/license \
+	chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/supports-color/license \
+	chromium/third_party/devtools-frontend/src/node_modules/is-alphabetical/license \
+	chromium/third_party/devtools-frontend/src/node_modules/is-alphanumerical/license \
+	chromium/third_party/devtools-frontend/src/node_modules/is-alphanumeric/license \
+	chromium/third_party/devtools-frontend/src/node_modules/is-arguments/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/is-arrayish/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/isbinaryfile/LICENSE.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/is-binary-path/license \
+	chromium/third_party/devtools-frontend/src/node_modules/is-buffer/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/is-callable/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/is-date-object/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/is-decimal/license \
+	chromium/third_party/devtools-frontend/src/node_modules/isexe/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/is-extglob/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/is-fullwidth-code-point/license \
+	chromium/third_party/devtools-frontend/src/node_modules/is-glob/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/is-hexadecimal/license \
+	chromium/third_party/devtools-frontend/src/node_modules/is-map/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/is-number/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/is-plain-obj/license \
+	chromium/third_party/devtools-frontend/src/node_modules/is-promise/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/is-regex/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/is-regex/node_modules/has-symbols/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/is-regexp/license \
+	chromium/third_party/devtools-frontend/src/node_modules/is-set/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/is-string/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/is-symbol/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@istanbuljs/schema/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/is-typedarray/LICENSE.md \
+	chromium/third_party/devtools-frontend/src/node_modules/is-whitespace-character/license \
+	chromium/third_party/devtools-frontend/src/node_modules/is-word-character/license \
+	chromium/third_party/devtools-frontend/src/node_modules/iterate-iterator/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/iterate-value/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/jest-worker/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/jest-worker/node_modules/supports-color/license \
+	chromium/third_party/devtools-frontend/src/node_modules/jsesc/LICENSE-MIT.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/json5/LICENSE.md \
+	chromium/third_party/devtools-frontend/src/node_modules/json5/node_modules/minimist/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/jsonfile/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/json-parse-better-errors/LICENSE.md \
+	chromium/third_party/devtools-frontend/src/node_modules/json-schema-traverse/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/json-stable-stringify-without-jsonify/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/js-tokens/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/js-yaml/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/js-yaml/node_modules/esprima/LICENSE.BSD \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-chai/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-chrome-launcher/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/code-frame/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/generator/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/helper-function-name/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/helper-get-function-arity/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/helper-split-export-declaration/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/highlight/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/parser/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/template/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/traverse/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/types/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/types/node_modules/@babel/helper-validator-identifier/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/has-flag/license \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/istanbul-lib-coverage/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/istanbul-lib-instrument/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/istanbul-lib-report/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/istanbul-lib-source-maps/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/istanbul-lib-source-maps/node_modules/source-map/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/istanbul-reports/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/make-dir/license \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/semver/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/source-map/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/supports-color/license \
+	chromium/third_party/devtools-frontend/src/node_modules/karma/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-mocha/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/ansi-regex/license \
+	chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/ansi-styles/license \
+	chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/cliui/LICENSE.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/color-convert/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/color-name/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/find-up/license \
+	chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/is-fullwidth-code-point/license \
+	chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/locate-path/license \
+	chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/path-exists/license \
+	chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/p-locate/license \
+	chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/rimraf/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/string-width/license \
+	chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/strip-ansi/license \
+	chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/wrap-ansi/license \
+	chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/yargs/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/yargs-parser/LICENSE.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/karma-sourcemap-loader/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/kind-of/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/known-css-properties/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/leven/license \
+	chromium/third_party/devtools-frontend/src/node_modules/levn/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/license-checker/bin/license-checker \
+	chromium/third_party/devtools-frontend/src/node_modules/license-checker/lib/license-files.js \
+	chromium/third_party/devtools-frontend/src/node_modules/license-checker/lib/license.js \
+	chromium/third_party/devtools-frontend/src/node_modules/license-checker/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/license-checker/node_modules/debug/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/license-checker/node_modules/nopt/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/lines-and-columns/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/locate-path/license \
+	chromium/third_party/devtools-frontend/src/node_modules/lodash/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/log4js/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/log-symbols/license \
+	chromium/third_party/devtools-frontend/src/node_modules/longest-streak/license \
+	chromium/third_party/devtools-frontend/src/node_modules/magic-string/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/map-obj/license \
+	chromium/third_party/devtools-frontend/src/node_modules/markdown-escapes/license \
+	chromium/third_party/devtools-frontend/src/node_modules/markdown-table/license \
+	chromium/third_party/devtools-frontend/src/node_modules/mathml-tag-names/license \
+	chromium/third_party/devtools-frontend/src/node_modules/mdast-util-compact/license \
+	chromium/third_party/devtools-frontend/src/node_modules/media-typer/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/meow/license \
+	chromium/third_party/devtools-frontend/src/node_modules/meow/node_modules/camelcase/license \
+	chromium/third_party/devtools-frontend/src/node_modules/meow/node_modules/type-fest/license \
+	chromium/third_party/devtools-frontend/src/node_modules/meow/node_modules/yargs-parser/LICENSE.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/meow/node_modules/yargs-parser/node_modules/camelcase/license \
+	chromium/third_party/devtools-frontend/src/node_modules/merge2/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/merge-stream/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/micromatch/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/mime-db/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/mime/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/mime-types/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/mimic-fn/license \
+	chromium/third_party/devtools-frontend/src/node_modules/minimatch/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/minimist/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/minimist-options/license \
+	chromium/third_party/devtools-frontend/src/node_modules/minimist-options/node_modules/arrify/license \
+	chromium/third_party/devtools-frontend/src/node_modules/minimist-options/node_modules/is-plain-obj/license \
+	chromium/third_party/devtools-frontend/src/node_modules/min-indent/license \
+	chromium/third_party/devtools-frontend/src/node_modules/mkdirp-classic/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/mkdirp/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/mkdirp/node_modules/minimist/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/mocha/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/ansi-regex/license \
+	chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/debug/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/emoji-regex/LICENSE-MIT.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/glob/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/has-flag/license \
+	chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/locate-path/license \
+	chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/p-locate/license \
+	chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/serialize-javascript/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/string-width/license \
+	chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/strip-ansi/license \
+	chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/supports-color/license \
+	chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/which/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/yargs/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/yargs/node_modules/find-up/license \
+	chromium/third_party/devtools-frontend/src/node_modules/ms/license.md \
+	chromium/third_party/devtools-frontend/src/node_modules/mute-stream/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/negotiator/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/nice-try/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@nodelib/fs.scandir/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@nodelib/fs.stat/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@nodelib/fs.walk/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/node-releases/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/normalize-package-data/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/normalize-package-data/node_modules/resolve/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/normalize-path/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/normalize-range/license \
+	chromium/third_party/devtools-frontend/src/node_modules/num2fraction/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/object.assign/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/object-inspect/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/object-keys/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/object.values/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/object.values/node_modules/es-abstract/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/object.values/node_modules/es-to-primitive/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/object.values/node_modules/has-symbols/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/object.values/node_modules/is-callable/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/object.values/node_modules/is-regex/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/object.values/node_modules/object-inspect/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/object.values/node_modules/string.prototype.trimleft/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/object.values/node_modules/string.prototype.trimright/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/once/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/onetime/license \
+	chromium/third_party/devtools-frontend/src/node_modules/on-finished/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/optionator/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/osenv/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/os-homedir/license \
+	chromium/third_party/devtools-frontend/src/node_modules/os-tmpdir/license \
+	chromium/third_party/devtools-frontend/src/node_modules/parent-module/license \
+	chromium/third_party/devtools-frontend/src/node_modules/parse-entities/license \
+	chromium/third_party/devtools-frontend/src/node_modules/parse-json/license \
+	chromium/third_party/devtools-frontend/src/node_modules/parseqs/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/parseuri/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/parseurl/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/path-exists/license \
+	chromium/third_party/devtools-frontend/src/node_modules/path-is-absolute/license \
+	chromium/third_party/devtools-frontend/src/node_modules/path-key/license \
+	chromium/third_party/devtools-frontend/src/node_modules/path-parse/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/path-type/license \
+	chromium/third_party/devtools-frontend/src/node_modules/pathval/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/pend/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/picomatch/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/pkg-dir/license \
+	chromium/third_party/devtools-frontend/src/node_modules/pkg-dir/node_modules/find-up/license \
+	chromium/third_party/devtools-frontend/src/node_modules/pkg-dir/node_modules/locate-path/license \
+	chromium/third_party/devtools-frontend/src/node_modules/pkg-dir/node_modules/path-exists/license \
+	chromium/third_party/devtools-frontend/src/node_modules/pkg-dir/node_modules/p-limit/license \
+	chromium/third_party/devtools-frontend/src/node_modules/pkg-dir/node_modules/p-locate/license \
+	chromium/third_party/devtools-frontend/src/node_modules/pkg-dir/node_modules/p-try/license \
+	chromium/third_party/devtools-frontend/src/node_modules/pkg-up/license \
+	chromium/third_party/devtools-frontend/src/node_modules/pkg-up/node_modules/find-up/license \
+	chromium/third_party/devtools-frontend/src/node_modules/pkg-up/node_modules/locate-path/license \
+	chromium/third_party/devtools-frontend/src/node_modules/pkg-up/node_modules/p-limit/license \
+	chromium/third_party/devtools-frontend/src/node_modules/pkg-up/node_modules/p-locate/license \
+	chromium/third_party/devtools-frontend/src/node_modules/pkg-up/node_modules/p-try/license \
+	chromium/third_party/devtools-frontend/src/node_modules/p-limit/license \
+	chromium/third_party/devtools-frontend/src/node_modules/p-locate/license \
+	chromium/third_party/devtools-frontend/src/node_modules/postcss-html/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/postcss-less/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/postcss/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/postcss/node_modules/supports-color/license \
+	chromium/third_party/devtools-frontend/src/node_modules/postcss-reporter/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/postcss-reporter/node_modules/log-symbols/license \
+	chromium/third_party/devtools-frontend/src/node_modules/postcss-resolve-nested-selector/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/postcss-safe-parser/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/postcss-sass/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/postcss-scss/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/postcss-selector-parser/LICENSE-MIT \
+	chromium/third_party/devtools-frontend/src/node_modules/postcss-syntax/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/postcss-value-parser/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/prelude-ls/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/private/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/progress/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/promise.allsettled/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/proxy-from-env/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/p-try/license \
+	chromium/third_party/devtools-frontend/src/node_modules/pump/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/punycode/LICENSE-MIT.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/puppeteer/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/puppeteer/node_modules/pkg-dir/license \
+	chromium/third_party/devtools-frontend/src/node_modules/puppeteer/node_modules/ws/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/qs/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/quick-lru/license \
+	chromium/third_party/devtools-frontend/src/node_modules/ramda/LICENSE.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/range-parser/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/raw-body/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/readable-stream/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/readdir-scoped-modules/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/read-installed/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/read-package-json/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/read-pkg/license \
+	chromium/third_party/devtools-frontend/src/node_modules/read-pkg/node_modules/parse-json/license \
+	chromium/third_party/devtools-frontend/src/node_modules/read-pkg/node_modules/type-fest/license \
+	chromium/third_party/devtools-frontend/src/node_modules/read-pkg-up/license \
+	chromium/third_party/devtools-frontend/src/node_modules/read-pkg-up/node_modules/find-up/license \
+	chromium/third_party/devtools-frontend/src/node_modules/read-pkg-up/node_modules/locate-path/license \
+	chromium/third_party/devtools-frontend/src/node_modules/read-pkg-up/node_modules/path-exists/license \
+	chromium/third_party/devtools-frontend/src/node_modules/read-pkg-up/node_modules/p-locate/license \
+	chromium/third_party/devtools-frontend/src/node_modules/recast/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/recast/node_modules/esprima/LICENSE.BSD \
+	chromium/third_party/devtools-frontend/src/node_modules/redent/license \
+	chromium/third_party/devtools-frontend/src/node_modules/regexpp/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/repeat-string/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/replace-ext/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/require-directory/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/require-main-filename/LICENSE.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/requires-port/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/resolve-from/license \
+	chromium/third_party/devtools-frontend/src/node_modules/resolve/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/restore-cursor/license \
+	chromium/third_party/devtools-frontend/src/node_modules/reusify/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/rfdc/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/rimraf/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/rollup/LICENSE.md \
+	chromium/third_party/devtools-frontend/src/node_modules/rollup/node_modules/fsevents/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@rollup/plugin-commonjs/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/rollup-plugin-terser/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@rollup/pluginutils/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@rollup/pluginutils/node_modules/picomatch/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@rollup/pluginutils/node_modules/@types/estree/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/run-async/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/run-parallel/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/rxjs/_esm2015/LICENSE.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/rxjs/_esm5/LICENSE.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/rxjs/LICENSE.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/rxjs/src/LICENSE.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/safe-buffer/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/safer-buffer/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/semver/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/serialize-javascript/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/set-blocking/LICENSE.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/setprototypeof/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/shebang-command/license \
+	chromium/third_party/devtools-frontend/src/node_modules/shebang-regex/license \
+	chromium/third_party/devtools-frontend/src/node_modules/signal-exit/LICENSE.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/slice-ansi/license \
+	chromium/third_party/devtools-frontend/src/node_modules/slide/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/socket.io-adapter/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/socket.io-client/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/socket.io-client/node_modules/debug/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/socket.io-client/node_modules/ms/license.md \
+	chromium/third_party/devtools-frontend/src/node_modules/socket.io/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/socket.io/node_modules/debug/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/socket.io/node_modules/ms/license.md \
+	chromium/third_party/devtools-frontend/src/node_modules/socket.io-parser/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/socket.io-parser/node_modules/debug/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/socket.io-parser/node_modules/ms/license.md \
+	chromium/third_party/devtools-frontend/src/node_modules/sourcemap-codec/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/source-map/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/source-map-support/LICENSE.md \
+	chromium/third_party/devtools-frontend/src/node_modules/spdx-compare/LICENSE.md \
+	chromium/third_party/devtools-frontend/src/node_modules/spdx-correct/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/spdx-expression-parse/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/spdx-ranges/LICENSE.md \
+	chromium/third_party/devtools-frontend/src/node_modules/spdx-satisfies/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/specificity/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/sprintf-js/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/state-toggle/license \
+	chromium/third_party/devtools-frontend/src/node_modules/statuses/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/streamroller/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/streamroller/node_modules/debug/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/string_decoder/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/stringify-entities/license \
+	chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimend/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimend/node_modules/es-abstract/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimend/node_modules/es-to-primitive/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimend/node_modules/has-symbols/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimend/node_modules/is-callable/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimend/node_modules/is-regex/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimend/node_modules/object-inspect/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimend/node_modules/string.prototype.trimleft/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimend/node_modules/string.prototype.trimright/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimstart/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimstart/node_modules/es-abstract/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimstart/node_modules/es-to-primitive/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimstart/node_modules/has-symbols/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimstart/node_modules/is-callable/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimstart/node_modules/is-regex/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimstart/node_modules/object-inspect/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimstart/node_modules/string.prototype.trimleft/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimstart/node_modules/string.prototype.trimright/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/string-width/license \
+	chromium/third_party/devtools-frontend/src/node_modules/strip-ansi/license \
+	chromium/third_party/devtools-frontend/src/node_modules/strip-bom/license \
+	chromium/third_party/devtools-frontend/src/node_modules/strip-indent/license \
+	chromium/third_party/devtools-frontend/src/node_modules/strip-json-comments/license \
+	chromium/third_party/devtools-frontend/src/node_modules/stylelint-config-recommended/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/stylelint-config-standard/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/stylelint/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/ansi-regex/license \
+	chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/ansi-styles/license \
+	chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/chalk/license \
+	chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/color-convert/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/color-name/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/has-flag/license \
+	chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/ignore/LICENSE-MIT \
+	chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/is-fullwidth-code-point/license \
+	chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/log-symbols/license \
+	chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/resolve-from/license \
+	chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/slash/license \
+	chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/string-width/license \
+	chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/strip-ansi/license \
+	chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/supports-color/license \
+	chromium/third_party/devtools-frontend/src/node_modules/@stylelint/postcss-css-in-js/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@stylelint/postcss-markdown/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/style-search/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/sugarss/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/supports-color/license \
+	chromium/third_party/devtools-frontend/src/node_modules/svg-tags/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/table/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/table/node_modules/ansi-regex/license \
+	chromium/third_party/devtools-frontend/src/node_modules/table/node_modules/emoji-regex/LICENSE-MIT.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/table/node_modules/string-width/license \
+	chromium/third_party/devtools-frontend/src/node_modules/table/node_modules/strip-ansi/license \
+	chromium/third_party/devtools-frontend/src/node_modules/tar-fs/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/tar-stream/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/terser/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/text-table/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/through/LICENSE.APACHE2 \
+	chromium/third_party/devtools-frontend/src/node_modules/through/LICENSE.MIT \
+	chromium/third_party/devtools-frontend/src/node_modules/tmp/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/to-fast-properties/license \
+	chromium/third_party/devtools-frontend/src/node_modules/toidentifier/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/to-regex-range/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/treeify/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/trim-newlines/license \
+	chromium/third_party/devtools-frontend/src/node_modules/trim-trailing-lines/license \
+	chromium/third_party/devtools-frontend/src/node_modules/trough/license \
+	chromium/third_party/devtools-frontend/src/node_modules/tslib/LICENSE.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/tsutils/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/type-check/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/typedarray-to-buffer/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/type-detect/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/type-fest/license \
+	chromium/third_party/devtools-frontend/src/node_modules/type-is/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@types/chai/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@types/codemirror/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@types/color-name/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/eslint-plugin/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/eslint-plugin/node_modules/regexpp/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/eslint-plugin/node_modules/semver/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/experimental-utils/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/experimental-utils/node_modules/eslint-utils/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/parser/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/typescript-estree/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/typescript-estree/node_modules/glob/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/types/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/visitor-keys/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/typescript/LICENSE.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/@types/eslint-visitor-keys/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@types/estree/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@types/filesystem/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@types/json-schema/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@types/mocha/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@types/node/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@types/normalize-package-data/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@types/parse-json/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@types/puppeteer/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@types/tern/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@types/unist/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/@types/yauzl/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/ua-parser-js/license.md \
+	chromium/third_party/devtools-frontend/src/node_modules/ultron/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/unbzip2-stream/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/unherit/license \
+	chromium/third_party/devtools-frontend/src/node_modules/unified/license \
+	chromium/third_party/devtools-frontend/src/node_modules/uniq/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/unist-util-find-all-after/license \
+	chromium/third_party/devtools-frontend/src/node_modules/unist-util-is/license \
+	chromium/third_party/devtools-frontend/src/node_modules/unist-util-remove-position/license \
+	chromium/third_party/devtools-frontend/src/node_modules/unist-util-stringify-position/license \
+	chromium/third_party/devtools-frontend/src/node_modules/unist-util-visit/license \
+	chromium/third_party/devtools-frontend/src/node_modules/unist-util-visit-parents/license \
+	chromium/third_party/devtools-frontend/src/node_modules/universalify/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/unpipe/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/util-deprecate/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/util-extend/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/utils-merge/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/v8-compile-cache/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/validate-npm-package-license/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/vfile/license \
+	chromium/third_party/devtools-frontend/src/node_modules/vfile-location/license \
+	chromium/third_party/devtools-frontend/src/node_modules/vfile-message/license \
+	chromium/third_party/devtools-frontend/src/node_modules/void-elements/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/which/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/which-module/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/wide-align/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/word-wrap/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/wordwrap/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/workerpool/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/license \
+	chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/ansi-regex/license \
+	chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/emoji-regex/LICENSE-MIT.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/string-width/license \
+	chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/strip-ansi/license \
+	chromium/third_party/devtools-frontend/src/node_modules/wrappy/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/write-file-atomic/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/write/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/ws/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/ws/node_modules/safe-buffer/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/xmlhttprequest-ssl/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/xtend/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/y18n/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/yaml/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/ansi-regex/license \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/ansi-styles/license \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/cliui/LICENSE.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/color-convert/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/color-name/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/find-up/license \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/is-fullwidth-code-point/license \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/locate-path/license \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/path-exists/license \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/p-locate/license \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/string-width/license \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/strip-ansi/license \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/wrap-ansi/license \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/yargs-parser/LICENSE.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs-parser/LICENSE.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/ansi-regex/license \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/emoji-regex/LICENSE-MIT.txt \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/find-up/license \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/locate-path/license \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/p-locate/license \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/string-width/license \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/strip-ansi/license \
+	chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/yargs/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/yauzl/LICENSE \
+	chromium/third_party/devtools-frontend/src/node_modules/yeast/LICENSE \
+	chromium/third_party/devtools-frontend/src/scripts/closure/COPYING \
+	chromium/third_party/devtools-frontend/src/third_party/i18n/LICENSE \
+	chromium/third_party/devtools-frontend/src/third_party/pyjson5/src/LICENSE \
+	chromium/third_party/dom_distiller_js/LICENSE \
+	chromium/third_party/dpkg-shlibdeps/LICENSE \
+	chromium/third_party/emoji-segmenter/LICENSE \
+	chromium/third_party/emoji-segmenter/src/LICENSE \
+	chromium/third_party/espresso/LICENSE \
+	chromium/third_party/expat/src/expat/COPYING \
+	chromium/third_party/ffmpeg/chromium/scripts/license_texts/full_lgpl.txt \
+	chromium/third_party/ffmpeg/chromium/scripts/license_texts/jpeg.txt \
+	chromium/third_party/ffmpeg/chromium/scripts/license_texts/mips.txt \
+	chromium/third_party/ffmpeg/chromium/scripts/license_texts/oggparse_ahlberg_rullgayrd_2005.txt \
+	chromium/third_party/ffmpeg/COPYING.GPLv2 \
+	chromium/third_party/ffmpeg/COPYING.GPLv3 \
+	chromium/third_party/ffmpeg/COPYING.LGPLv2.1 \
+	chromium/third_party/ffmpeg/COPYING.LGPLv3 \
+	chromium/third_party/ffmpeg/LICENSE.md \
+	chromium/third_party/flac/COPYING.FDL \
+	chromium/third_party/flac/COPYING.GPL \
+	chromium/third_party/flac/COPYING.LGPL \
+	chromium/third_party/flac/COPYING.Xiph \
+	chromium/third_party/flatbuffers/LICENSE \
+	chromium/third_party/flatbuffers/src/dart/LICENSE \
+	chromium/third_party/flatbuffers/src/LICENSE.txt \
+	chromium/third_party/fontconfig/LICENSE \
+	chromium/third_party/fontconfig/src/COPYING \
+	chromium/third_party/freetype/src/docs/LICENSE.TXT \
+	chromium/third_party/fusejs/LICENSE \
+	chromium/third_party/gif_player/LICENSE \
+	chromium/third_party/glfw/src/LICENSE.md \
+	chromium/third_party/glslang/LICENSE \
+	chromium/third_party/glslang/src/license-checker.cfg \
+	chromium/third_party/glslang/src/LICENSE.txt \
+	chromium/third_party/google-closure-library/closure-deps/LICENSE \
+	chromium/third_party/google-closure-library/doc/LICENSE \
+	chromium/third_party/google-closure-library/LICENSE \
+	chromium/third_party/googletest/src/googlemock/LICENSE \
+	chromium/third_party/googletest/src/googlemock/scripts/generator/LICENSE \
+	chromium/third_party/googletest/src/googletest/LICENSE \
+	chromium/third_party/googletest/src/LICENSE \
+	chromium/third_party/google-truth/LICENSE \
+	chromium/third_party/guava/LICENSE \
+	chromium/third_party/gvr-android-keyboard/LICENSE \
+	chromium/third_party/gvr-android-sdk/LICENSE \
+	chromium/third_party/hamcrest/LICENSE \
+	chromium/third_party/harfbuzz-ng/src/COPYING \
+	chromium/third_party/harfbuzz-ng/src/src/ms-use/COPYING \
+	chromium/third_party/hunspell/COPYING \
+	chromium/third_party/hunspell/COPYING.LESSER \
+	chromium/third_party/hunspell/COPYING.MPL \
+	chromium/third_party/hyphenation-patterns/LICENSE \
+	chromium/third_party/hyphenation-patterns/src/pt/LICENSE \
+	chromium/third_party/iaccessible2/LICENSE \
+	chromium/third_party/iccjpeg/LICENSE \
+	chromium/third_party/icu4j/LICENSE \
+	chromium/third_party/icu/LICENSE \
+	chromium/third_party/icu/license.html \
+	chromium/third_party/icu/scripts/LICENSE \
+	chromium/third_party/ijar/LICENSE \
+	chromium/third_party/ink/LICENSE \
+	chromium/third_party/inspector_protocol/LICENSE \
+	chromium/third_party/isimpledom/LICENSE \
+	chromium/third_party/jacoco/LICENSE \
+	chromium/third_party/javalang/LICENSE \
+	chromium/third_party/jetifier_standalone/LICENSE \
+	chromium/third_party/jinja2/LICENSE \
+	chromium/third_party/jsoncpp/LICENSE \
+	chromium/third_party/jsoncpp/source/LICENSE \
+	chromium/third_party/jstemplate/COPYING \
+	chromium/third_party/khronos/LICENSE \
+	chromium/third_party/leveldatabase/src/LICENSE \
+	chromium/third_party/libaddressinput/LICENSE \
+	chromium/third_party/libaddressinput/src/cpp/LICENSE.chromium \
+	chromium/third_party/libaddressinput/src/LICENSE \
+	chromium/third_party/libaom/source/libaom/LICENSE \
+	chromium/third_party/libaom/source/libaom/third_party/fastfeat/LICENSE \
+	chromium/third_party/libaom/source/libaom/third_party/googletest/src/googletest/LICENSE \
+	chromium/third_party/libaom/source/libaom/third_party/libwebm/LICENSE.TXT \
+	chromium/third_party/libaom/source/libaom/third_party/vector/LICENSE \
+	chromium/third_party/libaom/source/libaom/third_party/x86inc/LICENSE \
+	chromium/third_party/libavif/LICENSE \
+	chromium/third_party/libavif/src/LICENSE \
+	chromium/third_party/libbrlapi/LICENSE \
+	chromium/third_party/libgav1/src/LICENSE \
+	chromium/third_party/libgifcodec/LICENSE.md \
+	chromium/third_party/libipp/LICENSE \
+	chromium/third_party/libjingle_xmpp/LICENSE \
+	chromium/third_party/libjpeg_turbo/LICENSE.md \
+	chromium/third_party/libovr/LICENSE \
+	chromium/third_party/libpng/LICENSE \
+	chromium/third_party/libprotobuf-mutator/src/LICENSE \
+	chromium/third_party/libsecret/LICENSE \
+	chromium/third_party/libsrtp/LICENSE \
+	chromium/third_party/libsync/LICENSE \
+	chromium/third_party/libudev/LICENSE \
+	chromium/third_party/libusb/src/COPYING \
+	chromium/third_party/libvpx/source/libvpx/LICENSE \
+	chromium/third_party/libvpx/source/libvpx/third_party/googletest/src/LICENSE \
+	chromium/third_party/libvpx/source/libvpx/third_party/libwebm/LICENSE.TXT \
+	chromium/third_party/libvpx/source/libvpx/third_party/libyuv/LICENSE \
+	chromium/third_party/libvpx/source/libvpx/third_party/x86inc/LICENSE \
+	chromium/third_party/libwebm/source/LICENSE.TXT \
+	chromium/third_party/libwebp/LICENSE \
+	chromium/third_party/libxml/src/Copyright \
+	chromium/third_party/libXNVCtrl/LICENSE \
+	chromium/third_party/libxslt/src/Copyright \
+	chromium/third_party/libyuv/LICENSE \
+	chromium/third_party/lottie/LICENSE \
+	chromium/third_party/lzma_sdk/LICENSE \
+	chromium/third_party/mako/LICENSE \
+	chromium/third_party/markupsafe/LICENSE \
+	chromium/third_party/material_design_icons/LICENSE \
+	chromium/third_party/mesa_headers/LICENSE \
+	chromium/third_party/metrics_proto/LICENSE \
+	chromium/third_party/microsoft_webauthn/LICENSE \
+	chromium/third_party/minigbm/LICENSE \
+	chromium/third_party/minigbm/src/LICENSE \
+	chromium/third_party/minizip/src/lib/bzip2/LICENSE \
+	chromium/third_party/minizip/src/LICENSE \
+	chromium/third_party/mocha/LICENSE \
+	chromium/third_party/mockito/LICENSE \
+	chromium/third_party/modp_b64/LICENSE \
+	chromium/third_party/motemplate/LICENSE \
+	chromium/third_party/mozilla/LICENSE \
+	chromium/third_party/nasm/LICENSE \
+	chromium/third_party/nearby/LICENSE \
+	chromium/third_party/nearby/src/LICENSE \
+	chromium/third_party/netty4/LICENSE \
+	chromium/third_party/netty-tcnative/LICENSE \
+	chromium/third_party/node/LICENSE \
+	chromium/third_party/objenesis/LICENSE \
+	chromium/third_party/ocmock/License.txt \
+	chromium/third_party/one_euro_filter/LICENSE \
+	chromium/third_party/opencv/src/LICENSE \
+	chromium/third_party/openh264/src/LICENSE \
+	chromium/third_party/openscreen/src/LICENSE \
+	chromium/third_party/openscreen/src/third_party/mozilla/LICENSE.txt \
+	chromium/third_party/openscreen/src/third_party/tinycbor/src/LICENSE \
+	chromium/third_party/opus/src/COPYING \
+	chromium/third_party/opus/src/LICENSE_PLEASE_READ.txt \
+	chromium/third_party/ots/LICENSE \
+	chromium/third_party/ow2_asm/LICENSE \
+	chromium/third_party/pdfium/LICENSE \
+	chromium/third_party/pdfium/third_party/bigint/LICENSE \
+	chromium/third_party/pdfium/third_party/libpng16/LICENSE \
+	chromium/third_party/pdfium/third_party/pymock/LICENSE.txt \
+	chromium/third_party/perfetto/LICENSE \
+	chromium/third_party/perfetto/src/trace_processor/python/LICENSE \
+	chromium/third_party/pexpect/LICENSE \
+	chromium/third_party/pffft/LICENSE \
+	chromium/third_party/ply/LICENSE \
+	chromium/third_party/ply/license.patch \
+	chromium/third_party/polymer/LICENSE.polymer \
+	chromium/third_party/polymer/v1_0/components-chromium/polymer2/LICENSE.txt \
+	chromium/third_party/polymer/v3_0/components-chromium/polymer/LICENSE.txt \
+	chromium/third_party/private-join-and-compute/src/crypto/LICENSE \
+	chromium/third_party/private-join-and-compute/src/LICENSE \
+	chromium/third_party/private-join-and-compute/src/util/LICENSE \
+	chromium/third_party/private_membership/LICENSE \
+	chromium/third_party/proguard/LICENSE \
+	chromium/third_party/protobuf/LICENSE \
+	chromium/third_party/pycoverage/LICENSE \
+	chromium/third_party/pyelftools/elftools/construct/LICENSE \
+	chromium/third_party/pyelftools/LICENSE \
+	chromium/third_party/pyjson5/src/LICENSE \
+	chromium/third_party/pystache/LICENSE \
+	chromium/third_party/Python-Markdown/LICENSE.md \
+	chromium/third_party/pywebsocket3/src/LICENSE \
+	chromium/third_party/qcms/src/COPYING \
+	chromium/third_party/quic_trace/src/LICENSE \
+	chromium/third_party/quic_trace/src/third_party/fonts/LICENSE \
+	chromium/third_party/quic_trace/src/third_party/glew/LICENSE.txt \
+	chromium/third_party/qunit/LICENSE \
+	chromium/third_party/r8/LICENSE \
+	chromium/third_party/re2/LICENSE \
+	chromium/third_party/re2/src/LICENSE \
+	chromium/third_party/requests/LICENSE \
+	chromium/third_party/rnnoise/COPYING \
+	chromium/third_party/robolectric/LICENSE \
+	chromium/third_party/robolectric/licenses/extreme.indiana.edu.license.txt \
+	chromium/third_party/robolectric/licenses/javolution.license.txt \
+	chromium/third_party/robolectric/licenses/pivotal.labs.license.txt \
+	chromium/third_party/s2cellid/LICENSE \
+	chromium/third_party/schema_org/LICENSE \
+	chromium/third_party/securemessage/LICENSE \
+	chromium/third_party/securemessage/src/LICENSE \
+	chromium/third_party/shaderc/src/kokoro/linux/license_check_docker.sh \
+	chromium/third_party/shaderc/src/kokoro/linux/license_check.sh \
+	chromium/third_party/shaderc/src/LICENSE \
+	chromium/third_party/shaderc/src/license-checker.cfg \
+	chromium/third_party/shaderc/src/third_party/LICENSE.glslang \
+	chromium/third_party/shaderc/src/third_party/LICENSE.spirv-tools \
+	chromium/third_party/shaka-player/LICENSE \
+	chromium/third_party/shell-encryption/src/glog/LICENSE \
+	chromium/third_party/shell-encryption/src/LICENSE \
+	chromium/third_party/shell-encryption/src/prng/LICENSE \
+	chromium/third_party/shell-encryption/src/testing/LICENSE \
+	chromium/third_party/simplejson/LICENSE.txt \
+	chromium/third_party/sinonjs/LICENSE \
+	chromium/third_party/six/LICENSE \
+	chromium/third_party/six/src/LICENSE \
+	chromium/third_party/skia/include/third_party/skcms/LICENSE \
+	chromium/third_party/skia/include/third_party/vulkan/LICENSE \
+	chromium/third_party/skia/LICENSE \
+	chromium/third_party/skia/modules/canvaskit/canvaskit/LICENSE \
+	chromium/third_party/skia/modules/pathkit/npm-asmjs/LICENSE \
+	chromium/third_party/skia/modules/pathkit/npm-wasm/LICENSE \
+	chromium/third_party/skia/third_party/etc1/LICENSE \
+	chromium/third_party/skia/third_party/skcms/LICENSE \
+	chromium/third_party/skia/third_party/vulkanmemoryallocator/include/LICENSE.txt \
+	chromium/third_party/skia/third_party/vulkanmemoryallocator/LICENSE \
+	chromium/third_party/skia/third_party/wuffs/LICENSE \
+	chromium/third_party/smhasher/LICENSE \
+	chromium/third_party/snappy/src/COPYING \
+	chromium/third_party/spirv-cross/spirv-cross/LICENSE \
+	chromium/third_party/spirv-headers/LICENSE \
+	chromium/third_party/spirv-headers/src/LICENSE \
+	chromium/third_party/SPIRV-Tools/LICENSE \
+	chromium/third_party/SPIRV-Tools/src/LICENSE \
+	chromium/third_party/SPIRV-Tools/src/utils/vscode/src/lsp/LICENSE \
+	chromium/third_party/sqlite4java/LICENSE \
+	chromium/third_party/sqlite/LICENSE \
+	chromium/third_party/sqlite/src/autoconf/tea/license.terms \
+	chromium/third_party/sqlite/src/LICENSE.md \
+	chromium/third_party/subresource-filter-ruleset/LICENSE \
+	chromium/third_party/sudden_motion_sensor/LICENSE \
+	chromium/third_party/swiftshader/LICENSE.txt \
+	chromium/third_party/tcmalloc/LICENSE \
+	chromium/third_party/tcmalloc/vendor/COPYING \
+	chromium/third_party/test_fonts/LICENSE \
+	chromium/third_party/text-fragments-polyfill/LICENSE \
+	chromium/third_party/tint/LICENSE \
+	chromium/third_party/tint/src/LICENSE \
+	chromium/third_party/tlslite/LICENSE \
+	chromium/third_party/turbine/LICENSE \
+	chromium/third_party/ub-uiautomator/LICENSE \
+	chromium/third_party/ukey2/LICENSE \
+	chromium/third_party/ukey2/src/LICENSE \
+	chromium/third_party/unrar/LICENSE \
+	chromium/third_party/unrar/src/license.txt \
+	chromium/third_party/usb_ids/LICENSE \
+	chromium/third_party/usrsctp/LICENSE \
+	chromium/third_party/usrsctp/usrsctplib/LICENSE.md \
+	chromium/third_party/v4l-utils/COPYING.libv4l \
+	chromium/third_party/vulkan_headers/LICENSE.txt \
+	chromium/third_party/vulkan_memory_allocator/LICENSE.txt \
+	chromium/third_party/vulkan_memory_allocator/premake/LICENSE.txt \
+	chromium/third_party/wds/LICENSE \
+	chromium/third_party/wds/src/COPYING \
+	chromium/third_party/web-animations-js/LICENSE \
+	chromium/third_party/web-animations-js/sources/COPYING \
+	chromium/third_party/webdriver/COPYING \
+	chromium/third_party/webdriver/LICENSE \
+	chromium/third_party/webgpu-cts/src/LICENSE.txt \
+	chromium/third_party/webgpu-cts/src/standalone/third_party/jquery/LICENSE.txt \
+	chromium/third_party/webpagereplay/LICENSE \
+	chromium/third_party/webrtc/common_audio/third_party/ooura/LICENSE \
+	chromium/third_party/webrtc/common_audio/third_party/spl_sqrt_floor/LICENSE \
+	chromium/third_party/webrtc/examples/androidapp/third_party/autobanh/LICENSE \
+	chromium/third_party/webrtc/examples/androidapp/third_party/autobanh/LICENSE.md \
+	chromium/third_party/webrtc/examples/objc/AppRTCMobile/third_party/SocketRocket/LICENSE \
+	chromium/third_party/webrtc/LICENSE \
+	chromium/third_party/webrtc/license_template.txt \
+	chromium/third_party/webrtc/modules/third_party/fft/LICENSE \
+	chromium/third_party/webrtc/modules/third_party/g711/LICENSE \
+	chromium/third_party/webrtc/modules/third_party/g722/LICENSE \
+	chromium/third_party/webrtc/modules/third_party/portaudio/LICENSE \
+	chromium/third_party/webrtc/rtc_base/third_party/base64/LICENSE \
+	chromium/third_party/webrtc/rtc_base/third_party/sigslot/LICENSE \
+	chromium/third_party/webxr_test_pages/LICENSE \
+	chromium/third_party/webxr_test_pages/webxr-samples/js/cottontail/LICENSE.md \
+	chromium/third_party/webxr_test_pages/webxr-samples/js/third-party/dat.gui/LICENSE \
+	chromium/third_party/webxr_test_pages/webxr-samples/js/third-party/gl-matrix/LICENSE \
+	chromium/third_party/webxr_test_pages/webxr-samples/LICENSE.md \
+	chromium/third_party/weston/LICENSE \
+	chromium/third_party/weston/src/COPYING \
+	chromium/third_party/weston/src/data/COPYING \
+	chromium/third_party/widevine/LICENSE \
+	chromium/third_party/woff2/LICENSE \
+	chromium/third_party/wuffs/LICENSE \
+	chromium/third_party/wuffs/src/LICENSE \
+	chromium/third_party/xcbproto/src/COPYING \
+	chromium/third_party/xdg-utils/LICENSE \
+	chromium/third_party/xstream/LICENSE \
+	chromium/third_party/zlib/LICENSE \
+	chromium/third_party/zxcvbn-cpp/LICENSE.txt \
+	chromium/tools/grit/third_party/six/LICENSE \
+	chromium/tools/origin_trials/third_party/ed25519/LICENSE \
+	chromium/tools/page_cycler/acid3/LICENSE \
+	chromium/tools/win/ChromeDebug/ChromeDebug/LICENSE \
+	chromium/url/third_party/mozilla/LICENSE.txt \
+	chromium/v8/LICENSE \
+	chromium/v8/LICENSE.fdlibm \
+	chromium/v8/LICENSE.strongtalk \
+	chromium/v8/LICENSE.v8 \
+	chromium/v8/src/third_party/siphash/LICENSE \
+	chromium/v8/src/third_party/utf8-decoder/LICENSE \
+	chromium/v8/src/third_party/valgrind/LICENSE \
+	chromium/v8/src/third_party/vtune/LICENSE \
+	chromium/v8/third_party/colorama/LICENSE \
+	chromium/v8/third_party/inspector_protocol/LICENSE \
+	chromium/v8/third_party/jsoncpp/LICENSE \
+	chromium/v8/third_party/v8/builtins/LICENSE \
+	chromium/v8/third_party/wasm-api/LICENSE \
+	gn/base/third_party/icu/LICENSE \
+	gn/LICENSE \
+	ninja/COPYING \
diff --git a/package/qt5/qt5webengine-chromium/qt5webengine-chromium.hash b/package/qt5/qt5webengine-chromium/qt5webengine-chromium.hash
new file mode 100644
index 0000000000..103e27d889
--- /dev/null
+++ b/package/qt5/qt5webengine-chromium/qt5webengine-chromium.hash
@@ -0,0 +1,1256 @@
+# Locally calculated
+sha256  14c0654d046fd1faf0204b79e33c091012a8f4df972777e5691875aa75d29a65  qtwebengine-chromium-0ad2814370799a2161057d92231fe3ee00e2fe98.tar.bz2
+
+# Locally calculated with:
+# for i in $(find * -type f \( -iname 'license*' -o -iname 'copying*' -o -name 'APPLE_LICENSE' -o -name 'Copyright' -o -path '*/license_texts/*' -o -path '*/licenses/*' \) -a -not -name '*.cc' -not -name '*.py' -not -name '*.pyc' -not -name '*.h' -not -name 'LICENSE.sha1' -not -name 'licensecheck.pl*' -not -name 'license.after' -not -name 'license.before' -not -path 'chromium/third_party/catapult/*') ; do echo -n "sha256  " ; sha256sum $i ; done | sort --key=3
+sha256  3ed00dd93c75655599456c83cba2f69c6824fd53f24fc24206ba27b65057709d  chromium/base/third_party/cityhash/COPYING
+sha256  4af93c12062c58058378de2397dc1c92bbff9ddfb1d583a01c84127557ce97ca  chromium/base/third_party/double_conversion/LICENSE
+sha256  96e7ccbf8d17e319dd77c4ebd4965b64a820bbcc3142a2478fbf95af77417b6a  chromium/base/third_party/dynamic_annotations/LICENSE
+sha256  5d85142a5609ad177a2d7a2e7cae060b886b8b42f25c5b9803cf0cb5ee04ad2f  chromium/base/third_party/icu/LICENSE
+sha256  9ad1d4223b80349f3d3ab9cec92f93431b9da14a1b5d41de468ce054a28cf8aa  chromium/base/third_party/libevent/LICENSE
+sha256  d55a403514532af12dc2fbfb2e41900090a5dd6c7c76c8e4d9b20bcc737eac35  chromium/base/third_party/nspr/LICENSE
+sha256  90b2201c340cee36b40a443f949d9eb416f0a0d204c32d350aff87fedeb67ae8  chromium/base/third_party/superfasthash/LICENSE
+sha256  538edc6f52c563cf06eca1bac8dd785ff60ef5a371a950265700d5d40386db6e  chromium/base/third_party/symbolize/LICENSE
+sha256  79955cd80438f041387eb080f2675394e36a806b8b17eca63a4bc568d839509e  chromium/base/third_party/valgrind/LICENSE
+sha256  c45766baef552c59eeb1fdfbbc690e52e4cd5b135dfd325f21bdfe8ddfe28ce6  chromium/base/third_party/xdg_mime/LICENSE
+sha256  18351de3d7e2dc469cc83e77d38a3e25d010251e34eb348bbd1a76275e313997  chromium/base/third_party/xdg_user_dirs/LICENSE
+sha256  7a209dd1b94cabdb5ea9c6f9164b9546ffa5daaa671e7767d49510db055f5c51  chromium/buildtools/LICENSE
+sha256  845022e0c1db1abb41a6ba4cd3c4b674ec290f3359d9d3c78ae558d4c0ed9308  chromium/LICENSE
+sha256  212c5a071f61512786b5e5840b3d70c85e017f3f82939ad4d4a870fc48b33477  chromium/LICENSE.chromium_os
+sha256  7a209dd1b94cabdb5ea9c6f9164b9546ffa5daaa671e7767d49510db055f5c51  chromium/mojo/public/LICENSE
+sha256  bed70fc84f1bea2b4b144564b9a0f9a5a3bc7b0d78f6e62092aeb689cac56bdd  chromium/net/third_party/mozilla_security_manager/LICENSE
+sha256  a20c1a32d1f8102432360b42e932869f7c11c7cdbacf9cac554c422132af47f4  chromium/net/third_party/nss/LICENSE
+sha256  845022e0c1db1abb41a6ba4cd3c4b674ec290f3359d9d3c78ae558d4c0ed9308  chromium/net/third_party/quiche/src/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/net/third_party/uri_template/LICENSE
+sha256  834ee20e8fc3235722ed801bae30cc539c2775be656ff9cc2810fe674e53d5ec  chromium/ppapi/LICENSE
+sha256  c79a7fea0e3cac04cd43f20e7b648e5a0ff8fa5344e644b0ee09ca1162b62747  chromium/third_party/abseil-cpp/LICENSE
+sha256  bf4da21bd20bcfb5b60b7ecc67fa864a79be049e21d6178076887f178dd6c71a  chromium/third_party/angle/LICENSE
+sha256  3f6f1b520bc53e878ccbb698ad0bacef3752a5f4e4b50a26552bd70f60b40748  chromium/third_party/angle/src/common/third_party/smhasher/LICENSE
+sha256  86ec6953794503942b70fcd4f35b565d44f63f703b7037ce44dad965c4aaae91  chromium/third_party/angle/src/common/third_party/xxhash/LICENSE
+sha256  09a7c3fbc0b4ae6a9ccc4ffdcbfa511c14b8647a24f24783838862cf6c226d4e  chromium/third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/third_party/ffx_spd/LICENSE
+sha256  a08ba10adec47027ef8078848729837b1c5a42f140718d7afd65c23f1eeec392  chromium/third_party/angle/src/third_party/compiler/LICENSE
+sha256  31346421254a3e6e12687cf17f19f6357ee73a617fa7b3d3ccefdcbabe49bdd3  chromium/third_party/angle/src/third_party/libXNVCtrl/LICENSE
+sha256  336f505f8d5aa73ea40b4d798dde86953e9c1f6525757f1d7f18120fea09bb1d  chromium/third_party/angle/src/third_party/volk/LICENSE.md
+sha256  837402bd25fad9b704265801ca3f92566a98157c1f9a7acd6f446299ba1c305a  chromium/third_party/angle/third_party/rapidjson/src/bin/jsonschema/LICENSE
+sha256  394faaedb93c1da8ecbd61322518834908fee64381117e01a611bf9fac20baa6  chromium/third_party/angle/third_party/rapidjson/src/contrib/natvis/LICENSE
+sha256  a140e5d46fe734a1c78f1a3c3ef207871dd75648be71fdda8e309b23ab8b1f32  chromium/third_party/angle/third_party/rapidjson/src/license.txt
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/angle/third_party/vulkan-headers/src/LICENSE.txt
+sha256  43c0a37e6a0fa7ff3c843b3ec5a4fac84b712558ddac103fbd4c1649662a9ece  chromium/third_party/angle/third_party/vulkan-loader/src/LICENSE.txt
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/angle/third_party/vulkan-tools/src/LICENSE.txt
+sha256  ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6  chromium/third_party/angle/tools/flex-bison/third_party/m4sugar/LICENSE
+sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  chromium/third_party/angle/tools/flex-bison/third_party/skeletons/LICENSE
+sha256  bfec18debedcb337f8af53f143ccf0b1575d0b7c30deaee137f10397eca0d353  chromium/third_party/angle/util/windows/third_party/StackWalker/LICENSE
+sha256  b23e682fda7310afe43505ed6041919ccff8f9e0c6799ebd7542cbcef11102e3  chromium/third_party/apple_apsl/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/arcore-android-sdk-client/LICENSE
+sha256  584e795ba5833279c327245594d6dc216fc664144fa3626a0bdf136bc00af76c  chromium/third_party/arcore-android-sdk/LICENSE
+sha256  af175b9d96ee93c21a036152e1b905b0b95304d4ae8c2c921c7609100ba8df7e  chromium/third_party/axe-core/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/bazel/LICENSE
+sha256  0518cf49c09398259d54fcfff0b5fd36456162c6439886660e53627b3073ef22  chromium/third_party/blanketjs/LICENSE
+sha256  a661d10f8f194b1963a75bb4d308f17b078cc064624313a556902d89705f6876  chromium/third_party/blink/LICENSE_FOR_ABOUT_CREDITS
+sha256  0b5d3a7cc325942567373b0ecd757d07c132e0ebd7c97bfc63f7e1a76094edb4  chromium/third_party/blink/renderer/core/LICENSE-APPLE
+sha256  7555fa34bc131a75ca56d65c40cc1ea8f9515d23e353d4c15d58573a042f7805  chromium/third_party/blink/renderer/core/LICENSE-LGPL-2
+sha256  f2b3bd09663381deb99721109d22b47af1213bb43007a8b56a06c6375c8050ce  chromium/third_party/blink/renderer/core/LICENSE-LGPL-2.1
+sha256  6a73f9541c2de74158c0e7cf6b0a58ef774f5a780bf191f2d7ec9cc53efe2bf2  chromium/third_party/blink/renderer/platform/testing/data/third_party/Noto/LICENSE_OFL.txt
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/blink/renderer/platform/testing/data/third_party/Roboto/LICENSE.txt
+sha256  5a7b465d39b5e018bc40cc34162176269f7c476989cb4dbcf0ec0b81701545a7  chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/LICENSE.md
+sha256  878329f0bd878ad015129ce8bda82f481e86ec2e80831e909c0d67171d922e73  chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/atomicwrites/LICENSE
+sha256  88ec6a6c8eafa3b9757e745783938bef3f5e4d5e3c76b1db576aa3ab520e5e1d  chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/enum/enum/LICENSE
+sha256  663f9253e13519b82ab4a6b1caab6bed05aada70517f28cd0254be8a9fa19ed6  chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/h2/LICENSE
+sha256  763a9342a04df62046c9dc748a5287934eb0a5331c6863b3ca0aee20e18cb4ed  chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/hpack/LICENSE
+sha256  16a39991619e92f18680932da2a9199fdf7d95df3ecaedc52ea06218aabafd6f  chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/html5lib/LICENSE
+sha256  763a9342a04df62046c9dc748a5287934eb0a5331c6863b3ca0aee20e18cb4ed  chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/hyperframe/LICENSE
+sha256  b7529b8c07171a78a8c36c3283905528e4812945d977d125eb926e8ccbf245b6  chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/six/LICENSE
+sha256  60bd7c54856bf9387221bde5ab55d516d7cea15870d0fed69406bcd1c8ec7c9d  chromium/third_party/boringssl/src/LICENSE
+sha256  0c125a4dab5ab869473e6491db22f6c0a7f8a4de58588d03bb2b16c0c8ebd7de  chromium/third_party/boringssl/src/third_party/fiat/LICENSE
+sha256  9702de7e4117a8e2b20dafab11ffda58c198aede066406496bef670d40a22138  chromium/third_party/boringssl/src/third_party/googletest/LICENSE
+sha256  58d1e17ffe5109a7ae296caafcadfdbe6a7d176f0bc4ab01e12a689b0499d8bd  chromium/third_party/boringssl/src/third_party/wycheproof_testvectors/LICENSE
+sha256  5740985669353ef52e0f320413ff68dc62b6c23a596cd78b6d6b80764f1c50ab  chromium/third_party/bouncycastle/LICENSE
+sha256  8d5d1311342ed55b486d778a6763f54a26002698ac0cbab64026b98033300dfd  chromium/third_party/breakpad/breakpad/LICENSE
+sha256  4d03f91b94e0db3bdc9ddaf0060dd41cc94a2096094fbc1417713a2f059658c7  chromium/third_party/breakpad/breakpad/src/third_party/curl/COPYING
+sha256  d8eaba95b8d03c5912da9b5823de2c920e84a993133039a22fc8100f9edb33a1  chromium/third_party/breakpad/breakpad/src/third_party/libdisasm/LICENSE
+sha256  015b2d5cedb3024339446a63963d073fa831544cf253c5ddd713fccc8d83e939  chromium/third_party/breakpad/LICENSE
+sha256  3d180008e36922a4e8daec11c34c7af264fed5962d07924aea928c38e8663c94  chromium/third_party/brotli/LICENSE
+sha256  98f8746a39f9a42da35df7046a15b56d0e2f4f76eefc352d67f1bf76e85360b4  chromium/third_party/bspatch/LICENSE
+sha256  b5730da9a26472a405b0b1c61d3d166714d9d654ab3282e54e4a01a5f66316c3  chromium/third_party/byte_buddy/LICENSE
+sha256  ef5b39dfcafe08323262e3f51a3a9de649978a55ed8ef8eef3c451f2c1e78a53  chromium/third_party/ced/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/ced/src/LICENSE
+sha256  3d1d2669d0ba87069b5e202f106193c4eb0e140a2aead31dca9670a0581dd979  chromium/third_party/chaijs/LICENSE
+sha256  a190dc9c8043755d90f8b0a75fa66b9e42d4af4c980bf5ddc633f0124db3cee7  chromium/third_party/checkstyle/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/checkstyle/LICENSE.apache20
+sha256  c2d13ec3b431617beb314705c0f42d17ca579eed00032ed8a13dbcd23fc9bdd5  chromium/third_party/cld_3/LICENSE
+sha256  c2d13ec3b431617beb314705c0f42d17ca579eed00032ed8a13dbcd23fc9bdd5  chromium/third_party/cld_3/src/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/closure_compiler/compiler/COPYING
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/closure_compiler/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/crashpad/crashpad/LICENSE
+sha256  212846e0145aa50fb3a5aef254a370311a93acf6c1e792e47e0068d64c8c3885  chromium/third_party/crashpad/crashpad/third_party/apple_cf/APPLE_LICENSE
+sha256  4b45cbe16d7b71b89ae6127e26e0d90a029198ca5e958ad8e3d0b8bbed364d8b  chromium/third_party/crashpad/crashpad/third_party/cpp-httplib/cpp-httplib/LICENSE
+sha256  f40ee07401827b6ac9cf0aee1aaffb00e42a3f2c729f9c83f96a3daafef5d944  chromium/third_party/crashpad/crashpad/third_party/getopt/LICENSE
+sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  chromium/third_party/crashpad/crashpad/third_party/glibc/COPYING.LIB
+sha256  e5881019d8766c1e88a5fe1dbca4ba40c78011d41fcb18f6e9f50df60182685b  chromium/third_party/crashpad/crashpad/third_party/xnu/APPLE_LICENSE
+sha256  a1f30b77c01e0995fa32a00119e00749e8731ee8a3c4c3549bce74083c72b0b6  chromium/third_party/crc32c/src/LICENSE
+sha256  e9427cf6abc4eaeda0bcd094fca46af4067970079f426b65d5cbacb87bff6366  chromium/third_party/cros_system_api/LICENSE
+sha256  7a3cb0e5055874e67db9aa2d5fe26de23204fa994ffbad198901ffe9c812a717  chromium/third_party/d3/src/LICENSE
+sha256  b327887de263238deaa80c34cdd2ff3e0ba1d35db585ce14a37ce3e74ee389e9  chromium/third_party/dav1d/libdav1d/COPYING
+sha256  2da4494d2a8b5c742afbb905b10621e40129284c977ac138e3081ed0d9d83aed  chromium/third_party/dav1d/LICENSE
+sha256  b77e952e3feaebd807d27784988b19fb60f83f9fc9a0c03e6aedbbffd5d6f8ee  chromium/third_party/dawn/LICENSE
+sha256  43452b94e6aa0c2d076ad25b87f580c11571689d52f3aa1a1f7bdcab31a0bd15  chromium/third_party/decklink/LICENSE
+sha256  5a2ed53cc5975569e9fa146c4245eaf53377dc1a88bdcb923da6487e53cba55e  chromium/third_party/devscripts/COPYING
+sha256  13110d66c514a7890c4b388a353bc08fa094fe13d5ed7f3a222cc0a0caa3fd17  chromium/third_party/devtools-frontend/src/front_end/cm_modes/LICENSE
+sha256  9fea307fe830918e12b6822f943f4b59bd7715614efb68e834a141ca758bd5f2  chromium/third_party/devtools-frontend/src/front_end/dagre_layout/LICENSE
+sha256  f734f7708439c275f3599e2df7de84cd9f360bd13620a30ab376af6c9deb213b  chromium/third_party/devtools-frontend/src/front_end/sdk/wasm_source_map/LICENSES.deps
+sha256  bdab450fad7ee5d78d9a02d840983f4bccf525a6ded619e1a8fc3e2044256626  chromium/third_party/devtools-frontend/src/front_end/third_party/acorn/LICENSE
+sha256  a1930df5d7444dc71fb103d9c58768de1c2c13b96a83e58b7ed6b2eee6621744  chromium/third_party/devtools-frontend/src/front_end/third_party/acorn-logical-assignment/LICENSE
+sha256  a1930df5d7444dc71fb103d9c58768de1c2c13b96a83e58b7ed6b2eee6621744  chromium/third_party/devtools-frontend/src/front_end/third_party/acorn-logical-assignment/package/LICENSE
+sha256  bdab450fad7ee5d78d9a02d840983f4bccf525a6ded619e1a8fc3e2044256626  chromium/third_party/devtools-frontend/src/front_end/third_party/acorn-loose/LICENSE
+sha256  7cdb44aabddbdd78998119d68a39c87424119b663945c79891fc1b022301824c  chromium/third_party/devtools-frontend/src/front_end/third_party/acorn-loose/package/LICENSE
+sha256  e56a1e867a6ebc064c9d027e022ae15d1878b32f9e546b2373cdb591788cd3fe  chromium/third_party/devtools-frontend/src/front_end/third_party/acorn-numeric-separator/LICENSE
+sha256  e56a1e867a6ebc064c9d027e022ae15d1878b32f9e546b2373cdb591788cd3fe  chromium/third_party/devtools-frontend/src/front_end/third_party/acorn-numeric-separator/package/LICENSE
+sha256  7cdb44aabddbdd78998119d68a39c87424119b663945c79891fc1b022301824c  chromium/third_party/devtools-frontend/src/front_end/third_party/acorn/package/LICENSE
+sha256  af175b9d96ee93c21a036152e1b905b0b95304d4ae8c2c921c7609100ba8df7e  chromium/third_party/devtools-frontend/src/front_end/third_party/axe-core/LICENSE
+sha256  298d10e24bcd783b150fc07cd64ad175f5084f3615ba0e7c579aa95c55f22eac  chromium/third_party/devtools-frontend/src/front_end/third_party/codemirror/LICENSE
+sha256  a3f2fe2ac6b471aa80c737c5d283dd049bdc903a73835ee6d4d2cac02fdd53bf  chromium/third_party/devtools-frontend/src/front_end/third_party/codemirror/package/LICENSE
+sha256  b60e9b66bf4f9ab3aa5d1d20b18410a632fd624cf4ce3aa1eb839087caf35958  chromium/third_party/devtools-frontend/src/front_end/third_party/fabricjs/LICENSE
+sha256  7ec9661a8afafab1eee3523d6f1a193eff76314a5ab10b4ce96aefd87621b0c3  chromium/third_party/devtools-frontend/src/front_end/third_party/i18n/LICENSE
+sha256  0212e9ffd60f4c2e05426ac172b91266256b9ff4c0f0156e85b761a1d6f5e17f  chromium/third_party/devtools-frontend/src/front_end/third_party/intl-messageformat/LICENSE
+sha256  fdd0dd22e95c4c8634fe28674547e55e6dad144433ca09493e59ed0f95902f10  chromium/third_party/devtools-frontend/src/front_end/third_party/intl-messageformat/package/LICENSE
+sha256  7ec9661a8afafab1eee3523d6f1a193eff76314a5ab10b4ce96aefd87621b0c3  chromium/third_party/devtools-frontend/src/front_end/third_party/lighthouse/LICENSE
+sha256  55efdea1a9fe503ed3cd89c2776d3d2131795defaebea421754b428333fbfba3  chromium/third_party/devtools-frontend/src/front_end/third_party/lit-html/LICENSE
+sha256  1a5ae5ab221af81b68f4f4c156c0d2e044851272c5e2e6c07d685946557878ea  chromium/third_party/devtools-frontend/src/front_end/third_party/lit-html/package/LICENSE
+sha256  1b3235c9a9833dee5fcce1ac27d76157584dce78f1ca846bf217439323080234  chromium/third_party/devtools-frontend/src/front_end/third_party/lodash-isequal/LICENSE
+sha256  e159c6d48c989185448658f276375bfb2300362ec6d4ae5525a2d49c4bcb947d  chromium/third_party/devtools-frontend/src/front_end/third_party/lodash-isequal/package/LICENSE
+sha256  91968bf678e8c3d94ebf8596e98ca9cb5fca1c6555b53f721a940cb50f1b3d66  chromium/third_party/devtools-frontend/src/front_end/third_party/marked/LICENSE
+sha256  f6b8d4d6f4aff1b6744730b6943ac6e8b96315954e436f032cfaa5cbdcb07ff3  chromium/third_party/devtools-frontend/src/front_end/third_party/marked/package/LICENSE.md
+sha256  a1e4522979cd422b42d0b464072eb7d0d218651659f56bf09f8c147384e3f105  chromium/third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/LICENSE
+sha256  0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594  chromium/third_party/devtools-frontend/src/front_end/third_party/wasmparser/LICENSE
+sha256  0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594  chromium/third_party/devtools-frontend/src/front_end/third_party/wasmparser/package/LICENSE
+sha256  7a209dd1b94cabdb5ea9c6f9164b9546ffa5daaa671e7767d49510db055f5c51  chromium/third_party/devtools-frontend/src/LICENSE
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/abbrev/LICENSE
+sha256  71f83c4c0621102a56d9853812777b85751bce7e9726f686f5b056c1f8a4b0e6  chromium/third_party/devtools-frontend/src/node_modules/accepts/LICENSE
+sha256  cfa72b62b9ae173078823a3796b25c027a9071046a263beddf966df67018ce06  chromium/third_party/devtools-frontend/src/node_modules/acorn-jsx/LICENSE
+sha256  e85e131fa4ed25538ff1f4962ced1fb6f68b079bd9164a790597a0f30b8fd030  chromium/third_party/devtools-frontend/src/node_modules/ajv/LICENSE
+sha256  94e1923e52409cfd50e97988d9772c0de15f65700097e3227fec367a39e82b94  chromium/third_party/devtools-frontend/src/node_modules/ansi-colors/LICENSE
+sha256  5c932d88256b4ab958f64a856fa48e8bd1f55bc1d96b8149c65689e0c61789d3  chromium/third_party/devtools-frontend/src/node_modules/ansi-escapes/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/ansi-escapes/node_modules/type-fest/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/ansi-regex/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/ansi-styles/license
+sha256  5a3b0007c4203f10fe11b3fe8747253eb994f135e10b73e1f88ada941af09c6e  chromium/third_party/devtools-frontend/src/node_modules/anymatch/LICENSE
+sha256  c8442419dc614089ea022b3da6bfc089b41a58fb7b9030d1e651f2f36189dce2  chromium/third_party/devtools-frontend/src/node_modules/argparse/LICENSE
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/array-find-index/license
+sha256  00d402c2bbe7c67369bd01ce2c16b8ed46ccc949a1ee2d6bb8f9606afa8c7434  chromium/third_party/devtools-frontend/src/node_modules/array-includes/LICENSE
+sha256  00d402c2bbe7c67369bd01ce2c16b8ed46ccc949a1ee2d6bb8f9606afa8c7434  chromium/third_party/devtools-frontend/src/node_modules/array-includes/node_modules/es-abstract/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/array-includes/node_modules/es-to-primitive/LICENSE
+sha256  206c1adcf206dc0031b11232f5b054ec5f1662407ab1ca415247921cab2068ab  chromium/third_party/devtools-frontend/src/node_modules/array-includes/node_modules/has-symbols/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/array-includes/node_modules/is-callable/LICENSE
+sha256  dc0fe5a22d9336f345ee984f9bf56f11f22877a3aa5fd16a1db9a8ca0e23a5d1  chromium/third_party/devtools-frontend/src/node_modules/array-includes/node_modules/is-regex/LICENSE
+sha256  bd40cc437e28a3ad7bef2ad34e6b72e757b182e67bda1acadbab4ef0476f8232  chromium/third_party/devtools-frontend/src/node_modules/array-includes/node_modules/object-inspect/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/array-includes/node_modules/string.prototype.trimleft/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/array-includes/node_modules/string.prototype.trimright/LICENSE
+sha256  567b1f5e84afcfc97685f3c7fce4c7502e1ac7a91e79cf10980ecd6a9ad38583  chromium/third_party/devtools-frontend/src/node_modules/array.prototype.flat/LICENSE
+sha256  00d402c2bbe7c67369bd01ce2c16b8ed46ccc949a1ee2d6bb8f9606afa8c7434  chromium/third_party/devtools-frontend/src/node_modules/array.prototype.flat/node_modules/es-abstract/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/array.prototype.flat/node_modules/es-to-primitive/LICENSE
+sha256  206c1adcf206dc0031b11232f5b054ec5f1662407ab1ca415247921cab2068ab  chromium/third_party/devtools-frontend/src/node_modules/array.prototype.flat/node_modules/has-symbols/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/array.prototype.flat/node_modules/is-callable/LICENSE
+sha256  dc0fe5a22d9336f345ee984f9bf56f11f22877a3aa5fd16a1db9a8ca0e23a5d1  chromium/third_party/devtools-frontend/src/node_modules/array.prototype.flat/node_modules/is-regex/LICENSE
+sha256  bd40cc437e28a3ad7bef2ad34e6b72e757b182e67bda1acadbab4ef0476f8232  chromium/third_party/devtools-frontend/src/node_modules/array.prototype.flat/node_modules/object-inspect/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/array.prototype.flat/node_modules/string.prototype.trimleft/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/array.prototype.flat/node_modules/string.prototype.trimright/LICENSE
+sha256  cfc3f455254c0af0655cc3ff46a41ed644b67599f6043346169d285bf2b3cf3b  chromium/third_party/devtools-frontend/src/node_modules/array.prototype.map/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/array-union/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/arrify/license
+sha256  e80373b1ed0f33cecc47173b4b0c6afe0d0318b32dbd84116a1a957e3f7f43a8  chromium/third_party/devtools-frontend/src/node_modules/asap/LICENSE.md
+sha256  69dee148a2cc470554dfa7142e830662062394d0fe67cddd379aba90dc60d6b3  chromium/third_party/devtools-frontend/src/node_modules/astral-regex/license
+sha256  a374b737c41b30b1ec04c5fcc17d1b853f008f217cc43a9dbea441abd9afde70  chromium/third_party/devtools-frontend/src/node_modules/ast-types/LICENSE
+sha256  d9fed24f132985934fca621c4dc1dfb53e03377a24d0568d424383d7eaa9c0ac  chromium/third_party/devtools-frontend/src/node_modules/async/LICENSE
+sha256  e5a57cdd72e279910183799153134d0e749a5664fc459c8eacbecf72532b7db3  chromium/third_party/devtools-frontend/src/node_modules/async-limiter/LICENSE
+sha256  c4630ac8b89cb317ac5bdd60ac5e4e185eab9bd5151a0c7b3afa41aa83d7ec9b  chromium/third_party/devtools-frontend/src/node_modules/autoprefixer/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/code-frame/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/core/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/code-frame/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/generator/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/helper-function-name/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/helper-get-function-arity/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/helper-split-export-declaration/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/highlight/LICENSE
+sha256  2e97627cb278aa7556fb9e8817368302301a595b6c7582512b8d74c57b773652  chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/parser/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/template/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/traverse/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/@babel/types/LICENSE
+sha256  1fa6ee8bb95a81ae3d73a5bd074a3ac380ffec13697051063ca1a601921b91db  chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/convert-source-map/LICENSE
+sha256  60acd7711e6c138e6041836e32d922705254cc1568a30fdf16aa8f59bb87aeaa  chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/resolve/LICENSE
+sha256  c7cc929b57080f4b9d0c6cf57669f0463fc5b39906344dfc8d3bc43426b30eac  chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/safe-buffer/LICENSE
+sha256  6cb0631f71c7749763fd3dd1d5bee52dd1070ec17f2edc1710079ad070bd2fbd  chromium/third_party/devtools-frontend/src/node_modules/@babel/core/node_modules/source-map/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-member-expression-to-functions/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-member-expression-to-functions/node_modules/@babel/types/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-module-imports/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-module-imports/node_modules/@babel/types/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-module-transforms/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-module-transforms/node_modules/@babel/code-frame/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-module-transforms/node_modules/@babel/helper-split-export-declaration/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-module-transforms/node_modules/@babel/highlight/LICENSE
+sha256  2e97627cb278aa7556fb9e8817368302301a595b6c7582512b8d74c57b773652  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-module-transforms/node_modules/@babel/parser/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-module-transforms/node_modules/@babel/template/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-module-transforms/node_modules/@babel/types/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-optimise-call-expression/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-optimise-call-expression/node_modules/@babel/types/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/code-frame/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/generator/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/helper-function-name/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/helper-get-function-arity/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/helper-split-export-declaration/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/highlight/LICENSE
+sha256  2e97627cb278aa7556fb9e8817368302301a595b6c7582512b8d74c57b773652  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/parser/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/template/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/traverse/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/@babel/types/LICENSE
+sha256  6cb0631f71c7749763fd3dd1d5bee52dd1070ec17f2edc1710079ad070bd2fbd  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-replace-supers/node_modules/source-map/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-simple-access/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-simple-access/node_modules/@babel/code-frame/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-simple-access/node_modules/@babel/highlight/LICENSE
+sha256  2e97627cb278aa7556fb9e8817368302301a595b6c7582512b8d74c57b773652  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-simple-access/node_modules/@babel/parser/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-simple-access/node_modules/@babel/template/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-simple-access/node_modules/@babel/types/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/code-frame/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/generator/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/helper-function-name/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/helper-get-function-arity/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/helper-split-export-declaration/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/highlight/LICENSE
+sha256  2e97627cb278aa7556fb9e8817368302301a595b6c7582512b8d74c57b773652  chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/parser/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/template/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/traverse/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/@babel/types/LICENSE
+sha256  6cb0631f71c7749763fd3dd1d5bee52dd1070ec17f2edc1710079ad070bd2fbd  chromium/third_party/devtools-frontend/src/node_modules/@babel/helpers/node_modules/source-map/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-validator-identifier/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/@babel/highlight/LICENSE
+sha256  63cb98b3f6abfb3c3592c16f88253c1bdc834087bf52671e8ce5609e4eb693cf  chromium/third_party/devtools-frontend/src/node_modules/bail/license
+sha256  a1bd5deadb6a06dd74efa852c1b8b23f63b67f2214fbe9c8bd591da51da69268  chromium/third_party/devtools-frontend/src/node_modules/balanced-match/LICENSE.md
+sha256  f3eca6ff762533fa5a77caf954a143e48afa204668cf97dce758c45a9e006be3  chromium/third_party/devtools-frontend/src/node_modules/base64-arraybuffer/LICENSE-MIT
+sha256  de6059eadd0c1327f30a22663392e57d36b97b0ac9bb48f4875c8008ba823c30  chromium/third_party/devtools-frontend/src/node_modules/base64id/LICENSE
+sha256  5b37224c080cdcc97c871ada971c224e9926370fe74f11b539aa1cf9f3b1aca1  chromium/third_party/devtools-frontend/src/node_modules/base64-js/LICENSE
+sha256  85fe65eefab89e2a683232b96e6f689279821a0bd3b351e9ab6a6ebd19dea567  chromium/third_party/devtools-frontend/src/node_modules/binary-extensions/license
+sha256  9377db95383c8befacf05c6e465d969d756edf178487ca1344fdf3ba147c596f  chromium/third_party/devtools-frontend/src/node_modules/bl/LICENSE.md
+sha256  7d3e0d8d5604632b94ff9aea3001153c506566cd1c6c7bb37000acdb1fb37417  chromium/third_party/devtools-frontend/src/node_modules/blob/LICENSE
+sha256  23d466b1b134b415b66fa50c6526b4cf3e7b9258554da88d3abb371721e7ce68  chromium/third_party/devtools-frontend/src/node_modules/body-parser/LICENSE
+sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  chromium/third_party/devtools-frontend/src/node_modules/body-parser/node_modules/debug/LICENSE
+sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  chromium/third_party/devtools-frontend/src/node_modules/body-parser/node_modules/ms/license.md
+sha256  68f12f6e2c33688699249c01d8f9623c534da20aa71989c57b061b7bc1676d14  chromium/third_party/devtools-frontend/src/node_modules/brace-expansion/LICENSE
+sha256  e70ff771504ba41f2be55de812a017ff46433d7a250c862e38fc419159e44500  chromium/third_party/devtools-frontend/src/node_modules/braces/LICENSE
+sha256  f25bf9bf3ae8984bcd43bf7fb8f78e7eec8d577081fb8d0989cfa7c67ecebb8e  chromium/third_party/devtools-frontend/src/node_modules/browserslist/LICENSE
+sha256  fd595a25dd3c90492a8cc3b888aa9ae47630173181efed17f71b4c689d99d0ec  chromium/third_party/devtools-frontend/src/node_modules/browser-stdout/LICENSE
+sha256  14895b82e3367b66bdb127fe91505f8615491f2a23eb1c0b7d8f7c54be67f57a  chromium/third_party/devtools-frontend/src/node_modules/buffer-crc32/LICENSE
+sha256  14275f5c8139d02054c5259d52a88ccbba662a86af18c30f071c8d082dc6004c  chromium/third_party/devtools-frontend/src/node_modules/buffer-from/LICENSE
+sha256  06bafa45fdad2579ba0e43b0c9b2c6290287c99c4203c300254a462b38a307f6  chromium/third_party/devtools-frontend/src/node_modules/buffer/LICENSE
+sha256  e3b44af066615de2ea48d18d852d0762f18c0b2efcea714fa48a6f729d405b85  chromium/third_party/devtools-frontend/src/node_modules/bytes/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/callsites/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/camelcase-keys/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/camelcase/license
+sha256  fd3a263fe19ed8faa9068b43abaebafc02c77897b0c6fc09abc04bb592e5f16e  chromium/third_party/devtools-frontend/src/node_modules/caniuse-lite/LICENSE
+sha256  63cb98b3f6abfb3c3592c16f88253c1bdc834087bf52671e8ce5609e4eb693cf  chromium/third_party/devtools-frontend/src/node_modules/ccount/license
+sha256  b181da80336ff9dd1043fc8be1a764d7382363433319aa872e4d2cb5ce2a3066  chromium/third_party/devtools-frontend/src/node_modules/chai/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/chalk/license
+sha256  63cb98b3f6abfb3c3592c16f88253c1bdc834087bf52671e8ce5609e4eb693cf  chromium/third_party/devtools-frontend/src/node_modules/character-entities-html4/license
+sha256  63cb98b3f6abfb3c3592c16f88253c1bdc834087bf52671e8ce5609e4eb693cf  chromium/third_party/devtools-frontend/src/node_modules/character-entities-legacy/license
+sha256  63cb98b3f6abfb3c3592c16f88253c1bdc834087bf52671e8ce5609e4eb693cf  chromium/third_party/devtools-frontend/src/node_modules/character-entities/license
+sha256  63cb98b3f6abfb3c3592c16f88253c1bdc834087bf52671e8ce5609e4eb693cf  chromium/third_party/devtools-frontend/src/node_modules/character-reference-invalid/license
+sha256  7df1d6cf5b4112cbe277a84269e02ae631603a9a3a21b8328a34c30b8c3dd1ab  chromium/third_party/devtools-frontend/src/node_modules/chardet/LICENSE
+sha256  e5aee0714b6ecc416454b968d1017570ef609f20d8722ab84b07acd550b78198  chromium/third_party/devtools-frontend/src/node_modules/check-error/LICENSE
+sha256  db9ba183d4cbfbaf6c27db2effddbb84b46340c33ed32a066bc0b144a3ea1298  chromium/third_party/devtools-frontend/src/node_modules/chokidar/LICENSE
+sha256  99de4c30f4643c00d4895d9c6ade0af4ec43d301449c191f5fbe41b53bb6a13a  chromium/third_party/devtools-frontend/src/node_modules/chokidar/node_modules/fsevents/LICENSE
+sha256  dffec71d93f273d2af7b54c6c7e7e70b3289c632ec0d7253210ec21ac336d5ac  chromium/third_party/devtools-frontend/src/node_modules/chokidar/node_modules/readdirp/LICENSE
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/chownr/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/cli-cursor/license
+sha256  2dc0465729366c3a7890dfa9e972a1ba7048a26c02116fb8b419a6a1ac110149  chromium/third_party/devtools-frontend/src/node_modules/cliui/LICENSE.txt
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/cliui/node_modules/ansi-regex/license
+sha256  483acb265f182907d1caf6cff9c16c96f31325ed23792832cc5d8b12d5f88c8a  chromium/third_party/devtools-frontend/src/node_modules/cliui/node_modules/emoji-regex/LICENSE-MIT.txt
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/cliui/node_modules/string-width/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/cliui/node_modules/strip-ansi/license
+sha256  33fa5470b2195e410b075a32516b6ad27784b8a8ff74ae90cfd60c14b76e6644  chromium/third_party/devtools-frontend/src/node_modules/cli-width/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/clone-regexp/license
+sha256  63cb98b3f6abfb3c3592c16f88253c1bdc834087bf52671e8ce5609e4eb693cf  chromium/third_party/devtools-frontend/src/node_modules/collapse-white-space/license
+sha256  693866fc419c6f61c8570438ec00659d156ec2b4d4a4d04091711f5f11a365d4  chromium/third_party/devtools-frontend/src/node_modules/color-convert/LICENSE
+sha256  7357445bac398c76c0aef75a587009fe406d40de6a79789eb5b7ecbbad317ef2  chromium/third_party/devtools-frontend/src/node_modules/color-name/LICENSE
+sha256  77ffe84006509949525fd57df06f4a6a80ad862c5314b66ab5bb6ac4cee6280b  chromium/third_party/devtools-frontend/src/node_modules/colors/LICENSE
+sha256  04512a63dce4d2d506ad612dc0bd7681ccf6e3655f7b6eaef7dfac8323d1ec0b  chromium/third_party/devtools-frontend/src/node_modules/commander/LICENSE
+sha256  8bb16db1b047019e4395965f2cf3611b06c34bf86dc2d0210b3c3f91b53c21fe  chromium/third_party/devtools-frontend/src/node_modules/commondir/LICENSE
+sha256  0f0b408b8b871d983e767528c6dc51e0ad7efaa022890c449fe2b2e1ee24dbb7  chromium/third_party/devtools-frontend/src/node_modules/component-emitter/LICENSE
+sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  chromium/third_party/devtools-frontend/src/node_modules/concat-map/LICENSE
+sha256  9913ff70f23424d49fda2b05902cfb72f17ae1e48aaf898c349a284289a74751  chromium/third_party/devtools-frontend/src/node_modules/connect/LICENSE
+sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  chromium/third_party/devtools-frontend/src/node_modules/connect/node_modules/debug/LICENSE
+sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  chromium/third_party/devtools-frontend/src/node_modules/connect/node_modules/ms/license.md
+sha256  0798f37cff4a3f438c071316e41f94ffe110116a313ab0fc4f8caa07218f1f0f  chromium/third_party/devtools-frontend/src/node_modules/contains-path/LICENSE
+sha256  257aed98914108e91a337912727b6a802eef218248507f74b76faffaff517a38  chromium/third_party/devtools-frontend/src/node_modules/content-type/LICENSE
+sha256  c02110eedc16c7114f1a9bdc026c65626ce1d9c7e27fd51a8e0feee8a48a6858  chromium/third_party/devtools-frontend/src/node_modules/cookie/LICENSE
+sha256  8e714750725e75c8b31172ef84c0805f94873f86e3b5cfca8a948553f0778fa1  chromium/third_party/devtools-frontend/src/node_modules/cosmiconfig/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/cosmiconfig/node_modules/parse-json/license
+sha256  aaa78451b6fecd1b9c4594c796c133c0e90cad100372ff8bc6de615e9ef9adf1  chromium/third_party/devtools-frontend/src/node_modules/cross-spawn/LICENSE
+sha256  483acb265f182907d1caf6cff9c16c96f31325ed23792832cc5d8b12d5f88c8a  chromium/third_party/devtools-frontend/src/node_modules/cssesc/LICENSE-MIT.txt
+sha256  53ecc31e1632c07980cb0c97dcaf3d1d20323d21194b92150987a4fecf517b3c  chromium/third_party/devtools-frontend/src/node_modules/custom-event/LICENSE
+sha256  9660914267128b5f96a102bd7f6268c249110a39cb7c4bb7f536d856445d739c  chromium/third_party/devtools-frontend/src/node_modules/date-format/LICENSE
+sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  chromium/third_party/devtools-frontend/src/node_modules/debug/LICENSE
+sha256  5f9e03a50e10f262f7bd356fe323b12f461f14dae6762611285a0d7479340ae7  chromium/third_party/devtools-frontend/src/node_modules/debuglog/LICENSE
+sha256  840c00ea351c8aab93f37ff132bc87e58711aac287baeaed5788132970aca500  chromium/third_party/devtools-frontend/src/node_modules/decamelize-keys/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/decamelize-keys/node_modules/map-obj/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/decamelize/license
+sha256  e5aee0714b6ecc416454b968d1017570ef609f20d8722ab84b07acd550b78198  chromium/third_party/devtools-frontend/src/node_modules/deep-eql/LICENSE
+sha256  f2042f3634c4136d06b5139c9c6aefb81a3a462b514548bc1845953233dfba98  chromium/third_party/devtools-frontend/src/node_modules/deep-is/LICENSE
+sha256  00d402c2bbe7c67369bd01ce2c16b8ed46ccc949a1ee2d6bb8f9606afa8c7434  chromium/third_party/devtools-frontend/src/node_modules/define-properties/LICENSE
+sha256  bd47ce7b88c7759630d1e2b9fcfa170a0f1fde522be09e13fb1581a79d090400  chromium/third_party/devtools-frontend/src/node_modules/depd/LICENSE
+sha256  7a209dd1b94cabdb5ea9c6f9164b9546ffa5daaa671e7767d49510db055f5c51  chromium/third_party/devtools-frontend/src/node_modules/devtools-protocol/LICENSE
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/dezalgo/LICENSE
+sha256  152f0fb43e953fcf5c56c5bfa4c834bb96b1603e4026319c613dd3e734f305cf  chromium/third_party/devtools-frontend/src/node_modules/diff/LICENSE
+sha256  545278991ee5f1fb4372f913ec44837cff9395175140f8f21118074330a659cb  chromium/third_party/devtools-frontend/src/node_modules/di/LICENSE
+sha256  69dee148a2cc470554dfa7142e830662062394d0fe67cddd379aba90dc60d6b3  chromium/third_party/devtools-frontend/src/node_modules/dir-glob/license
+sha256  5c272e206669b79ee20fa89fa8fa888d5b56186f16c55a5614753ad3412e2ae9  chromium/third_party/devtools-frontend/src/node_modules/doctrine/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/devtools-frontend/src/node_modules/doctrine/LICENSE.closure-compiler
+sha256  0e74697a68cebdcd61502c30fe80ab7f9e341d995dcd452023654d57133534b1  chromium/third_party/devtools-frontend/src/node_modules/doctrine/LICENSE.esprima
+sha256  cb992345949ccd6e8394b2cd6c465f7b897c864f845937dbf64e8997f389e164  chromium/third_party/devtools-frontend/src/node_modules/domelementtype/LICENSE
+sha256  cb992345949ccd6e8394b2cd6c465f7b897c864f845937dbf64e8997f389e164  chromium/third_party/devtools-frontend/src/node_modules/domhandler/LICENSE
+sha256  94cfe87de9b178e8fee313a19178e625129e2ce559db32e772e7bd95114ee6ff  chromium/third_party/devtools-frontend/src/node_modules/dom-serializer/LICENSE
+sha256  cb992345949ccd6e8394b2cd6c465f7b897c864f845937dbf64e8997f389e164  chromium/third_party/devtools-frontend/src/node_modules/dom-serializer/node_modules/domelementtype/LICENSE
+sha256  cb992345949ccd6e8394b2cd6c465f7b897c864f845937dbf64e8997f389e164  chromium/third_party/devtools-frontend/src/node_modules/dom-serializer/node_modules/entities/LICENSE
+sha256  cb992345949ccd6e8394b2cd6c465f7b897c864f845937dbf64e8997f389e164  chromium/third_party/devtools-frontend/src/node_modules/domutils/LICENSE
+sha256  965ef284f7f4c176842ec2e87fa13e79feed777d56d7a21a5a3b38f1bb6dc288  chromium/third_party/devtools-frontend/src/node_modules/ee-first/LICENSE
+sha256  25ba5c59dad3e0dd8f9540beaa0f0a86a10e3aec35af5fdc8e88c5f6a5c0d8c6  chromium/third_party/devtools-frontend/src/node_modules/electron-to-chromium/LICENSE
+sha256  483acb265f182907d1caf6cff9c16c96f31325ed23792832cc5d8b12d5f88c8a  chromium/third_party/devtools-frontend/src/node_modules/emoji-regex/LICENSE-MIT.txt
+sha256  7585ea7bba616ccbbe43cb54ecb67956688c3c5641bb84f3099a652a73193afe  chromium/third_party/devtools-frontend/src/node_modules/encodeurl/LICENSE
+sha256  3fe8d55a98dbf260eace67c00cf9bc53edb46234e840098a0b93df3096b97fb6  chromium/third_party/devtools-frontend/src/node_modules/end-of-stream/LICENSE
+sha256  bb996a5665c8e18041251e833e52b590f0da5050c1878aa3e3a47f71bb16fa6d  chromium/third_party/devtools-frontend/src/node_modules/engine.io-client/LICENSE
+sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  chromium/third_party/devtools-frontend/src/node_modules/engine.io-client/node_modules/debug/LICENSE
+sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  chromium/third_party/devtools-frontend/src/node_modules/engine.io-client/node_modules/ms/license.md
+sha256  8e0349070612cb59fc604588974e193d8363f0a08752caf31d3f270a609d346a  chromium/third_party/devtools-frontend/src/node_modules/engine.io/LICENSE
+sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  chromium/third_party/devtools-frontend/src/node_modules/engine.io/node_modules/debug/LICENSE
+sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  chromium/third_party/devtools-frontend/src/node_modules/engine.io/node_modules/ms/license.md
+sha256  2a190271977c2ad47c85a9e08cc05d078fe9293643061d466d2ae89ce8e5c2f1  chromium/third_party/devtools-frontend/src/node_modules/engine.io-parser/LICENSE
+sha256  cb992345949ccd6e8394b2cd6c465f7b897c864f845937dbf64e8997f389e164  chromium/third_party/devtools-frontend/src/node_modules/entities/LICENSE
+sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  chromium/third_party/devtools-frontend/src/node_modules/ent/LICENSE
+sha256  92b07a2e5b0e051d37dde85042c736d6d551cfcbc0983f39d7ef903b3986bbc1  chromium/third_party/devtools-frontend/src/node_modules/error-ex/LICENSE
+sha256  00d402c2bbe7c67369bd01ce2c16b8ed46ccc949a1ee2d6bb8f9606afa8c7434  chromium/third_party/devtools-frontend/src/node_modules/es-abstract/LICENSE
+sha256  206c1adcf206dc0031b11232f5b054ec5f1662407ab1ca415247921cab2068ab  chromium/third_party/devtools-frontend/src/node_modules/es-abstract/node_modules/has-symbols/LICENSE
+sha256  a5e49293b629194f16e08c965807b34a4a8f45aa2735658a3b0e3c1478a34b30  chromium/third_party/devtools-frontend/src/node_modules/es-abstract/node_modules/string.prototype.trimend/LICENSE
+sha256  a5e49293b629194f16e08c965807b34a4a8f45aa2735658a3b0e3c1478a34b30  chromium/third_party/devtools-frontend/src/node_modules/es-abstract/node_modules/string.prototype.trimstart/LICENSE
+sha256  cfc3f455254c0af0655cc3ff46a41ed644b67599f6043346169d285bf2b3cf3b  chromium/third_party/devtools-frontend/src/node_modules/es-array-method-boxes-properly/LICENSE
+sha256  255aa557a1f55224ce522f311629c0bf20854740a67955cefd798fbd1d3d1ded  chromium/third_party/devtools-frontend/src/node_modules/escape-html/LICENSE
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/escape-string-regexp/license
+sha256  0e74697a68cebdcd61502c30fe80ab7f9e341d995dcd452023654d57133534b1  chromium/third_party/devtools-frontend/src/node_modules/escodegen/LICENSE.BSD
+sha256  94bcb9959136723aa4fb36e1a6c4d5c662a2369978cfae344dabfb83ae619e79  chromium/third_party/devtools-frontend/src/node_modules/escodegen/node_modules/esprima/LICENSE.BSD
+sha256  cfc3f455254c0af0655cc3ff46a41ed644b67599f6043346169d285bf2b3cf3b  chromium/third_party/devtools-frontend/src/node_modules/es-get-iterator/LICENSE
+sha256  206c1adcf206dc0031b11232f5b054ec5f1662407ab1ca415247921cab2068ab  chromium/third_party/devtools-frontend/src/node_modules/es-get-iterator/node_modules/has-symbols/LICENSE
+sha256  68f12f6e2c33688699249c01d8f9623c534da20aa71989c57b061b7bc1676d14  chromium/third_party/devtools-frontend/src/node_modules/es-get-iterator/node_modules/isarray/LICENSE
+sha256  7829efc4266fad5f57f7fc489429a3b35d0c62183c0bd617ef6591f64c980c92  chromium/third_party/devtools-frontend/src/node_modules/eslint-import-resolver-node/LICENSE
+sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  chromium/third_party/devtools-frontend/src/node_modules/eslint-import-resolver-node/node_modules/debug/LICENSE
+sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  chromium/third_party/devtools-frontend/src/node_modules/eslint-import-resolver-node/node_modules/ms/license.md
+sha256  60acd7711e6c138e6041836e32d922705254cc1568a30fdf16aa8f59bb87aeaa  chromium/third_party/devtools-frontend/src/node_modules/eslint-import-resolver-node/node_modules/resolve/LICENSE
+sha256  db83f2ede67f36cfab1ea0721ea2ee97515863e9a65346881f305e430451cc91  chromium/third_party/devtools-frontend/src/node_modules/eslint/LICENSE
+sha256  7829efc4266fad5f57f7fc489429a3b35d0c62183c0bd617ef6591f64c980c92  chromium/third_party/devtools-frontend/src/node_modules/eslint-module-utils/LICENSE
+sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  chromium/third_party/devtools-frontend/src/node_modules/eslint-module-utils/node_modules/debug/LICENSE
+sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  chromium/third_party/devtools-frontend/src/node_modules/eslint-module-utils/node_modules/ms/license.md
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/eslint/node_modules/ansi-regex/license
+sha256  5c932d88256b4ab958f64a856fa48e8bd1f55bc1d96b8149c65689e0c61789d3  chromium/third_party/devtools-frontend/src/node_modules/eslint/node_modules/globals/license
+sha256  b9eb082c39fe245e38793699074c394c43a722c51fce031c3c165cb92a31035c  chromium/third_party/devtools-frontend/src/node_modules/eslint/node_modules/optionator/LICENSE
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/eslint/node_modules/semver/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/eslint/node_modules/strip-ansi/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/eslint/node_modules/strip-json-comments/license
+sha256  7829efc4266fad5f57f7fc489429a3b35d0c62183c0bd617ef6591f64c980c92  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/LICENSE
+sha256  7829efc4266fad5f57f7fc489429a3b35d0c62183c0bd617ef6591f64c980c92  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/memo-parser/LICENSE
+sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/debug/LICENSE
+sha256  1925669fabfda8475cb886afc52ad90d518fcdc5ca415d086f88db70bb1232eb  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/doctrine/LICENSE.BSD
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/doctrine/LICENSE.closure-compiler
+sha256  0e74697a68cebdcd61502c30fe80ab7f9e341d995dcd452023654d57133534b1  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/doctrine/LICENSE.esprima
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/find-up/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/load-json-file/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/locate-path/license
+sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/ms/license.md
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/path-exists/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/path-type/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/pify/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/p-limit/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/p-locate/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/p-try/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/read-pkg/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/read-pkg-up/license
+sha256  60acd7711e6c138e6041836e32d922705254cc1568a30fdf16aa8f59bb87aeaa  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/resolve/LICENSE
+sha256  b67ae8fe5f32d0e6164655de53075cba04bb69c23e7d11efcfed6a0fa265ef64  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-mocha/LICENSE
+sha256  541c415066b6139f0fb6ad55f633abbc62f0ba6b54543f1ff00c762e76a90239  chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-rulesdir/LICENSE.md
+sha256  d3a724e2ed749f172ff70b62a1d0631b7d4b0ea273782365a3464d4e2d6b6dbd  chromium/third_party/devtools-frontend/src/node_modules/eslint-scope/LICENSE
+sha256  fcf6eabf68ca96988a6b506b4fdc6cc32535d80eb2e11c79724af5ac6f50262b  chromium/third_party/devtools-frontend/src/node_modules/eslint-utils/LICENSE
+sha256  d8bf34ff6d190640a01e7704ad78253fc181bc128949d71273fbbaa12f33c0b4  chromium/third_party/devtools-frontend/src/node_modules/eslint-visitor-keys/LICENSE
+sha256  6273faa0d14a54972c0341a724010eb8cd928ee486745a9eea8cf80680ba5098  chromium/third_party/devtools-frontend/src/node_modules/espree/LICENSE
+sha256  7cdb44aabddbdd78998119d68a39c87424119b663945c79891fc1b022301824c  chromium/third_party/devtools-frontend/src/node_modules/espree/node_modules/acorn/LICENSE
+sha256  ac68116ae73740de4190892f334992e449a124600924ec761e64319d3aac9e6e  chromium/third_party/devtools-frontend/src/node_modules/esquery/license.txt
+sha256  0e74697a68cebdcd61502c30fe80ab7f9e341d995dcd452023654d57133534b1  chromium/third_party/devtools-frontend/src/node_modules/esquery/node_modules/estraverse/LICENSE.BSD
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/es-to-primitive/LICENSE
+sha256  0e74697a68cebdcd61502c30fe80ab7f9e341d995dcd452023654d57133534b1  chromium/third_party/devtools-frontend/src/node_modules/estraverse/LICENSE.BSD
+sha256  0e74697a68cebdcd61502c30fe80ab7f9e341d995dcd452023654d57133534b1  chromium/third_party/devtools-frontend/src/node_modules/esutils/LICENSE.BSD
+sha256  3aecc12b1cb28832b5f65ab64291de96568c3f236a74d646281b4491f7bcadbf  chromium/third_party/devtools-frontend/src/node_modules/eventemitter3/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/execall/license
+sha256  97af7428f93afbab9bf79cd09254da1357161794f4255eb1b4599f04dd2d2e7c  chromium/third_party/devtools-frontend/src/node_modules/extend/LICENSE
+sha256  e33b7bc13a0e5ea9ed6718e12e99a5b0b60276162f0195aa7f342397f4b0155d  chromium/third_party/devtools-frontend/src/node_modules/external-editor/LICENSE
+sha256  77b2de947c65f3062fb347118ca198ca50898ead84a8509d8153fa65741f029b  chromium/third_party/devtools-frontend/src/node_modules/extract-zip/LICENSE
+sha256  7bf9b2de73a6b356761c948d0e9eeb4be6c1270bd04c79cd489c1e400ffdfc1a  chromium/third_party/devtools-frontend/src/node_modules/fast-deep-equal/LICENSE
+sha256  9363d160bf41d46d83901a5d24fc3fe2094c2afc17b4a2378914b273977ee2de  chromium/third_party/devtools-frontend/src/node_modules/fast-glob/LICENSE
+sha256  d0cd141b0c322fded5dfad1d4645bb2fedfc05b7321fe1009469638190d59ef9  chromium/third_party/devtools-frontend/src/node_modules/fast-glob/node_modules/picomatch/LICENSE
+sha256  a833d366242c298cf1b10263516572fb8dcbe68eb5072cdcac2b4546e2b4eb36  chromium/third_party/devtools-frontend/src/node_modules/fast-json-stable-stringify/LICENSE
+sha256  942a98cb8846a6354266193f173c1354615827fbb7d67f68399599dff12c4d6a  chromium/third_party/devtools-frontend/src/node_modules/fast-levenshtein/LICENSE.md
+sha256  c3367f6d01a79d368fc4fbb41b3615fcd92f243d6597ab96742f6f976f9325af  chromium/third_party/devtools-frontend/src/node_modules/fastq/LICENSE
+sha256  176d95320d565cb034d8323797b6cd6160238f625453687f98aad2085c46c3b3  chromium/third_party/devtools-frontend/src/node_modules/fd-slicer/LICENSE
+sha256  5c932d88256b4ab958f64a856fa48e8bd1f55bc1d96b8149c65689e0c61789d3  chromium/third_party/devtools-frontend/src/node_modules/figures/license
+sha256  c8c8324aff32c44f9e501aac5b3b97540c26af7d6dd6af8bce5e34300596e27d  chromium/third_party/devtools-frontend/src/node_modules/file-entry-cache/LICENSE
+sha256  35bdd8a44339719441900fb50fbefc5e2dca1ca662cbaed7a687de842c8b70f2  chromium/third_party/devtools-frontend/src/node_modules/fill-range/LICENSE
+sha256  24973d5320410e565ec92f18f73f12af7d97c634d414ba170d119fe3f98904c8  chromium/third_party/devtools-frontend/src/node_modules/finalhandler/LICENSE
+sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  chromium/third_party/devtools-frontend/src/node_modules/finalhandler/node_modules/debug/LICENSE
+sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  chromium/third_party/devtools-frontend/src/node_modules/finalhandler/node_modules/ms/license.md
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/find-up/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/find-up/node_modules/path-exists/license
+sha256  c8c8324aff32c44f9e501aac5b3b97540c26af7d6dd6af8bce5e34300596e27d  chromium/third_party/devtools-frontend/src/node_modules/flat-cache/LICENSE
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/flat-cache/node_modules/rimraf/LICENSE
+sha256  95a61f61553614db5421a2cefb17c22ff6b2b4b2206f5bc8913d04f72a22b033  chromium/third_party/devtools-frontend/src/node_modules/flat/LICENSE
+sha256  5097efeab30293dd7e26d6960b6b94f1aeca958d22f1eca3535c482a891e95a9  chromium/third_party/devtools-frontend/src/node_modules/flatted/LICENSE
+sha256  bfa8a54bb952ccda79f0f1889721d108f5b605babbb2b8a3705ffb52f4132eb7  chromium/third_party/devtools-frontend/src/node_modules/follow-redirects/LICENSE
+sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  chromium/third_party/devtools-frontend/src/node_modules/follow-redirects/node_modules/debug/LICENSE
+sha256  2281f2db407bdbb54f069eec38128b2dee2c0c952f52b786ef1faecb81767b3c  chromium/third_party/devtools-frontend/src/node_modules/fs-constants/LICENSE
+sha256  1e76029602ae9b21cc4e612db2496d92febed882ba13ba745f8b3309e85f9d39  chromium/third_party/devtools-frontend/src/node_modules/fs-extra/LICENSE
+sha256  8465b04b67f473341171b5c9c8b2c741a4a395b3f6ed58339b3a4f4db3db7472  chromium/third_party/devtools-frontend/src/node_modules/fs.realpath/LICENSE
+sha256  e67aed7df22dc8031e4fcf5338fe91cb33e3817e5c58a99a2a2802eea9069791  chromium/third_party/devtools-frontend/src/node_modules/functional-red-black-tree/LICENSE
+sha256  773e131a7684726005a7e4688a80b4620033bc08499bc1404dd1a1eb3bca725e  chromium/third_party/devtools-frontend/src/node_modules/function-bind/LICENSE
+sha256  e3a956681ee067f971ac413994171b3d90ca801ec6324e76c9c55366cfe31cb0  chromium/third_party/devtools-frontend/src/node_modules/gensync/LICENSE
+sha256  902dbb4154679fb2b8d7c33878183f45b268d01eae5e5033dddaa8852d45f213  chromium/third_party/devtools-frontend/src/node_modules/get-caller-file/LICENSE.md
+sha256  e5aee0714b6ecc416454b968d1017570ef609f20d8722ab84b07acd550b78198  chromium/third_party/devtools-frontend/src/node_modules/get-func-name/LICENSE
+sha256  5c932d88256b4ab958f64a856fa48e8bd1f55bc1d96b8149c65689e0c61789d3  chromium/third_party/devtools-frontend/src/node_modules/get-stdin/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/get-stream/license
+sha256  e7d1fee7347ffddccc5fd03327ffdb50f8c112be0d5016d62388a92c4ae6e7a9  chromium/third_party/devtools-frontend/src/node_modules/global-modules/LICENSE
+sha256  e7d1fee7347ffddccc5fd03327ffdb50f8c112be0d5016d62388a92c4ae6e7a9  chromium/third_party/devtools-frontend/src/node_modules/global-prefix/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/globals/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/globby/license
+sha256  9c94db23dc4b1e9aaee5d195668b916afc71efed54af226b66cf0ccc4389c1c0  chromium/third_party/devtools-frontend/src/node_modules/globby/node_modules/ignore/LICENSE-MIT
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/globby/node_modules/slash/license
+sha256  5947e11f30ab8264c45332a7d767447a71a52510ba467062cf3918e34cc67bff  chromium/third_party/devtools-frontend/src/node_modules/globjoin/LICENSE
+sha256  6236fa0b88a4a0cce3dda0367979491b2052b3c8d6b1c10b3668de083e86a7f0  chromium/third_party/devtools-frontend/src/node_modules/glob/LICENSE
+sha256  2c46f1325bd3822a33c1e2c1e49c18d13127ac00f9c8b3b79196c7a126f73cd9  chromium/third_party/devtools-frontend/src/node_modules/glob-parent/LICENSE
+sha256  2fc5460f1526810979054ecd18cd01349b57f38ea56d1e920afdea34d104540c  chromium/third_party/devtools-frontend/src/node_modules/graceful-fs/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/hard-rejection/license
+sha256  dc1fcc41f783463ed272ada875a7d3d1baf6c6279e5efada2c4ef2ca72db39e1  chromium/third_party/devtools-frontend/src/node_modules/has-binary2/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/has-flag/license
+sha256  4fe5fd7b3318def0b74f8bf8c9276403f01da628fa8888822661519d80f237d3  chromium/third_party/devtools-frontend/src/node_modules/has/LICENSE-MIT
+sha256  206c1adcf206dc0031b11232f5b054ec5f1662407ab1ca415247921cab2068ab  chromium/third_party/devtools-frontend/src/node_modules/has-symbols/LICENSE
+sha256  483acb265f182907d1caf6cff9c16c96f31325ed23792832cc5d8b12d5f88c8a  chromium/third_party/devtools-frontend/src/node_modules/he/LICENSE-MIT.txt
+sha256  c1476ec53119cd4c8370f91f5152ac76312a29b4fae2d49b5e0e0970fe0fa5ee  chromium/third_party/devtools-frontend/src/node_modules/hosted-git-info/LICENSE
+sha256  27d06bbb2eb031be8aa376868a2e1f11b6acba938d4cc8e1234b66b9739c54a3  chromium/third_party/devtools-frontend/src/node_modules/html-escaper/LICENSE.txt
+sha256  204cfa747341660e4da64cd23e8c876c6b20279d247f48564993d3fc4a2eab47  chromium/third_party/devtools-frontend/src/node_modules/htmlparser2/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/html-tags/license
+sha256  dcb94ff9b1e037a847bc20589dc81a1066d041fd4c16deb18b0fa968c66cf395  chromium/third_party/devtools-frontend/src/node_modules/http-errors/LICENSE
+sha256  5ffe28e7ade7d8f10d85d5337a73fd793dac5c462fb9a28fbf8c5046c7fbca3b  chromium/third_party/devtools-frontend/src/node_modules/http-errors/node_modules/inherits/LICENSE
+sha256  589850dfc0a1d39a97c592d618d5772f84aec2b11c6898e020acb985299f3bab  chromium/third_party/devtools-frontend/src/node_modules/http-proxy/LICENSE
+sha256  ac779f7314c74f232ef847ea86e714abe25cf6eeb5cc97b69451b74e2af6492d  chromium/third_party/devtools-frontend/src/node_modules/iconv-lite/LICENSE
+sha256  18d45466ba3253deae04667e267a91ea8de8548f18c1125264d1c9db28194cc1  chromium/third_party/devtools-frontend/src/node_modules/ieee754/LICENSE
+sha256  9c94db23dc4b1e9aaee5d195668b916afc71efed54af226b66cf0ccc4389c1c0  chromium/third_party/devtools-frontend/src/node_modules/ignore/LICENSE-MIT
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/import-fresh/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/import-lazy/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/indent-string/license
+sha256  715f1f0f2eb7688e53e4e958acdc7fc9e365ae3eaf26efc2604b93cc65fdc3f5  chromium/third_party/devtools-frontend/src/node_modules/indexes-of/LICENSE
+sha256  05dc4d785ac3a488676d3ed10e901b75ad89dafcc63f8e66610fd4a39cc5c7e8  chromium/third_party/devtools-frontend/src/node_modules/inflight/LICENSE
+sha256  5ffe28e7ade7d8f10d85d5337a73fd793dac5c462fb9a28fbf8c5046c7fbca3b  chromium/third_party/devtools-frontend/src/node_modules/inherits/LICENSE
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/ini/LICENSE
+sha256  e6c3f1bc47f97cdeef953f6c109b6392be0d059ae94659faf550e61b7a75ebc7  chromium/third_party/devtools-frontend/src/node_modules/inquirer/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/ansi-regex/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/ansi-styles/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/chalk/license
+sha256  693866fc419c6f61c8570438ec00659d156ec2b4d4a4d04091711f5f11a365d4  chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/color-convert/LICENSE
+sha256  7357445bac398c76c0aef75a587009fe406d40de6a79789eb5b7ecbbad317ef2  chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/color-name/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/has-flag/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/is-fullwidth-code-point/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/string-width/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/strip-ansi/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/supports-color/license
+sha256  ca4662cb5d1b738fbe5350c0d5485ba11773b4b7208974082ae6e129a52d631d  chromium/third_party/devtools-frontend/src/node_modules/is-alphabetical/license
+sha256  ca4662cb5d1b738fbe5350c0d5485ba11773b4b7208974082ae6e129a52d631d  chromium/third_party/devtools-frontend/src/node_modules/is-alphanumerical/license
+sha256  3a4909999d4cb5e4caee48395d9ac13085f4a8cb92245eef41526073601aaec8  chromium/third_party/devtools-frontend/src/node_modules/is-alphanumeric/license
+sha256  dc0fe5a22d9336f345ee984f9bf56f11f22877a3aa5fd16a1db9a8ca0e23a5d1  chromium/third_party/devtools-frontend/src/node_modules/is-arguments/LICENSE
+sha256  92b07a2e5b0e051d37dde85042c736d6d551cfcbc0983f39d7ef903b3986bbc1  chromium/third_party/devtools-frontend/src/node_modules/is-arrayish/LICENSE
+sha256  2eedc70f2242aaf269e86e2c85eabeb875dc524d187d5953016b24091d26a843  chromium/third_party/devtools-frontend/src/node_modules/isbinaryfile/LICENSE.txt
+sha256  85fe65eefab89e2a683232b96e6f689279821a0bd3b351e9ab6a6ebd19dea567  chromium/third_party/devtools-frontend/src/node_modules/is-binary-path/license
+sha256  c7cc929b57080f4b9d0c6cf57669f0463fc5b39906344dfc8d3bc43426b30eac  chromium/third_party/devtools-frontend/src/node_modules/is-buffer/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/is-callable/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/is-date-object/LICENSE
+sha256  ca4662cb5d1b738fbe5350c0d5485ba11773b4b7208974082ae6e129a52d631d  chromium/third_party/devtools-frontend/src/node_modules/is-decimal/license
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/isexe/LICENSE
+sha256  73b5283588baa142c5baaef5f56d3e8fdea7a30b214e8c5737e87640f882453a  chromium/third_party/devtools-frontend/src/node_modules/is-extglob/LICENSE
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/is-fullwidth-code-point/license
+sha256  4cd903859549d4b20b571041f96dfae1136ed079c476126268f9d7cc1b611150  chromium/third_party/devtools-frontend/src/node_modules/is-glob/LICENSE
+sha256  ca4662cb5d1b738fbe5350c0d5485ba11773b4b7208974082ae6e129a52d631d  chromium/third_party/devtools-frontend/src/node_modules/is-hexadecimal/license
+sha256  5a26e47b9d7020848f061bcad66f8e73cab95f529dab5c02588b21e57c4f876c  chromium/third_party/devtools-frontend/src/node_modules/is-map/LICENSE
+sha256  35bdd8a44339719441900fb50fbefc5e2dca1ca662cbaed7a687de842c8b70f2  chromium/third_party/devtools-frontend/src/node_modules/is-number/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/is-plain-obj/license
+sha256  44191656d296391e0ec97e32f5385f0d02b6f2992694082d22ea04ba0f66f9e4  chromium/third_party/devtools-frontend/src/node_modules/is-promise/LICENSE
+sha256  dc0fe5a22d9336f345ee984f9bf56f11f22877a3aa5fd16a1db9a8ca0e23a5d1  chromium/third_party/devtools-frontend/src/node_modules/is-regex/LICENSE
+sha256  206c1adcf206dc0031b11232f5b054ec5f1662407ab1ca415247921cab2068ab  chromium/third_party/devtools-frontend/src/node_modules/is-regex/node_modules/has-symbols/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/is-regexp/license
+sha256  5a26e47b9d7020848f061bcad66f8e73cab95f529dab5c02588b21e57c4f876c  chromium/third_party/devtools-frontend/src/node_modules/is-set/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/is-string/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/is-symbol/LICENSE
+sha256  5a547aafe7b171c859ec64de1dd3c3363689f830133f508d043c83da12a6d0a2  chromium/third_party/devtools-frontend/src/node_modules/@istanbuljs/schema/LICENSE
+sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  chromium/third_party/devtools-frontend/src/node_modules/is-typedarray/LICENSE.md
+sha256  ca4662cb5d1b738fbe5350c0d5485ba11773b4b7208974082ae6e129a52d631d  chromium/third_party/devtools-frontend/src/node_modules/is-whitespace-character/license
+sha256  ca4662cb5d1b738fbe5350c0d5485ba11773b4b7208974082ae6e129a52d631d  chromium/third_party/devtools-frontend/src/node_modules/is-word-character/license
+sha256  39c5ec504cf6bd5cd782a7c695828e09189df79f5d94840e4f08feb97b9fd416  chromium/third_party/devtools-frontend/src/node_modules/iterate-iterator/LICENSE
+sha256  cfc3f455254c0af0655cc3ff46a41ed644b67599f6043346169d285bf2b3cf3b  chromium/third_party/devtools-frontend/src/node_modules/iterate-value/LICENSE
+sha256  52412d7bc7ce4157ea628bbaacb8829e0a9cb3c58f57f99176126bc8cf2bfc85  chromium/third_party/devtools-frontend/src/node_modules/jest-worker/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/jest-worker/node_modules/supports-color/license
+sha256  483acb265f182907d1caf6cff9c16c96f31325ed23792832cc5d8b12d5f88c8a  chromium/third_party/devtools-frontend/src/node_modules/jsesc/LICENSE-MIT.txt
+sha256  53e59feb13058722d977c699eb0407c7bce2f93c949b681bbd2ff31698535927  chromium/third_party/devtools-frontend/src/node_modules/json5/LICENSE.md
+sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  chromium/third_party/devtools-frontend/src/node_modules/json5/node_modules/minimist/LICENSE
+sha256  a9801fb52ba22ef808682a094da8a7a480584b7ed0dfd0d888ab543616335031  chromium/third_party/devtools-frontend/src/node_modules/jsonfile/LICENSE
+sha256  6cf2891dd0e66460f7d2ed83e1e3fe4b4b4c1a8c1f1f96c222a3466ad12ff197  chromium/third_party/devtools-frontend/src/node_modules/json-parse-better-errors/LICENSE.md
+sha256  7bf9b2de73a6b356761c948d0e9eeb4be6c1270bd04c79cd489c1e400ffdfc1a  chromium/third_party/devtools-frontend/src/node_modules/json-schema-traverse/LICENSE
+sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  chromium/third_party/devtools-frontend/src/node_modules/json-stable-stringify-without-jsonify/LICENSE
+sha256  2213d91c606205c71eb051a199478cdc2adde945893404d7f1421436dd6d5cc1  chromium/third_party/devtools-frontend/src/node_modules/js-tokens/LICENSE
+sha256  a07bc24468b9654ce76a547d47a2db282d07733b715db4c73a98bd63961f9550  chromium/third_party/devtools-frontend/src/node_modules/js-yaml/LICENSE
+sha256  94bcb9959136723aa4fb36e1a6c4d5c662a2369978cfae344dabfb83ae619e79  chromium/third_party/devtools-frontend/src/node_modules/js-yaml/node_modules/esprima/LICENSE.BSD
+sha256  e3d4ed2aa50e7583730b1531034331ba9093c8bef7414234c7c9306db3858913  chromium/third_party/devtools-frontend/src/node_modules/karma-chai/LICENSE
+sha256  296b9a3c5e4eb7b79a6f1dca9a27ee31e48fe5c9d48a32ec31ac924b65ff287c  chromium/third_party/devtools-frontend/src/node_modules/karma-chrome-launcher/LICENSE
+sha256  296b9a3c5e4eb7b79a6f1dca9a27ee31e48fe5c9d48a32ec31ac924b65ff287c  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/code-frame/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/generator/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/helper-function-name/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/helper-get-function-arity/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/helper-split-export-declaration/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/highlight/LICENSE
+sha256  2e97627cb278aa7556fb9e8817368302301a595b6c7582512b8d74c57b773652  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/parser/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/template/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/traverse/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/types/LICENSE
+sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/@babel/types/node_modules/@babel/helper-validator-identifier/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/has-flag/license
+sha256  e09f9b52c6ce5c17ba8103cd0cbf446c33b5448b0c1d01d711b36a1f15a501ba  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/istanbul-lib-coverage/LICENSE
+sha256  e09f9b52c6ce5c17ba8103cd0cbf446c33b5448b0c1d01d711b36a1f15a501ba  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/istanbul-lib-instrument/LICENSE
+sha256  e09f9b52c6ce5c17ba8103cd0cbf446c33b5448b0c1d01d711b36a1f15a501ba  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/istanbul-lib-report/LICENSE
+sha256  b661867c1d66a1b71ee3a6109159874334cd5c182a80d1bcc7353b5a4c6823c6  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/istanbul-lib-source-maps/LICENSE
+sha256  6cb0631f71c7749763fd3dd1d5bee52dd1070ec17f2edc1710079ad070bd2fbd  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/istanbul-lib-source-maps/node_modules/source-map/LICENSE
+sha256  e09f9b52c6ce5c17ba8103cd0cbf446c33b5448b0c1d01d711b36a1f15a501ba  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/istanbul-reports/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/make-dir/license
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/semver/LICENSE
+sha256  6cb0631f71c7749763fd3dd1d5bee52dd1070ec17f2edc1710079ad070bd2fbd  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/source-map/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/supports-color/license
+sha256  6e4e577107740b24ebd73cb813be506861d706129e502ca7160683a5cea4c129  chromium/third_party/devtools-frontend/src/node_modules/karma/LICENSE
+sha256  296b9a3c5e4eb7b79a6f1dca9a27ee31e48fe5c9d48a32ec31ac924b65ff287c  chromium/third_party/devtools-frontend/src/node_modules/karma-mocha/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/ansi-regex/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/ansi-styles/license
+sha256  2dc0465729366c3a7890dfa9e972a1ba7048a26c02116fb8b419a6a1ac110149  chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/cliui/LICENSE.txt
+sha256  693866fc419c6f61c8570438ec00659d156ec2b4d4a4d04091711f5f11a365d4  chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/color-convert/LICENSE
+sha256  7357445bac398c76c0aef75a587009fe406d40de6a79789eb5b7ecbbad317ef2  chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/color-name/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/find-up/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/is-fullwidth-code-point/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/locate-path/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/path-exists/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/p-locate/license
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/rimraf/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/string-width/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/strip-ansi/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/wrap-ansi/license
+sha256  fe71524a15f30aab0f39af7165d38fc64a4269b7d2a0caffebc907355aec9c92  chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/yargs/LICENSE
+sha256  365496ca1f56da40b23c9815fc40fa9005847b2f8f8fd1c1a4929ef25ec8cd1d  chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/yargs-parser/LICENSE.txt
+sha256  2b3adc1e55676b9443f76bdb17e42371de98a4be6abd3ae6e5f3590f6f3e4f6f  chromium/third_party/devtools-frontend/src/node_modules/karma-sourcemap-loader/LICENSE
+sha256  4cd903859549d4b20b571041f96dfae1136ed079c476126268f9d7cc1b611150  chromium/third_party/devtools-frontend/src/node_modules/kind-of/LICENSE
+sha256  81294ebf877cb41ed610fa0566c6cf81cd62d47e9ae26e1b0870c9c532b11191  chromium/third_party/devtools-frontend/src/node_modules/known-css-properties/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/leven/license
+sha256  b9eb082c39fe245e38793699074c394c43a722c51fce031c3c165cb92a31035c  chromium/third_party/devtools-frontend/src/node_modules/levn/LICENSE
+sha256  150d7707d4532d57bdb5718637ff62fff1f075921c5ffaa084df27f900bfea76  chromium/third_party/devtools-frontend/src/node_modules/license-checker/bin/license-checker
+sha256  455629980585dfdadbdcbaf846659b65da3dd092ac9bfd10b07717a0e2f84ef5  chromium/third_party/devtools-frontend/src/node_modules/license-checker/lib/license-files.js
+sha256  37932d5f93a7f9e762346358ae427e703d69fdaae6e7cd67158b35eea91c9eec  chromium/third_party/devtools-frontend/src/node_modules/license-checker/lib/license.js
+sha256  adeb5a7f7d027ec14c3698be7a0f248978516ab39ccec4fb70689ba4753cdd67  chromium/third_party/devtools-frontend/src/node_modules/license-checker/LICENSE
+sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  chromium/third_party/devtools-frontend/src/node_modules/license-checker/node_modules/debug/LICENSE
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/license-checker/node_modules/nopt/LICENSE
+sha256  456fe85ad3e71db9523313cf7437b0f90c392d8a48c869908e46716b26d2cf53  chromium/third_party/devtools-frontend/src/node_modules/lines-and-columns/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/locate-path/license
+sha256  f71e8ed126b46346494aad5486874cd8f0aafe95092ed67d2e3cb6110f939abc  chromium/third_party/devtools-frontend/src/node_modules/lodash/LICENSE
+sha256  66da8b277e527c270de6abc57727c58032267d161a81dbac02c3eed45fd13366  chromium/third_party/devtools-frontend/src/node_modules/log4js/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/log-symbols/license
+sha256  9f084fac69d8cf1e6ce983ba5a3499c7695ed74a26ec625c38f0fd19fddd5e10  chromium/third_party/devtools-frontend/src/node_modules/longest-streak/license
+sha256  1cbe51b907662f6cb1492b16c359384a595180bf0e4d101603ed525e75c4e484  chromium/third_party/devtools-frontend/src/node_modules/magic-string/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/map-obj/license
+sha256  ca4662cb5d1b738fbe5350c0d5485ba11773b4b7208974082ae6e129a52d631d  chromium/third_party/devtools-frontend/src/node_modules/markdown-escapes/license
+sha256  9966260ba3ea9d6a5f839297dca80ddc99735a34b4ae82811cac7b956d2e3afd  chromium/third_party/devtools-frontend/src/node_modules/markdown-table/license
+sha256  ca4662cb5d1b738fbe5350c0d5485ba11773b4b7208974082ae6e129a52d631d  chromium/third_party/devtools-frontend/src/node_modules/mathml-tag-names/license
+sha256  ca4662cb5d1b738fbe5350c0d5485ba11773b4b7208974082ae6e129a52d631d  chromium/third_party/devtools-frontend/src/node_modules/mdast-util-compact/license
+sha256  74d8054d56d522bdaa340d3d71130cb204997d523a5292c85ac1264dd77c8d06  chromium/third_party/devtools-frontend/src/node_modules/media-typer/LICENSE
+sha256  5c932d88256b4ab958f64a856fa48e8bd1f55bc1d96b8149c65689e0c61789d3  chromium/third_party/devtools-frontend/src/node_modules/meow/license
+sha256  5c932d88256b4ab958f64a856fa48e8bd1f55bc1d96b8149c65689e0c61789d3  chromium/third_party/devtools-frontend/src/node_modules/meow/node_modules/camelcase/license
+sha256  64a93ffc0a06a2266dbb57ed7ebe3b56ba66ab337b6347fabdbf86c76819fbae  chromium/third_party/devtools-frontend/src/node_modules/meow/node_modules/type-fest/license
+sha256  365496ca1f56da40b23c9815fc40fa9005847b2f8f8fd1c1a4929ef25ec8cd1d  chromium/third_party/devtools-frontend/src/node_modules/meow/node_modules/yargs-parser/LICENSE.txt
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/meow/node_modules/yargs-parser/node_modules/camelcase/license
+sha256  23d150eb1337116025fbb4de7cd2a757540feec928eef5ae30c91f9f500a4dbc  chromium/third_party/devtools-frontend/src/node_modules/merge2/LICENSE
+sha256  2cee71bf4612fc2efe1c6261e3f2b21f3c7259ef8a4f3593b095ae7a7bd65ad9  chromium/third_party/devtools-frontend/src/node_modules/merge-stream/LICENSE
+sha256  35bdd8a44339719441900fb50fbefc5e2dca1ca662cbaed7a687de842c8b70f2  chromium/third_party/devtools-frontend/src/node_modules/micromatch/LICENSE
+sha256  965ef284f7f4c176842ec2e87fa13e79feed777d56d7a21a5a3b38f1bb6dc288  chromium/third_party/devtools-frontend/src/node_modules/mime-db/LICENSE
+sha256  8f2658c03422c408b2b2ce4d151decc3b1a6fd3d86e5ca9433777bccdcdf75a2  chromium/third_party/devtools-frontend/src/node_modules/mime/LICENSE
+sha256  71f83c4c0621102a56d9853812777b85751bce7e9726f686f5b056c1f8a4b0e6  chromium/third_party/devtools-frontend/src/node_modules/mime-types/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/mimic-fn/license
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/minimatch/LICENSE
+sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  chromium/third_party/devtools-frontend/src/node_modules/minimist/LICENSE
+sha256  6158b1bc31ab9c05c0be562cf57a0590a1dc86a4ce8b8a48a5e73df6c259ed61  chromium/third_party/devtools-frontend/src/node_modules/minimist-options/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/minimist-options/node_modules/arrify/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/minimist-options/node_modules/is-plain-obj/license
+sha256  9638fa87f845af6cecc56fab498c1f74f4a98522d3b53377bedcbdb44b5a8dcc  chromium/third_party/devtools-frontend/src/node_modules/min-indent/license
+sha256  a255b85c1a510ecfe660c4d442ecdbc1e9d07f4b4d3d7f90443f7e5570591e0a  chromium/third_party/devtools-frontend/src/node_modules/mkdirp-classic/LICENSE
+sha256  05991c2e8f070b69ec5b656c2c12fd07cd0153dd157d39b050b82af59b319a01  chromium/third_party/devtools-frontend/src/node_modules/mkdirp/LICENSE
+sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  chromium/third_party/devtools-frontend/src/node_modules/mkdirp/node_modules/minimist/LICENSE
+sha256  88597c9a3af6b6ae2fa6225a52344c7ddc705883d6fe1f2b3a95fdc72d2d1a20  chromium/third_party/devtools-frontend/src/node_modules/mocha/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/ansi-regex/license
+sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/debug/LICENSE
+sha256  483acb265f182907d1caf6cff9c16c96f31325ed23792832cc5d8b12d5f88c8a  chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/emoji-regex/LICENSE-MIT.txt
+sha256  6236fa0b88a4a0cce3dda0367979491b2052b3c8d6b1c10b3668de083e86a7f0  chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/glob/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/has-flag/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/locate-path/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/p-locate/license
+sha256  d3dfa68a3c80e64eb10e46cef10e4208502da5ffb1387b11db00e42a507ab8f7  chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/serialize-javascript/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/string-width/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/strip-ansi/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/supports-color/license
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/which/LICENSE
+sha256  fe71524a15f30aab0f39af7165d38fc64a4269b7d2a0caffebc907355aec9c92  chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/yargs/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/yargs/node_modules/find-up/license
+sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  chromium/third_party/devtools-frontend/src/node_modules/ms/license.md
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/mute-stream/LICENSE
+sha256  553d4d20029a24e315b428a1a54a9e109eaa340f2e958a4f50a92362c2c4070b  chromium/third_party/devtools-frontend/src/node_modules/negotiator/LICENSE
+sha256  bd220c219b05e6c22b7c23613ca926f60932d07c9fe141dd6e04b80dbc4b4e52  chromium/third_party/devtools-frontend/src/node_modules/nice-try/LICENSE
+sha256  9363d160bf41d46d83901a5d24fc3fe2094c2afc17b4a2378914b273977ee2de  chromium/third_party/devtools-frontend/src/node_modules/@nodelib/fs.scandir/LICENSE
+sha256  9363d160bf41d46d83901a5d24fc3fe2094c2afc17b4a2378914b273977ee2de  chromium/third_party/devtools-frontend/src/node_modules/@nodelib/fs.stat/LICENSE
+sha256  9363d160bf41d46d83901a5d24fc3fe2094c2afc17b4a2378914b273977ee2de  chromium/third_party/devtools-frontend/src/node_modules/@nodelib/fs.walk/LICENSE
+sha256  3706296ed611888111ceccc1dff4712844dea4bde0b185c82d718c3b69895abe  chromium/third_party/devtools-frontend/src/node_modules/node-releases/LICENSE
+sha256  d16b2b8c511d9f2bef8bbf49f0e2a94f032b6b8d181f71c83912c34c116a02e1  chromium/third_party/devtools-frontend/src/node_modules/normalize-package-data/LICENSE
+sha256  60acd7711e6c138e6041836e32d922705254cc1568a30fdf16aa8f59bb87aeaa  chromium/third_party/devtools-frontend/src/node_modules/normalize-package-data/node_modules/resolve/LICENSE
+sha256  e70ff771504ba41f2be55de812a017ff46433d7a250c862e38fc419159e44500  chromium/third_party/devtools-frontend/src/node_modules/normalize-path/LICENSE
+sha256  0b61ac8491c66669491fdb328200203822b91d2a0461f5cd898fe0944ea97e41  chromium/third_party/devtools-frontend/src/node_modules/normalize-range/license
+sha256  65155820306c6f73fe67358bf14c2e1eb24e29e9d0cad280b8f0f7be3319e434  chromium/third_party/devtools-frontend/src/node_modules/num2fraction/LICENSE
+sha256  a596744eec6b05682ed972bf93937668bbc8da2caed93fbf6510389de019b5c0  chromium/third_party/devtools-frontend/src/node_modules/object.assign/LICENSE
+sha256  bd40cc437e28a3ad7bef2ad34e6b72e757b182e67bda1acadbab4ef0476f8232  chromium/third_party/devtools-frontend/src/node_modules/object-inspect/LICENSE
+sha256  5640e5cbe2e9f57f6ccfdd8dbfbeadb875495bdbcb69d2666ce3177ccd0942e4  chromium/third_party/devtools-frontend/src/node_modules/object-keys/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/object.values/LICENSE
+sha256  00d402c2bbe7c67369bd01ce2c16b8ed46ccc949a1ee2d6bb8f9606afa8c7434  chromium/third_party/devtools-frontend/src/node_modules/object.values/node_modules/es-abstract/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/object.values/node_modules/es-to-primitive/LICENSE
+sha256  206c1adcf206dc0031b11232f5b054ec5f1662407ab1ca415247921cab2068ab  chromium/third_party/devtools-frontend/src/node_modules/object.values/node_modules/has-symbols/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/object.values/node_modules/is-callable/LICENSE
+sha256  dc0fe5a22d9336f345ee984f9bf56f11f22877a3aa5fd16a1db9a8ca0e23a5d1  chromium/third_party/devtools-frontend/src/node_modules/object.values/node_modules/is-regex/LICENSE
+sha256  bd40cc437e28a3ad7bef2ad34e6b72e757b182e67bda1acadbab4ef0476f8232  chromium/third_party/devtools-frontend/src/node_modules/object.values/node_modules/object-inspect/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/object.values/node_modules/string.prototype.trimleft/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/object.values/node_modules/string.prototype.trimright/LICENSE
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/once/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/onetime/license
+sha256  8089bcc08845ec143e5761f4a101a65b8c792a0dedbfeeb90a15560c0b77f768  chromium/third_party/devtools-frontend/src/node_modules/on-finished/LICENSE
+sha256  b9eb082c39fe245e38793699074c394c43a722c51fce031c3c165cb92a31035c  chromium/third_party/devtools-frontend/src/node_modules/optionator/LICENSE
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/osenv/LICENSE
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/os-homedir/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/os-tmpdir/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/parent-module/license
+sha256  9f084fac69d8cf1e6ce983ba5a3499c7695ed74a26ec625c38f0fd19fddd5e10  chromium/third_party/devtools-frontend/src/node_modules/parse-entities/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/parse-json/license
+sha256  a41d7b212c43bf90af534ec5d73d24a65e3a8cf17941b6d10e9398346a179698  chromium/third_party/devtools-frontend/src/node_modules/parseqs/LICENSE
+sha256  15c35ddf8c82a5fc84e3801db12e279b744605d6ad810e1b52ad09832fc71806  chromium/third_party/devtools-frontend/src/node_modules/parseuri/LICENSE
+sha256  11d017c3b9f1ee3f44caf7203035f0461d5b57e0db8ce1bc03a9af34fa7d3f6b  chromium/third_party/devtools-frontend/src/node_modules/parseurl/LICENSE
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/path-exists/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/path-is-absolute/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/path-key/license
+sha256  3f4609137f65070541b9214300ea0d640af8192857de0eeb2b03403003d9228a  chromium/third_party/devtools-frontend/src/node_modules/path-parse/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/path-type/license
+sha256  5d45910e7ed82fecc3e29b40a5b3a17ceb609fda19f860aa2ec180d87f4f9d4a  chromium/third_party/devtools-frontend/src/node_modules/pathval/LICENSE
+sha256  7e64acffcb0d20d33f5a86949ffd4a99ae045b10c7332a9c3a58635876c16880  chromium/third_party/devtools-frontend/src/node_modules/pend/LICENSE
+sha256  d0cd141b0c322fded5dfad1d4645bb2fedfc05b7321fe1009469638190d59ef9  chromium/third_party/devtools-frontend/src/node_modules/picomatch/LICENSE
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/pkg-dir/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/pkg-dir/node_modules/find-up/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/pkg-dir/node_modules/locate-path/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/pkg-dir/node_modules/path-exists/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/pkg-dir/node_modules/p-limit/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/pkg-dir/node_modules/p-locate/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/pkg-dir/node_modules/p-try/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/pkg-up/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/pkg-up/node_modules/find-up/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/pkg-up/node_modules/locate-path/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/pkg-up/node_modules/p-limit/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/pkg-up/node_modules/p-locate/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/pkg-up/node_modules/p-try/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/p-limit/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/p-locate/license
+sha256  2db459b0f45bd3b3836c374c6ef9ff5b2b2a31628e09f3c803e18f6c629b56b1  chromium/third_party/devtools-frontend/src/node_modules/postcss-html/LICENSE
+sha256  ce4ef9c48a45bbfc480671256a45a191ece0622d78061599b09b0ee60cf517d6  chromium/third_party/devtools-frontend/src/node_modules/postcss-less/LICENSE
+sha256  c4630ac8b89cb317ac5bdd60ac5e4e185eab9bd5151a0c7b3afa41aa83d7ec9b  chromium/third_party/devtools-frontend/src/node_modules/postcss/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/postcss/node_modules/supports-color/license
+sha256  8e714750725e75c8b31172ef84c0805f94873f86e3b5cfca8a948553f0778fa1  chromium/third_party/devtools-frontend/src/node_modules/postcss-reporter/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/postcss-reporter/node_modules/log-symbols/license
+sha256  d060f91dafa4f2daaeb5a87bdaab60217a5beb87a31eb0c480420710368ebf15  chromium/third_party/devtools-frontend/src/node_modules/postcss-resolve-nested-selector/LICENSE
+sha256  c4630ac8b89cb317ac5bdd60ac5e4e185eab9bd5151a0c7b3afa41aa83d7ec9b  chromium/third_party/devtools-frontend/src/node_modules/postcss-safe-parser/LICENSE
+sha256  e695904c289dbc8a8bca514639c4ec26e695cf21c3c1f12a917d325b26396917  chromium/third_party/devtools-frontend/src/node_modules/postcss-sass/LICENSE
+sha256  c4630ac8b89cb317ac5bdd60ac5e4e185eab9bd5151a0c7b3afa41aa83d7ec9b  chromium/third_party/devtools-frontend/src/node_modules/postcss-scss/LICENSE
+sha256  2998094b38f7ace25f141fb36f334d8338f65a1812978d618b1161f4d77ae10e  chromium/third_party/devtools-frontend/src/node_modules/postcss-selector-parser/LICENSE-MIT
+sha256  2db459b0f45bd3b3836c374c6ef9ff5b2b2a31628e09f3c803e18f6c629b56b1  chromium/third_party/devtools-frontend/src/node_modules/postcss-syntax/LICENSE
+sha256  3687447039151857a6ba378db062172c7f33d4aa70a615c87a43a9c50e990485  chromium/third_party/devtools-frontend/src/node_modules/postcss-value-parser/LICENSE
+sha256  b9eb082c39fe245e38793699074c394c43a722c51fce031c3c165cb92a31035c  chromium/third_party/devtools-frontend/src/node_modules/prelude-ls/LICENSE
+sha256  f4bbb78fa28677ad9b9c0a4b7a255e23c0b24e619c873ed66a11d47c16c88114  chromium/third_party/devtools-frontend/src/node_modules/private/LICENSE
+sha256  d7d2a7786de7c7cfd96f920c6f12927d74e1d2a861ca4498bf465c3bc3f4c21c  chromium/third_party/devtools-frontend/src/node_modules/progress/LICENSE
+sha256  cfc3f455254c0af0655cc3ff46a41ed644b67599f6043346169d285bf2b3cf3b  chromium/third_party/devtools-frontend/src/node_modules/promise.allsettled/LICENSE
+sha256  f55828df4b8752c48e765a806465b76a103e3cb363379c569b15a1df2ba2d79e  chromium/third_party/devtools-frontend/src/node_modules/proxy-from-env/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/p-try/license
+sha256  3fe8d55a98dbf260eace67c00cf9bc53edb46234e840098a0b93df3096b97fb6  chromium/third_party/devtools-frontend/src/node_modules/pump/LICENSE
+sha256  483acb265f182907d1caf6cff9c16c96f31325ed23792832cc5d8b12d5f88c8a  chromium/third_party/devtools-frontend/src/node_modules/punycode/LICENSE-MIT.txt
+sha256  a27ca07269b3518550b2e83aed13eadd7d14d924b5864e14889b40cf227530ca  chromium/third_party/devtools-frontend/src/node_modules/puppeteer/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/puppeteer/node_modules/pkg-dir/license
+sha256  3de284c8e6fa7e8437eff6f53695471e0332129a5b42a79361e17b7637de94b3  chromium/third_party/devtools-frontend/src/node_modules/puppeteer/node_modules/ws/LICENSE
+sha256  d2f9d2835eb09ccf673e118e4fdc372075437c1787e66c2202912fbe3e5ee9e1  chromium/third_party/devtools-frontend/src/node_modules/qs/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/quick-lru/license
+sha256  f0606775704212c0b49fb4df8193f7ec190d057551fc857d9f3aaa482b878e29  chromium/third_party/devtools-frontend/src/node_modules/ramda/LICENSE.txt
+sha256  f655e6291356ec0de7a8f0e69f294961a2cea86678ec94588be1e6a492e278ab  chromium/third_party/devtools-frontend/src/node_modules/range-parser/LICENSE
+sha256  c8e6bca7230689d536a3bd7158f66e9c4f89f95d0748743a0370ac229e9023ad  chromium/third_party/devtools-frontend/src/node_modules/raw-body/LICENSE
+sha256  ec62dc96da0099b87f4511736c87309335527fb7031639493e06c95728dc8c54  chromium/third_party/devtools-frontend/src/node_modules/readable-stream/LICENSE
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/readdir-scoped-modules/LICENSE
+sha256  5ffe28e7ade7d8f10d85d5337a73fd793dac5c462fb9a28fbf8c5046c7fbca3b  chromium/third_party/devtools-frontend/src/node_modules/read-installed/LICENSE
+sha256  69be713b3d6c33e0dba76c4d23d986d568593abca04ce47d75162af255d6a345  chromium/third_party/devtools-frontend/src/node_modules/read-package-json/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/read-pkg/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/read-pkg/node_modules/parse-json/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/read-pkg/node_modules/type-fest/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/read-pkg-up/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/read-pkg-up/node_modules/find-up/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/read-pkg-up/node_modules/locate-path/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/read-pkg-up/node_modules/path-exists/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/read-pkg-up/node_modules/p-locate/license
+sha256  6ca87d1dce5b82873603e566fd83dabe8771fb169013337d4a14bb9bbf794687  chromium/third_party/devtools-frontend/src/node_modules/recast/LICENSE
+sha256  94bcb9959136723aa4fb36e1a6c4d5c662a2369978cfae344dabfb83ae619e79  chromium/third_party/devtools-frontend/src/node_modules/recast/node_modules/esprima/LICENSE.BSD
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/redent/license
+sha256  fcf6eabf68ca96988a6b506b4fdc6cc32535d80eb2e11c79724af5ac6f50262b  chromium/third_party/devtools-frontend/src/node_modules/regexpp/LICENSE
+sha256  3672fb6ef1c214578dfee689643516c2685f61ab08d130517ca8ea24f383a840  chromium/third_party/devtools-frontend/src/node_modules/repeat-string/LICENSE
+sha256  dcb55717e2528ce8ffcff58a26dbc456d03929422ef59b6efdabbb931ef09aea  chromium/third_party/devtools-frontend/src/node_modules/replace-ext/LICENSE
+sha256  a92e52eb1fa7cd746e3827bf01d3a3589bbc8e1e51348b1da042aad165525ad1  chromium/third_party/devtools-frontend/src/node_modules/require-directory/LICENSE
+sha256  365496ca1f56da40b23c9815fc40fa9005847b2f8f8fd1c1a4929ef25ec8cd1d  chromium/third_party/devtools-frontend/src/node_modules/require-main-filename/LICENSE.txt
+sha256  3b2a6a268aa815dec121d614245e03b5c68db1f044d5b525e36db7d5dc7fb9c3  chromium/third_party/devtools-frontend/src/node_modules/requires-port/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/resolve-from/license
+sha256  60acd7711e6c138e6041836e32d922705254cc1568a30fdf16aa8f59bb87aeaa  chromium/third_party/devtools-frontend/src/node_modules/resolve/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/restore-cursor/license
+sha256  db0054e6418412e4a265236c94d1d8935057c67f367240b01bb2b0b2f9091812  chromium/third_party/devtools-frontend/src/node_modules/reusify/LICENSE
+sha256  1ce941682a96c7b898ecd125d0f2e22319758ea6f3adbf498a65d649b0f3f7dd  chromium/third_party/devtools-frontend/src/node_modules/rfdc/LICENSE
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/rimraf/LICENSE
+sha256  d6a61720669b71b4920ead9792298c3b4e27ce776282053c9df3b781fc8480ca  chromium/third_party/devtools-frontend/src/node_modules/rollup/LICENSE.md
+sha256  99de4c30f4643c00d4895d9c6ade0af4ec43d301449c191f5fbe41b53bb6a13a  chromium/third_party/devtools-frontend/src/node_modules/rollup/node_modules/fsevents/LICENSE
+sha256  7b8136f76c483d03597500bfa991aae9be68d4629e1121cbf9b93aa727efe305  chromium/third_party/devtools-frontend/src/node_modules/@rollup/plugin-commonjs/LICENSE
+sha256  a361479777395f33fb109bd77c7888663f5dc6f3a18ddaba812cf81be29e0cc3  chromium/third_party/devtools-frontend/src/node_modules/rollup-plugin-terser/LICENSE
+sha256  7b8136f76c483d03597500bfa991aae9be68d4629e1121cbf9b93aa727efe305  chromium/third_party/devtools-frontend/src/node_modules/@rollup/pluginutils/LICENSE
+sha256  d0cd141b0c322fded5dfad1d4645bb2fedfc05b7321fe1009469638190d59ef9  chromium/third_party/devtools-frontend/src/node_modules/@rollup/pluginutils/node_modules/picomatch/LICENSE
+sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  chromium/third_party/devtools-frontend/src/node_modules/@rollup/pluginutils/node_modules/@types/estree/LICENSE
+sha256  e5c1364118b39fa98b959138ce4aa4d0e68cfbee12d115e69730579fecb1dc1b  chromium/third_party/devtools-frontend/src/node_modules/run-async/LICENSE
+sha256  d4c2065e2b936e62a4eb400efb4576edec9ca1388a9f78aa288e147275e7bc8b  chromium/third_party/devtools-frontend/src/node_modules/run-parallel/LICENSE
+sha256  81c407ac717813b0e3795402960e04003c7bba8ba59b621624707028531c9ade  chromium/third_party/devtools-frontend/src/node_modules/rxjs/_esm2015/LICENSE.txt
+sha256  81c407ac717813b0e3795402960e04003c7bba8ba59b621624707028531c9ade  chromium/third_party/devtools-frontend/src/node_modules/rxjs/_esm5/LICENSE.txt
+sha256  81c407ac717813b0e3795402960e04003c7bba8ba59b621624707028531c9ade  chromium/third_party/devtools-frontend/src/node_modules/rxjs/LICENSE.txt
+sha256  81c407ac717813b0e3795402960e04003c7bba8ba59b621624707028531c9ade  chromium/third_party/devtools-frontend/src/node_modules/rxjs/src/LICENSE.txt
+sha256  c7cc929b57080f4b9d0c6cf57669f0463fc5b39906344dfc8d3bc43426b30eac  chromium/third_party/devtools-frontend/src/node_modules/safe-buffer/LICENSE
+sha256  4bc935e71be198c67ddf3c2b5fddb195f6edc182bfc155a96a6db61b44b494b9  chromium/third_party/devtools-frontend/src/node_modules/safer-buffer/LICENSE
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/semver/LICENSE
+sha256  d3dfa68a3c80e64eb10e46cef10e4208502da5ffb1387b11db00e42a507ab8f7  chromium/third_party/devtools-frontend/src/node_modules/serialize-javascript/LICENSE
+sha256  365496ca1f56da40b23c9815fc40fa9005847b2f8f8fd1c1a4929ef25ec8cd1d  chromium/third_party/devtools-frontend/src/node_modules/set-blocking/LICENSE.txt
+sha256  76d6d1ea0c268da37dd3c961b4fcfb23dee8417fff9e8786d4d44c585b781b69  chromium/third_party/devtools-frontend/src/node_modules/setprototypeof/LICENSE
+sha256  e6fdf7ac2af533b4436d99aa75df32aa78690510f7d68a3e73e8576967298d2f  chromium/third_party/devtools-frontend/src/node_modules/shebang-command/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/shebang-regex/license
+sha256  e05b1eaf5b5f99b7ad75cd1f38858ff9a311780b97715ead67936d60bf96aa7e  chromium/third_party/devtools-frontend/src/node_modules/signal-exit/LICENSE.txt
+sha256  3dc3b3d3a284d871f7f307655c90fb101d73abbf87bbddeefd2f67883353bdbc  chromium/third_party/devtools-frontend/src/node_modules/slice-ansi/license
+sha256  05dc4d785ac3a488676d3ed10e901b75ad89dafcc63f8e66610fd4a39cc5c7e8  chromium/third_party/devtools-frontend/src/node_modules/slide/LICENSE
+sha256  56b7b228fde8d638cc7f1c3d0022cf111764083ac4f803b7a50a90388dce3788  chromium/third_party/devtools-frontend/src/node_modules/socket.io-adapter/LICENSE
+sha256  62e2032a1e1458b1d92a62f5fc51be48e08b95062295c91a9f3bd3686809d37e  chromium/third_party/devtools-frontend/src/node_modules/socket.io-client/LICENSE
+sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  chromium/third_party/devtools-frontend/src/node_modules/socket.io-client/node_modules/debug/LICENSE
+sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  chromium/third_party/devtools-frontend/src/node_modules/socket.io-client/node_modules/ms/license.md
+sha256  c10d192d935165dac336ae245f9eef4c42bb37e7c6f5c5f6f7663db778122df1  chromium/third_party/devtools-frontend/src/node_modules/socket.io/LICENSE
+sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  chromium/third_party/devtools-frontend/src/node_modules/socket.io/node_modules/debug/LICENSE
+sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  chromium/third_party/devtools-frontend/src/node_modules/socket.io/node_modules/ms/license.md
+sha256  56b7b228fde8d638cc7f1c3d0022cf111764083ac4f803b7a50a90388dce3788  chromium/third_party/devtools-frontend/src/node_modules/socket.io-parser/LICENSE
+sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  chromium/third_party/devtools-frontend/src/node_modules/socket.io-parser/node_modules/debug/LICENSE
+sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  chromium/third_party/devtools-frontend/src/node_modules/socket.io-parser/node_modules/ms/license.md
+sha256  1c632a84f7ba5a7b32d9c15e707f419b2393e7ad7de362bd9c837b5e435a197b  chromium/third_party/devtools-frontend/src/node_modules/sourcemap-codec/LICENSE
+sha256  6cb0631f71c7749763fd3dd1d5bee52dd1070ec17f2edc1710079ad070bd2fbd  chromium/third_party/devtools-frontend/src/node_modules/source-map/LICENSE
+sha256  3a7d3bb198e909ed642bd68bd29a7d7c09a636d27a51ec663d35f00c4760ec42  chromium/third_party/devtools-frontend/src/node_modules/source-map-support/LICENSE.md
+sha256  c5ca60a739543ef97683dfa0a94773b214c86c826c76a27b8f8e6eb38148cbce  chromium/third_party/devtools-frontend/src/node_modules/spdx-compare/LICENSE.md
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/devtools-frontend/src/node_modules/spdx-correct/LICENSE
+sha256  7edb57f7065309027de249642341292a5b21410d5773cc55bba73ff9cf01060e  chromium/third_party/devtools-frontend/src/node_modules/spdx-expression-parse/LICENSE
+sha256  c5ca60a739543ef97683dfa0a94773b214c86c826c76a27b8f8e6eb38148cbce  chromium/third_party/devtools-frontend/src/node_modules/spdx-ranges/LICENSE.md
+sha256  a21ab121cef9bed38553faad40e49b27ae3d2578d07a70956664e681021c9875  chromium/third_party/devtools-frontend/src/node_modules/spdx-satisfies/LICENSE
+sha256  b2aeda654259630ed67b54e9134623c38cfb11d26201730cdc6d311d3c7c78ed  chromium/third_party/devtools-frontend/src/node_modules/specificity/LICENSE
+sha256  a4cdda44b5adea4731d53dcae78fb5124f8fd853e994f01e25d8c33a7daf818b  chromium/third_party/devtools-frontend/src/node_modules/sprintf-js/LICENSE
+sha256  ca4662cb5d1b738fbe5350c0d5485ba11773b4b7208974082ae6e129a52d631d  chromium/third_party/devtools-frontend/src/node_modules/state-toggle/license
+sha256  512cfa4d5e7a7569c7ae4dd95241cb6ae2aaf648ef9ebd080c01bd24868d26e9  chromium/third_party/devtools-frontend/src/node_modules/statuses/LICENSE
+sha256  9660914267128b5f96a102bd7f6268c249110a39cb7c4bb7f536d856445d739c  chromium/third_party/devtools-frontend/src/node_modules/streamroller/LICENSE
+sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  chromium/third_party/devtools-frontend/src/node_modules/streamroller/node_modules/debug/LICENSE
+sha256  11f2aafb37d06b3ee5bdaf06e9811141d0da05263c316f3d627f45c20d43261b  chromium/third_party/devtools-frontend/src/node_modules/string_decoder/LICENSE
+sha256  9f084fac69d8cf1e6ce983ba5a3499c7695ed74a26ec625c38f0fd19fddd5e10  chromium/third_party/devtools-frontend/src/node_modules/stringify-entities/license
+sha256  a5e49293b629194f16e08c965807b34a4a8f45aa2735658a3b0e3c1478a34b30  chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimend/LICENSE
+sha256  00d402c2bbe7c67369bd01ce2c16b8ed46ccc949a1ee2d6bb8f9606afa8c7434  chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimend/node_modules/es-abstract/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimend/node_modules/es-to-primitive/LICENSE
+sha256  206c1adcf206dc0031b11232f5b054ec5f1662407ab1ca415247921cab2068ab  chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimend/node_modules/has-symbols/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimend/node_modules/is-callable/LICENSE
+sha256  dc0fe5a22d9336f345ee984f9bf56f11f22877a3aa5fd16a1db9a8ca0e23a5d1  chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimend/node_modules/is-regex/LICENSE
+sha256  bd40cc437e28a3ad7bef2ad34e6b72e757b182e67bda1acadbab4ef0476f8232  chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimend/node_modules/object-inspect/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimend/node_modules/string.prototype.trimleft/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimend/node_modules/string.prototype.trimright/LICENSE
+sha256  a5e49293b629194f16e08c965807b34a4a8f45aa2735658a3b0e3c1478a34b30  chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimstart/LICENSE
+sha256  00d402c2bbe7c67369bd01ce2c16b8ed46ccc949a1ee2d6bb8f9606afa8c7434  chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimstart/node_modules/es-abstract/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimstart/node_modules/es-to-primitive/LICENSE
+sha256  206c1adcf206dc0031b11232f5b054ec5f1662407ab1ca415247921cab2068ab  chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimstart/node_modules/has-symbols/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimstart/node_modules/is-callable/LICENSE
+sha256  dc0fe5a22d9336f345ee984f9bf56f11f22877a3aa5fd16a1db9a8ca0e23a5d1  chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimstart/node_modules/is-regex/LICENSE
+sha256  bd40cc437e28a3ad7bef2ad34e6b72e757b182e67bda1acadbab4ef0476f8232  chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimstart/node_modules/object-inspect/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimstart/node_modules/string.prototype.trimleft/LICENSE
+sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimstart/node_modules/string.prototype.trimright/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/string-width/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/strip-ansi/license
+sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  chromium/third_party/devtools-frontend/src/node_modules/strip-bom/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/strip-indent/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/strip-json-comments/license
+sha256  fef84a79e6f9d8ada80ddbdb877a2c48c5c89ace72d4684c7af57991f119006d  chromium/third_party/devtools-frontend/src/node_modules/stylelint-config-recommended/LICENSE
+sha256  5745227ba0bbe3fadd255f420c5f87b4f12fee5e442e6ee46e80c3c567102316  chromium/third_party/devtools-frontend/src/node_modules/stylelint-config-standard/LICENSE
+sha256  75d7a49cb407946d65586e81b72265fbf5c87d5e4a7e03f9dcb4034ae3aba725  chromium/third_party/devtools-frontend/src/node_modules/stylelint/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/ansi-regex/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/ansi-styles/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/chalk/license
+sha256  693866fc419c6f61c8570438ec00659d156ec2b4d4a4d04091711f5f11a365d4  chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/color-convert/LICENSE
+sha256  7357445bac398c76c0aef75a587009fe406d40de6a79789eb5b7ecbbad317ef2  chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/color-name/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/has-flag/license
+sha256  9c94db23dc4b1e9aaee5d195668b916afc71efed54af226b66cf0ccc4389c1c0  chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/ignore/LICENSE-MIT
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/is-fullwidth-code-point/license
+sha256  5c932d88256b4ab958f64a856fa48e8bd1f55bc1d96b8149c65689e0c61789d3  chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/log-symbols/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/resolve-from/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/slash/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/string-width/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/strip-ansi/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/stylelint/node_modules/supports-color/license
+sha256  2db459b0f45bd3b3836c374c6ef9ff5b2b2a31628e09f3c803e18f6c629b56b1  chromium/third_party/devtools-frontend/src/node_modules/@stylelint/postcss-css-in-js/LICENSE
+sha256  2db459b0f45bd3b3836c374c6ef9ff5b2b2a31628e09f3c803e18f6c629b56b1  chromium/third_party/devtools-frontend/src/node_modules/@stylelint/postcss-markdown/LICENSE
+sha256  9fb0656e79b3f61b6f49e2bf0cc19e667192d57344b91f91a8ce464659c620f7  chromium/third_party/devtools-frontend/src/node_modules/style-search/LICENSE
+sha256  f20adb7ae92bfb7fde52791839ff1714564b4ea60a4cd031d77208a521592a4e  chromium/third_party/devtools-frontend/src/node_modules/sugarss/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/supports-color/license
+sha256  4fa26a349d96c6bf268296011d84a70d18a1e85dfbef9a3c3f785c97e28d1f5d  chromium/third_party/devtools-frontend/src/node_modules/svg-tags/LICENSE
+sha256  37b6932865726cf59cbfb8b32a5c9fd82c834c2deba4d53aa4a6b433ae69cdda  chromium/third_party/devtools-frontend/src/node_modules/table/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/table/node_modules/ansi-regex/license
+sha256  483acb265f182907d1caf6cff9c16c96f31325ed23792832cc5d8b12d5f88c8a  chromium/third_party/devtools-frontend/src/node_modules/table/node_modules/emoji-regex/LICENSE-MIT.txt
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/table/node_modules/string-width/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/table/node_modules/strip-ansi/license
+sha256  3fe8d55a98dbf260eace67c00cf9bc53edb46234e840098a0b93df3096b97fb6  chromium/third_party/devtools-frontend/src/node_modules/tar-fs/LICENSE
+sha256  3fe8d55a98dbf260eace67c00cf9bc53edb46234e840098a0b93df3096b97fb6  chromium/third_party/devtools-frontend/src/node_modules/tar-stream/LICENSE
+sha256  68335488ef8f917c0feb901ace385f8c919bc81b0b60448a92928a3769fcec8f  chromium/third_party/devtools-frontend/src/node_modules/terser/LICENSE
+sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  chromium/third_party/devtools-frontend/src/node_modules/text-table/LICENSE
+sha256  e8734448285a2dd773d40136ed5d5e8163a70701dd540cdc796cfca232f67d55  chromium/third_party/devtools-frontend/src/node_modules/through/LICENSE.APACHE2
+sha256  d72dea1a8cdf3f4dfa2f594253d0c5b37baefc76e806f5ecb0e426393edcd505  chromium/third_party/devtools-frontend/src/node_modules/through/LICENSE.MIT
+sha256  162413c61e0982abe89a06bf7a02ec760dc49a7364d838bd9f01daebb5b95954  chromium/third_party/devtools-frontend/src/node_modules/tmp/LICENSE
+sha256  61b82d27e63b14eabc706960aabf6caa1b27d044eb00d7908f92e68085301c3a  chromium/third_party/devtools-frontend/src/node_modules/to-fast-properties/license
+sha256  a832d679750e49ab433626ab196350b89964b60eb0d3edd3341887c7d5f4c128  chromium/third_party/devtools-frontend/src/node_modules/toidentifier/LICENSE
+sha256  e7d1fee7347ffddccc5fd03327ffdb50f8c112be0d5016d62388a92c4ae6e7a9  chromium/third_party/devtools-frontend/src/node_modules/to-regex-range/LICENSE
+sha256  83927d1555a8e1d5ed9896991fbb2b4cdfb64f45f5e12b7446c3bff5cea538d3  chromium/third_party/devtools-frontend/src/node_modules/treeify/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/trim-newlines/license
+sha256  9f084fac69d8cf1e6ce983ba5a3499c7695ed74a26ec625c38f0fd19fddd5e10  chromium/third_party/devtools-frontend/src/node_modules/trim-trailing-lines/license
+sha256  6c03fd41cfd7c92d8aa8a2fa521b94b2683f059123281dcf921ddea9216b6254  chromium/third_party/devtools-frontend/src/node_modules/trough/license
+sha256  a5e9f9b1575301c7a7a03508fdaa2e05a918cc17fd21c6e898096a96d6a34f61  chromium/third_party/devtools-frontend/src/node_modules/tslib/LICENSE.txt
+sha256  ed0ff5ab79bc82703690fde4644e352c9ce73e9b890b87ea68b1a1fc5805792b  chromium/third_party/devtools-frontend/src/node_modules/tsutils/LICENSE
+sha256  b9eb082c39fe245e38793699074c394c43a722c51fce031c3c165cb92a31035c  chromium/third_party/devtools-frontend/src/node_modules/type-check/LICENSE
+sha256  c7cc929b57080f4b9d0c6cf57669f0463fc5b39906344dfc8d3bc43426b30eac  chromium/third_party/devtools-frontend/src/node_modules/typedarray-to-buffer/LICENSE
+sha256  e5aee0714b6ecc416454b968d1017570ef609f20d8722ab84b07acd550b78198  chromium/third_party/devtools-frontend/src/node_modules/type-detect/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/type-fest/license
+sha256  23d466b1b134b415b66fa50c6526b4cf3e7b9258554da88d3abb371721e7ce68  chromium/third_party/devtools-frontend/src/node_modules/type-is/LICENSE
+sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  chromium/third_party/devtools-frontend/src/node_modules/@types/chai/LICENSE
+sha256  c2cfccb812fe482101a8f04597dfc5a9991a6b2748266c47ac91b6a5aae15383  chromium/third_party/devtools-frontend/src/node_modules/@types/codemirror/LICENSE
+sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  chromium/third_party/devtools-frontend/src/node_modules/@types/color-name/LICENSE
+sha256  5938d4fe4890c79ad14e02e643c385b25b8b6c7bbb97ab08996034b586512df5  chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/eslint-plugin/LICENSE
+sha256  fcf6eabf68ca96988a6b506b4fdc6cc32535d80eb2e11c79724af5ac6f50262b  chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/eslint-plugin/node_modules/regexpp/LICENSE
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/eslint-plugin/node_modules/semver/LICENSE
+sha256  5938d4fe4890c79ad14e02e643c385b25b8b6c7bbb97ab08996034b586512df5  chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/experimental-utils/LICENSE
+sha256  fcf6eabf68ca96988a6b506b4fdc6cc32535d80eb2e11c79724af5ac6f50262b  chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/experimental-utils/node_modules/eslint-utils/LICENSE
+sha256  e2fc706570305bcb7dfadb1cac951d5934ce0d7331a7a7ff1bbc254dbe1d9ef8  chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/parser/LICENSE
+sha256  635818d8f39384751c8a5f3f3e735022f07afb3ccdb26eb17ff8eca28428f888  chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/typescript-estree/LICENSE
+sha256  6236fa0b88a4a0cce3dda0367979491b2052b3c8d6b1c10b3668de083e86a7f0  chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/typescript-estree/node_modules/glob/LICENSE
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/LICENSE
+sha256  5938d4fe4890c79ad14e02e643c385b25b8b6c7bbb97ab08996034b586512df5  chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/types/LICENSE
+sha256  5938d4fe4890c79ad14e02e643c385b25b8b6c7bbb97ab08996034b586512df5  chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/visitor-keys/LICENSE
+sha256  a5e9f9b1575301c7a7a03508fdaa2e05a918cc17fd21c6e898096a96d6a34f61  chromium/third_party/devtools-frontend/src/node_modules/typescript/LICENSE.txt
+sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  chromium/third_party/devtools-frontend/src/node_modules/@types/eslint-visitor-keys/LICENSE
+sha256  c2cfccb812fe482101a8f04597dfc5a9991a6b2748266c47ac91b6a5aae15383  chromium/third_party/devtools-frontend/src/node_modules/@types/estree/LICENSE
+sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  chromium/third_party/devtools-frontend/src/node_modules/@types/filesystem/LICENSE
+sha256  c2cfccb812fe482101a8f04597dfc5a9991a6b2748266c47ac91b6a5aae15383  chromium/third_party/devtools-frontend/src/node_modules/@types/json-schema/LICENSE
+sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  chromium/third_party/devtools-frontend/src/node_modules/@types/mocha/LICENSE
+sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  chromium/third_party/devtools-frontend/src/node_modules/@types/node/LICENSE
+sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  chromium/third_party/devtools-frontend/src/node_modules/@types/normalize-package-data/LICENSE
+sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  chromium/third_party/devtools-frontend/src/node_modules/@types/parse-json/LICENSE
+sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  chromium/third_party/devtools-frontend/src/node_modules/@types/puppeteer/LICENSE
+sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  chromium/third_party/devtools-frontend/src/node_modules/@types/tern/LICENSE
+sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  chromium/third_party/devtools-frontend/src/node_modules/@types/unist/LICENSE
+sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  chromium/third_party/devtools-frontend/src/node_modules/@types/yauzl/LICENSE
+sha256  c427692fb89dcb92bb0cc0905a650f986a7736e4ef90f9e5356a4dfdcf243b9e  chromium/third_party/devtools-frontend/src/node_modules/ua-parser-js/license.md
+sha256  3b2a6a268aa815dec121d614245e03b5c68db1f044d5b525e36db7d5dc7fb9c3  chromium/third_party/devtools-frontend/src/node_modules/ultron/LICENSE
+sha256  81ae93d537c22c0baf10928b8ee5e13d5addc50433e12cf52f1f8292ed70d108  chromium/third_party/devtools-frontend/src/node_modules/unbzip2-stream/LICENSE
+sha256  05811400116ed61f1a7693b78fe8ca6598c155a12f3978e609db4df648a4cb3d  chromium/third_party/devtools-frontend/src/node_modules/unherit/license
+sha256  05811400116ed61f1a7693b78fe8ca6598c155a12f3978e609db4df648a4cb3d  chromium/third_party/devtools-frontend/src/node_modules/unified/license
+sha256  e67aed7df22dc8031e4fcf5338fe91cb33e3817e5c58a99a2a2802eea9069791  chromium/third_party/devtools-frontend/src/node_modules/uniq/LICENSE
+sha256  63cb98b3f6abfb3c3592c16f88253c1bdc834087bf52671e8ce5609e4eb693cf  chromium/third_party/devtools-frontend/src/node_modules/unist-util-find-all-after/license
+sha256  82974dbf2639d13edab95c32ed9cb6c0867ede272cd2e07ce47ce8548fe55c05  chromium/third_party/devtools-frontend/src/node_modules/unist-util-is/license
+sha256  ca4662cb5d1b738fbe5350c0d5485ba11773b4b7208974082ae6e129a52d631d  chromium/third_party/devtools-frontend/src/node_modules/unist-util-remove-position/license
+sha256  ca4662cb5d1b738fbe5350c0d5485ba11773b4b7208974082ae6e129a52d631d  chromium/third_party/devtools-frontend/src/node_modules/unist-util-stringify-position/license
+sha256  63cb98b3f6abfb3c3592c16f88253c1bdc834087bf52671e8ce5609e4eb693cf  chromium/third_party/devtools-frontend/src/node_modules/unist-util-visit/license
+sha256  ca4662cb5d1b738fbe5350c0d5485ba11773b4b7208974082ae6e129a52d631d  chromium/third_party/devtools-frontend/src/node_modules/unist-util-visit-parents/license
+sha256  3fda5977c0904e226190b4e21d64340c1731e2142d6fe5f3dee0090a216b8b63  chromium/third_party/devtools-frontend/src/node_modules/universalify/LICENSE
+sha256  1a526fbe8d8577f5a4b1c2821842b55b7c0e18862531c62ae4ce69c9b19b74b6  chromium/third_party/devtools-frontend/src/node_modules/unpipe/LICENSE
+sha256  0154425673db15cdfa80ecba2c9b1f1a867f7197a006764712849bfc3a93cbb7  chromium/third_party/devtools-frontend/src/node_modules/util-deprecate/LICENSE
+sha256  6239c6144c31e58cf925c34483606969c555574d64ffa96518ab5d7f45c75d43  chromium/third_party/devtools-frontend/src/node_modules/util-extend/LICENSE
+sha256  6e7d699cdd1e4fa837ba7718ea49841aa67201b449ea8b3f9cf274be15974a64  chromium/third_party/devtools-frontend/src/node_modules/utils-merge/LICENSE
+sha256  c77674258a3fdf3036a5d13d2aecd30d7a25aa6191cb0a9a7dd45b975dc7fe69  chromium/third_party/devtools-frontend/src/node_modules/v8-compile-cache/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/devtools-frontend/src/node_modules/validate-npm-package-license/LICENSE
+sha256  05811400116ed61f1a7693b78fe8ca6598c155a12f3978e609db4df648a4cb3d  chromium/third_party/devtools-frontend/src/node_modules/vfile/license
+sha256  ca4662cb5d1b738fbe5350c0d5485ba11773b4b7208974082ae6e129a52d631d  chromium/third_party/devtools-frontend/src/node_modules/vfile-location/license
+sha256  d8fc337aaf98fc7a0f5498edc18b47a9df8cdfcc1a0f013519105905722c7a4c  chromium/third_party/devtools-frontend/src/node_modules/vfile-message/license
+sha256  405a272eaef556691ad7dda96db3237c9544afe18725842a1a5b3ec308960222  chromium/third_party/devtools-frontend/src/node_modules/void-elements/LICENSE
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/which/LICENSE
+sha256  852bf81203aa93aa89afc9f881ebb035322dc7334aaceff435c557634c94a815  chromium/third_party/devtools-frontend/src/node_modules/which-module/LICENSE
+sha256  0cef05dfff8b6aa7f35596984f5709f0d17c2582924a751efa471a76de7cdc11  chromium/third_party/devtools-frontend/src/node_modules/wide-align/LICENSE
+sha256  f4a48aa8354a257785aa534bab2ac5ff2c2a98cd59cdf4a637bb68ee185683f7  chromium/third_party/devtools-frontend/src/node_modules/word-wrap/LICENSE
+sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  chromium/third_party/devtools-frontend/src/node_modules/wordwrap/LICENSE
+sha256  6dc0e068dcf3a5bc8e054205b85b7720e1d49265bbc64bf515d2cf79197df69a  chromium/third_party/devtools-frontend/src/node_modules/workerpool/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/ansi-regex/license
+sha256  483acb265f182907d1caf6cff9c16c96f31325ed23792832cc5d8b12d5f88c8a  chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/emoji-regex/LICENSE-MIT.txt
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/string-width/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/strip-ansi/license
+sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  chromium/third_party/devtools-frontend/src/node_modules/wrappy/LICENSE
+sha256  ea7f376fe7a1fc28572b83ac8f806d92effb31852b9981bc9ba9d5266caa6b28  chromium/third_party/devtools-frontend/src/node_modules/write-file-atomic/LICENSE
+sha256  0ead7e8cd8b0bc66a981ee69acaf1297ffa838cfce1b156a039bb24f997c0a27  chromium/third_party/devtools-frontend/src/node_modules/write/LICENSE
+sha256  3de284c8e6fa7e8437eff6f53695471e0332129a5b42a79361e17b7637de94b3  chromium/third_party/devtools-frontend/src/node_modules/ws/LICENSE
+sha256  c7cc929b57080f4b9d0c6cf57669f0463fc5b39906344dfc8d3bc43426b30eac  chromium/third_party/devtools-frontend/src/node_modules/ws/node_modules/safe-buffer/LICENSE
+sha256  a5f35901ee8b2039a7431144c23dd10bd47c1d07bcee0cd3a536421d86412214  chromium/third_party/devtools-frontend/src/node_modules/xmlhttprequest-ssl/LICENSE
+sha256  82e67379203d5794e7c44549847d8d64ae6904591381682360470898bd306821  chromium/third_party/devtools-frontend/src/node_modules/xtend/LICENSE
+sha256  2034cce3b6fafcddd642c4175e01d3ddfc332a53b9f20fdc46b1466dc89ac469  chromium/third_party/devtools-frontend/src/node_modules/y18n/LICENSE
+sha256  0f10bab9eedc5d50183a6dbce9f76e8db974103bfd32d64674406dfeb7654ee7  chromium/third_party/devtools-frontend/src/node_modules/yaml/LICENSE
+sha256  fe71524a15f30aab0f39af7165d38fc64a4269b7d2a0caffebc907355aec9c92  chromium/third_party/devtools-frontend/src/node_modules/yargs/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/ansi-regex/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/ansi-styles/license
+sha256  2dc0465729366c3a7890dfa9e972a1ba7048a26c02116fb8b419a6a1ac110149  chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/cliui/LICENSE.txt
+sha256  693866fc419c6f61c8570438ec00659d156ec2b4d4a4d04091711f5f11a365d4  chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/color-convert/LICENSE
+sha256  7357445bac398c76c0aef75a587009fe406d40de6a79789eb5b7ecbbad317ef2  chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/color-name/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/find-up/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/is-fullwidth-code-point/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/locate-path/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/path-exists/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/p-locate/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/string-width/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/strip-ansi/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/wrap-ansi/license
+sha256  365496ca1f56da40b23c9815fc40fa9005847b2f8f8fd1c1a4929ef25ec8cd1d  chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/yargs-parser/LICENSE.txt
+sha256  365496ca1f56da40b23c9815fc40fa9005847b2f8f8fd1c1a4929ef25ec8cd1d  chromium/third_party/devtools-frontend/src/node_modules/yargs-parser/LICENSE.txt
+sha256  30877d17f7e38530d46b49fb375ee98ce2e8b085b3ee72d4c2888710416ef139  chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/LICENSE
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/ansi-regex/license
+sha256  483acb265f182907d1caf6cff9c16c96f31325ed23792832cc5d8b12d5f88c8a  chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/emoji-regex/LICENSE-MIT.txt
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/find-up/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/locate-path/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/p-locate/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/string-width/license
+sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/strip-ansi/license
+sha256  fe71524a15f30aab0f39af7165d38fc64a4269b7d2a0caffebc907355aec9c92  chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/yargs/LICENSE
+sha256  b303783d5eb7ca50b853ffa5f145e4e7998fab339831d848f507ca6cd970577a  chromium/third_party/devtools-frontend/src/node_modules/yauzl/LICENSE
+sha256  3b2a6a268aa815dec121d614245e03b5c68db1f044d5b525e36db7d5dc7fb9c3  chromium/third_party/devtools-frontend/src/node_modules/yeast/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/devtools-frontend/src/scripts/closure/COPYING
+sha256  7ec9661a8afafab1eee3523d6f1a193eff76314a5ab10b4ce96aefd87621b0c3  chromium/third_party/devtools-frontend/src/third_party/i18n/LICENSE
+sha256  a8ad31b1c3f40dca5a84119351b8fa8ddc868edd77fad8a8ebf6d8f2d16fa4ae  chromium/third_party/devtools-frontend/src/third_party/pyjson5/src/LICENSE
+sha256  4f5753ce8acf3feafc758599058746d30bda07bc0d4cc3a6a1eb8e039fdba1dc  chromium/third_party/dom_distiller_js/LICENSE
+sha256  ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6  chromium/third_party/dpkg-shlibdeps/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/emoji-segmenter/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/emoji-segmenter/src/LICENSE
+sha256  9021fdb5341ebbb2eb5c771ac5cfac527790673179d3b21a42de1ab2798ec30f  chromium/third_party/espresso/LICENSE
+sha256  8c6b5b6de8fae20b317f4992729abc0e520bfba4c7606cd1e9eeb87418eebdec  chromium/third_party/expat/src/expat/COPYING
+sha256  d9c904abd0ead61b3fbaef0a609285548076ff9c3f814cc1cf019c5d7150736d  chromium/third_party/ffmpeg/chromium/scripts/license_texts/full_lgpl.txt
+sha256  a8579e3fc40c11ab147bc299257733eb749cd455010385f7c117f70d7aef24e4  chromium/third_party/ffmpeg/chromium/scripts/license_texts/jpeg.txt
+sha256  857d5f537af3aa164e7a27eda60147d34195e5781abe7b1d358d9fb01e222ae0  chromium/third_party/ffmpeg/chromium/scripts/license_texts/mips.txt
+sha256  b4c85cce2b772f27d83f4562c20787057dc6949fcecc820a82c1d2e7047e89c3  chromium/third_party/ffmpeg/chromium/scripts/license_texts/oggparse_ahlberg_rullgayrd_2005.txt
+sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  chromium/third_party/ffmpeg/COPYING.GPLv2
+sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  chromium/third_party/ffmpeg/COPYING.GPLv3
+sha256  b634ab5640e258563c536e658cad87080553df6f34f62269a21d554844e58bfe  chromium/third_party/ffmpeg/COPYING.LGPLv2.1
+sha256  da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768  chromium/third_party/ffmpeg/COPYING.LGPLv3
+sha256  cb48bf09a11f5fb576cddb0431c8f5ed0a60157a9ec942adffc13907cbe083f2  chromium/third_party/ffmpeg/LICENSE.md
+sha256  f45cc81b400a048b56c9edbd4c3317f7a8958463dfd55aa96f268ecfd6baa12c  chromium/third_party/flac/COPYING.FDL
+sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  chromium/third_party/flac/COPYING.GPL
+sha256  5df07007198989c622f5d41de8d703e7bef3d0e79d62e24332ee739a452af62a  chromium/third_party/flac/COPYING.LGPL
+sha256  946b733afbaa20a192c8dc022b4e43090e78f28fd293494d1b307f7301552c9b  chromium/third_party/flac/COPYING.Xiph
+sha256  7ec9661a8afafab1eee3523d6f1a193eff76314a5ab10b4ce96aefd87621b0c3  chromium/third_party/flatbuffers/LICENSE
+sha256  3112ebbfc0fe10ad40a97672f5590c4292536a28cbfe3506820b15dec70b2258  chromium/third_party/flatbuffers/src/dart/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/flatbuffers/src/LICENSE.txt
+sha256  fa4cd9ab005185e10cd8f7504518856c7dd36c01e766c2bac87f4fc638e9f886  chromium/third_party/fontconfig/LICENSE
+sha256  fa4cd9ab005185e10cd8f7504518856c7dd36c01e766c2bac87f4fc638e9f886  chromium/third_party/fontconfig/src/COPYING
+sha256  fd056de4196903a676208ef58cfddafc7d583d1f28fa2e44c309cf84a59e62fb  chromium/third_party/freetype/src/docs/LICENSE.TXT
+sha256  cc807e3caa26cdee316bab2ff6fdb508a2f619b74959fe59e513ef6e61635ebe  chromium/third_party/fusejs/LICENSE
+sha256  c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4  chromium/third_party/gif_player/LICENSE
+sha256  8ea14fdc7efee7fe53c79101b97049bd547dc6686cfa05df4f0686146a561423  chromium/third_party/glfw/src/LICENSE.md
+sha256  23353f4505b1c8ce4f8f72fc3b11dc74b4a8a7bf95921d93ff77f227c171a710  chromium/third_party/glslang/LICENSE
+sha256  7ddbbe34e0371fb18be6ac34cae3424f091901dfe2bebd935b0795a4e7718ebb  chromium/third_party/glslang/src/license-checker.cfg
+sha256  130b2e98901db02a83e5e83c132b22d22d9279155feb53c49d6471b75af3c352  chromium/third_party/glslang/src/LICENSE.txt
+sha256  a6cba85bc92e0cff7a450b1d873c0eaa2e9fc96bf472df0247a26bec77bf3ff9  chromium/third_party/google-closure-library/closure-deps/LICENSE
+sha256  a7fd1637f41b8f56a911c8d11fd6b6b68619879f67256874232ff83c0c63a090  chromium/third_party/google-closure-library/doc/LICENSE
+sha256  a6cba85bc92e0cff7a450b1d873c0eaa2e9fc96bf472df0247a26bec77bf3ff9  chromium/third_party/google-closure-library/LICENSE
+sha256  9702de7e4117a8e2b20dafab11ffda58c198aede066406496bef670d40a22138  chromium/third_party/googletest/src/googlemock/LICENSE
+sha256  5e0df8c845c742e76f2f64d2d9ce1b7e74a2422fddbc577ae6a56319083de0bf  chromium/third_party/googletest/src/googlemock/scripts/generator/LICENSE
+sha256  9702de7e4117a8e2b20dafab11ffda58c198aede066406496bef670d40a22138  chromium/third_party/googletest/src/googletest/LICENSE
+sha256  9702de7e4117a8e2b20dafab11ffda58c198aede066406496bef670d40a22138  chromium/third_party/googletest/src/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/google-truth/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/guava/LICENSE
+sha256  ca382aa537f8923d6c0991fb976d184a2009eb76080313bf10dcecdc9311f0dd  chromium/third_party/gvr-android-keyboard/LICENSE
+sha256  f54c49d3ff865458c5d3c68c3367a1f6e0d7b3f686f8c88a6a563ef90f84ad9e  chromium/third_party/gvr-android-sdk/LICENSE
+sha256  96e5bbd81970983d666e702fa56f67dfd2fdaa363b8a4266e8d98847374cd7c8  chromium/third_party/hamcrest/LICENSE
+sha256  beb3f017ceb41387667f78237a7cecf84defa0ed257c505894663d6a9f13211b  chromium/third_party/harfbuzz-ng/src/COPYING
+sha256  c2cfccb812fe482101a8f04597dfc5a9991a6b2748266c47ac91b6a5aae15383  chromium/third_party/harfbuzz-ng/src/src/ms-use/COPYING
+sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  chromium/third_party/hunspell/COPYING
+sha256  da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768  chromium/third_party/hunspell/COPYING.LESSER
+sha256  53692a2ed6c6a2c6ec9b32dd0b820dfae91e0a1fcdf625ca9ed0bdf8705fcc4f  chromium/third_party/hunspell/COPYING.MPL
+sha256  b794aa78066400af1be3d3fb3f89c4dddc680786f14dc4e3d23a0b2848054984  chromium/third_party/hyphenation-patterns/LICENSE
+sha256  a03fed9ab6321742903f3f0095b389ce811c4cfeb3f671ddc8d33da57dc92493  chromium/third_party/hyphenation-patterns/src/pt/LICENSE
+sha256  610809f1586ee4d22468f1e97c256153cea8be7a662193db70d6ca424e0f17c8  chromium/third_party/iaccessible2/LICENSE
+sha256  a412a53925efc6b50800bf8519a2e033949243d5a5a8c5422bae8a5007ad09c8  chromium/third_party/iccjpeg/LICENSE
+sha256  d18e75f216f177d41304f5e94c2cba7d1bf9f8f8583a0777cceb5cca0c5ad137  chromium/third_party/icu4j/LICENSE
+sha256  25e21013a7bc2fad735e28c5278a120e4c7f1c327c8c8b9b4df1751748cddbb2  chromium/third_party/icu/LICENSE
+sha256  c62d7697c03979f5056d28b338fafc7a1152820f7b379adf4a9d88cd37160f96  chromium/third_party/icu/license.html
+sha256  845022e0c1db1abb41a6ba4cd3c4b674ec290f3359d9d3c78ae558d4c0ed9308  chromium/third_party/icu/scripts/LICENSE
+sha256  8c6db340475136df3c1201d458fa5755698eace76e510471ecc9d857d6083dac  chromium/third_party/ijar/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/ink/LICENSE
+sha256  b9be92f13356083392d97da13cab8ae543c7911f44eff5289b693da8b17b9e08  chromium/third_party/inspector_protocol/LICENSE
+sha256  7a92c5e7a83b5ddcc693bb84ea8bdb842308509c1758cffdfe24717609154c75  chromium/third_party/isimpledom/LICENSE
+sha256  ed8d7a24769ac9d57d08769b5f8be27519dd8811d06b0995dbe8ca6714e96d08  chromium/third_party/jacoco/LICENSE
+sha256  33b6816eb449962d307495946519ed78cef8743819f6f1d60e8b3d4e86c38b1c  chromium/third_party/javalang/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/jetifier_standalone/LICENSE
+sha256  7975c0027cfa5d08253fbb6ff4676acc38248bd5e046d0dbab3d810971e97970  chromium/third_party/jinja2/LICENSE
+sha256  76c45ece83a26117f86f4e349e7df118708e061e87225328fb478ce1e8b3eb86  chromium/third_party/jsoncpp/LICENSE
+sha256  95039d77a20e75b428207740d9a8f97b2dce3c89da4b21f1ad862b5997160e0a  chromium/third_party/jsoncpp/source/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/jstemplate/COPYING
+sha256  71a19392a0eb3255ab2055ed978bb0f93865cea84d31a3510eaffb74d8981e7f  chromium/third_party/khronos/LICENSE
+sha256  ccc19f1da0798ed666609b65a5b44dd8b3abe6fc08b9c0592eb76e82e174db19  chromium/third_party/leveldatabase/src/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/libaddressinput/LICENSE
+sha256  c9a5bd7c8cc1267ddacdc5228c68ecd811cf6d74286e9141bc80d8af2eb1a025  chromium/third_party/libaddressinput/src/cpp/LICENSE.chromium
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/libaddressinput/src/LICENSE
+sha256  4764a286d8b2faeaf42f4418e7d7a28d58fc8fd4d00a3d0a7f44b0a4099de7f2  chromium/third_party/libaom/source/libaom/LICENSE
+sha256  043dcfd059386f9facd376351b2bd79325778744aa442177390cdfcca54babed  chromium/third_party/libaom/source/libaom/third_party/fastfeat/LICENSE
+sha256  9702de7e4117a8e2b20dafab11ffda58c198aede066406496bef670d40a22138  chromium/third_party/libaom/source/libaom/third_party/googletest/src/googletest/LICENSE
+sha256  5aec868f669e384a22372a4e8a1a6cd7d44c64cd451f960ca69cc170d1e13acf  chromium/third_party/libaom/source/libaom/third_party/libwebm/LICENSE.TXT
+sha256  ff6c857ce2708e87701323078aef115c1872a1f80a9649f86dc899b48083bc60  chromium/third_party/libaom/source/libaom/third_party/vector/LICENSE
+sha256  719d8fa235f2068e0ae6d6a7dceb0a7720d7840f0f0ebed29957989e6ded3cd8  chromium/third_party/libaom/source/libaom/third_party/x86inc/LICENSE
+sha256  0b711483921350723ddef8dd3e52b10eb79e4877817a2ccf9a48dd2deb7947aa  chromium/third_party/libavif/LICENSE
+sha256  e0ba04d4885bf25b03e20c8078e5f4b241bfe6a941d4a9bcc14cab09e2c27e62  chromium/third_party/libavif/src/LICENSE
+sha256  d80c9d084ebfb50ea1ed91bfbc2410d6ce542097a32c43b00781b83adcb8c77f  chromium/third_party/libbrlapi/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/libgav1/src/LICENSE
+sha256  d56bafdaeaa793331a29e9766b7efe66524c98533da798a57201e291863ef625  chromium/third_party/libgifcodec/LICENSE.md
+sha256  37d8bfba91b745693ea58f846f2f1276229745adf532974b73c1911cfd144241  chromium/third_party/libipp/LICENSE
+sha256  ab00a482b6a3902e40211b43c5d0441962ea99b6cc7c25c0f243fa270b78d482  chromium/third_party/libjingle_xmpp/LICENSE
+sha256  7d8683a7f048e715e08b4cada8b7f0d9a6ab8afad88ed09c1143ef764ecbc0f2  chromium/third_party/libjpeg_turbo/LICENSE.md
+sha256  3bf128851aff9f392953276ea8ade3e41da0f40b853fde58ec21034aa91ccc31  chromium/third_party/libovr/LICENSE
+sha256  bf5e22b9dce8464064ae17a48ea1133c3369ac9e1d80ef9e320e5219aa14ea9b  chromium/third_party/libpng/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/libprotobuf-mutator/src/LICENSE
+sha256  a1a33180d02960ab1c5de36cf20b1a2f0fe9888d83826ad263da5db52f1b183b  chromium/third_party/libsecret/LICENSE
+sha256  8e19d42a1eec9561f3f347253ddf2e385c55f392f025bb0fd41b88dbf38db5ae  chromium/third_party/libsrtp/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/libsync/LICENSE
+sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  chromium/third_party/libudev/LICENSE
+sha256  5df07007198989c622f5d41de8d703e7bef3d0e79d62e24332ee739a452af62a  chromium/third_party/libusb/src/COPYING
+sha256  8267348d5af1262c11d1a08de2f5afc77457755f1ac658627dd9acf71011d615  chromium/third_party/libvpx/source/libvpx/LICENSE
+sha256  9702de7e4117a8e2b20dafab11ffda58c198aede066406496bef670d40a22138  chromium/third_party/libvpx/source/libvpx/third_party/googletest/src/LICENSE
+sha256  5aec868f669e384a22372a4e8a1a6cd7d44c64cd451f960ca69cc170d1e13acf  chromium/third_party/libvpx/source/libvpx/third_party/libwebm/LICENSE.TXT
+sha256  2b2cc1180c7e6988328ad2033b04b80117419db9c4c584918bbb3cfec7e9364f  chromium/third_party/libvpx/source/libvpx/third_party/libyuv/LICENSE
+sha256  719d8fa235f2068e0ae6d6a7dceb0a7720d7840f0f0ebed29957989e6ded3cd8  chromium/third_party/libvpx/source/libvpx/third_party/x86inc/LICENSE
+sha256  5aec868f669e384a22372a4e8a1a6cd7d44c64cd451f960ca69cc170d1e13acf  chromium/third_party/libwebm/source/LICENSE.TXT
+sha256  6de6fe48ff7b249a51ec5522d1af618dd50effc6f030fd24e17878566ad2ca5d  chromium/third_party/libwebp/LICENSE
+sha256  c5c63674f8a83c4d2e385d96d1c670a03cb871ba2927755467017317878574bd  chromium/third_party/libxml/src/Copyright
+sha256  31346421254a3e6e12687cf17f19f6357ee73a617fa7b3d3ccefdcbabe49bdd3  chromium/third_party/libXNVCtrl/LICENSE
+sha256  7e48e290b6bfccc2ec1b297023a1d77f2fd87417f71fbb9f50aabef40a851819  chromium/third_party/libxslt/src/Copyright
+sha256  2b2cc1180c7e6988328ad2033b04b80117419db9c4c584918bbb3cfec7e9364f  chromium/third_party/libyuv/LICENSE
+sha256  0d4077a7055ead389c4c5a9a6ac4bb8b784fc6e9e37be2caf544fcceed26cb16  chromium/third_party/lottie/LICENSE
+sha256  6e3e0a978f1e136cb3efb89702f4314671581a0c70c9a52447669e00f7b129e8  chromium/third_party/lzma_sdk/LICENSE
+sha256  c3b124673c93872156757a934c75b498d68eec09510e25e549d9dc2013776499  chromium/third_party/mako/LICENSE
+sha256  0bbe88228fd63d20ec097f64e58d5a0a465123ae139140a18d406c60b48824b5  chromium/third_party/markupsafe/LICENSE
+sha256  58d1e17ffe5109a7ae296caafcadfdbe6a7d176f0bc4ab01e12a689b0499d8bd  chromium/third_party/material_design_icons/LICENSE
+sha256  536284e40c611f371f6ce5d74efac37a20d993cd3af96259b9b9e20b1669ff1e  chromium/third_party/mesa_headers/LICENSE
+sha256  845022e0c1db1abb41a6ba4cd3c4b674ec290f3359d9d3c78ae558d4c0ed9308  chromium/third_party/metrics_proto/LICENSE
+sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  chromium/third_party/microsoft_webauthn/LICENSE
+sha256  83bb6bd9ccd2cf5230cb1807ed16258289768dc4d9cb80069a814e04415a1275  chromium/third_party/minigbm/LICENSE
+sha256  8610954adbca6c6b85d8b1ae5613b44b0014e437d32fcad6683bb27541411686  chromium/third_party/minigbm/src/LICENSE
+sha256  4919cfb14a73cd64fcef67b107613970cf1659a09aa675dba31314f373bc7204  chromium/third_party/minizip/src/lib/bzip2/LICENSE
+sha256  87642305968765a4030fd202ff7006afa67274da7f9bde84506e51ae58ecc2b4  chromium/third_party/minizip/src/LICENSE
+sha256  bd5663836feb58ffb7d0e6b9e62010f4c3399f2bb0a4cf6514a15d597bbdd577  chromium/third_party/mocha/LICENSE
+sha256  380893a2f01aea5c3328b1a8b08cdc488bf236916abac3af0d1f1a5d2634c31a  chromium/third_party/mockito/LICENSE
+sha256  d47e8390fb0d7ad4a18f26aedd6283c7ab6b5b4fabab536ccb4db7f9f6d90c08  chromium/third_party/modp_b64/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/motemplate/LICENSE
+sha256  7a92c5e7a83b5ddcc693bb84ea8bdb842308509c1758cffdfe24717609154c75  chromium/third_party/mozilla/LICENSE
+sha256  1563996c52e220e15ef2418e67d39488255aa8c28c89e617074d3afe3ee329e0  chromium/third_party/nasm/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/nearby/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/nearby/src/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/netty4/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/netty-tcnative/LICENSE
+sha256  0cd1bd4b934ffdc5e7f1bcfa9d08bd17295e5414bdca99c06b1036278b01f0b1  chromium/third_party/node/LICENSE
+sha256  b5730da9a26472a405b0b1c61d3d166714d9d654ab3282e54e4a01a5f66316c3  chromium/third_party/objenesis/LICENSE
+sha256  0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594  chromium/third_party/ocmock/License.txt
+sha256  8bed129a6a15e631c93a624985e631eb62a55f7e072b78f4e1c3dde7c745283d  chromium/third_party/one_euro_filter/LICENSE
+sha256  a5a7cf90fe5ac9763baad852cf69cf9d9b89bff934a679fdc5c8fcecaeba9a25  chromium/third_party/opencv/src/LICENSE
+sha256  dd5c1c9668512530fa5a96e4c29ac4033d70a7eeb0eed7a42fddb6dd794ebdbb  chromium/third_party/openh264/src/LICENSE
+sha256  34a5c58db7cc4d3265d14a9aa26e38067fe114311d8bec31f909d1c240e626c4  chromium/third_party/openscreen/src/LICENSE
+sha256  284545e873c704952e5b1b39d457dd83a3b115a51d9f1eb5175137bd69b8fa1b  chromium/third_party/openscreen/src/third_party/mozilla/LICENSE.txt
+sha256  3c6ba0b5bfa7830505301ffb336a17b0748e0d61c4d34216e9dc98f10e40395e  chromium/third_party/openscreen/src/third_party/tinycbor/src/LICENSE
+sha256  8338ce8d922bb4416ce3dd1e5680173332435e3f0755007ac7801ccd674fe682  chromium/third_party/opus/src/COPYING
+sha256  7efb4989e0cd1b256229bdf2f09300c5d14e35db0e7476bfb87fac243498273d  chromium/third_party/opus/src/LICENSE_PLEASE_READ.txt
+sha256  0d74de3c3cd3196a9ed1bc612cfd5f81d7509d66c4be34a50f99d61bd1ad00d4  chromium/third_party/ots/LICENSE
+sha256  9dd8d2fb95ba862a5d166a167682c1c67a209acd3bf09b6fd03f76d3579729bc  chromium/third_party/ow2_asm/LICENSE
+sha256  76621fcfb65adfd6602b700708b74c8e20f3325b32f1a54bec83a5cf7c679f53  chromium/third_party/pdfium/LICENSE
+sha256  32759d1397d8f7b9e15ece146e4038b22b90e93b4935b5a840bcef4d2ba5ea55  chromium/third_party/pdfium/third_party/bigint/LICENSE
+sha256  bf5e22b9dce8464064ae17a48ea1133c3369ac9e1d80ef9e320e5219aa14ea9b  chromium/third_party/pdfium/third_party/libpng16/LICENSE
+sha256  c5b14f5a3814d2e57b9bb9520dcf57a2c3817b65c4f989e5c82e332c82af1038  chromium/third_party/pdfium/third_party/pymock/LICENSE.txt
+sha256  00564d497642465d7f96d109f38ff144997f0abc04ef167410f6b172ad5e92cd  chromium/third_party/perfetto/LICENSE
+sha256  80f13607677e9932bf08e5f0bc025f8d77bde813d62bf3d5465c709025710d3d  chromium/third_party/perfetto/src/trace_processor/python/LICENSE
+sha256  9f98bab33648b77578d85ac0f1d1c3941a72aa6d7e65015ba181f2fe804bb85d  chromium/third_party/pexpect/LICENSE
+sha256  a46200592eb193853527250da098e6bb0c75424e7a2c7db8da526c4f301c3d88  chromium/third_party/pffft/LICENSE
+sha256  dd4930c619afd8527591353c7d3d1c1d7f4bf62ed1cb411f4f507dbdee7738a2  chromium/third_party/ply/LICENSE
+sha256  d6c873c08a8806f08fdafe1aa00ba38837f6ac29f91d6b26510614b0df2001e0  chromium/third_party/ply/license.patch
+sha256  24699c6858472311aa9acc6c2b7112ff9de6e7792569158ba9e439deb0529ef6  chromium/third_party/polymer/LICENSE.polymer
+sha256  a5adc2955c0dd848c97aa6afb14e0047a610f0fcfa6ce0011efad01a0e051406  chromium/third_party/polymer/v1_0/components-chromium/polymer2/LICENSE.txt
+sha256  a5adc2955c0dd848c97aa6afb14e0047a610f0fcfa6ce0011efad01a0e051406  chromium/third_party/polymer/v3_0/components-chromium/polymer/LICENSE.txt
+sha256  58d1e17ffe5109a7ae296caafcadfdbe6a7d176f0bc4ab01e12a689b0499d8bd  chromium/third_party/private-join-and-compute/src/crypto/LICENSE
+sha256  58d1e17ffe5109a7ae296caafcadfdbe6a7d176f0bc4ab01e12a689b0499d8bd  chromium/third_party/private-join-and-compute/src/LICENSE
+sha256  58d1e17ffe5109a7ae296caafcadfdbe6a7d176f0bc4ab01e12a689b0499d8bd  chromium/third_party/private-join-and-compute/src/util/LICENSE
+sha256  432959ed8cca3b44d8dd8dda9c8bf84ef982aa0cfdf9782ad9cdedc4e1146f8b  chromium/third_party/private_membership/LICENSE
+sha256  294f58267c6f473c4ce7270bf5c8d34b2003cb43804552459654c36553431276  chromium/third_party/proguard/LICENSE
+sha256  6e5e117324afd944dcf67f36cf329843bc1a92229a8cd9bb573d7a83130fea7d  chromium/third_party/protobuf/LICENSE
+sha256  2ab28b982a7f3150e1597befaa87e1636b9973c80aef3752597945d270c4c4e4  chromium/third_party/pycoverage/LICENSE
+sha256  f8d0c347a0dcc6ebe1671640dfae8d2411b6ded892e06a6764f8208b218b2af4  chromium/third_party/pyelftools/elftools/construct/LICENSE
+sha256  f8c8ccecdbb044fd6fa1a586c596a055fb2b14fb3e335d8ed282db58d80b7410  chromium/third_party/pyelftools/LICENSE
+sha256  cb5e8e7e5f4a3988e1063c142c60dc2df75605f4c46515e776e3aca6df976e14  chromium/third_party/pyjson5/src/LICENSE
+sha256  318cea263a2fb726d767e2777771a431a3220008e6940dd5138a235a1fc498fc  chromium/third_party/pystache/LICENSE
+sha256  956c3b678228a216142df38d039bba56ee6509d3298e7a4b8dd5bc3eaa80fe33  chromium/third_party/Python-Markdown/LICENSE.md
+sha256  5a2954f05e7fcc1bf240a3b58534f974760b5aae02438ce875c9c7fe0bdb4cf9  chromium/third_party/pywebsocket3/src/LICENSE
+sha256  c903100da706172066fa1b6f02eba60f202fea63036492d2c4a01267e32aa7a8  chromium/third_party/qcms/src/COPYING
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/quic_trace/src/LICENSE
+sha256  38751245389e1e23f73e6f5384b5cbe7fa972cc4410c5adc9c04b082a0b9561a  chromium/third_party/quic_trace/src/third_party/fonts/LICENSE
+sha256  8991cd11befec7c6a63662700f03c0cc42e864b6e77c7e70b80297c951a7f0ff  chromium/third_party/quic_trace/src/third_party/glew/LICENSE.txt
+sha256  f98f3db81b4dd3873d8672117e409286142cfae9b7673ab6d7aab4bae1527d20  chromium/third_party/qunit/LICENSE
+sha256  68834f116f8ff545f05d14753357b620748156d60ee36b26beab4cb3f317efe4  chromium/third_party/r8/LICENSE
+sha256  6040cda75d90b1738292a631d89934c411ef7ffd543c4d6a1b7edfc8edf29449  chromium/third_party/re2/LICENSE
+sha256  6040cda75d90b1738292a631d89934c411ef7ffd543c4d6a1b7edfc8edf29449  chromium/third_party/re2/src/LICENSE
+sha256  e479bcdfa777738226b4282bf8536cc5416a25cec3100cbe210b8be4d1e2ed84  chromium/third_party/requests/LICENSE
+sha256  e2f59ff41d9d03adc3dcf3deff170f8c8cf4a6eb4a9b174762a7656d23200ffa  chromium/third_party/rnnoise/COPYING
+sha256  0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594  chromium/third_party/robolectric/LICENSE
+sha256  19c9b910bec5a4f2c420747d1bf81e975ffdb1377ad91c5d9b1e8dd3e38f4c17  chromium/third_party/robolectric/licenses/extreme.indiana.edu.license.txt
+sha256  a7436c952fa2dc0701860cf4187d1e8e8e6de6720dec0ae9e0b641bc50eebced  chromium/third_party/robolectric/licenses/javolution.license.txt
+sha256  5b6ac717e37db4f6d17bda7791f4ce3f99947aeb21e6e72b705aa3d1ee2de480  chromium/third_party/robolectric/licenses/pivotal.labs.license.txt
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/s2cellid/LICENSE
+sha256  3f941b3b89cf7b8370ceb83cc76d2120d471b58735d8ca60238a751a48d7f72f  chromium/third_party/schema_org/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/securemessage/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/securemessage/src/LICENSE
+sha256  2534ec1a8b4d0c28c4fc8e4712dec2c693681e3261241d35302d0fd9abe02ea7  chromium/third_party/shaderc/src/kokoro/linux/license_check_docker.sh
+sha256  5f832ba83b10050e308cdd072b5de1d873a25b4248c0ab58a0c52420276e06d2  chromium/third_party/shaderc/src/kokoro/linux/license_check.sh
+sha256  c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4  chromium/third_party/shaderc/src/LICENSE
+sha256  085e979c8a83de3843aeaa49d57c74327c0e35da177339b54b353e32e63b0ca9  chromium/third_party/shaderc/src/license-checker.cfg
+sha256  b5a00e94f058edc87e05978329b55730d8689abe61205d9018443d03de4f07da  chromium/third_party/shaderc/src/third_party/LICENSE.glslang
+sha256  47e20ce182bc68fab1a0cfb129b03c326aaf4f2b6b7905aa9d376d31018bd29f  chromium/third_party/shaderc/src/third_party/LICENSE.spirv-tools
+sha256  f1e9c0fdbee5f3a99152331418fd2ff44c08800486896667c1912ca5edf76f9e  chromium/third_party/shaka-player/LICENSE
+sha256  58d1e17ffe5109a7ae296caafcadfdbe6a7d176f0bc4ab01e12a689b0499d8bd  chromium/third_party/shell-encryption/src/glog/LICENSE
+sha256  bcf29b4fd3ec2cb5f9d40a0866da446f6da62170d2ccedf4aeca9cf9406dd20c  chromium/third_party/shell-encryption/src/LICENSE
+sha256  bcf29b4fd3ec2cb5f9d40a0866da446f6da62170d2ccedf4aeca9cf9406dd20c  chromium/third_party/shell-encryption/src/prng/LICENSE
+sha256  bcf29b4fd3ec2cb5f9d40a0866da446f6da62170d2ccedf4aeca9cf9406dd20c  chromium/third_party/shell-encryption/src/testing/LICENSE
+sha256  33c9a2fe619e1200937629f318895898ffcd1bf7d0ddd39adc382c030925e61e  chromium/third_party/simplejson/LICENSE.txt
+sha256  b25948e48c44312d04ffc626a9d52cae7c04539a1a8e0c1be47b7bfa0da03e1d  chromium/third_party/sinonjs/LICENSE
+sha256  8bb850c565aa389fdc16f3a46965ad23d82adff60f2393fc2762b63185e8e6c9  chromium/third_party/six/LICENSE
+sha256  8bb850c565aa389fdc16f3a46965ad23d82adff60f2393fc2762b63185e8e6c9  chromium/third_party/six/src/LICENSE
+sha256  e59bb5c5c6ba426a9ac4ba9fe667ad14c5166b12aa25be8af1d122b14fbe2e36  chromium/third_party/skia/include/third_party/skcms/LICENSE
+sha256  e59bb5c5c6ba426a9ac4ba9fe667ad14c5166b12aa25be8af1d122b14fbe2e36  chromium/third_party/skia/include/third_party/vulkan/LICENSE
+sha256  5f787c1dee3c56547f09ccc2906ab5f5293c4d8dd6c8654e573216c38e908dbd  chromium/third_party/skia/LICENSE
+sha256  d27678cba0d529e77201e2d2a053628143e986aad8f1e77f7039ad4366c8f978  chromium/third_party/skia/modules/canvaskit/canvaskit/LICENSE
+sha256  d27678cba0d529e77201e2d2a053628143e986aad8f1e77f7039ad4366c8f978  chromium/third_party/skia/modules/pathkit/npm-asmjs/LICENSE
+sha256  d27678cba0d529e77201e2d2a053628143e986aad8f1e77f7039ad4366c8f978  chromium/third_party/skia/modules/pathkit/npm-wasm/LICENSE
+sha256  5366e97b4478f15a1e2fd7e6094337426597df28de50cd9fed3f2e7e87f1229e  chromium/third_party/skia/third_party/etc1/LICENSE
+sha256  e59bb5c5c6ba426a9ac4ba9fe667ad14c5166b12aa25be8af1d122b14fbe2e36  chromium/third_party/skia/third_party/skcms/LICENSE
+sha256  e21477eed484b07902a861a1b18d1e4ecd3e6f22fa81e2410f0770cfb67290e8  chromium/third_party/skia/third_party/vulkanmemoryallocator/include/LICENSE.txt
+sha256  d27678cba0d529e77201e2d2a053628143e986aad8f1e77f7039ad4366c8f978  chromium/third_party/skia/third_party/vulkanmemoryallocator/LICENSE
+sha256  e59bb5c5c6ba426a9ac4ba9fe667ad14c5166b12aa25be8af1d122b14fbe2e36  chromium/third_party/skia/third_party/wuffs/LICENSE
+sha256  3f6f1b520bc53e878ccbb698ad0bacef3752a5f4e4b50a26552bd70f60b40748  chromium/third_party/smhasher/LICENSE
+sha256  55172044f7e241207117448a4d9d6ba1d0925c8ad66b5d4c08c70adfa9cc3de6  chromium/third_party/snappy/src/COPYING
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/spirv-cross/spirv-cross/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/spirv-headers/LICENSE
+sha256  9b243f6f0bf44e295ff411a0f7b7642d1d0dff7cdc42507e9f7206f439e51b5a  chromium/third_party/spirv-headers/src/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/SPIRV-Tools/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/SPIRV-Tools/src/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/SPIRV-Tools/src/utils/vscode/src/lsp/LICENSE
+sha256  0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594  chromium/third_party/sqlite4java/LICENSE
+sha256  06545a6ec25fbbff6c62f205f94a35be49e38f33bea827a8cfb07d7b82e4b083  chromium/third_party/sqlite/LICENSE
+sha256  66e056b6e8687f32af30d5187611b98b12a8f46f07aaf62f43585f276e8f0ac9  chromium/third_party/sqlite/src/autoconf/tea/license.terms
+sha256  9c6479123f32a1ed50d9a0af203dfe8972e65035b0cdeef436b5f8d0924517fe  chromium/third_party/sqlite/src/LICENSE.md
+sha256  033d0150b3bd78b36894c88fcc68da0c3f2e661d3b3485e8cc9a61b2c2bf7895  chromium/third_party/subresource-filter-ruleset/LICENSE
+sha256  28113a6e9e2fd7584187c738a7c5484452a1c383307a1741bec50a73262fac08  chromium/third_party/sudden_motion_sensor/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/swiftshader/LICENSE.txt
+sha256  ad4672b403488876635d2b455918f74b829d478da868ffc0c621a00fc99195f5  chromium/third_party/tcmalloc/LICENSE
+sha256  81ebf38708899097aacaac9723679b3ffa17640c14cd3193c46b75197de18b2c  chromium/third_party/tcmalloc/vendor/COPYING
+sha256  81e32dadf795edf077c0e567963e598b64f3c6b1ffa8ebac907bf01d3e7b2c1a  chromium/third_party/test_fonts/LICENSE
+sha256  c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4  chromium/third_party/text-fragments-polyfill/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/tint/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/tint/src/LICENSE
+sha256  bb04dd22ee55fe3c24ee2a3c82bd1efdebbd965f7c178224a2977edc2457bb2f  chromium/third_party/tlslite/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/turbine/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/ub-uiautomator/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/ukey2/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/ukey2/src/LICENSE
+sha256  0a90947436dc17f047f8c95b64593e2cc9a2b6d4ff6618f2f0beba5a9b568c14  chromium/third_party/unrar/LICENSE
+sha256  6ecc1687808b7d66b24f874755abfed7464d9751ed0001cd4e8e5d9bf397ff8a  chromium/third_party/unrar/src/license.txt
+sha256  6629d6edceffa9c68f4245b817137d2265fdab1e98068893420edb6689ccce9e  chromium/third_party/usb_ids/LICENSE
+sha256  7a4a31e05391919c05a996f09fc20ffc80c69af72cb3e69ac71b70c825fbdd1d  chromium/third_party/usrsctp/LICENSE
+sha256  fa53711b25af4b9a9b8dadfea3cb38166ec4b96760c8d62b284055554537d9ef  chromium/third_party/usrsctp/usrsctplib/LICENSE.md
+sha256  5a7f623a50e384aaf6d2ced068339ddf93d0a50d3a0ecbe86f125b07804ecc78  chromium/third_party/v4l-utils/COPYING.libv4l
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/vulkan_headers/LICENSE.txt
+sha256  2a2f96ba4c477fde4c90bb294c5ff9141b0a6ae51989261837e63124b9fd5313  chromium/third_party/vulkan_memory_allocator/LICENSE.txt
+sha256  602cb6e9e4c2697d1c5b25f8e55485b596a704d834d477b49b76795074210d9c  chromium/third_party/vulkan_memory_allocator/premake/LICENSE.txt
+sha256  376b54d4c5f4aa99421823fa4da93e3ab73096fce2400e89858632aa7da24a14  chromium/third_party/wds/LICENSE
+sha256  376b54d4c5f4aa99421823fa4da93e3ab73096fce2400e89858632aa7da24a14  chromium/third_party/wds/src/COPYING
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/web-animations-js/LICENSE
+sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  chromium/third_party/web-animations-js/sources/COPYING
+sha256  d51b39e7ed0391e75e0add75d1a162fdf4a0d6b49fba7635ed0ac4e16f324773  chromium/third_party/webdriver/COPYING
+sha256  6d83e980b9b843cf6fe24cb94714d00f9b0cf69cb00d0e3b0bed018d49d6f24f  chromium/third_party/webdriver/LICENSE
+sha256  fec8eb2896784d7b9ef5bcb1c64b97156455a3c88df4fdd36538fb55c0decac4  chromium/third_party/webgpu-cts/src/LICENSE.txt
+sha256  e30fbe869f1fa489901bb08888a919c5d50ddb5be6d16b9e4a2cb226263dd7db  chromium/third_party/webgpu-cts/src/standalone/third_party/jquery/LICENSE.txt
+sha256  18aab5821763cc13966eb59d4026fdb8f9f4e846fefbb429d43da0cb133dd2c4  chromium/third_party/webpagereplay/LICENSE
+sha256  25b7731b70c77ecd5f3bb19303fbaa99be18860f81d44f71da670fdcd04829db  chromium/third_party/webrtc/common_audio/third_party/ooura/LICENSE
+sha256  41d791701e3e1c1073470403de7e342442d1e6a2af72681023b13a2f45f2125c  chromium/third_party/webrtc/common_audio/third_party/spl_sqrt_floor/LICENSE
+sha256  0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594  chromium/third_party/webrtc/examples/androidapp/third_party/autobanh/LICENSE
+sha256  26d2d16d48825edf1194cb3907c5c0b7d01f9c5527eb0fefb949c51f304635e9  chromium/third_party/webrtc/examples/androidapp/third_party/autobanh/LICENSE.md
+sha256  21a742dd8cceebb1d5df7c6f945c75ccf1ad4f0d4c17e404517500c1a7de86a4  chromium/third_party/webrtc/examples/objc/AppRTCMobile/third_party/SocketRocket/LICENSE
+sha256  ab00a482b6a3902e40211b43c5d0441962ea99b6cc7c25c0f243fa270b78d482  chromium/third_party/webrtc/LICENSE
+sha256  1f7a086c17fa2bdbe27d3eb6424a64b9bea9d7db89a4e220fef52ca24addb9e9  chromium/third_party/webrtc/license_template.txt
+sha256  6fdbabd2c95c5efc6f1e46175278239afb9343120a3022ed0e0cb04267a6aeb3  chromium/third_party/webrtc/modules/third_party/fft/LICENSE
+sha256  b29c8f13f91feb2dab7d6655444369fa9f29c0d7121a52dab90ff97e40343a85  chromium/third_party/webrtc/modules/third_party/g711/LICENSE
+sha256  61862327fd00d6a4deb2c1276577782c2500f4fe103e072018fc369d8e37e876  chromium/third_party/webrtc/modules/third_party/g722/LICENSE
+sha256  641007ea2810c4cfc10a5d1a44db33983ec1409305e953c7119cc2457ec5c536  chromium/third_party/webrtc/modules/third_party/portaudio/LICENSE
+sha256  a508773ebf00f8c777a910e941e5fd0072195843e1b72a90eb8787d26d4ab1d7  chromium/third_party/webrtc/rtc_base/third_party/base64/LICENSE
+sha256  905bc5ab1c66eea2669aee6cb5185488508264df6492f71ae1a6595180ff8c2b  chromium/third_party/webrtc/rtc_base/third_party/sigslot/LICENSE
+sha256  eb077b108bac4c81abe7410274af0930456790add09a6fe5316910e2b936c0f9  chromium/third_party/webxr_test_pages/LICENSE
+sha256  eb077b108bac4c81abe7410274af0930456790add09a6fe5316910e2b936c0f9  chromium/third_party/webxr_test_pages/webxr-samples/js/cottontail/LICENSE.md
+sha256  47754d3064047c300714af25258efa782e144fdf1e835bfd1edbeb7f8f4ef9e4  chromium/third_party/webxr_test_pages/webxr-samples/js/third-party/dat.gui/LICENSE
+sha256  71819b5a0a080b6a3d35b3579817c2c558abcf3c92bb5abc052145a7c106573e  chromium/third_party/webxr_test_pages/webxr-samples/js/third-party/gl-matrix/LICENSE
+sha256  eb077b108bac4c81abe7410274af0930456790add09a6fe5316910e2b936c0f9  chromium/third_party/webxr_test_pages/webxr-samples/LICENSE.md
+sha256  88d855a8e07a39df758fe9964f5d04d5c2fab39416e566e9d91588e254ca27dc  chromium/third_party/weston/LICENSE
+sha256  fdb65868f65d0fbdb05c2d3b779e10ce9969fa0c4b9262ba4f260e87086ab860  chromium/third_party/weston/src/COPYING
+sha256  a34730970264d619f352598bf30295ad505a60fc3a493add8aa851645ce3ea47  chromium/third_party/weston/src/data/COPYING
+sha256  20de375707692099b3132084695377ce5fec0aec05813dedcce094b8eda44386  chromium/third_party/widevine/LICENSE
+sha256  d42a3e363d99da22b860ab760faa37dfa9781d74c9f3ed634d05109081616513  chromium/third_party/woff2/LICENSE
+sha256  0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594  chromium/third_party/wuffs/LICENSE
+sha256  0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594  chromium/third_party/wuffs/src/LICENSE
+sha256  c5ffbfeaa501071ceeb97b7de2c0d703fdaa35de01c0fb6cbac1c28453a3e9fd  chromium/third_party/xcbproto/src/COPYING
+sha256  b244f73c3d21edaf44ec253b9a7c389ec43313c417f52f8b71914b0c40d87325  chromium/third_party/xdg-utils/LICENSE
+sha256  1cf71700f3403ca26f002e2dc1d1861dcb3d2af9bb9d98d529a903be9d7f06fc  chromium/third_party/xstream/LICENSE
+sha256  942755efa272dbfbcd7afea7a38556801e36c16dcad002d572378367094a2593  chromium/third_party/zlib/LICENSE
+sha256  1744e977d24e20e77b1e97d745fe43779430a1b84247b6c0e89d16e116e7ff92  chromium/third_party/zxcvbn-cpp/LICENSE.txt
+sha256  a4c8c5abf82b36c22f8c9f8bd6229584f32eb9f7a2429dd9664dda43e63e9fda  chromium/tools/grit/third_party/six/LICENSE
+sha256  63f0c0039b477857e54708d9501ed91b7a46e828ac3c623bedbc318129ceb174  chromium/tools/origin_trials/third_party/ed25519/LICENSE
+sha256  f5b244982699ca9fe5cc8fa8a7c08cf5dee5d3a0c8896892899e5df13316e1b7  chromium/tools/page_cycler/acid3/LICENSE
+sha256  7389900fb68d920c6cb21b70702a2bc240523472a3fd091023d6135cf01d1c5c  chromium/tools/win/ChromeDebug/ChromeDebug/LICENSE
+sha256  284545e873c704952e5b1b39d457dd83a3b115a51d9f1eb5175137bd69b8fa1b  chromium/url/third_party/mozilla/LICENSE.txt
+sha256  f10a1808e442ae7dbfecf6b54ae4de84193a768770e189a67d5f397730acdbc9  chromium/v8/LICENSE
+sha256  e7115e18444dae09d17f361ddc365fb1d342640fe500796209c63f7c80dfae10  chromium/v8/LICENSE.fdlibm
+sha256  6a585a9f466654abc8fc0829d56b1bc987e3a073d31faa03bba37d33640a23cd  chromium/v8/LICENSE.strongtalk
+sha256  4af93c12062c58058378de2397dc1c92bbff9ddfb1d583a01c84127557ce97ca  chromium/v8/LICENSE.v8
+sha256  36ffd9dc085d529a7e60e1276d73ae5a030b020313e6c5408593a6ae2af39673  chromium/v8/src/third_party/siphash/LICENSE
+sha256  3f712e5fbdfdbd5ee7d9b8c8152580220df55de47f4eba2f26c95c4de19ad096  chromium/v8/src/third_party/utf8-decoder/LICENSE
+sha256  ebf25b8ce59c9e8883acd1ca75b6fc121937ca034f666c4077d2be739d2e1622  chromium/v8/src/third_party/valgrind/LICENSE
+sha256  cfe7599e45f340a35b4635090382897ca1526bc49b5e1889047f0168d131c415  chromium/v8/src/third_party/vtune/LICENSE
+sha256  15137d6c822e3ab097093a33c3a39a9df699f373f6438867ad534ff60762a947  chromium/v8/third_party/colorama/LICENSE
+sha256  b9be92f13356083392d97da13cab8ae543c7911f44eff5289b693da8b17b9e08  chromium/v8/third_party/inspector_protocol/LICENSE
+sha256  76c45ece83a26117f86f4e349e7df118708e061e87225328fb478ce1e8b3eb86  chromium/v8/third_party/jsoncpp/LICENSE
+sha256  b9a6d9320b8f2693e8d41e496ce56caadacaddcca9be2a64a61749278f425cf2  chromium/v8/third_party/v8/builtins/LICENSE
+sha256  c6596eb7be8581c18be736c846fb9173b69eccf6ef94c5135893ec56bd92ba08  chromium/v8/third_party/wasm-api/LICENSE
+sha256  5d85142a5609ad177a2d7a2e7cae060b886b8b42f25c5b9803cf0cb5ee04ad2f  gn/base/third_party/icu/LICENSE
+sha256  845022e0c1db1abb41a6ba4cd3c4b674ec290f3359d9d3c78ae558d4c0ed9308  gn/LICENSE
+sha256  eb7e9ab9690124c5c9f42bdc81383d886a3dede26345b6ed15bbad7caf81f7ea  ninja/COPYING
diff --git a/package/qt5/qt5webengine-chromium/qt5webengine-chromium.mk b/package/qt5/qt5webengine-chromium/qt5webengine-chromium.mk
new file mode 100644
index 0000000000..e6ac2706f2
--- /dev/null
+++ b/package/qt5/qt5webengine-chromium/qt5webengine-chromium.mk
@@ -0,0 +1,22 @@
+################################################################################
+#
+# qt5webengine-chromium
+#
+################################################################################
+
+QT5WEBENGINE_CHROMIUM_VERSION = 0ad2814370799a2161057d92231fe3ee00e2fe98
+QT5WEBENGINE_CHROMIUM_SITE = $(QT5_SITE)/qtwebengine-chromium/-/archive/$(QT5WEBENGINE_CHROMIUM_VERSION)
+QT5WEBENGINE_CHROMIUM_SOURCE = qtwebengine-chromium-$(QT5WEBENGINE_CHROMIUM_VERSION).tar.bz2
+QT5WEBENGINE_CHROMIUM_PATCH_DEPENDENCIES = qt5webengine-chromium-catapult
+
+include package/qt5/qt5webengine-chromium/chromium-latest.inc
+
+QT5WEBENGINE_CHROMIUM_LICENSE = BSD-3-Clause, GPL-2.0 or LGPL-3.0 or GPL-3.0 or GPL-3.0 with exception
+
+define QT5WEBENGINE_CHROMIUM_COPY_CATAPULT
+	rm -rf $(@D)/chromium/third_party/catapult
+	cp -a $(QT5WEBENGINE_CHROMIUM_CATAPULT_DIR) $(@D)/chromium/third_party/catapult
+endef
+QT5WEBENGINE_CHROMIUM_POST_PATCH_HOOKS += QT5WEBENGINE_CHROMIUM_COPY_CATAPULT
+
+$(eval $(generic-package))
diff --git a/package/qt5/qt5webengine/Config.in b/package/qt5/qt5webengine/Config.in
index 5d537cdf84..017c01a8e7 100644
--- a/package/qt5/qt5webengine/Config.in
+++ b/package/qt5/qt5webengine/Config.in
@@ -32,6 +32,7 @@ config BR2_PACKAGE_QT5WEBENGINE
 	depends on BR2_PACKAGE_QT5_GL_AVAILABLE # qt5declarative, qt5base-eglfs
 	depends on BR2_PACKAGE_HAS_LIBEGL # qt5base-eglfs
 	depends on BR2_PACKAGE_HAS_UDEV
+	select BR2_PACKAGE_HOST_NODEJS
 	# v8 (a chromium 3rd-party) compiles its internal host-tools with the
 	# same word size as the target. For 32-bits targets, it adds the -m32
 	# flag (for 64-bits, it adds the -m64 flag).
@@ -60,6 +61,7 @@ config BR2_PACKAGE_QT5WEBENGINE
 	select BR2_PACKAGE_XLIB_LIBXCOMPOSITE if BR2_PACKAGE_QT5BASE_XCB
 	select BR2_PACKAGE_XLIB_LIBXCURSOR if BR2_PACKAGE_QT5BASE_XCB
 	select BR2_PACKAGE_XLIB_LIBXI if BR2_PACKAGE_QT5BASE_XCB
+	select BR2_PACKAGE_XLIB_LIBXKBFILE if BR2_PACKAGE_QT5BASE_XCB
 	select BR2_PACKAGE_XLIB_LIBXRANDR if BR2_PACKAGE_QT5BASE_XCB
 	select BR2_PACKAGE_XLIB_LIBXSCRNSAVER if BR2_PACKAGE_QT5BASE_XCB
 	select BR2_PACKAGE_XLIB_LIBXTST if BR2_PACKAGE_QT5BASE_XCB
diff --git a/package/qt5/qt5webengine/chromium-latest.inc b/package/qt5/qt5webengine/chromium-latest.inc
deleted file mode 100644
index a5fdfdc1f1..0000000000
--- a/package/qt5/qt5webengine/chromium-latest.inc
+++ /dev/null
@@ -1,1000 +0,0 @@
-# (echo "QT5WEBENGINE_CHROMIUM_LICENSE_FILES = \\" ; \
-# 	find src/3rdparty/ -type f \
-#	\( -iname 'license*' -o -iname 'copying*' -o -name 'APPLE_LICENSE' -o -name 'Copyright' -o -path '*/license_texts/*' -o -path '*/licenses/*' \) \
-#	-a -not -name '*.cc' -not -name '*.py' -not -name '*.pyc' -not -name '*.h' -not -name 'LICENSE.sha1' -not -name 'licensecheck.pl*' -not -name 'license.after' -not -name 'license.before' | \
-#	sort | sed 's%^\(.*\)$%\t\1 \\%') > package/qt5/qt5webengine/chromium-latest.inc
-QT5WEBENGINE_CHROMIUM_LICENSE_FILES = \
-	src/3rdparty/chromium/base/third_party/cityhash/COPYING \
-	src/3rdparty/chromium/base/third_party/double_conversion/LICENSE \
-	src/3rdparty/chromium/base/third_party/dynamic_annotations/LICENSE \
-	src/3rdparty/chromium/base/third_party/icu/LICENSE \
-	src/3rdparty/chromium/base/third_party/libevent/LICENSE \
-	src/3rdparty/chromium/base/third_party/nspr/LICENSE \
-	src/3rdparty/chromium/base/third_party/superfasthash/LICENSE \
-	src/3rdparty/chromium/base/third_party/symbolize/LICENSE \
-	src/3rdparty/chromium/base/third_party/valgrind/LICENSE \
-	src/3rdparty/chromium/base/third_party/xdg_mime/LICENSE \
-	src/3rdparty/chromium/base/third_party/xdg_user_dirs/LICENSE \
-	src/3rdparty/chromium/buildtools/LICENSE \
-	src/3rdparty/chromium/LICENSE \
-	src/3rdparty/chromium/LICENSE.chromium_os \
-	src/3rdparty/chromium/mojo/public/LICENSE \
-	src/3rdparty/chromium/net/third_party/mozilla_security_manager/LICENSE \
-	src/3rdparty/chromium/net/third_party/nss/LICENSE \
-	src/3rdparty/chromium/net/third_party/quiche/src/LICENSE \
-	src/3rdparty/chromium/net/third_party/uri_template/LICENSE \
-	src/3rdparty/chromium/ppapi/LICENSE \
-	src/3rdparty/chromium/third_party/abseil-cpp/LICENSE \
-	src/3rdparty/chromium/third_party/angle/LICENSE \
-	src/3rdparty/chromium/third_party/angle/src/common/third_party/smhasher/LICENSE \
-	src/3rdparty/chromium/third_party/angle/src/common/third_party/xxhash/LICENSE \
-	src/3rdparty/chromium/third_party/angle/src/third_party/compiler/LICENSE \
-	src/3rdparty/chromium/third_party/angle/src/third_party/libXNVCtrl/LICENSE \
-	src/3rdparty/chromium/third_party/angle/src/third_party/volk/LICENSE.md \
-	src/3rdparty/chromium/third_party/angle/third_party/rapidjson/src/bin/jsonschema/LICENSE \
-	src/3rdparty/chromium/third_party/angle/third_party/rapidjson/src/contrib/natvis/LICENSE \
-	src/3rdparty/chromium/third_party/angle/third_party/rapidjson/src/license.txt \
-	src/3rdparty/chromium/third_party/angle/third_party/vulkan-headers/src/LICENSE.txt \
-	src/3rdparty/chromium/third_party/angle/third_party/vulkan-loader/src/LICENSE.txt \
-	src/3rdparty/chromium/third_party/angle/third_party/vulkan-tools/src/LICENSE.txt \
-	src/3rdparty/chromium/third_party/angle/tools/flex-bison/third_party/m4sugar/LICENSE \
-	src/3rdparty/chromium/third_party/angle/tools/flex-bison/third_party/skeletons/LICENSE \
-	src/3rdparty/chromium/third_party/angle/util/windows/third_party/StackWalker/LICENSE \
-	src/3rdparty/chromium/third_party/apple_apsl/LICENSE \
-	src/3rdparty/chromium/third_party/arcore-android-sdk-client/LICENSE \
-	src/3rdparty/chromium/third_party/arcore-android-sdk/LICENSE \
-	src/3rdparty/chromium/third_party/axe-core/LICENSE \
-	src/3rdparty/chromium/third_party/bazel/LICENSE \
-	src/3rdparty/chromium/third_party/blanketjs/LICENSE \
-	src/3rdparty/chromium/third_party/blink/LICENSE_FOR_ABOUT_CREDITS \
-	src/3rdparty/chromium/third_party/blink/renderer/core/LICENSE-APPLE \
-	src/3rdparty/chromium/third_party/blink/renderer/core/LICENSE-LGPL-2 \
-	src/3rdparty/chromium/third_party/blink/renderer/core/LICENSE-LGPL-2.1 \
-	src/3rdparty/chromium/third_party/blink/renderer/platform/testing/data/third_party/Noto/LICENSE_OFL.txt \
-	src/3rdparty/chromium/third_party/blink/renderer/platform/testing/data/third_party/Roboto/LICENSE.txt \
-	src/3rdparty/chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/LICENSE.md \
-	src/3rdparty/chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/enum/enum/LICENSE \
-	src/3rdparty/chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/h2/LICENSE \
-	src/3rdparty/chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/hpack/LICENSE \
-	src/3rdparty/chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/html5lib/LICENSE \
-	src/3rdparty/chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/hyperframe/LICENSE \
-	src/3rdparty/chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/six/LICENSE \
-	src/3rdparty/chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/wptserve/LICENSE \
-	src/3rdparty/chromium/third_party/boringssl/src/LICENSE \
-	src/3rdparty/chromium/third_party/boringssl/src/third_party/fiat/LICENSE \
-	src/3rdparty/chromium/third_party/boringssl/src/third_party/googletest/LICENSE \
-	src/3rdparty/chromium/third_party/boringssl/src/third_party/wycheproof_testvectors/LICENSE \
-	src/3rdparty/chromium/third_party/bouncycastle/LICENSE \
-	src/3rdparty/chromium/third_party/breakpad/breakpad/LICENSE \
-	src/3rdparty/chromium/third_party/breakpad/breakpad/src/third_party/curl/COPYING \
-	src/3rdparty/chromium/third_party/breakpad/breakpad/src/third_party/libdisasm/LICENSE \
-	src/3rdparty/chromium/third_party/breakpad/LICENSE \
-	src/3rdparty/chromium/third_party/brotli/LICENSE \
-	src/3rdparty/chromium/third_party/bspatch/LICENSE \
-	src/3rdparty/chromium/third_party/byte_buddy/LICENSE \
-	src/3rdparty/chromium/third_party/catapult/common/eslint/LICENSE \
-	src/3rdparty/chromium/third_party/catapult/common/py_vulcanize/third_party/rcssmin/bench/LICENSE.cssmin \
-	src/3rdparty/chromium/third_party/catapult/common/py_vulcanize/third_party/rcssmin/LICENSE \
-	src/3rdparty/chromium/third_party/catapult/common/py_vulcanize/third_party/rjsmin/LICENSE \
-	src/3rdparty/chromium/third_party/catapult/third_party/polymer/components/polymer/LICENSE.txt \
-	src/3rdparty/chromium/third_party/catapult/tracing/LICENSE \
-	src/3rdparty/chromium/third_party/catapult/tracing/third_party/chai/LICENSE \
-	src/3rdparty/chromium/third_party/catapult/tracing/third_party/d3/LICENSE \
-	src/3rdparty/chromium/third_party/catapult/tracing/third_party/devscripts/COPYING \
-	src/3rdparty/chromium/third_party/catapult/tracing/third_party/gl-matrix/LICENSE.md \
-	src/3rdparty/chromium/third_party/catapult/tracing/third_party/jpeg-js/LICENSE \
-	src/3rdparty/chromium/third_party/catapult/tracing/third_party/jszip/LICENSE.markdown \
-	src/3rdparty/chromium/third_party/catapult/tracing/third_party/mocha/LICENSE \
-	src/3rdparty/chromium/third_party/catapult/tracing/third_party/pako/LICENSE \
-	src/3rdparty/chromium/third_party/ced/LICENSE \
-	src/3rdparty/chromium/third_party/ced/src/LICENSE \
-	src/3rdparty/chromium/third_party/chaijs/LICENSE \
-	src/3rdparty/chromium/third_party/checkstyle/LICENSE \
-	src/3rdparty/chromium/third_party/checkstyle/LICENSE.apache20 \
-	src/3rdparty/chromium/third_party/cld_3/LICENSE \
-	src/3rdparty/chromium/third_party/cld_3/src/LICENSE \
-	src/3rdparty/chromium/third_party/closure_compiler/compiler/COPYING \
-	src/3rdparty/chromium/third_party/closure_compiler/LICENSE \
-	src/3rdparty/chromium/third_party/crashpad/crashpad/LICENSE \
-	src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/apple_cf/APPLE_LICENSE \
-	src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/cpp-httplib/cpp-httplib/LICENSE \
-	src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/getopt/LICENSE \
-	src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/glibc/COPYING.LIB \
-	src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/xnu/APPLE_LICENSE \
-	src/3rdparty/chromium/third_party/crc32c/src/LICENSE \
-	src/3rdparty/chromium/third_party/cros_system_api/LICENSE \
-	src/3rdparty/chromium/third_party/custom_tabs_client/LICENSE \
-	src/3rdparty/chromium/third_party/d3/src/LICENSE \
-	src/3rdparty/chromium/third_party/dav1d/libdav1d/COPYING \
-	src/3rdparty/chromium/third_party/dav1d/LICENSE \
-	src/3rdparty/chromium/third_party/dawn/LICENSE \
-	src/3rdparty/chromium/third_party/decklink/LICENSE \
-	src/3rdparty/chromium/third_party/devscripts/COPYING \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/cm/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/cm/LICENSE_python \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/cm_modes/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/dagre_layout/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/formatter_worker/acorn/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/sdk/wasm_source_map/LICENSES.deps \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/fabricjs/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/lighthouse/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/lit-html/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/lit-html/package/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/wasmparser/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/abbrev/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/accepts/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/acorn-jsx/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/acorn/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/acorn-walk/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ajv/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/amdefine/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ansi-colors/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ansi-escapes/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ansi-regex/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ansi-styles/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ansi-wrap/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/anymatch/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/append-transform/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/argparse/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/array-find-index/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/arr-diff/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/arr-union/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/asap/LICENSE.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/assert/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/assign-symbols/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/astral-regex/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ast-types/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/async/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/async-limiter/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/code-frame/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/generator/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/generator/node_modules/source-map/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-function-name/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-get-function-arity/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-split-export-declaration/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/highlight/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/parser/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/template/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/traverse/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/types/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/balanced-match/LICENSE.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/base64-arraybuffer/LICENSE-MIT \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/base64id/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/base64-js/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/binary-extensions/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/.bin/license-checker \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/blob/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/bluebird/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/body-parser/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/body-parser/node_modules/debug/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/body-parser/node_modules/ms/license.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/brace-expansion/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/braces/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/browserify-aes/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/browserify-cipher/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/browserify-des/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/browserify-rsa/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/browserify-sign/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/browserify-zlib/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/browser-resolve/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/browser-stdout/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/buffer-from/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/buffer/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/buffer-xor/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/builtin-status-codes/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/bytes/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/callsites/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/camelcase-keys/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/camelcase/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/chai/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/chalk/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/chardet/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/check-error/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/chokidar/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/chokidar/node_modules/glob-parent/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/cipher-base/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/cli-cursor/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/cliui/LICENSE.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/cli-width/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/clone/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/code-point-at/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/color-convert/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/color-name/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/colors/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/combine-source-map/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/combine-source-map/node_modules/convert-source-map/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/combine-source-map/node_modules/source-map/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/commander/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/compare-versions/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/component-emitter/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/concat-map/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/concat-stream/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/concat-stream/node_modules/readable-stream/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/concat-stream/node_modules/safe-buffer/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/concat-stream/node_modules/string_decoder/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/connect/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/connect/node_modules/debug/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/connect/node_modules/ms/license.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/content-type/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/convert-source-map/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/convert-source-map/node_modules/safe-buffer/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/cookie/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/core-js/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/core-util-is/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/create-ecdh/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/create-hash/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/create-hmac/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/cross-spawn/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/crypto-browserify/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/currently-unhandled/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/custom-event/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/date-format/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/dateformat/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/debug/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/debuglog/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/decamelize/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/deep-eql/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/deep-is/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/default-require-extensions/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/defaults/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/define-properties/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/depd/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/dezalgo/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/diffie-hellman/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/diff/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/diff-match-patch/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/di/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/doctrine/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/doctrine/LICENSE.closure-compiler \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/doctrine/LICENSE.esprima \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/domain-browser/LICENSE.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ee-first/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/emoji-regex/LICENSE-MIT.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/encodeurl/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/end-of-stream/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/engine.io-client/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/engine.io-client/node_modules/debug/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/engine.io-client/node_modules/ms/license.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/engine.io/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/engine.io/node_modules/debug/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/engine.io/node_modules/ms/license.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/engine.io-parser/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ent/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/error-ex/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/es6-object-assign/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/es6-promise/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/es-abstract/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/escape-html/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/escape-string-regexp/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/escodegen/LICENSE.BSD \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/escodegen/node_modules/esprima/LICENSE.BSD \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/eslint/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-mocha/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-rulesdir/LICENSE.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/eslint-scope/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/eslint-utils/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/eslint-visitor-keys/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/espree/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/esprima/LICENSE.BSD \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/esquery/license.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/es-to-primitive/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/estraverse/LICENSE.BSD \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/esutils/LICENSE.BSD \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/eventemitter3/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/events/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/evp_bytestokey/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/execa/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/extend/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/extend-shallow/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/external-editor/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/extract-zip/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/extract-zip/node_modules/debug/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/extract-zip/node_modules/ms/license.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/fast-deep-equal/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/fast-json-stable-stringify/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/fast-levenshtein/LICENSE.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/fd-slicer/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/figures/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/file-entry-cache/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/fileset/LICENSE-MIT \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/fill-range/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/finalhandler/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/finalhandler/node_modules/debug/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/finalhandler/node_modules/ms/license.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/find-up/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/flat-cache/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/flat-cache/node_modules/rimraf/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/flat/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/flatted/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/follow-redirects/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/follow-redirects/node_modules/debug/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/fsevents/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/fs-extra/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/fs.realpath/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/functional-red-black-tree/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/function-bind/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/get-caller-file/LICENSE.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/get-func-name/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/get-stream/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/globals/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/glob/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/glob-parent/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/glob-parent/node_modules/is-glob/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/graceful-fs/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/handlebars/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/has-binary2/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/has-flag/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/hash-base/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/has/LICENSE-MIT \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/has-symbols/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/he/LICENSE-MIT.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/hosted-git-info/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/http-errors/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/http-errors/node_modules/inherits/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/http-proxy/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/https-browserify/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/https-proxy-agent/node_modules/debug/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/iconv-lite/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ieee754/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ignore/LICENSE-MIT \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/import-fresh/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/indent-string/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/inflight/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/inherits/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/inline-source-map/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/inline-source-map/node_modules/source-map/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/inquirer/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/ansi-regex/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/strip-ansi/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/invert-kv/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-arguments/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-arrayish/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/isbinaryfile/LICENSE.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-binary-path/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-buffer/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-callable/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-date-object/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/isexe/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-extendable/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-extglob/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-finite/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-fullwidth-code-point/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-generator-function/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-glob/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-nan/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-number/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/isobject/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-plain-object/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-promise/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-regex/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-stream/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-symbol/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-api/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-diff/node_modules/minimist/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-lib-coverage/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-lib-hook/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-lib-instrument/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-lib-instrument/node_modules/semver/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-lib-report/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-lib-report/node_modules/supports-color/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-lib-source-maps/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-lib-source-maps/node_modules/rimraf/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/node_modules/async/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/node_modules/escodegen/LICENSE.BSD \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/node_modules/escodegen/LICENSE.source-map \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/node_modules/esprima/LICENSE.BSD \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/node_modules/estraverse/LICENSE.BSD \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/node_modules/glob/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/node_modules/has-flag/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/node_modules/source-map/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/node_modules/supports-color/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-reports/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-utf8/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/jsesc/LICENSE-MIT.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/jsonfile/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/json-parse-better-errors/LICENSE.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/json-schema-traverse/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/json-stable-stringify-without-jsonify/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/json-stringify-safe/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/js-tokens/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/js-yaml/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/js-yaml/node_modules/esprima/LICENSE.BSD \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-chai/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-chrome-launcher/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-coverage-istanbul-instrumenter/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-coverage-istanbul-reporter/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/LICENSE-istanbul \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/source-map/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-mocha/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-mocha/node_modules/minimist/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/rimraf/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-sourcemap-loader/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-typescript/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-typescript/node_modules/acorn/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-typescript/node_modules/async/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-typescript/node_modules/source-map/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-typescript/node_modules/tmp/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-typescript/node_modules/tmp/node_modules/rimraf/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/lcid/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/levn/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/license-checker/bin/license-checker \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/license-checker/lib/license-files.js \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/license-checker/lib/license.js \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/license-checker/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/license-checker/node_modules/debug/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/license-checker/node_modules/nopt/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/load-json-file/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/load-json-file/node_modules/pify/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/load-json-file/node_modules/strip-bom/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/locate-path/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/locate-path/node_modules/path-exists/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/lodash-deep/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/lodash/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/lodash.memoize/LICENSE.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/log4js/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/log-symbols/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/loud-rejection/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/lru-cache/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/make-dir/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/map-age-cleaner/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/map-obj/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/md5.js/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/media-typer/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mem/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mem/node_modules/mimic-fn/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/meow/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/meow/node_modules/minimist/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mime-db/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mime/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mime-types/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mimic-fn/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/minimalistic-assert/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/minimatch/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/minimist/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mkdirp/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mocha/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/ansi-colors/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/debug/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/diff/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/find-up/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/glob/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/ms/license.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/supports-color/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ms/license.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mute-stream/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/negotiator/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/neo-async/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/nice-try/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/nopt/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/normalize-package-data/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/normalize-package-data/node_modules/resolve/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/normalize-path/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/npm-run-path/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/number-is-nan/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/object-assign/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/object.assign/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/object.entries/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/object.getownpropertydescriptors/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/object-inspect/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/object-is/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/object-keys/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/omit-deep-lodash/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/once/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/onetime/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/on-finished/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/optimist/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/optimist/node_modules/wordwrap/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/optionator/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/os-browserify/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/osenv/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/os-homedir/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/os-locale/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/os-tmpdir/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pad/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pako/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/parent-module/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/parse-asn1/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/parse-json/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/parseqs/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/parseuri/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/parseurl/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/path-browserify/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/path-dirname/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/path-exists/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/path-is-absolute/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/path-key/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/path-parse/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/path-type/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/path-type/node_modules/pify/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pathval/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pbkdf2/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/p-defer/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pend/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/p-finally/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/picomatch/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pify/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pinkie/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pinkie-promise/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/p-is-promise/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/p-limit/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/p-locate/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/plugin-error/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/prelude-ls/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/private/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/process/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/process-nextick-args/license.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/progress/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pseudomap/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/p-try/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/public-encrypt/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pump/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/punycode/LICENSE-MIT.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/puppeteer/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/puppeteer/node_modules/rimraf/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/puppeteer/node_modules/ws/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/qs/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/querystring-es3/License.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/querystring/License.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ramda/LICENSE.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/randombytes/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/randomfill/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/range-parser/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/raw-body/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/readable-stream/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/readdirp/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/readdir-scoped-modules/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/read-installed/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/read-package-json/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/read-pkg/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/read-pkg-up/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/recast/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/recast/node_modules/esprima/LICENSE.BSD \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/redent/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/regexpp/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/remap-istanbul/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/repeating/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/require-directory/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/require-main-filename/LICENSE.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/requires-port/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/resolve-from/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/resolve/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/restore-cursor/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/rfdc/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/rimraf/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ripemd160/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/rollup/LICENSE.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/run-async/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/rxjs/_esm2015/LICENSE.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/rxjs/_esm5/LICENSE.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/rxjs/LICENSE.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/rxjs/src/LICENSE.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/safe-buffer/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/safer-buffer/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/semver/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/set-blocking/LICENSE.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/setimmediate/LICENSE.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/setprototypeof/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/sha.js/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/shebang-command/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/shebang-regex/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/signal-exit/LICENSE.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/slice-ansi/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/slide/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io-adapter/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io-client/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io-client/node_modules/debug/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io-client/node_modules/ms/license.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io/node_modules/debug/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io/node_modules/ms/license.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io-parser/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io-parser/node_modules/debug/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io-parser/node_modules/ms/license.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/source-map/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/spdx-compare/LICENSE.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/spdx-correct/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/spdx-expression-parse/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/spdx-ranges/LICENSE.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/spdx-satisfies/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/sprintf-js/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/statuses/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/stream-browserify/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/stream-browserify/node_modules/readable-stream/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/stream-browserify/node_modules/safe-buffer/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/stream-browserify/node_modules/string_decoder/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/stream-http/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/streamroller/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/streamroller/node_modules/debug/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/string_decoder/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimleft/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimright/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/string-width/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/strip-ansi/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/strip-bom/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/strip-eof/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/strip-indent/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/strip-json-comments/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/supports-color/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/table/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/table/node_modules/ansi-regex/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/table/node_modules/string-width/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/table/node_modules/strip-ansi/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/text-table/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/through2/LICENSE.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/through/LICENSE.APACHE2 \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/through/LICENSE.MIT \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/timers-browserify/LICENSE.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/tmp/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/to-fast-properties/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/toidentifier/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/to-regex-range/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/treeify/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/trim-newlines/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/tslib/LICENSE.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/tsutils/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/tty-browserify/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/type-check/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/typedarray/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/type-detect/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/type-is/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@types/chai/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@types/color-name/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/eslint-plugin/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/eslint-plugin/node_modules/regexpp/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/experimental-utils/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/experimental-utils/node_modules/eslint-scope/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/parser/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/typescript-estree/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/typescript-estree/node_modules/glob/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/typescript/LICENSE.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@types/eslint-visitor-keys/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@types/estree/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@types/filesystem/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@types/json-schema/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@types/mocha/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@types/node/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@types/puppeteer/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/uglify-js/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ultron/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/universalify/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/unpipe/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/url/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/url/node_modules/punycode/LICENSE-MIT.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/useragent/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/util-deprecate/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/util-extend/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/util/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/utils-merge/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/validate-npm-package-license/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/vm-browserify/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/void-elements/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/wcwidth/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/which/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/which-module/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/wide-align/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/wordwrap/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/ansi-regex/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/string-width/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/strip-ansi/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/wrappy/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/write/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ws/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ws/node_modules/safe-buffer/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/xmlhttprequest-ssl/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/xtend/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/y18n/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yallist/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/ansi-regex/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/ansi-styles/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/camelcase/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/cliui/LICENSE.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/color-convert/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/color-name/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/emoji-regex/LICENSE-MIT.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/find-up/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/is-fullwidth-code-point/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/locate-path/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/path-exists/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/p-locate/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/string-width/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/strip-ansi/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/wrap-ansi/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/yargs-parser/LICENSE.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs-parser/LICENSE.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs-parser/node_modules/camelcase/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/camelcase/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/find-up/license \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/get-caller-file/LICENSE.md \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/require-main-filename/LICENSE.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/yargs/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/yargs-parser/LICENSE.txt \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yauzl/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yeast/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/scripts/closure/COPYING \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/third_party/axe-core/LICENSE \
-	src/3rdparty/chromium/third_party/devtools-frontend/src/third_party/pyjson5/src/LICENSE \
-	src/3rdparty/chromium/third_party/dom_distiller_js/LICENSE \
-	src/3rdparty/chromium/third_party/dpkg-shlibdeps/LICENSE \
-	src/3rdparty/chromium/third_party/emoji-segmenter/LICENSE \
-	src/3rdparty/chromium/third_party/emoji-segmenter/src/LICENSE \
-	src/3rdparty/chromium/third_party/espresso/LICENSE \
-	src/3rdparty/chromium/third_party/expat/src/expat/COPYING \
-	src/3rdparty/chromium/third_party/ffmpeg/chromium/scripts/license_texts/full_lgpl.txt \
-	src/3rdparty/chromium/third_party/ffmpeg/chromium/scripts/license_texts/jpeg.txt \
-	src/3rdparty/chromium/third_party/ffmpeg/chromium/scripts/license_texts/mips.txt \
-	src/3rdparty/chromium/third_party/ffmpeg/chromium/scripts/license_texts/oggparse_ahlberg_rullgayrd_2005.txt \
-	src/3rdparty/chromium/third_party/ffmpeg/COPYING.GPLv2 \
-	src/3rdparty/chromium/third_party/ffmpeg/COPYING.GPLv3 \
-	src/3rdparty/chromium/third_party/ffmpeg/COPYING.LGPLv2.1 \
-	src/3rdparty/chromium/third_party/ffmpeg/COPYING.LGPLv3 \
-	src/3rdparty/chromium/third_party/ffmpeg/LICENSE.md \
-	src/3rdparty/chromium/third_party/flac/COPYING.FDL \
-	src/3rdparty/chromium/third_party/flac/COPYING.GPL \
-	src/3rdparty/chromium/third_party/flac/COPYING.LGPL \
-	src/3rdparty/chromium/third_party/flac/COPYING.Xiph \
-	src/3rdparty/chromium/third_party/flatbuffers/LICENSE \
-	src/3rdparty/chromium/third_party/flatbuffers/src/dart/LICENSE \
-	src/3rdparty/chromium/third_party/flatbuffers/src/LICENSE.txt \
-	src/3rdparty/chromium/third_party/fontconfig/LICENSE \
-	src/3rdparty/chromium/third_party/fontconfig/src/COPYING \
-	src/3rdparty/chromium/third_party/freetype/src/docs/LICENSE.TXT \
-	src/3rdparty/chromium/third_party/fuchsia-sdk/LICENSE \
-	src/3rdparty/chromium/third_party/gif_player/LICENSE \
-	src/3rdparty/chromium/third_party/glfw/src/LICENSE.md \
-	src/3rdparty/chromium/third_party/glslang/LICENSE \
-	src/3rdparty/chromium/third_party/glslang/src/LICENSE.txt \
-	src/3rdparty/chromium/third_party/googletest/src/googlemock/LICENSE \
-	src/3rdparty/chromium/third_party/googletest/src/googlemock/scripts/generator/LICENSE \
-	src/3rdparty/chromium/third_party/googletest/src/googletest/LICENSE \
-	src/3rdparty/chromium/third_party/googletest/src/LICENSE \
-	src/3rdparty/chromium/third_party/google-truth/LICENSE \
-	src/3rdparty/chromium/third_party/guava/LICENSE \
-	src/3rdparty/chromium/third_party/gvr-android-keyboard/LICENSE \
-	src/3rdparty/chromium/third_party/gvr-android-sdk/LICENSE \
-	src/3rdparty/chromium/third_party/hamcrest/LICENSE \
-	src/3rdparty/chromium/third_party/harfbuzz-ng/src/COPYING \
-	src/3rdparty/chromium/third_party/harfbuzz-ng/src/src/ms-use/COPYING \
-	src/3rdparty/chromium/third_party/hunspell/COPYING \
-	src/3rdparty/chromium/third_party/hunspell/COPYING.LESSER \
-	src/3rdparty/chromium/third_party/hunspell/COPYING.MPL \
-	src/3rdparty/chromium/third_party/iaccessible2/LICENSE \
-	src/3rdparty/chromium/third_party/iccjpeg/LICENSE \
-	src/3rdparty/chromium/third_party/icu4j/LICENSE \
-	src/3rdparty/chromium/third_party/icu/LICENSE \
-	src/3rdparty/chromium/third_party/icu/license.html \
-	src/3rdparty/chromium/third_party/icu/scripts/LICENSE \
-	src/3rdparty/chromium/third_party/ijar/LICENSE \
-	src/3rdparty/chromium/third_party/ink/LICENSE \
-	src/3rdparty/chromium/third_party/inspector_protocol/LICENSE \
-	src/3rdparty/chromium/third_party/isimpledom/LICENSE \
-	src/3rdparty/chromium/third_party/jacoco/LICENSE \
-	src/3rdparty/chromium/third_party/javalang/LICENSE \
-	src/3rdparty/chromium/third_party/jetifier_standalone/LICENSE \
-	src/3rdparty/chromium/third_party/jinja2/LICENSE \
-	src/3rdparty/chromium/third_party/jsoncpp/LICENSE \
-	src/3rdparty/chromium/third_party/jsoncpp/source/LICENSE \
-	src/3rdparty/chromium/third_party/jstemplate/COPYING \
-	src/3rdparty/chromium/third_party/khronos/LICENSE \
-	src/3rdparty/chromium/third_party/leveldatabase/src/LICENSE \
-	src/3rdparty/chromium/third_party/libaddressinput/LICENSE \
-	src/3rdparty/chromium/third_party/libaddressinput/src/cpp/LICENSE.chromium \
-	src/3rdparty/chromium/third_party/libaddressinput/src/LICENSE \
-	src/3rdparty/chromium/third_party/libaom/source/libaom/LICENSE \
-	src/3rdparty/chromium/third_party/libaom/source/libaom/third_party/fastfeat/LICENSE \
-	src/3rdparty/chromium/third_party/libaom/source/libaom/third_party/googletest/src/googletest/LICENSE \
-	src/3rdparty/chromium/third_party/libaom/source/libaom/third_party/libwebm/LICENSE.TXT \
-	src/3rdparty/chromium/third_party/libaom/source/libaom/third_party/vector/LICENSE \
-	src/3rdparty/chromium/third_party/libaom/source/libaom/third_party/x86inc/LICENSE \
-	src/3rdparty/chromium/third_party/libcxx-pretty-printers/LICENSE \
-	src/3rdparty/chromium/third_party/libgav1/src/LICENSE \
-	src/3rdparty/chromium/third_party/libgifcodec/LICENSE.md \
-	src/3rdparty/chromium/third_party/libipp/LICENSE \
-	src/3rdparty/chromium/third_party/libjingle_xmpp/LICENSE \
-	src/3rdparty/chromium/third_party/libjpeg_turbo/LICENSE.md \
-	src/3rdparty/chromium/third_party/libovr/LICENSE \
-	src/3rdparty/chromium/third_party/libpng/LICENSE \
-	src/3rdparty/chromium/third_party/libprotobuf-mutator/src/LICENSE \
-	src/3rdparty/chromium/third_party/libsecret/LICENSE \
-	src/3rdparty/chromium/third_party/libsrtp/LICENSE \
-	src/3rdparty/chromium/third_party/libsync/LICENSE \
-	src/3rdparty/chromium/third_party/libudev/LICENSE \
-	src/3rdparty/chromium/third_party/libusb/src/COPYING \
-	src/3rdparty/chromium/third_party/libvpx/source/libvpx/LICENSE \
-	src/3rdparty/chromium/third_party/libvpx/source/libvpx/third_party/googletest/src/LICENSE \
-	src/3rdparty/chromium/third_party/libvpx/source/libvpx/third_party/libwebm/LICENSE.TXT \
-	src/3rdparty/chromium/third_party/libvpx/source/libvpx/third_party/libyuv/LICENSE \
-	src/3rdparty/chromium/third_party/libvpx/source/libvpx/third_party/x86inc/LICENSE \
-	src/3rdparty/chromium/third_party/libwebm/source/LICENSE.TXT \
-	src/3rdparty/chromium/third_party/libwebp/LICENSE \
-	src/3rdparty/chromium/third_party/libxml/src/COPYING \
-	src/3rdparty/chromium/third_party/libxml/src/Copyright \
-	src/3rdparty/chromium/third_party/libXNVCtrl/LICENSE \
-	src/3rdparty/chromium/third_party/libxslt/linux/COPYING \
-	src/3rdparty/chromium/third_party/libxslt/src/Copyright \
-	src/3rdparty/chromium/third_party/libyuv/LICENSE \
-	src/3rdparty/chromium/third_party/lottie/LICENSE \
-	src/3rdparty/chromium/third_party/lzma_sdk/LICENSE \
-	src/3rdparty/chromium/third_party/mako/LICENSE \
-	src/3rdparty/chromium/third_party/markupsafe/LICENSE \
-	src/3rdparty/chromium/third_party/material_design_icons/LICENSE \
-	src/3rdparty/chromium/third_party/mesa_headers/LICENSE \
-	src/3rdparty/chromium/third_party/metrics_proto/LICENSE \
-	src/3rdparty/chromium/third_party/microsoft_webauthn/LICENSE \
-	src/3rdparty/chromium/third_party/minigbm/LICENSE \
-	src/3rdparty/chromium/third_party/minigbm/src/LICENSE \
-	src/3rdparty/chromium/third_party/minizip/src/lib/bzip2/LICENSE \
-	src/3rdparty/chromium/third_party/minizip/src/LICENSE \
-	src/3rdparty/chromium/third_party/mocha/LICENSE \
-	src/3rdparty/chromium/third_party/mockito/LICENSE \
-	src/3rdparty/chromium/third_party/modp_b64/LICENSE \
-	src/3rdparty/chromium/third_party/motemplate/LICENSE \
-	src/3rdparty/chromium/third_party/mozilla/LICENSE \
-	src/3rdparty/chromium/third_party/nasm/LICENSE \
-	src/3rdparty/chromium/third_party/netty4/LICENSE \
-	src/3rdparty/chromium/third_party/netty-tcnative/LICENSE \
-	src/3rdparty/chromium/third_party/node/LICENSE \
-	src/3rdparty/chromium/third_party/objenesis/LICENSE \
-	src/3rdparty/chromium/third_party/ocmock/License.txt \
-	src/3rdparty/chromium/third_party/one_euro_filter/LICENSE \
-	src/3rdparty/chromium/third_party/openh264/src/LICENSE \
-	src/3rdparty/chromium/third_party/openscreen/src/LICENSE \
-	src/3rdparty/chromium/third_party/openscreen/src/third_party/mozilla/LICENSE.txt \
-	src/3rdparty/chromium/third_party/openvr/src/LICENSE \
-	src/3rdparty/chromium/third_party/opus/src/COPYING \
-	src/3rdparty/chromium/third_party/opus/src/LICENSE_PLEASE_READ.txt \
-	src/3rdparty/chromium/third_party/ots/LICENSE \
-	src/3rdparty/chromium/third_party/ow2_asm/LICENSE \
-	src/3rdparty/chromium/third_party/pdfium/LICENSE \
-	src/3rdparty/chromium/third_party/pdfium/third_party/bigint/LICENSE \
-	src/3rdparty/chromium/third_party/pdfium/third_party/libpng16/LICENSE \
-	src/3rdparty/chromium/third_party/pdfium/third_party/pymock/LICENSE.txt \
-	src/3rdparty/chromium/third_party/perfetto/LICENSE \
-	src/3rdparty/chromium/third_party/pexpect/LICENSE \
-	src/3rdparty/chromium/third_party/pffft/LICENSE \
-	src/3rdparty/chromium/third_party/ply/LICENSE \
-	src/3rdparty/chromium/third_party/ply/license.patch \
-	src/3rdparty/chromium/third_party/polymer/LICENSE.polymer \
-	src/3rdparty/chromium/third_party/polymer/v1_0/components-chromium/polymer2/LICENSE.txt \
-	src/3rdparty/chromium/third_party/polymer/v1_0/components-chromium/polymer/LICENSE.txt \
-	src/3rdparty/chromium/third_party/polymer/v3_0/components-chromium/polymer/LICENSE.txt \
-	src/3rdparty/chromium/third_party/private-join-and-compute/src/crypto/LICENSE \
-	src/3rdparty/chromium/third_party/private-join-and-compute/src/LICENSE \
-	src/3rdparty/chromium/third_party/private-join-and-compute/src/util/LICENSE \
-	src/3rdparty/chromium/third_party/proguard/LICENSE \
-	src/3rdparty/chromium/third_party/protobuf/LICENSE \
-	src/3rdparty/chromium/third_party/pycoverage/LICENSE \
-	src/3rdparty/chromium/third_party/pyelftools/elftools/construct/LICENSE \
-	src/3rdparty/chromium/third_party/pyelftools/LICENSE \
-	src/3rdparty/chromium/third_party/pyjson5/src/LICENSE \
-	src/3rdparty/chromium/third_party/pymock/LICENSE.txt \
-	src/3rdparty/chromium/third_party/pystache/LICENSE \
-	src/3rdparty/chromium/third_party/Python-Markdown/LICENSE.md \
-	src/3rdparty/chromium/third_party/pywebsocket3/src/LICENSE \
-	src/3rdparty/chromium/third_party/qcms/src/COPYING \
-	src/3rdparty/chromium/third_party/quic_trace/src/LICENSE \
-	src/3rdparty/chromium/third_party/quic_trace/src/third_party/fonts/LICENSE \
-	src/3rdparty/chromium/third_party/quic_trace/src/third_party/glew/LICENSE.txt \
-	src/3rdparty/chromium/third_party/qunit/LICENSE \
-	src/3rdparty/chromium/third_party/r8/LICENSE \
-	src/3rdparty/chromium/third_party/re2/LICENSE \
-	src/3rdparty/chromium/third_party/re2/src/LICENSE \
-	src/3rdparty/chromium/third_party/requests/LICENSE \
-	src/3rdparty/chromium/third_party/rnnoise/COPYING \
-	src/3rdparty/chromium/third_party/robolectric/LICENSE \
-	src/3rdparty/chromium/third_party/robolectric/licenses/extreme.indiana.edu.license.txt \
-	src/3rdparty/chromium/third_party/robolectric/licenses/javolution.license.txt \
-	src/3rdparty/chromium/third_party/robolectric/licenses/pivotal.labs.license.txt \
-	src/3rdparty/chromium/third_party/s2cellid/LICENSE \
-	src/3rdparty/chromium/third_party/schema_org/LICENSE \
-	src/3rdparty/chromium/third_party/shaderc/src/LICENSE \
-	src/3rdparty/chromium/third_party/shaderc/src/third_party/LICENSE.glslang \
-	src/3rdparty/chromium/third_party/shaderc/src/third_party/LICENSE.spirv-tools \
-	src/3rdparty/chromium/third_party/simplejson/LICENSE.txt \
-	src/3rdparty/chromium/third_party/sinonjs/LICENSE \
-	src/3rdparty/chromium/third_party/six/LICENSE \
-	src/3rdparty/chromium/third_party/six/src/LICENSE \
-	src/3rdparty/chromium/third_party/skia/include/third_party/skcms/LICENSE \
-	src/3rdparty/chromium/third_party/skia/include/third_party/vulkan/LICENSE \
-	src/3rdparty/chromium/third_party/skia/LICENSE \
-	src/3rdparty/chromium/third_party/skia/modules/canvaskit/canvaskit/LICENSE \
-	src/3rdparty/chromium/third_party/skia/modules/pathkit/npm-asmjs/LICENSE \
-	src/3rdparty/chromium/third_party/skia/modules/pathkit/npm-wasm/LICENSE \
-	src/3rdparty/chromium/third_party/skia/third_party/etc1/LICENSE \
-	src/3rdparty/chromium/third_party/skia/third_party/skcms/LICENSE \
-	src/3rdparty/chromium/third_party/skia/third_party/vulkanmemoryallocator/include/LICENSE.txt \
-	src/3rdparty/chromium/third_party/skia/third_party/vulkanmemoryallocator/LICENSE \
-	src/3rdparty/chromium/third_party/skia/third_party/wuffs/LICENSE \
-	src/3rdparty/chromium/third_party/smhasher/LICENSE \
-	src/3rdparty/chromium/third_party/snappy/src/COPYING \
-	src/3rdparty/chromium/third_party/spirv-cross/spirv-cross/LICENSE \
-	src/3rdparty/chromium/third_party/spirv-headers/LICENSE \
-	src/3rdparty/chromium/third_party/spirv-headers/src/LICENSE \
-	src/3rdparty/chromium/third_party/SPIRV-Tools/LICENSE \
-	src/3rdparty/chromium/third_party/SPIRV-Tools/src/LICENSE \
-	src/3rdparty/chromium/third_party/SPIRV-Tools/src/utils/vscode/src/lsp/LICENSE \
-	src/3rdparty/chromium/third_party/sqlite4java/LICENSE \
-	src/3rdparty/chromium/third_party/sqlite/LICENSE \
-	src/3rdparty/chromium/third_party/sqlite/src/autoconf/tea/license.terms \
-	src/3rdparty/chromium/third_party/sqlite/src/LICENSE.md \
-	src/3rdparty/chromium/third_party/subresource-filter-ruleset/LICENSE \
-	src/3rdparty/chromium/third_party/sudden_motion_sensor/LICENSE \
-	src/3rdparty/chromium/third_party/swiftshader/LICENSE.txt \
-	src/3rdparty/chromium/third_party/tcmalloc/LICENSE \
-	src/3rdparty/chromium/third_party/tcmalloc/vendor/COPYING \
-	src/3rdparty/chromium/third_party/test_fonts/LICENSE \
-	src/3rdparty/chromium/third_party/tlslite/LICENSE \
-	src/3rdparty/chromium/third_party/turbine/LICENSE \
-	src/3rdparty/chromium/third_party/ub-uiautomator/LICENSE \
-	src/3rdparty/chromium/third_party/unrar/LICENSE \
-	src/3rdparty/chromium/third_party/unrar/src/license.txt \
-	src/3rdparty/chromium/third_party/usb_ids/LICENSE \
-	src/3rdparty/chromium/third_party/usrsctp/LICENSE \
-	src/3rdparty/chromium/third_party/usrsctp/usrsctplib/LICENSE.md \
-	src/3rdparty/chromium/third_party/v4l-utils/COPYING.libv4l \
-	src/3rdparty/chromium/third_party/wds/LICENSE \
-	src/3rdparty/chromium/third_party/wds/src/COPYING \
-	src/3rdparty/chromium/third_party/web-animations-js/LICENSE \
-	src/3rdparty/chromium/third_party/web-animations-js/sources/COPYING \
-	src/3rdparty/chromium/third_party/webdriver/COPYING \
-	src/3rdparty/chromium/third_party/webdriver/LICENSE \
-	src/3rdparty/chromium/third_party/webgpu-cts/src/LICENSE.txt \
-	src/3rdparty/chromium/third_party/webgpu-cts/src/third_party/jquery/LICENSE.txt \
-	src/3rdparty/chromium/third_party/webrtc/common_audio/third_party/fft4g/LICENSE \
-	src/3rdparty/chromium/third_party/webrtc/common_audio/third_party/spl_sqrt_floor/LICENSE \
-	src/3rdparty/chromium/third_party/webrtc/examples/androidapp/third_party/autobanh/LICENSE \
-	src/3rdparty/chromium/third_party/webrtc/examples/androidapp/third_party/autobanh/LICENSE.md \
-	src/3rdparty/chromium/third_party/webrtc/examples/objc/AppRTCMobile/third_party/SocketRocket/LICENSE \
-	src/3rdparty/chromium/third_party/webrtc/LICENSE \
-	src/3rdparty/chromium/third_party/webrtc/license_template.txt \
-	src/3rdparty/chromium/third_party/webrtc/modules/third_party/fft/LICENSE \
-	src/3rdparty/chromium/third_party/webrtc/modules/third_party/g711/LICENSE \
-	src/3rdparty/chromium/third_party/webrtc/modules/third_party/g722/LICENSE \
-	src/3rdparty/chromium/third_party/webrtc/modules/third_party/portaudio/LICENSE \
-	src/3rdparty/chromium/third_party/webrtc/rtc_base/third_party/base64/LICENSE \
-	src/3rdparty/chromium/third_party/webrtc/rtc_base/third_party/sigslot/LICENSE \
-	src/3rdparty/chromium/third_party/webxr_test_pages/LICENSE \
-	src/3rdparty/chromium/third_party/webxr_test_pages/webxr-samples/js/cottontail/LICENSE.md \
-	src/3rdparty/chromium/third_party/webxr_test_pages/webxr-samples/js/third-party/dat.gui/LICENSE \
-	src/3rdparty/chromium/third_party/webxr_test_pages/webxr-samples/js/third-party/gl-matrix/LICENSE \
-	src/3rdparty/chromium/third_party/webxr_test_pages/webxr-samples/LICENSE.md \
-	src/3rdparty/chromium/third_party/weston/LICENSE \
-	src/3rdparty/chromium/third_party/weston/src/COPYING \
-	src/3rdparty/chromium/third_party/weston/src/data/COPYING \
-	src/3rdparty/chromium/third_party/widevine/LICENSE \
-	src/3rdparty/chromium/third_party/woff2/LICENSE \
-	src/3rdparty/chromium/third_party/wuffs/LICENSE \
-	src/3rdparty/chromium/third_party/wuffs/src/LICENSE \
-	src/3rdparty/chromium/third_party/xdg-utils/LICENSE \
-	src/3rdparty/chromium/third_party/xstream/LICENSE \
-	src/3rdparty/chromium/third_party/yasm/source/patched-yasm/COPYING \
-	src/3rdparty/chromium/third_party/zlib/LICENSE \
-	src/3rdparty/chromium/tools/grit/third_party/six/LICENSE \
-	src/3rdparty/chromium/tools/origin_trials/third_party/ed25519/LICENSE \
-	src/3rdparty/chromium/tools/page_cycler/acid3/LICENSE \
-	src/3rdparty/chromium/tools/win/ChromeDebug/ChromeDebug/LICENSE \
-	src/3rdparty/chromium/url/third_party/mozilla/LICENSE.txt \
-	src/3rdparty/chromium/v8/LICENSE \
-	src/3rdparty/chromium/v8/LICENSE.fdlibm \
-	src/3rdparty/chromium/v8/LICENSE.strongtalk \
-	src/3rdparty/chromium/v8/LICENSE.v8 \
-	src/3rdparty/chromium/v8/LICENSE.valgrind \
-	src/3rdparty/chromium/v8/src/third_party/siphash/LICENSE \
-	src/3rdparty/chromium/v8/src/third_party/utf8-decoder/LICENSE \
-	src/3rdparty/chromium/v8/src/third_party/valgrind/LICENSE \
-	src/3rdparty/chromium/v8/src/third_party/vtune/LICENSE \
-	src/3rdparty/chromium/v8/third_party/colorama/LICENSE \
-	src/3rdparty/chromium/v8/third_party/inspector_protocol/LICENSE \
-	src/3rdparty/chromium/v8/third_party/v8/builtins/LICENSE \
-	src/3rdparty/chromium/v8/third_party/wasm-api/LICENSE \
-	src/3rdparty/gn/base/third_party/icu/LICENSE \
-	src/3rdparty/gn/LICENSE \
-	src/3rdparty/ninja/COPYING \
diff --git a/package/qt5/qt5webengine/qt5webengine.hash b/package/qt5/qt5webengine/qt5webengine.hash
index 6a631c0feb..1d2b70c4f6 100644
--- a/package/qt5/qt5webengine/qt5webengine.hash
+++ b/package/qt5/qt5webengine/qt5webengine.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtwebengine-everywhere-src-5.15.2.tar.xz.sha256
-sha256  c8afca0e43d84f7bd595436fbe4d13a5bbdb81ec5104d605085d07545b6f91e0  qtwebengine-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  fb7abcf88d4336d55565627e18b33df1855fefb0f12e24931b6a7decbe60913b  qtwebengine-v5.15.8-lts.tar.bz2
 
 # Locally calculated
 sha256  f34787ef0342c614b667186a6ec2f5d6b9d650e30142a2788a589a89743e88e9  LICENSE.Chromium
@@ -8,1000 +8,3 @@ sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  LICENS
 sha256  0dbe024961f6ab5c52689cbd036c977975d0d0f6a67ff97762d96cb819dd5652  LICENSE.GPL3-EXCEPT
 sha256  245248009fd0af1725d183248380e476c1283383909358a13686606352bf2a17  LICENSE.GPLv3
 sha256  9ae1959e86bd49b9680f78e0b49d4e52ae88a3f234d497e175e42a7e8ed59216  LICENSE.LGPL3
-
-# Locally calculated with:
-# for i in $(find src/3rdparty/ -type f \( -iname 'license*' -o -iname 'copying*' -o -name 'APPLE_LICENSE' -o -name 'Copyright' -o -path '*/license_texts/*' -o -path '*/licenses/*' \) -a -not -name '*.cc' -not -name '*.py' -not -name '*.pyc' -not -name '*.h' -not -name 'LICENSE.sha1' -not -name 'licensecheck.pl*' -not -name 'license.after' -not -name 'license.before') ; do echo -n "sha256  " ; sha256sum $i ; done | sort --key=3
-sha256  3ed00dd93c75655599456c83cba2f69c6824fd53f24fc24206ba27b65057709d  src/3rdparty/chromium/base/third_party/cityhash/COPYING
-sha256  4af93c12062c58058378de2397dc1c92bbff9ddfb1d583a01c84127557ce97ca  src/3rdparty/chromium/base/third_party/double_conversion/LICENSE
-sha256  96e7ccbf8d17e319dd77c4ebd4965b64a820bbcc3142a2478fbf95af77417b6a  src/3rdparty/chromium/base/third_party/dynamic_annotations/LICENSE
-sha256  5d85142a5609ad177a2d7a2e7cae060b886b8b42f25c5b9803cf0cb5ee04ad2f  src/3rdparty/chromium/base/third_party/icu/LICENSE
-sha256  9ad1d4223b80349f3d3ab9cec92f93431b9da14a1b5d41de468ce054a28cf8aa  src/3rdparty/chromium/base/third_party/libevent/LICENSE
-sha256  d55a403514532af12dc2fbfb2e41900090a5dd6c7c76c8e4d9b20bcc737eac35  src/3rdparty/chromium/base/third_party/nspr/LICENSE
-sha256  90b2201c340cee36b40a443f949d9eb416f0a0d204c32d350aff87fedeb67ae8  src/3rdparty/chromium/base/third_party/superfasthash/LICENSE
-sha256  538edc6f52c563cf06eca1bac8dd785ff60ef5a371a950265700d5d40386db6e  src/3rdparty/chromium/base/third_party/symbolize/LICENSE
-sha256  79955cd80438f041387eb080f2675394e36a806b8b17eca63a4bc568d839509e  src/3rdparty/chromium/base/third_party/valgrind/LICENSE
-sha256  c45766baef552c59eeb1fdfbbc690e52e4cd5b135dfd325f21bdfe8ddfe28ce6  src/3rdparty/chromium/base/third_party/xdg_mime/LICENSE
-sha256  18351de3d7e2dc469cc83e77d38a3e25d010251e34eb348bbd1a76275e313997  src/3rdparty/chromium/base/third_party/xdg_user_dirs/LICENSE
-sha256  7a209dd1b94cabdb5ea9c6f9164b9546ffa5daaa671e7767d49510db055f5c51  src/3rdparty/chromium/buildtools/LICENSE
-sha256  845022e0c1db1abb41a6ba4cd3c4b674ec290f3359d9d3c78ae558d4c0ed9308  src/3rdparty/chromium/LICENSE
-sha256  212c5a071f61512786b5e5840b3d70c85e017f3f82939ad4d4a870fc48b33477  src/3rdparty/chromium/LICENSE.chromium_os
-sha256  7a209dd1b94cabdb5ea9c6f9164b9546ffa5daaa671e7767d49510db055f5c51  src/3rdparty/chromium/mojo/public/LICENSE
-sha256  bed70fc84f1bea2b4b144564b9a0f9a5a3bc7b0d78f6e62092aeb689cac56bdd  src/3rdparty/chromium/net/third_party/mozilla_security_manager/LICENSE
-sha256  a20c1a32d1f8102432360b42e932869f7c11c7cdbacf9cac554c422132af47f4  src/3rdparty/chromium/net/third_party/nss/LICENSE
-sha256  845022e0c1db1abb41a6ba4cd3c4b674ec290f3359d9d3c78ae558d4c0ed9308  src/3rdparty/chromium/net/third_party/quiche/src/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/net/third_party/uri_template/LICENSE
-sha256  834ee20e8fc3235722ed801bae30cc539c2775be656ff9cc2810fe674e53d5ec  src/3rdparty/chromium/ppapi/LICENSE
-sha256  c79a7fea0e3cac04cd43f20e7b648e5a0ff8fa5344e644b0ee09ca1162b62747  src/3rdparty/chromium/third_party/abseil-cpp/LICENSE
-sha256  bf4da21bd20bcfb5b60b7ecc67fa864a79be049e21d6178076887f178dd6c71a  src/3rdparty/chromium/third_party/angle/LICENSE
-sha256  3f6f1b520bc53e878ccbb698ad0bacef3752a5f4e4b50a26552bd70f60b40748  src/3rdparty/chromium/third_party/angle/src/common/third_party/smhasher/LICENSE
-sha256  86ec6953794503942b70fcd4f35b565d44f63f703b7037ce44dad965c4aaae91  src/3rdparty/chromium/third_party/angle/src/common/third_party/xxhash/LICENSE
-sha256  a08ba10adec47027ef8078848729837b1c5a42f140718d7afd65c23f1eeec392  src/3rdparty/chromium/third_party/angle/src/third_party/compiler/LICENSE
-sha256  31346421254a3e6e12687cf17f19f6357ee73a617fa7b3d3ccefdcbabe49bdd3  src/3rdparty/chromium/third_party/angle/src/third_party/libXNVCtrl/LICENSE
-sha256  336f505f8d5aa73ea40b4d798dde86953e9c1f6525757f1d7f18120fea09bb1d  src/3rdparty/chromium/third_party/angle/src/third_party/volk/LICENSE.md
-sha256  837402bd25fad9b704265801ca3f92566a98157c1f9a7acd6f446299ba1c305a  src/3rdparty/chromium/third_party/angle/third_party/rapidjson/src/bin/jsonschema/LICENSE
-sha256  394faaedb93c1da8ecbd61322518834908fee64381117e01a611bf9fac20baa6  src/3rdparty/chromium/third_party/angle/third_party/rapidjson/src/contrib/natvis/LICENSE
-sha256  a140e5d46fe734a1c78f1a3c3ef207871dd75648be71fdda8e309b23ab8b1f32  src/3rdparty/chromium/third_party/angle/third_party/rapidjson/src/license.txt
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/angle/third_party/vulkan-headers/src/LICENSE.txt
-sha256  43c0a37e6a0fa7ff3c843b3ec5a4fac84b712558ddac103fbd4c1649662a9ece  src/3rdparty/chromium/third_party/angle/third_party/vulkan-loader/src/LICENSE.txt
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/angle/third_party/vulkan-tools/src/LICENSE.txt
-sha256  ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6  src/3rdparty/chromium/third_party/angle/tools/flex-bison/third_party/m4sugar/LICENSE
-sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  src/3rdparty/chromium/third_party/angle/tools/flex-bison/third_party/skeletons/LICENSE
-sha256  bfec18debedcb337f8af53f143ccf0b1575d0b7c30deaee137f10397eca0d353  src/3rdparty/chromium/third_party/angle/util/windows/third_party/StackWalker/LICENSE
-sha256  b23e682fda7310afe43505ed6041919ccff8f9e0c6799ebd7542cbcef11102e3  src/3rdparty/chromium/third_party/apple_apsl/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/arcore-android-sdk-client/LICENSE
-sha256  584e795ba5833279c327245594d6dc216fc664144fa3626a0bdf136bc00af76c  src/3rdparty/chromium/third_party/arcore-android-sdk/LICENSE
-sha256  af175b9d96ee93c21a036152e1b905b0b95304d4ae8c2c921c7609100ba8df7e  src/3rdparty/chromium/third_party/axe-core/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/bazel/LICENSE
-sha256  0518cf49c09398259d54fcfff0b5fd36456162c6439886660e53627b3073ef22  src/3rdparty/chromium/third_party/blanketjs/LICENSE
-sha256  a661d10f8f194b1963a75bb4d308f17b078cc064624313a556902d89705f6876  src/3rdparty/chromium/third_party/blink/LICENSE_FOR_ABOUT_CREDITS
-sha256  0b5d3a7cc325942567373b0ecd757d07c132e0ebd7c97bfc63f7e1a76094edb4  src/3rdparty/chromium/third_party/blink/renderer/core/LICENSE-APPLE
-sha256  7555fa34bc131a75ca56d65c40cc1ea8f9515d23e353d4c15d58573a042f7805  src/3rdparty/chromium/third_party/blink/renderer/core/LICENSE-LGPL-2
-sha256  f2b3bd09663381deb99721109d22b47af1213bb43007a8b56a06c6375c8050ce  src/3rdparty/chromium/third_party/blink/renderer/core/LICENSE-LGPL-2.1
-sha256  6a73f9541c2de74158c0e7cf6b0a58ef774f5a780bf191f2d7ec9cc53efe2bf2  src/3rdparty/chromium/third_party/blink/renderer/platform/testing/data/third_party/Noto/LICENSE_OFL.txt
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/blink/renderer/platform/testing/data/third_party/Roboto/LICENSE.txt
-sha256  5a7b465d39b5e018bc40cc34162176269f7c476989cb4dbcf0ec0b81701545a7  src/3rdparty/chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/LICENSE.md
-sha256  88ec6a6c8eafa3b9757e745783938bef3f5e4d5e3c76b1db576aa3ab520e5e1d  src/3rdparty/chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/enum/enum/LICENSE
-sha256  663f9253e13519b82ab4a6b1caab6bed05aada70517f28cd0254be8a9fa19ed6  src/3rdparty/chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/h2/LICENSE
-sha256  763a9342a04df62046c9dc748a5287934eb0a5331c6863b3ca0aee20e18cb4ed  src/3rdparty/chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/hpack/LICENSE
-sha256  16a39991619e92f18680932da2a9199fdf7d95df3ecaedc52ea06218aabafd6f  src/3rdparty/chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/html5lib/LICENSE
-sha256  763a9342a04df62046c9dc748a5287934eb0a5331c6863b3ca0aee20e18cb4ed  src/3rdparty/chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/hyperframe/LICENSE
-sha256  b7529b8c07171a78a8c36c3283905528e4812945d977d125eb926e8ccbf245b6  src/3rdparty/chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/six/LICENSE
-sha256  df336397e09e764416fc33b555703b1cdddd3a0cfea8a013ad1cad565c8be2f5  src/3rdparty/chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/wptserve/LICENSE
-sha256  60bd7c54856bf9387221bde5ab55d516d7cea15870d0fed69406bcd1c8ec7c9d  src/3rdparty/chromium/third_party/boringssl/src/LICENSE
-sha256  0c125a4dab5ab869473e6491db22f6c0a7f8a4de58588d03bb2b16c0c8ebd7de  src/3rdparty/chromium/third_party/boringssl/src/third_party/fiat/LICENSE
-sha256  9702de7e4117a8e2b20dafab11ffda58c198aede066406496bef670d40a22138  src/3rdparty/chromium/third_party/boringssl/src/third_party/googletest/LICENSE
-sha256  58d1e17ffe5109a7ae296caafcadfdbe6a7d176f0bc4ab01e12a689b0499d8bd  src/3rdparty/chromium/third_party/boringssl/src/third_party/wycheproof_testvectors/LICENSE
-sha256  5740985669353ef52e0f320413ff68dc62b6c23a596cd78b6d6b80764f1c50ab  src/3rdparty/chromium/third_party/bouncycastle/LICENSE
-sha256  f9752a0a4ac5215eaa3a4f0ec29cd52563c883de5d7870525cc0bc3a21cb8e15  src/3rdparty/chromium/third_party/breakpad/breakpad/LICENSE
-sha256  4d03f91b94e0db3bdc9ddaf0060dd41cc94a2096094fbc1417713a2f059658c7  src/3rdparty/chromium/third_party/breakpad/breakpad/src/third_party/curl/COPYING
-sha256  d8eaba95b8d03c5912da9b5823de2c920e84a993133039a22fc8100f9edb33a1  src/3rdparty/chromium/third_party/breakpad/breakpad/src/third_party/libdisasm/LICENSE
-sha256  015b2d5cedb3024339446a63963d073fa831544cf253c5ddd713fccc8d83e939  src/3rdparty/chromium/third_party/breakpad/LICENSE
-sha256  3d180008e36922a4e8daec11c34c7af264fed5962d07924aea928c38e8663c94  src/3rdparty/chromium/third_party/brotli/LICENSE
-sha256  98f8746a39f9a42da35df7046a15b56d0e2f4f76eefc352d67f1bf76e85360b4  src/3rdparty/chromium/third_party/bspatch/LICENSE
-sha256  b5730da9a26472a405b0b1c61d3d166714d9d654ab3282e54e4a01a5f66316c3  src/3rdparty/chromium/third_party/byte_buddy/LICENSE
-sha256  0154852797380b35195ecd829582f1efd00bfe244eab427a6bbf1e3f3dd57b1f  src/3rdparty/chromium/third_party/catapult/common/eslint/LICENSE
-sha256  65d4ed698fb5cbcd1d44c78bc6a02c5bf1da00df5395d2d6ac43bdafe6bc20dc  src/3rdparty/chromium/third_party/catapult/common/py_vulcanize/third_party/rcssmin/bench/LICENSE.cssmin
-sha256  c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4  src/3rdparty/chromium/third_party/catapult/common/py_vulcanize/third_party/rcssmin/LICENSE
-sha256  c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4  src/3rdparty/chromium/third_party/catapult/common/py_vulcanize/third_party/rjsmin/LICENSE
-sha256  984fb04a16a9f1e0145ffd891125dc366a01cd921f58c9b0369be400c720790d  src/3rdparty/chromium/third_party/catapult/third_party/polymer/components/polymer/LICENSE.txt
-sha256  f77133324f35589f9f170473456321fe76aa35b750293cb8a475e26afa8f2bac  src/3rdparty/chromium/third_party/catapult/tracing/LICENSE
-sha256  17afb4516438c26ee15213c5a082206340d976a68472b8eab2499d7bce4debec  src/3rdparty/chromium/third_party/catapult/tracing/third_party/chai/LICENSE
-sha256  1920d2326ebbad34dcbd9681b4fe4926f113aa5e7dc9a92fceb456d859ee142e  src/3rdparty/chromium/third_party/catapult/tracing/third_party/d3/LICENSE
-sha256  5a2ed53cc5975569e9fa146c4245eaf53377dc1a88bdcb923da6487e53cba55e  src/3rdparty/chromium/third_party/catapult/tracing/third_party/devscripts/COPYING
-sha256  e8b80a53d0f95a3cf0f992f8cfc6b3911a7f32f47e0e4a8d4fd66582eeae9484  src/3rdparty/chromium/third_party/catapult/tracing/third_party/gl-matrix/LICENSE.md
-sha256  be3fd324066af702fad2a9ef05664ce9665495ebc1824fd7b28960802ec7891e  src/3rdparty/chromium/third_party/catapult/tracing/third_party/jpeg-js/LICENSE
-sha256  aae03c510d63d96de72d37ce5650fbbac63b322d09ac0ee0df50b8950329e840  src/3rdparty/chromium/third_party/catapult/tracing/third_party/jszip/LICENSE.markdown
-sha256  1f194a987fa1dc60e4bcf5e04e0fc03fff8f2ee587c52136adb2cebb397250b8  src/3rdparty/chromium/third_party/catapult/tracing/third_party/mocha/LICENSE
-sha256  a04665b3b2de56c66730c1f720f528175739e4104f79073614aa611da1e85539  src/3rdparty/chromium/third_party/catapult/tracing/third_party/pako/LICENSE
-sha256  ef5b39dfcafe08323262e3f51a3a9de649978a55ed8ef8eef3c451f2c1e78a53  src/3rdparty/chromium/third_party/ced/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/ced/src/LICENSE
-sha256  3d1d2669d0ba87069b5e202f106193c4eb0e140a2aead31dca9670a0581dd979  src/3rdparty/chromium/third_party/chaijs/LICENSE
-sha256  a190dc9c8043755d90f8b0a75fa66b9e42d4af4c980bf5ddc633f0124db3cee7  src/3rdparty/chromium/third_party/checkstyle/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/checkstyle/LICENSE.apache20
-sha256  c2d13ec3b431617beb314705c0f42d17ca579eed00032ed8a13dbcd23fc9bdd5  src/3rdparty/chromium/third_party/cld_3/LICENSE
-sha256  c2d13ec3b431617beb314705c0f42d17ca579eed00032ed8a13dbcd23fc9bdd5  src/3rdparty/chromium/third_party/cld_3/src/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/closure_compiler/compiler/COPYING
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/closure_compiler/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/crashpad/crashpad/LICENSE
-sha256  212846e0145aa50fb3a5aef254a370311a93acf6c1e792e47e0068d64c8c3885  src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/apple_cf/APPLE_LICENSE
-sha256  4b45cbe16d7b71b89ae6127e26e0d90a029198ca5e958ad8e3d0b8bbed364d8b  src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/cpp-httplib/cpp-httplib/LICENSE
-sha256  f40ee07401827b6ac9cf0aee1aaffb00e42a3f2c729f9c83f96a3daafef5d944  src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/getopt/LICENSE
-sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/glibc/COPYING.LIB
-sha256  e5881019d8766c1e88a5fe1dbca4ba40c78011d41fcb18f6e9f50df60182685b  src/3rdparty/chromium/third_party/crashpad/crashpad/third_party/xnu/APPLE_LICENSE
-sha256  a1f30b77c01e0995fa32a00119e00749e8731ee8a3c4c3549bce74083c72b0b6  src/3rdparty/chromium/third_party/crc32c/src/LICENSE
-sha256  e9427cf6abc4eaeda0bcd094fca46af4067970079f426b65d5cbacb87bff6366  src/3rdparty/chromium/third_party/cros_system_api/LICENSE
-sha256  09e8a9bcec8067104652c168685ab0931e7868f9c8284b66f5ae6edae5f1130b  src/3rdparty/chromium/third_party/custom_tabs_client/LICENSE
-sha256  7a3cb0e5055874e67db9aa2d5fe26de23204fa994ffbad198901ffe9c812a717  src/3rdparty/chromium/third_party/d3/src/LICENSE
-sha256  b327887de263238deaa80c34cdd2ff3e0ba1d35db585ce14a37ce3e74ee389e9  src/3rdparty/chromium/third_party/dav1d/libdav1d/COPYING
-sha256  2da4494d2a8b5c742afbb905b10621e40129284c977ac138e3081ed0d9d83aed  src/3rdparty/chromium/third_party/dav1d/LICENSE
-sha256  b77e952e3feaebd807d27784988b19fb60f83f9fc9a0c03e6aedbbffd5d6f8ee  src/3rdparty/chromium/third_party/dawn/LICENSE
-sha256  43452b94e6aa0c2d076ad25b87f580c11571689d52f3aa1a1f7bdcab31a0bd15  src/3rdparty/chromium/third_party/decklink/LICENSE
-sha256  5a2ed53cc5975569e9fa146c4245eaf53377dc1a88bdcb923da6487e53cba55e  src/3rdparty/chromium/third_party/devscripts/COPYING
-sha256  a3f2fe2ac6b471aa80c737c5d283dd049bdc903a73835ee6d4d2cac02fdd53bf  src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/cm/LICENSE
-sha256  c6daa4e8737d15aa7140b4f7eb82b9d4829bd2fd27132c43e282203b9c67dfc4  src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/cm/LICENSE_python
-sha256  13110d66c514a7890c4b388a353bc08fa094fe13d5ed7f3a222cc0a0caa3fd17  src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/cm_modes/LICENSE
-sha256  9fea307fe830918e12b6822f943f4b59bd7715614efb68e834a141ca758bd5f2  src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/dagre_layout/LICENSE
-sha256  7cdb44aabddbdd78998119d68a39c87424119b663945c79891fc1b022301824c  src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/formatter_worker/acorn/LICENSE
-sha256  f734f7708439c275f3599e2df7de84cd9f360bd13620a30ab376af6c9deb213b  src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/sdk/wasm_source_map/LICENSES.deps
-sha256  b60e9b66bf4f9ab3aa5d1d20b18410a632fd624cf4ce3aa1eb839087caf35958  src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/fabricjs/LICENSE
-sha256  7ec9661a8afafab1eee3523d6f1a193eff76314a5ab10b4ce96aefd87621b0c3  src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/lighthouse/LICENSE
-sha256  55efdea1a9fe503ed3cd89c2776d3d2131795defaebea421754b428333fbfba3  src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/lit-html/LICENSE
-sha256  1a5ae5ab221af81b68f4f4c156c0d2e044851272c5e2e6c07d685946557878ea  src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/lit-html/package/LICENSE
-sha256  0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594  src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/wasmparser/LICENSE
-sha256  7a209dd1b94cabdb5ea9c6f9164b9546ffa5daaa671e7767d49510db055f5c51  src/3rdparty/chromium/third_party/devtools-frontend/src/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/abbrev/LICENSE
-sha256  71f83c4c0621102a56d9853812777b85751bce7e9726f686f5b056c1f8a4b0e6  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/accepts/LICENSE
-sha256  cfa72b62b9ae173078823a3796b25c027a9071046a263beddf966df67018ce06  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/acorn-jsx/LICENSE
-sha256  7cdb44aabddbdd78998119d68a39c87424119b663945c79891fc1b022301824c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/acorn/LICENSE
-sha256  7cdb44aabddbdd78998119d68a39c87424119b663945c79891fc1b022301824c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/acorn-walk/LICENSE
-sha256  e85e131fa4ed25538ff1f4962ced1fb6f68b079bd9164a790597a0f30b8fd030  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ajv/LICENSE
-sha256  ea97081f183590d87376f5fe73b7150c79863a73167f47ed87c41e191f89eb0b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/amdefine/LICENSE
-sha256  10e7818a114cf8b702a2263ad424b3cd9d34254df6039e47bb3f412000b0ae00  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ansi-colors/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ansi-escapes/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ansi-regex/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ansi-styles/license
-sha256  0798f37cff4a3f438c071316e41f94ffe110116a313ab0fc4f8caa07218f1f0f  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ansi-wrap/LICENSE
-sha256  5a3b0007c4203f10fe11b3fe8747253eb994f135e10b73e1f88ada941af09c6e  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/anymatch/LICENSE
-sha256  0b61ac8491c66669491fdb328200203822b91d2a0461f5cd898fe0944ea97e41  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/append-transform/license
-sha256  c8442419dc614089ea022b3da6bfc089b41a58fb7b9030d1e651f2f36189dce2  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/argparse/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/array-find-index/license
-sha256  f4a48aa8354a257785aa534bab2ac5ff2c2a98cd59cdf4a637bb68ee185683f7  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/arr-diff/LICENSE
-sha256  3672fb6ef1c214578dfee689643516c2685f61ab08d130517ca8ea24f383a840  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/arr-union/LICENSE
-sha256  e80373b1ed0f33cecc47173b4b0c6afe0d0318b32dbd84116a1a957e3f7f43a8  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/asap/LICENSE.md
-sha256  6239c6144c31e58cf925c34483606969c555574d64ffa96518ab5d7f45c75d43  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/assert/LICENSE
-sha256  0798f37cff4a3f438c071316e41f94ffe110116a313ab0fc4f8caa07218f1f0f  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/assign-symbols/LICENSE
-sha256  69dee148a2cc470554dfa7142e830662062394d0fe67cddd379aba90dc60d6b3  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/astral-regex/license
-sha256  a374b737c41b30b1ec04c5fcc17d1b853f008f217cc43a9dbea441abd9afde70  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ast-types/LICENSE
-sha256  d9fed24f132985934fca621c4dc1dfb53e03377a24d0568d424383d7eaa9c0ac  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/async/LICENSE
-sha256  e5a57cdd72e279910183799153134d0e749a5664fc459c8eacbecf72532b7db3  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/async-limiter/LICENSE
-sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/code-frame/LICENSE
-sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/generator/LICENSE
-sha256  6cb0631f71c7749763fd3dd1d5bee52dd1070ec17f2edc1710079ad070bd2fbd  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/generator/node_modules/source-map/LICENSE
-sha256  4e32449bd377d3dbced215dfd66dc234994c28e561aef73dbd29d6b5a1a00484  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-function-name/LICENSE
-sha256  517913953e6a69da35bccb95c2d801f70d73e8f267cdad1a1615bfe8974ad3ad  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-get-function-arity/LICENSE
-sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/helper-split-export-declaration/LICENSE
-sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/highlight/LICENSE
-sha256  2e97627cb278aa7556fb9e8817368302301a595b6c7582512b8d74c57b773652  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/parser/LICENSE
-sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/template/LICENSE
-sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/traverse/LICENSE
-sha256  117da2af0d4ce0fe1c8e19b5cff9dcd806adf973d328d27b11d4448c4ff24f76  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@babel/types/LICENSE
-sha256  a1bd5deadb6a06dd74efa852c1b8b23f63b67f2214fbe9c8bd591da51da69268  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/balanced-match/LICENSE.md
-sha256  f3eca6ff762533fa5a77caf954a143e48afa204668cf97dce758c45a9e006be3  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/base64-arraybuffer/LICENSE-MIT
-sha256  de6059eadd0c1327f30a22663392e57d36b97b0ac9bb48f4875c8008ba823c30  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/base64id/LICENSE
-sha256  5b37224c080cdcc97c871ada971c224e9926370fe74f11b539aa1cf9f3b1aca1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/base64-js/LICENSE
-sha256  85fe65eefab89e2a683232b96e6f689279821a0bd3b351e9ab6a6ebd19dea567  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/binary-extensions/license
-sha256  150d7707d4532d57bdb5718637ff62fff1f075921c5ffaa084df27f900bfea76  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/.bin/license-checker
-sha256  7d3e0d8d5604632b94ff9aea3001153c506566cd1c6c7bb37000acdb1fb37417  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/blob/LICENSE
-sha256  87092fe7ffd1e92eba5d1dd39b73a73fdb4fdd4df3474beacc3d9f6b08ece82c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/bluebird/LICENSE
-sha256  23d466b1b134b415b66fa50c6526b4cf3e7b9258554da88d3abb371721e7ce68  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/body-parser/LICENSE
-sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/body-parser/node_modules/debug/LICENSE
-sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/body-parser/node_modules/ms/license.md
-sha256  68f12f6e2c33688699249c01d8f9623c534da20aa71989c57b061b7bc1676d14  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/brace-expansion/LICENSE
-sha256  e70ff771504ba41f2be55de812a017ff46433d7a250c862e38fc419159e44500  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/braces/LICENSE
-sha256  82ba430b068b75a41438568e1e4ed1f96e02699c9b51735154af03e9b59d6b0d  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/browserify-aes/LICENSE
-sha256  dc09aa476634db0dbae1a296f099d5bd39e27c96b876d4d20b236fa565002bb6  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/browserify-cipher/LICENSE
-sha256  e54f1a2edadb1d8d3a482bcd0712acad2947337ae35e40ca34b22eb77940863f  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/browserify-des/license
-sha256  672eb2c2ad92bee7ef6c894f1431a66d7e8fdd7965cfdca5aa4fc206951a7c9c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/browserify-rsa/LICENSE
-sha256  a0e06d86a5a17341fa6134ee30ef18d73251cf32b8a577cdfd6aad6ad34af61d  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/browserify-sign/LICENSE
-sha256  ddd770379e07bf0574dfaa4485be80a23b3248b36d09f33ec79276c09b829daf  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/browserify-zlib/LICENSE
-sha256  0e91be39cb38da2972a6e0649dcd4e8a49595996b3ab4b04e72ef9ea71de9079  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/browser-resolve/LICENSE
-sha256  fd595a25dd3c90492a8cc3b888aa9ae47630173181efed17f71b4c689d99d0ec  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/browser-stdout/LICENSE
-sha256  14275f5c8139d02054c5259d52a88ccbba662a86af18c30f071c8d082dc6004c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/buffer-from/LICENSE
-sha256  06bafa45fdad2579ba0e43b0c9b2c6290287c99c4203c300254a462b38a307f6  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/buffer/LICENSE
-sha256  51ad9defd71911dbe413daf277bcb2e1077743f5ee5ae48d0a3b90a5b7486f55  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/buffer-xor/LICENSE
-sha256  f057f36739d53d228a746de4440c1e0c644ecde06d6beab45337d39c9d12a393  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/builtin-status-codes/license
-sha256  e3b44af066615de2ea48d18d852d0762f18c0b2efcea714fa48a6f729d405b85  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/bytes/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/callsites/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/camelcase-keys/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/camelcase/license
-sha256  b181da80336ff9dd1043fc8be1a764d7382363433319aa872e4d2cb5ce2a3066  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/chai/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/chalk/license
-sha256  7df1d6cf5b4112cbe277a84269e02ae631603a9a3a21b8328a34c30b8c3dd1ab  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/chardet/LICENSE
-sha256  e5aee0714b6ecc416454b968d1017570ef609f20d8722ab84b07acd550b78198  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/check-error/LICENSE
-sha256  db9ba183d4cbfbaf6c27db2effddbb84b46340c33ed32a066bc0b144a3ea1298  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/chokidar/LICENSE
-sha256  2c46f1325bd3822a33c1e2c1e49c18d13127ac00f9c8b3b79196c7a126f73cd9  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/chokidar/node_modules/glob-parent/LICENSE
-sha256  cf93ad78cfd5f3523248675aeb2a46e003367596883d4fa26a0c38d553ab0f61  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/cipher-base/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/cli-cursor/license
-sha256  2dc0465729366c3a7890dfa9e972a1ba7048a26c02116fb8b419a6a1ac110149  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/cliui/LICENSE.txt
-sha256  33fa5470b2195e410b075a32516b6ad27784b8a8ff74ae90cfd60c14b76e6644  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/cli-width/LICENSE
-sha256  3fb0857ef0133928cf72c88dfc464e931486e88778961eedec25585e2321507f  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/clone/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/code-point-at/license
-sha256  693866fc419c6f61c8570438ec00659d156ec2b4d4a4d04091711f5f11a365d4  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/color-convert/LICENSE
-sha256  7357445bac398c76c0aef75a587009fe406d40de6a79789eb5b7ecbbad317ef2  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/color-name/LICENSE
-sha256  77ffe84006509949525fd57df06f4a6a80ad862c5314b66ab5bb6ac4cee6280b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/colors/LICENSE
-sha256  1fa6ee8bb95a81ae3d73a5bd074a3ac380ffec13697051063ca1a601921b91db  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/combine-source-map/LICENSE
-sha256  1fa6ee8bb95a81ae3d73a5bd074a3ac380ffec13697051063ca1a601921b91db  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/combine-source-map/node_modules/convert-source-map/LICENSE
-sha256  6cb0631f71c7749763fd3dd1d5bee52dd1070ec17f2edc1710079ad070bd2fbd  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/combine-source-map/node_modules/source-map/LICENSE
-sha256  04512a63dce4d2d506ad612dc0bd7681ccf6e3655f7b6eaef7dfac8323d1ec0b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/commander/LICENSE
-sha256  d682394bef4a34d279b0237feecf145abadd6ec1e41cbb094592b8cc9fc2f34b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/compare-versions/LICENSE
-sha256  0f0b408b8b871d983e767528c6dc51e0ad7efaa022890c449fe2b2e1ee24dbb7  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/component-emitter/LICENSE
-sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/concat-map/LICENSE
-sha256  96b29c9aaa611a05349b362d48c2ffce0966fe408401a2d1a157be312c035b5f  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/concat-stream/LICENSE
-sha256  ec62dc96da0099b87f4511736c87309335527fb7031639493e06c95728dc8c54  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/concat-stream/node_modules/readable-stream/LICENSE
-sha256  c7cc929b57080f4b9d0c6cf57669f0463fc5b39906344dfc8d3bc43426b30eac  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/concat-stream/node_modules/safe-buffer/LICENSE
-sha256  11f2aafb37d06b3ee5bdaf06e9811141d0da05263c316f3d627f45c20d43261b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/concat-stream/node_modules/string_decoder/LICENSE
-sha256  9913ff70f23424d49fda2b05902cfb72f17ae1e48aaf898c349a284289a74751  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/connect/LICENSE
-sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/connect/node_modules/debug/LICENSE
-sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/connect/node_modules/ms/license.md
-sha256  257aed98914108e91a337912727b6a802eef218248507f74b76faffaff517a38  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/content-type/LICENSE
-sha256  1fa6ee8bb95a81ae3d73a5bd074a3ac380ffec13697051063ca1a601921b91db  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/convert-source-map/LICENSE
-sha256  c7cc929b57080f4b9d0c6cf57669f0463fc5b39906344dfc8d3bc43426b30eac  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/convert-source-map/node_modules/safe-buffer/LICENSE
-sha256  c02110eedc16c7114f1a9bdc026c65626ce1d9c7e27fd51a8e0feee8a48a6858  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/cookie/LICENSE
-sha256  722e1193901ad1ed4460753dded483d68ca2ad0528c67f86f76abc46b9aa25f5  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/core-js/LICENSE
-sha256  33b734d60042d0fe0c92dd1fc1e874193a1c899ec3e276a2eb935d2d0bf5b710  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/core-util-is/LICENSE
-sha256  d4ad87ad0bb7d57c17ae73b46e064243b972edc3036c38c222172c9600a20b56  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/create-ecdh/LICENSE
-sha256  cf93ad78cfd5f3523248675aeb2a46e003367596883d4fa26a0c38d553ab0f61  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/create-hash/LICENSE
-sha256  cf93ad78cfd5f3523248675aeb2a46e003367596883d4fa26a0c38d553ab0f61  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/create-hmac/LICENSE
-sha256  aaa78451b6fecd1b9c4594c796c133c0e90cad100372ff8bc6de615e9ef9adf1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/cross-spawn/LICENSE
-sha256  6134c69bc22c8289252e70de3af20bd67071233459055be74d83acfcc4865e7e  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/crypto-browserify/LICENSE
-sha256  0b61ac8491c66669491fdb328200203822b91d2a0461f5cd898fe0944ea97e41  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/currently-unhandled/license
-sha256  53ecc31e1632c07980cb0c97dcaf3d1d20323d21194b92150987a4fecf517b3c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/custom-event/LICENSE
-sha256  9660914267128b5f96a102bd7f6268c249110a39cb7c4bb7f536d856445d739c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/date-format/LICENSE
-sha256  e38ad5868b1e32ab44c63da6e58b8b58604d8d1dd90c40d171f2feaa756b088b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/dateformat/LICENSE
-sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/debug/LICENSE
-sha256  5f9e03a50e10f262f7bd356fe323b12f461f14dae6762611285a0d7479340ae7  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/debuglog/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/decamelize/license
-sha256  e5aee0714b6ecc416454b968d1017570ef609f20d8722ab84b07acd550b78198  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/deep-eql/LICENSE
-sha256  f2042f3634c4136d06b5139c9c6aefb81a3a462b514548bc1845953233dfba98  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/deep-is/LICENSE
-sha256  d7c67af00ef4ecd9bee06e010bb1fcd8d5f0ecb02fa1b73fe3ef030a88800d4b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/default-require-extensions/license
-sha256  b568428993e6acff80c1214dcc4f7195241772d5b3d23d92ee6bf5406a102896  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/defaults/LICENSE
-sha256  00d402c2bbe7c67369bd01ce2c16b8ed46ccc949a1ee2d6bb8f9606afa8c7434  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/define-properties/LICENSE
-sha256  bd47ce7b88c7759630d1e2b9fcfa170a0f1fde522be09e13fb1581a79d090400  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/depd/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/dezalgo/LICENSE
-sha256  db6109f994692150ed82cd904bb053c73b97b23678bf52047f747bfec11e1934  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/diffie-hellman/LICENSE
-sha256  152f0fb43e953fcf5c56c5bfa4c834bb96b1603e4026319c613dd3e734f305cf  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/diff/LICENSE
-sha256  58d1e17ffe5109a7ae296caafcadfdbe6a7d176f0bc4ab01e12a689b0499d8bd  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/diff-match-patch/LICENSE
-sha256  545278991ee5f1fb4372f913ec44837cff9395175140f8f21118074330a659cb  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/di/LICENSE
-sha256  5c272e206669b79ee20fa89fa8fa888d5b56186f16c55a5614753ad3412e2ae9  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/doctrine/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/doctrine/LICENSE.closure-compiler
-sha256  0e74697a68cebdcd61502c30fe80ab7f9e341d995dcd452023654d57133534b1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/doctrine/LICENSE.esprima
-sha256  8ffaa1b117e1c280023c8ef997a84a461133b972c8bade4579050e3e41835902  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/domain-browser/LICENSE.md
-sha256  965ef284f7f4c176842ec2e87fa13e79feed777d56d7a21a5a3b38f1bb6dc288  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ee-first/LICENSE
-sha256  483acb265f182907d1caf6cff9c16c96f31325ed23792832cc5d8b12d5f88c8a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/emoji-regex/LICENSE-MIT.txt
-sha256  7585ea7bba616ccbbe43cb54ecb67956688c3c5641bb84f3099a652a73193afe  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/encodeurl/LICENSE
-sha256  3fe8d55a98dbf260eace67c00cf9bc53edb46234e840098a0b93df3096b97fb6  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/end-of-stream/LICENSE
-sha256  bb996a5665c8e18041251e833e52b590f0da5050c1878aa3e3a47f71bb16fa6d  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/engine.io-client/LICENSE
-sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/engine.io-client/node_modules/debug/LICENSE
-sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/engine.io-client/node_modules/ms/license.md
-sha256  8e0349070612cb59fc604588974e193d8363f0a08752caf31d3f270a609d346a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/engine.io/LICENSE
-sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/engine.io/node_modules/debug/LICENSE
-sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/engine.io/node_modules/ms/license.md
-sha256  2a190271977c2ad47c85a9e08cc05d078fe9293643061d466d2ae89ce8e5c2f1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/engine.io-parser/LICENSE
-sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ent/LICENSE
-sha256  92b07a2e5b0e051d37dde85042c736d6d551cfcbc0983f39d7ef903b3986bbc1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/error-ex/LICENSE
-sha256  c2c31e096c312163e9a7a908a5209f335eb4c3381d6c404dd1e1b91fe65707fc  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/es6-object-assign/LICENSE
-sha256  da852e222c72bc04a0a9046aac35f2e5d33775a8ea9f1d8f59b1cfd195ef9bb0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/es6-promise/LICENSE
-sha256  00d402c2bbe7c67369bd01ce2c16b8ed46ccc949a1ee2d6bb8f9606afa8c7434  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/es-abstract/LICENSE
-sha256  255aa557a1f55224ce522f311629c0bf20854740a67955cefd798fbd1d3d1ded  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/escape-html/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/escape-string-regexp/license
-sha256  0e74697a68cebdcd61502c30fe80ab7f9e341d995dcd452023654d57133534b1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/escodegen/LICENSE.BSD
-sha256  94bcb9959136723aa4fb36e1a6c4d5c662a2369978cfae344dabfb83ae619e79  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/escodegen/node_modules/esprima/LICENSE.BSD
-sha256  db83f2ede67f36cfab1ea0721ea2ee97515863e9a65346881f305e430451cc91  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/eslint/LICENSE
-sha256  b67ae8fe5f32d0e6164655de53075cba04bb69c23e7d11efcfed6a0fa265ef64  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-mocha/LICENSE
-sha256  541c415066b6139f0fb6ad55f633abbc62f0ba6b54543f1ff00c762e76a90239  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/eslint-plugin-rulesdir/LICENSE.md
-sha256  d3a724e2ed749f172ff70b62a1d0631b7d4b0ea273782365a3464d4e2d6b6dbd  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/eslint-scope/LICENSE
-sha256  fcf6eabf68ca96988a6b506b4fdc6cc32535d80eb2e11c79724af5ac6f50262b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/eslint-utils/LICENSE
-sha256  d8bf34ff6d190640a01e7704ad78253fc181bc128949d71273fbbaa12f33c0b4  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/eslint-visitor-keys/LICENSE
-sha256  6273faa0d14a54972c0341a724010eb8cd928ee486745a9eea8cf80680ba5098  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/espree/LICENSE
-sha256  94bcb9959136723aa4fb36e1a6c4d5c662a2369978cfae344dabfb83ae619e79  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/esprima/LICENSE.BSD
-sha256  ac68116ae73740de4190892f334992e449a124600924ec761e64319d3aac9e6e  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/esquery/license.txt
-sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/es-to-primitive/LICENSE
-sha256  0e74697a68cebdcd61502c30fe80ab7f9e341d995dcd452023654d57133534b1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/estraverse/LICENSE.BSD
-sha256  0e74697a68cebdcd61502c30fe80ab7f9e341d995dcd452023654d57133534b1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/esutils/LICENSE.BSD
-sha256  3aecc12b1cb28832b5f65ab64291de96568c3f236a74d646281b4491f7bcadbf  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/eventemitter3/LICENSE
-sha256  631987b7616a325a5b97566c232418481ddf7dbb5ecadefb991e791876cc2599  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/events/LICENSE
-sha256  cf93ad78cfd5f3523248675aeb2a46e003367596883d4fa26a0c38d553ab0f61  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/evp_bytestokey/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/execa/license
-sha256  97af7428f93afbab9bf79cd09254da1357161794f4255eb1b4599f04dd2d2e7c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/extend/LICENSE
-sha256  9580cc528a1c38d1560a9d36e34404fe1ea9d8e6f44c596dac2a3104ef63cdab  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/extend-shallow/LICENSE
-sha256  e33b7bc13a0e5ea9ed6718e12e99a5b0b60276162f0195aa7f342397f4b0155d  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/external-editor/LICENSE
-sha256  77b2de947c65f3062fb347118ca198ca50898ead84a8509d8153fa65741f029b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/extract-zip/LICENSE
-sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/extract-zip/node_modules/debug/LICENSE
-sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/extract-zip/node_modules/ms/license.md
-sha256  7bf9b2de73a6b356761c948d0e9eeb4be6c1270bd04c79cd489c1e400ffdfc1a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/fast-deep-equal/LICENSE
-sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/fast-json-stable-stringify/LICENSE
-sha256  942a98cb8846a6354266193f173c1354615827fbb7d67f68399599dff12c4d6a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/fast-levenshtein/LICENSE.md
-sha256  176d95320d565cb034d8323797b6cd6160238f625453687f98aad2085c46c3b3  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/fd-slicer/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/figures/license
-sha256  c8c8324aff32c44f9e501aac5b3b97540c26af7d6dd6af8bce5e34300596e27d  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/file-entry-cache/LICENSE
-sha256  99513010b6a19894e01864cba86bf98291bef8251a302d90ab1a572d91ebacc8  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/fileset/LICENSE-MIT
-sha256  35bdd8a44339719441900fb50fbefc5e2dca1ca662cbaed7a687de842c8b70f2  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/fill-range/LICENSE
-sha256  24973d5320410e565ec92f18f73f12af7d97c634d414ba170d119fe3f98904c8  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/finalhandler/LICENSE
-sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/finalhandler/node_modules/debug/LICENSE
-sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/finalhandler/node_modules/ms/license.md
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/find-up/license
-sha256  c8c8324aff32c44f9e501aac5b3b97540c26af7d6dd6af8bce5e34300596e27d  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/flat-cache/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/flat-cache/node_modules/rimraf/LICENSE
-sha256  95a61f61553614db5421a2cefb17c22ff6b2b4b2206f5bc8913d04f72a22b033  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/flat/LICENSE
-sha256  5097efeab30293dd7e26d6960b6b94f1aeca958d22f1eca3535c482a891e95a9  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/flatted/LICENSE
-sha256  bfa8a54bb952ccda79f0f1889721d108f5b605babbb2b8a3705ffb52f4132eb7  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/follow-redirects/LICENSE
-sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/follow-redirects/node_modules/debug/LICENSE
-sha256  99de4c30f4643c00d4895d9c6ade0af4ec43d301449c191f5fbe41b53bb6a13a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/fsevents/LICENSE
-sha256  1e76029602ae9b21cc4e612db2496d92febed882ba13ba745f8b3309e85f9d39  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/fs-extra/LICENSE
-sha256  8465b04b67f473341171b5c9c8b2c741a4a395b3f6ed58339b3a4f4db3db7472  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/fs.realpath/LICENSE
-sha256  e67aed7df22dc8031e4fcf5338fe91cb33e3817e5c58a99a2a2802eea9069791  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/functional-red-black-tree/LICENSE
-sha256  773e131a7684726005a7e4688a80b4620033bc08499bc1404dd1a1eb3bca725e  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/function-bind/LICENSE
-sha256  902dbb4154679fb2b8d7c33878183f45b268d01eae5e5033dddaa8852d45f213  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/get-caller-file/LICENSE.md
-sha256  e5aee0714b6ecc416454b968d1017570ef609f20d8722ab84b07acd550b78198  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/get-func-name/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/get-stream/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/globals/license
-sha256  6236fa0b88a4a0cce3dda0367979491b2052b3c8d6b1c10b3668de083e86a7f0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/glob/LICENSE
-sha256  a2a19c04f527f7582fb2e58887f0a90f403732fc6accd7322287f0f5949b489e  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/glob-parent/LICENSE
-sha256  3672fb6ef1c214578dfee689643516c2685f61ab08d130517ca8ea24f383a840  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/glob-parent/node_modules/is-glob/LICENSE
-sha256  2fc5460f1526810979054ecd18cd01349b57f38ea56d1e920afdea34d104540c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/graceful-fs/LICENSE
-sha256  8a48a335d7dcc06e3da2bea89220cfe978394b1bc84a3e628e60bc4864917915  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/handlebars/LICENSE
-sha256  dc1fcc41f783463ed272ada875a7d3d1baf6c6279e5efada2c4ef2ca72db39e1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/has-binary2/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/has-flag/license
-sha256  898f204abbbbde58c6230a31842c59aeb8040fbcffa924db28e6d0b1d7631a3a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/hash-base/LICENSE
-sha256  4fe5fd7b3318def0b74f8bf8c9276403f01da628fa8888822661519d80f237d3  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/has/LICENSE-MIT
-sha256  206c1adcf206dc0031b11232f5b054ec5f1662407ab1ca415247921cab2068ab  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/has-symbols/LICENSE
-sha256  483acb265f182907d1caf6cff9c16c96f31325ed23792832cc5d8b12d5f88c8a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/he/LICENSE-MIT.txt
-sha256  c1476ec53119cd4c8370f91f5152ac76312a29b4fae2d49b5e0e0970fe0fa5ee  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/hosted-git-info/LICENSE
-sha256  dcb94ff9b1e037a847bc20589dc81a1066d041fd4c16deb18b0fa968c66cf395  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/http-errors/LICENSE
-sha256  5ffe28e7ade7d8f10d85d5337a73fd793dac5c462fb9a28fbf8c5046c7fbca3b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/http-errors/node_modules/inherits/LICENSE
-sha256  589850dfc0a1d39a97c592d618d5772f84aec2b11c6898e020acb985299f3bab  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/http-proxy/LICENSE
-sha256  ff151c00207c908581639851dd8504ce4255be0650b2b236edec2aa90342b0cd  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/https-browserify/LICENSE
-sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/https-proxy-agent/node_modules/debug/LICENSE
-sha256  ac779f7314c74f232ef847ea86e714abe25cf6eeb5cc97b69451b74e2af6492d  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/iconv-lite/LICENSE
-sha256  18d45466ba3253deae04667e267a91ea8de8548f18c1125264d1c9db28194cc1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ieee754/LICENSE
-sha256  9c94db23dc4b1e9aaee5d195668b916afc71efed54af226b66cf0ccc4389c1c0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ignore/LICENSE-MIT
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/import-fresh/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/indent-string/license
-sha256  05dc4d785ac3a488676d3ed10e901b75ad89dafcc63f8e66610fd4a39cc5c7e8  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/inflight/LICENSE
-sha256  5ffe28e7ade7d8f10d85d5337a73fd793dac5c462fb9a28fbf8c5046c7fbca3b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/inherits/LICENSE
-sha256  1fa6ee8bb95a81ae3d73a5bd074a3ac380ffec13697051063ca1a601921b91db  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/inline-source-map/LICENSE
-sha256  6cb0631f71c7749763fd3dd1d5bee52dd1070ec17f2edc1710079ad070bd2fbd  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/inline-source-map/node_modules/source-map/LICENSE
-sha256  e6c3f1bc47f97cdeef953f6c109b6392be0d059ae94659faf550e61b7a75ebc7  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/inquirer/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/ansi-regex/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/inquirer/node_modules/strip-ansi/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/invert-kv/license
-sha256  dc0fe5a22d9336f345ee984f9bf56f11f22877a3aa5fd16a1db9a8ca0e23a5d1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-arguments/LICENSE
-sha256  92b07a2e5b0e051d37dde85042c736d6d551cfcbc0983f39d7ef903b3986bbc1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-arrayish/LICENSE
-sha256  628a0b082ba17df4f4bcb7946d41988891d2b410b25927b995c2f632a0829676  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/isbinaryfile/LICENSE.txt
-sha256  85fe65eefab89e2a683232b96e6f689279821a0bd3b351e9ab6a6ebd19dea567  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-binary-path/license
-sha256  c7cc929b57080f4b9d0c6cf57669f0463fc5b39906344dfc8d3bc43426b30eac  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-buffer/LICENSE
-sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-callable/LICENSE
-sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-date-object/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/isexe/LICENSE
-sha256  4922620a5741e9d1bb43dde132021a982ae7c545eed1c6e00b555d6fe978005f  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-extendable/LICENSE
-sha256  73b5283588baa142c5baaef5f56d3e8fdea7a30b214e8c5737e87640f882453a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-extglob/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-finite/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-fullwidth-code-point/license
-sha256  dc0fe5a22d9336f345ee984f9bf56f11f22877a3aa5fd16a1db9a8ca0e23a5d1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-generator-function/LICENSE
-sha256  4cd903859549d4b20b571041f96dfae1136ed079c476126268f9d7cc1b611150  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-glob/LICENSE
-sha256  dc0fe5a22d9336f345ee984f9bf56f11f22877a3aa5fd16a1db9a8ca0e23a5d1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-nan/LICENSE
-sha256  35bdd8a44339719441900fb50fbefc5e2dca1ca662cbaed7a687de842c8b70f2  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-number/LICENSE
-sha256  0ead7e8cd8b0bc66a981ee69acaf1297ffa838cfce1b156a039bb24f997c0a27  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/isobject/LICENSE
-sha256  4cd903859549d4b20b571041f96dfae1136ed079c476126268f9d7cc1b611150  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-plain-object/LICENSE
-sha256  44191656d296391e0ec97e32f5385f0d02b6f2992694082d22ea04ba0f66f9e4  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-promise/LICENSE
-sha256  dc0fe5a22d9336f345ee984f9bf56f11f22877a3aa5fd16a1db9a8ca0e23a5d1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-regex/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-stream/license
-sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-symbol/LICENSE
-sha256  b661867c1d66a1b71ee3a6109159874334cd5c182a80d1bcc7353b5a4c6823c6  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-api/LICENSE
-sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-diff/node_modules/minimist/LICENSE
-sha256  e09f9b52c6ce5c17ba8103cd0cbf446c33b5448b0c1d01d711b36a1f15a501ba  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-lib-coverage/LICENSE
-sha256  e09f9b52c6ce5c17ba8103cd0cbf446c33b5448b0c1d01d711b36a1f15a501ba  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-lib-hook/LICENSE
-sha256  e09f9b52c6ce5c17ba8103cd0cbf446c33b5448b0c1d01d711b36a1f15a501ba  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-lib-instrument/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-lib-instrument/node_modules/semver/LICENSE
-sha256  e09f9b52c6ce5c17ba8103cd0cbf446c33b5448b0c1d01d711b36a1f15a501ba  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-lib-report/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-lib-report/node_modules/supports-color/license
-sha256  b661867c1d66a1b71ee3a6109159874334cd5c182a80d1bcc7353b5a4c6823c6  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-lib-source-maps/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-lib-source-maps/node_modules/rimraf/LICENSE
-sha256  d38a14ec66572a5588bba501f05eef0874e3ce929f0ddcb749c7557f4fdcb905  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/LICENSE
-sha256  4d3083ec594b158fd6adfdc6c9423ffe0746d2d93cebfb98f1a35b69da78051e  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/node_modules/async/LICENSE
-sha256  0e74697a68cebdcd61502c30fe80ab7f9e341d995dcd452023654d57133534b1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/node_modules/escodegen/LICENSE.BSD
-sha256  c9d85a24226fa4dd8c0756961de362cee34f6e9b1d19938bd480239950ad9a93  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/node_modules/escodegen/LICENSE.source-map
-sha256  4193a099a2c3ba864dd6b94f37e2fd80757d50796999d65adbca6a8c0f3a8e0a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/node_modules/esprima/LICENSE.BSD
-sha256  0e74697a68cebdcd61502c30fe80ab7f9e341d995dcd452023654d57133534b1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/node_modules/estraverse/LICENSE.BSD
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/node_modules/glob/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/node_modules/has-flag/license
-sha256  6cb0631f71c7749763fd3dd1d5bee52dd1070ec17f2edc1710079ad070bd2fbd  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/node_modules/source-map/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul/node_modules/supports-color/license
-sha256  e09f9b52c6ce5c17ba8103cd0cbf446c33b5448b0c1d01d711b36a1f15a501ba  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/istanbul-reports/LICENSE
-sha256  f481fe414a74f72c6b37890ad65e1d0b7c3f51be175b6d3e992fdcdb66882bd4  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/is-utf8/LICENSE
-sha256  483acb265f182907d1caf6cff9c16c96f31325ed23792832cc5d8b12d5f88c8a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/jsesc/LICENSE-MIT.txt
-sha256  a9801fb52ba22ef808682a094da8a7a480584b7ed0dfd0d888ab543616335031  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/jsonfile/LICENSE
-sha256  6cf2891dd0e66460f7d2ed83e1e3fe4b4b4c1a8c1f1f96c222a3466ad12ff197  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/json-parse-better-errors/LICENSE.md
-sha256  7bf9b2de73a6b356761c948d0e9eeb4be6c1270bd04c79cd489c1e400ffdfc1a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/json-schema-traverse/LICENSE
-sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/json-stable-stringify-without-jsonify/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/json-stringify-safe/LICENSE
-sha256  2213d91c606205c71eb051a199478cdc2adde945893404d7f1421436dd6d5cc1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/js-tokens/LICENSE
-sha256  a07bc24468b9654ce76a547d47a2db282d07733b715db4c73a98bd63961f9550  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/js-yaml/LICENSE
-sha256  94bcb9959136723aa4fb36e1a6c4d5c662a2369978cfae344dabfb83ae619e79  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/js-yaml/node_modules/esprima/LICENSE.BSD
-sha256  e3d4ed2aa50e7583730b1531034331ba9093c8bef7414234c7c9306db3858913  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-chai/LICENSE
-sha256  296b9a3c5e4eb7b79a6f1dca9a27ee31e48fe5c9d48a32ec31ac924b65ff287c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-chrome-launcher/LICENSE
-sha256  be13520ed43fa818f7bbe9d3a2beccaf1931421d818d35b42bdae3c127241ed3  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-coverage-istanbul-instrumenter/LICENSE
-sha256  55c6f6d52a0b60393333dd4e9d385957c7e784517daa9cfbf5b09ec812811eec  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-coverage-istanbul-reporter/LICENSE
-sha256  296b9a3c5e4eb7b79a6f1dca9a27ee31e48fe5c9d48a32ec31ac924b65ff287c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/LICENSE
-sha256  d38a14ec66572a5588bba501f05eef0874e3ce929f0ddcb749c7557f4fdcb905  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/LICENSE-istanbul
-sha256  6cb0631f71c7749763fd3dd1d5bee52dd1070ec17f2edc1710079ad070bd2fbd  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-coverage/node_modules/source-map/LICENSE
-sha256  6e4e577107740b24ebd73cb813be506861d706129e502ca7160683a5cea4c129  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma/LICENSE
-sha256  296b9a3c5e4eb7b79a6f1dca9a27ee31e48fe5c9d48a32ec31ac924b65ff287c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-mocha/LICENSE
-sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-mocha/node_modules/minimist/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma/node_modules/rimraf/LICENSE
-sha256  2b3adc1e55676b9443f76bdb17e42371de98a4be6abd3ae6e5f3590f6f3e4f6f  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-sourcemap-loader/LICENSE
-sha256  3c50a3d2df1468f5e7b723d4c931c1c7ba6775740aa1ef9fa49586ddb7b168fd  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-typescript/LICENSE
-sha256  7cdb44aabddbdd78998119d68a39c87424119b663945c79891fc1b022301824c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-typescript/node_modules/acorn/LICENSE
-sha256  d9fed24f132985934fca621c4dc1dfb53e03377a24d0568d424383d7eaa9c0ac  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-typescript/node_modules/async/LICENSE
-sha256  6cb0631f71c7749763fd3dd1d5bee52dd1070ec17f2edc1710079ad070bd2fbd  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-typescript/node_modules/source-map/LICENSE
-sha256  162413c61e0982abe89a06bf7a02ec760dc49a7364d838bd9f01daebb5b95954  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-typescript/node_modules/tmp/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/karma-typescript/node_modules/tmp/node_modules/rimraf/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/lcid/license
-sha256  b9eb082c39fe245e38793699074c394c43a722c51fce031c3c165cb92a31035c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/levn/LICENSE
-sha256  150d7707d4532d57bdb5718637ff62fff1f075921c5ffaa084df27f900bfea76  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/license-checker/bin/license-checker
-sha256  455629980585dfdadbdcbaf846659b65da3dd092ac9bfd10b07717a0e2f84ef5  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/license-checker/lib/license-files.js
-sha256  37932d5f93a7f9e762346358ae427e703d69fdaae6e7cd67158b35eea91c9eec  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/license-checker/lib/license.js
-sha256  adeb5a7f7d027ec14c3698be7a0f248978516ab39ccec4fb70689ba4753cdd67  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/license-checker/LICENSE
-sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/license-checker/node_modules/debug/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/license-checker/node_modules/nopt/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/load-json-file/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/load-json-file/node_modules/pify/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/load-json-file/node_modules/strip-bom/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/locate-path/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/locate-path/node_modules/path-exists/license
-sha256  d778ae0088806b771424967d88efb68f3adb3705c31c3b7c0a052fe2eebd5268  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/lodash-deep/LICENSE
-sha256  f71e8ed126b46346494aad5486874cd8f0aafe95092ed67d2e3cb6110f939abc  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/lodash/LICENSE
-sha256  90df9e2220f682e1f77e24b1c0f72d2de18b818096c957a65698e74c41a4826f  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/lodash.memoize/LICENSE.txt
-sha256  66da8b277e527c270de6abc57727c58032267d161a81dbac02c3eed45fd13366  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/log4js/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/log-symbols/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/loud-rejection/license
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/lru-cache/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/make-dir/license
-sha256  3d3fba5375126ff321d3a51938899d744b1189896618e0f2d088d9e1ebf2822a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/map-age-cleaner/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/map-obj/license
-sha256  898f204abbbbde58c6230a31842c59aeb8040fbcffa924db28e6d0b1d7631a3a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/md5.js/LICENSE
-sha256  74d8054d56d522bdaa340d3d71130cb204997d523a5292c85ac1264dd77c8d06  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/media-typer/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mem/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mem/node_modules/mimic-fn/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/meow/license
-sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/meow/node_modules/minimist/LICENSE
-sha256  965ef284f7f4c176842ec2e87fa13e79feed777d56d7a21a5a3b38f1bb6dc288  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mime-db/LICENSE
-sha256  8f2658c03422c408b2b2ce4d151decc3b1a6fd3d86e5ca9433777bccdcdf75a2  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mime/LICENSE
-sha256  71f83c4c0621102a56d9853812777b85751bce7e9726f686f5b056c1f8a4b0e6  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mime-types/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mimic-fn/license
-sha256  136fee1129ea96ce18b41c26a72f5d4ba196ee41bfd73b55d0b8509cdda148e9  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/minimalistic-assert/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/minimatch/LICENSE
-sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/minimist/LICENSE
-sha256  05991c2e8f070b69ec5b656c2c12fd07cd0153dd157d39b050b82af59b319a01  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mkdirp/LICENSE
-sha256  bd5663836feb58ffb7d0e6b9e62010f4c3399f2bb0a4cf6514a15d597bbdd577  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mocha/LICENSE
-sha256  94e1923e52409cfd50e97988d9772c0de15f65700097e3227fec367a39e82b94  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/ansi-colors/LICENSE
-sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/debug/LICENSE
-sha256  152f0fb43e953fcf5c56c5bfa4c834bb96b1603e4026319c613dd3e734f305cf  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/diff/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/find-up/license
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/glob/LICENSE
-sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/ms/license.md
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mocha/node_modules/supports-color/license
-sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ms/license.md
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mute-stream/LICENSE
-sha256  553d4d20029a24e315b428a1a54a9e109eaa340f2e958a4f50a92362c2c4070b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/negotiator/LICENSE
-sha256  811238ba7d85f6fe6b820703a32f92705bcf77bc352ddc3476783491c64a129a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/neo-async/LICENSE
-sha256  bd220c219b05e6c22b7c23613ca926f60932d07c9fe141dd6e04b80dbc4b4e52  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/nice-try/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/nopt/LICENSE
-sha256  d16b2b8c511d9f2bef8bbf49f0e2a94f032b6b8d181f71c83912c34c116a02e1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/normalize-package-data/LICENSE
-sha256  60acd7711e6c138e6041836e32d922705254cc1568a30fdf16aa8f59bb87aeaa  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/normalize-package-data/node_modules/resolve/LICENSE
-sha256  e70ff771504ba41f2be55de812a017ff46433d7a250c862e38fc419159e44500  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/normalize-path/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/npm-run-path/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/number-is-nan/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/object-assign/license
-sha256  a596744eec6b05682ed972bf93937668bbc8da2caed93fbf6510389de019b5c0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/object.assign/LICENSE
-sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/object.entries/LICENSE
-sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/object.getownpropertydescriptors/LICENSE
-sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/object-inspect/LICENSE
-sha256  dc0fe5a22d9336f345ee984f9bf56f11f22877a3aa5fd16a1db9a8ca0e23a5d1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/object-is/LICENSE
-sha256  5640e5cbe2e9f57f6ccfdd8dbfbeadb875495bdbcb69d2666ce3177ccd0942e4  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/object-keys/LICENSE
-sha256  30792070c6ec188caccbadc5ee32c3e33fdc5e9044c2f08cb1d01213e5a01084  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/omit-deep-lodash/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/once/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/onetime/license
-sha256  8089bcc08845ec143e5761f4a101a65b8c792a0dedbfeeb90a15560c0b77f768  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/on-finished/LICENSE
-sha256  05991c2e8f070b69ec5b656c2c12fd07cd0153dd157d39b050b82af59b319a01  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/optimist/LICENSE
-sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/optimist/node_modules/wordwrap/LICENSE
-sha256  b9eb082c39fe245e38793699074c394c43a722c51fce031c3c165cb92a31035c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/optionator/LICENSE
-sha256  d25d1d6d28c35cb6f358e2833e405c4e53fec2fa24d156323ddea5cd438d3407  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/os-browserify/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/osenv/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/os-homedir/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/os-locale/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/os-tmpdir/license
-sha256  a6859a1cdfa7b6ebcdd52505c41bb72e747675b3e7fe0b908c0ac09280f0ba93  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pad/LICENSE
-sha256  a04665b3b2de56c66730c1f720f528175739e4104f79073614aa611da1e85539  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pako/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/parent-module/license
-sha256  bc5ed4eed738303bf403ec3b7e0a8e76760ef60664ad050a0ff61db23da77e66  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/parse-asn1/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/parse-json/license
-sha256  a41d7b212c43bf90af534ec5d73d24a65e3a8cf17941b6d10e9398346a179698  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/parseqs/LICENSE
-sha256  15c35ddf8c82a5fc84e3801db12e279b744605d6ad810e1b52ad09832fc71806  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/parseuri/LICENSE
-sha256  11d017c3b9f1ee3f44caf7203035f0461d5b57e0db8ce1bc03a9af34fa7d3f6b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/parseurl/LICENSE
-sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/path-browserify/LICENSE
-sha256  9c791b69df62b2264d0a846786f82b00bd6943200a0b10eba66a1ba7a7785fc8  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/path-dirname/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/path-exists/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/path-is-absolute/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/path-key/license
-sha256  3f4609137f65070541b9214300ea0d640af8192857de0eeb2b03403003d9228a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/path-parse/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/path-type/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/path-type/node_modules/pify/license
-sha256  5d45910e7ed82fecc3e29b40a5b3a17ceb609fda19f860aa2ec180d87f4f9d4a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pathval/LICENSE
-sha256  a9667a8bf55e7f20cf894cb47774f94ebd4eb366408aafb980f1f6547bcdc10a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pbkdf2/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/p-defer/license
-sha256  7e64acffcb0d20d33f5a86949ffd4a99ae045b10c7332a9c3a58635876c16880  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pend/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/p-finally/license
-sha256  d0cd141b0c322fded5dfad1d4645bb2fedfc05b7321fe1009469638190d59ef9  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/picomatch/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pify/license
-sha256  6ee0feb1f6ef996ff5a68600f8cf98909cf412d39ef3cdceaefd87d636fa1b7f  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pinkie/license
-sha256  6ee0feb1f6ef996ff5a68600f8cf98909cf412d39ef3cdceaefd87d636fa1b7f  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pinkie-promise/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/p-is-promise/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/p-limit/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/p-locate/license
-sha256  f476f01d5da0d8124355eeb79b42b95d2ad2a88d229dbe02b815628760a8cb43  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/plugin-error/LICENSE
-sha256  b9eb082c39fe245e38793699074c394c43a722c51fce031c3c165cb92a31035c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/prelude-ls/LICENSE
-sha256  f4bbb78fa28677ad9b9c0a4b7a255e23c0b24e619c873ed66a11d47c16c88114  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/private/LICENSE
-sha256  59a400d04c5078579acc27ddd6452c1bdf763f9506e01364700935fbb1a7c91b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/process/LICENSE
-sha256  ecdccbcf39024f624ded480c01c0b25458e1eca8f26ecf040933865ce56d9a4f  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/process-nextick-args/license.md
-sha256  d7d2a7786de7c7cfd96f920c6f12927d74e1d2a861ca4498bf465c3bc3f4c21c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/progress/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pseudomap/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/p-try/license
-sha256  db6109f994692150ed82cd904bb053c73b97b23678bf52047f747bfec11e1934  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/public-encrypt/LICENSE
-sha256  3fe8d55a98dbf260eace67c00cf9bc53edb46234e840098a0b93df3096b97fb6  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/pump/LICENSE
-sha256  483acb265f182907d1caf6cff9c16c96f31325ed23792832cc5d8b12d5f88c8a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/punycode/LICENSE-MIT.txt
-sha256  a1e4522979cd422b42d0b464072eb7d0d218651659f56bf09f8c147384e3f105  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/puppeteer/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/puppeteer/node_modules/rimraf/LICENSE
-sha256  3de284c8e6fa7e8437eff6f53695471e0332129a5b42a79361e17b7637de94b3  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/puppeteer/node_modules/ws/LICENSE
-sha256  d2f9d2835eb09ccf673e118e4fdc372075437c1787e66c2202912fbe3e5ee9e1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/qs/LICENSE
-sha256  cb72d9714ddc21e758d63f423be0caddf909d23ccbb10a2f5201a870818e4f57  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/querystring-es3/License.md
-sha256  cb72d9714ddc21e758d63f423be0caddf909d23ccbb10a2f5201a870818e4f57  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/querystring/License.md
-sha256  f0606775704212c0b49fb4df8193f7ec190d057551fc857d9f3aaa482b878e29  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ramda/LICENSE.txt
-sha256  ddc0dd5947bd2966b9a4cfde098566b011de0acfbe7814536955636ce9e3eced  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/randombytes/LICENSE
-sha256  ddc0dd5947bd2966b9a4cfde098566b011de0acfbe7814536955636ce9e3eced  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/randomfill/LICENSE
-sha256  f655e6291356ec0de7a8f0e69f294961a2cea86678ec94588be1e6a492e278ab  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/range-parser/LICENSE
-sha256  c8e6bca7230689d536a3bd7158f66e9c4f89f95d0748743a0370ac229e9023ad  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/raw-body/LICENSE
-sha256  ec62dc96da0099b87f4511736c87309335527fb7031639493e06c95728dc8c54  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/readable-stream/LICENSE
-sha256  dffec71d93f273d2af7b54c6c7e7e70b3289c632ec0d7253210ec21ac336d5ac  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/readdirp/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/readdir-scoped-modules/LICENSE
-sha256  5ffe28e7ade7d8f10d85d5337a73fd793dac5c462fb9a28fbf8c5046c7fbca3b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/read-installed/LICENSE
-sha256  69be713b3d6c33e0dba76c4d23d986d568593abca04ce47d75162af255d6a345  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/read-package-json/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/read-pkg/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/read-pkg-up/license
-sha256  6ca87d1dce5b82873603e566fd83dabe8771fb169013337d4a14bb9bbf794687  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/recast/LICENSE
-sha256  94bcb9959136723aa4fb36e1a6c4d5c662a2369978cfae344dabfb83ae619e79  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/recast/node_modules/esprima/LICENSE.BSD
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/redent/license
-sha256  fcf6eabf68ca96988a6b506b4fdc6cc32535d80eb2e11c79724af5ac6f50262b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/regexpp/LICENSE
-sha256  aac9937f6a8dbc3328d2b90ab19691333ec4931634ea808673c897e623a9efc1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/remap-istanbul/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/repeating/license
-sha256  a92e52eb1fa7cd746e3827bf01d3a3589bbc8e1e51348b1da042aad165525ad1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/require-directory/LICENSE
-sha256  365496ca1f56da40b23c9815fc40fa9005847b2f8f8fd1c1a4929ef25ec8cd1d  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/require-main-filename/LICENSE.txt
-sha256  3b2a6a268aa815dec121d614245e03b5c68db1f044d5b525e36db7d5dc7fb9c3  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/requires-port/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/resolve-from/license
-sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/resolve/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/restore-cursor/license
-sha256  1ce941682a96c7b898ecd125d0f2e22319758ea6f3adbf498a65d649b0f3f7dd  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/rfdc/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/rimraf/LICENSE
-sha256  4847d2fd9ed54cc006dd79f5a14fa5dd35eb8274dca511418166e195e277c05b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ripemd160/LICENSE
-sha256  cc9426fe569f331f48fd3134b3a03b5bbe3fc7bd25d604be0006bd55a6134cf5  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/rollup/LICENSE.md
-sha256  e5c1364118b39fa98b959138ce4aa4d0e68cfbee12d115e69730579fecb1dc1b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/run-async/LICENSE
-sha256  81c407ac717813b0e3795402960e04003c7bba8ba59b621624707028531c9ade  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/rxjs/_esm2015/LICENSE.txt
-sha256  81c407ac717813b0e3795402960e04003c7bba8ba59b621624707028531c9ade  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/rxjs/_esm5/LICENSE.txt
-sha256  81c407ac717813b0e3795402960e04003c7bba8ba59b621624707028531c9ade  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/rxjs/LICENSE.txt
-sha256  81c407ac717813b0e3795402960e04003c7bba8ba59b621624707028531c9ade  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/rxjs/src/LICENSE.txt
-sha256  c7cc929b57080f4b9d0c6cf57669f0463fc5b39906344dfc8d3bc43426b30eac  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/safe-buffer/LICENSE
-sha256  4bc935e71be198c67ddf3c2b5fddb195f6edc182bfc155a96a6db61b44b494b9  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/safer-buffer/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/semver/LICENSE
-sha256  365496ca1f56da40b23c9815fc40fa9005847b2f8f8fd1c1a4929ef25ec8cd1d  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/set-blocking/LICENSE.txt
-sha256  c4b4ad3a5746f1f5249a6dd90396ec519264e1bb02e01e48a6522c48a3a97cb4  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/setimmediate/LICENSE.txt
-sha256  76d6d1ea0c268da37dd3c961b4fcfb23dee8417fff9e8786d4d44c585b781b69  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/setprototypeof/LICENSE
-sha256  58dcf38be1438f739412b87eb70d64bf00e9976d529bb119f700d8b3167924f0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/sha.js/LICENSE
-sha256  e6fdf7ac2af533b4436d99aa75df32aa78690510f7d68a3e73e8576967298d2f  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/shebang-command/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/shebang-regex/license
-sha256  e05b1eaf5b5f99b7ad75cd1f38858ff9a311780b97715ead67936d60bf96aa7e  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/signal-exit/LICENSE.txt
-sha256  3dc3b3d3a284d871f7f307655c90fb101d73abbf87bbddeefd2f67883353bdbc  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/slice-ansi/license
-sha256  05dc4d785ac3a488676d3ed10e901b75ad89dafcc63f8e66610fd4a39cc5c7e8  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/slide/LICENSE
-sha256  56b7b228fde8d638cc7f1c3d0022cf111764083ac4f803b7a50a90388dce3788  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io-adapter/LICENSE
-sha256  62e2032a1e1458b1d92a62f5fc51be48e08b95062295c91a9f3bd3686809d37e  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io-client/LICENSE
-sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io-client/node_modules/debug/LICENSE
-sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io-client/node_modules/ms/license.md
-sha256  c10d192d935165dac336ae245f9eef4c42bb37e7c6f5c5f6f7663db778122df1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io/LICENSE
-sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io/node_modules/debug/LICENSE
-sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io/node_modules/ms/license.md
-sha256  56b7b228fde8d638cc7f1c3d0022cf111764083ac4f803b7a50a90388dce3788  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io-parser/LICENSE
-sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io-parser/node_modules/debug/LICENSE
-sha256  6652830c2607c722b66f1b57de15877ab8fc5dca406cc5b335afeb365d0f32c1  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/socket.io-parser/node_modules/ms/license.md
-sha256  6cb0631f71c7749763fd3dd1d5bee52dd1070ec17f2edc1710079ad070bd2fbd  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/source-map/LICENSE
-sha256  c5ca60a739543ef97683dfa0a94773b214c86c826c76a27b8f8e6eb38148cbce  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/spdx-compare/LICENSE.md
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/spdx-correct/LICENSE
-sha256  7edb57f7065309027de249642341292a5b21410d5773cc55bba73ff9cf01060e  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/spdx-expression-parse/LICENSE
-sha256  c5ca60a739543ef97683dfa0a94773b214c86c826c76a27b8f8e6eb38148cbce  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/spdx-ranges/LICENSE.md
-sha256  a21ab121cef9bed38553faad40e49b27ae3d2578d07a70956664e681021c9875  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/spdx-satisfies/LICENSE
-sha256  a4cdda44b5adea4731d53dcae78fb5124f8fd853e994f01e25d8c33a7daf818b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/sprintf-js/LICENSE
-sha256  512cfa4d5e7a7569c7ae4dd95241cb6ae2aaf648ef9ebd080c01bd24868d26e9  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/statuses/LICENSE
-sha256  ff151c00207c908581639851dd8504ce4255be0650b2b236edec2aa90342b0cd  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/stream-browserify/LICENSE
-sha256  ec62dc96da0099b87f4511736c87309335527fb7031639493e06c95728dc8c54  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/stream-browserify/node_modules/readable-stream/LICENSE
-sha256  c7cc929b57080f4b9d0c6cf57669f0463fc5b39906344dfc8d3bc43426b30eac  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/stream-browserify/node_modules/safe-buffer/LICENSE
-sha256  11f2aafb37d06b3ee5bdaf06e9811141d0da05263c316f3d627f45c20d43261b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/stream-browserify/node_modules/string_decoder/LICENSE
-sha256  a0e6357a5e8ea65827addeb383e0948a1874d2f46bc7feaf6349b7a376ed6e98  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/stream-http/LICENSE
-sha256  9660914267128b5f96a102bd7f6268c249110a39cb7c4bb7f536d856445d739c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/streamroller/LICENSE
-sha256  98c970de440dcfc77471610aec2377c9d9b0db2b3be6d1add524a586e1d7f422  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/streamroller/node_modules/debug/LICENSE
-sha256  11f2aafb37d06b3ee5bdaf06e9811141d0da05263c316f3d627f45c20d43261b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/string_decoder/LICENSE
-sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimleft/LICENSE
-sha256  c61652db3d2808f667b48af0a358f0d85fd07ad4a0d0b1a50882dec3b764c522  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/string.prototype.trimright/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/string-width/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/strip-ansi/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/strip-bom/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/strip-eof/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/strip-indent/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/strip-json-comments/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/supports-color/license
-sha256  37b6932865726cf59cbfb8b32a5c9fd82c834c2deba4d53aa4a6b433ae69cdda  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/table/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/table/node_modules/ansi-regex/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/table/node_modules/string-width/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/table/node_modules/strip-ansi/license
-sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/text-table/LICENSE
-sha256  faae57631e1c7d641c3b6f9b110c2a7a28c8b383d08d7796ac472c509f075850  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/through2/LICENSE.md
-sha256  e8734448285a2dd773d40136ed5d5e8163a70701dd540cdc796cfca232f67d55  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/through/LICENSE.APACHE2
-sha256  d72dea1a8cdf3f4dfa2f594253d0c5b37baefc76e806f5ecb0e426393edcd505  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/through/LICENSE.MIT
-sha256  d5f14c3258420dfe5a3b641a143d6e6dd90eabb5962244d937e25699c3a45ec9  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/timers-browserify/LICENSE.md
-sha256  162413c61e0982abe89a06bf7a02ec760dc49a7364d838bd9f01daebb5b95954  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/tmp/LICENSE
-sha256  61b82d27e63b14eabc706960aabf6caa1b27d044eb00d7908f92e68085301c3a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/to-fast-properties/license
-sha256  a832d679750e49ab433626ab196350b89964b60eb0d3edd3341887c7d5f4c128  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/toidentifier/LICENSE
-sha256  e7d1fee7347ffddccc5fd03327ffdb50f8c112be0d5016d62388a92c4ae6e7a9  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/to-regex-range/LICENSE
-sha256  83927d1555a8e1d5ed9896991fbb2b4cdfb64f45f5e12b7446c3bff5cea538d3  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/treeify/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/trim-newlines/license
-sha256  a5e9f9b1575301c7a7a03508fdaa2e05a918cc17fd21c6e898096a96d6a34f61  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/tslib/LICENSE.txt
-sha256  ed0ff5ab79bc82703690fde4644e352c9ce73e9b890b87ea68b1a1fc5805792b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/tsutils/LICENSE
-sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/tty-browserify/LICENSE
-sha256  b9eb082c39fe245e38793699074c394c43a722c51fce031c3c165cb92a31035c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/type-check/LICENSE
-sha256  26181ebee1063f3dc6766a3b6d05999a0da058f172eadf2ca5d15105ffd9735a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/typedarray/LICENSE
-sha256  e5aee0714b6ecc416454b968d1017570ef609f20d8722ab84b07acd550b78198  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/type-detect/LICENSE
-sha256  23d466b1b134b415b66fa50c6526b4cf3e7b9258554da88d3abb371721e7ce68  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/type-is/LICENSE
-sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@types/chai/LICENSE
-sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@types/color-name/LICENSE
-sha256  5938d4fe4890c79ad14e02e643c385b25b8b6c7bbb97ab08996034b586512df5  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/eslint-plugin/LICENSE
-sha256  fcf6eabf68ca96988a6b506b4fdc6cc32535d80eb2e11c79724af5ac6f50262b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/eslint-plugin/node_modules/regexpp/LICENSE
-sha256  5938d4fe4890c79ad14e02e643c385b25b8b6c7bbb97ab08996034b586512df5  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/experimental-utils/LICENSE
-sha256  d3a724e2ed749f172ff70b62a1d0631b7d4b0ea273782365a3464d4e2d6b6dbd  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/experimental-utils/node_modules/eslint-scope/LICENSE
-sha256  e2fc706570305bcb7dfadb1cac951d5934ce0d7331a7a7ff1bbc254dbe1d9ef8  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/parser/LICENSE
-sha256  635818d8f39384751c8a5f3f3e735022f07afb3ccdb26eb17ff8eca28428f888  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/typescript-estree/LICENSE
-sha256  6236fa0b88a4a0cce3dda0367979491b2052b3c8d6b1c10b3668de083e86a7f0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/typescript-estree/node_modules/glob/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/LICENSE
-sha256  a5e9f9b1575301c7a7a03508fdaa2e05a918cc17fd21c6e898096a96d6a34f61  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/typescript/LICENSE.txt
-sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@types/eslint-visitor-keys/LICENSE
-sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@types/estree/LICENSE
-sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@types/filesystem/LICENSE
-sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@types/json-schema/LICENSE
-sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@types/mocha/LICENSE
-sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@types/node/LICENSE
-sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/@types/puppeteer/LICENSE
-sha256  b00ae96f0815ae8fa49c09044467306e98cd89d6770c535fb596ccbd350c6ab4  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/uglify-js/LICENSE
-sha256  3b2a6a268aa815dec121d614245e03b5c68db1f044d5b525e36db7d5dc7fb9c3  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ultron/LICENSE
-sha256  3fda5977c0904e226190b4e21d64340c1731e2142d6fe5f3dee0090a216b8b63  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/universalify/LICENSE
-sha256  1a526fbe8d8577f5a4b1c2821842b55b7c0e18862531c62ae4ce69c9b19b74b6  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/unpipe/LICENSE
-sha256  97f780d3c79a42236f2b3435860f284c0ac6b958622f6bc9f1ac43fd49689b7b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/url/LICENSE
-sha256  483acb265f182907d1caf6cff9c16c96f31325ed23792832cc5d8b12d5f88c8a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/url/node_modules/punycode/LICENSE-MIT.txt
-sha256  1da14af109d9baaa8dee3094add5cc65a7772487dd94c8d2adfd36935b678c49  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/useragent/LICENSE
-sha256  0154425673db15cdfa80ecba2c9b1f1a867f7197a006764712849bfc3a93cbb7  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/util-deprecate/LICENSE
-sha256  6239c6144c31e58cf925c34483606969c555574d64ffa96518ab5d7f45c75d43  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/util-extend/LICENSE
-sha256  6239c6144c31e58cf925c34483606969c555574d64ffa96518ab5d7f45c75d43  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/util/LICENSE
-sha256  6e7d699cdd1e4fa837ba7718ea49841aa67201b449ea8b3f9cf274be15974a64  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/utils-merge/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/validate-npm-package-license/LICENSE
-sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/vm-browserify/LICENSE
-sha256  405a272eaef556691ad7dda96db3237c9544afe18725842a1a5b3ec308960222  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/void-elements/LICENSE
-sha256  6294da0e0a201bbe1de254445c9d07133a9448af05e4e44d0a2364747d114368  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/wcwidth/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/which/LICENSE
-sha256  852bf81203aa93aa89afc9f881ebb035322dc7334aaceff435c557634c94a815  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/which-module/LICENSE
-sha256  0cef05dfff8b6aa7f35596984f5709f0d17c2582924a751efa471a76de7cdc11  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/wide-align/LICENSE
-sha256  435a6722c786b0a56fbe7387028f1d9d3f3a2d0fb615bb8fee118727c3f59b7b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/wordwrap/LICENSE
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/ansi-regex/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/string-width/license
-sha256  6fb9754611c20f6649f68805e8c990e83261f29316e29de9e6cedae607b8634c  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/strip-ansi/license
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/wrappy/LICENSE
-sha256  0ead7e8cd8b0bc66a981ee69acaf1297ffa838cfce1b156a039bb24f997c0a27  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/write/LICENSE
-sha256  3de284c8e6fa7e8437eff6f53695471e0332129a5b42a79361e17b7637de94b3  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ws/LICENSE
-sha256  c7cc929b57080f4b9d0c6cf57669f0463fc5b39906344dfc8d3bc43426b30eac  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/ws/node_modules/safe-buffer/LICENSE
-sha256  a5f35901ee8b2039a7431144c23dd10bd47c1d07bcee0cd3a536421d86412214  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/xmlhttprequest-ssl/LICENSE
-sha256  82e67379203d5794e7c44549847d8d64ae6904591381682360470898bd306821  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/xtend/LICENSE
-sha256  2034cce3b6fafcddd642c4175e01d3ddfc332a53b9f20fdc46b1466dc89ac469  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/y18n/LICENSE
-sha256  4ec3d4c66cd87f5c8d8ad911b10f99bf27cb00cdfcff82621956e379186b016b  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yallist/LICENSE
-sha256  fe71524a15f30aab0f39af7165d38fc64a4269b7d2a0caffebc907355aec9c92  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/ansi-regex/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/ansi-styles/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/camelcase/license
-sha256  2dc0465729366c3a7890dfa9e972a1ba7048a26c02116fb8b419a6a1ac110149  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/cliui/LICENSE.txt
-sha256  693866fc419c6f61c8570438ec00659d156ec2b4d4a4d04091711f5f11a365d4  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/color-convert/LICENSE
-sha256  7357445bac398c76c0aef75a587009fe406d40de6a79789eb5b7ecbbad317ef2  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/color-name/LICENSE
-sha256  483acb265f182907d1caf6cff9c16c96f31325ed23792832cc5d8b12d5f88c8a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/emoji-regex/LICENSE-MIT.txt
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/find-up/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/is-fullwidth-code-point/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/locate-path/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/path-exists/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/p-locate/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/string-width/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/strip-ansi/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/wrap-ansi/license
-sha256  365496ca1f56da40b23c9815fc40fa9005847b2f8f8fd1c1a4929ef25ec8cd1d  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs/node_modules/yargs-parser/LICENSE.txt
-sha256  365496ca1f56da40b23c9815fc40fa9005847b2f8f8fd1c1a4929ef25ec8cd1d  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs-parser/LICENSE.txt
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs-parser/node_modules/camelcase/license
-sha256  30877d17f7e38530d46b49fb375ee98ce2e8b085b3ee72d4c2888710416ef139  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/LICENSE
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/camelcase/license
-sha256  48da2f39e100d4085767e94966b43f4fa95ff6a0698fba57ed460914e35f94a0  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/find-up/license
-sha256  902dbb4154679fb2b8d7c33878183f45b268d01eae5e5033dddaa8852d45f213  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/get-caller-file/LICENSE.md
-sha256  365496ca1f56da40b23c9815fc40fa9005847b2f8f8fd1c1a4929ef25ec8cd1d  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/require-main-filename/LICENSE.txt
-sha256  fe71524a15f30aab0f39af7165d38fc64a4269b7d2a0caffebc907355aec9c92  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/yargs/LICENSE
-sha256  365496ca1f56da40b23c9815fc40fa9005847b2f8f8fd1c1a4929ef25ec8cd1d  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/yargs-parser/LICENSE.txt
-sha256  b303783d5eb7ca50b853ffa5f145e4e7998fab339831d848f507ca6cd970577a  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yauzl/LICENSE
-sha256  3b2a6a268aa815dec121d614245e03b5c68db1f044d5b525e36db7d5dc7fb9c3  src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/yeast/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/devtools-frontend/src/scripts/closure/COPYING
-sha256  af175b9d96ee93c21a036152e1b905b0b95304d4ae8c2c921c7609100ba8df7e  src/3rdparty/chromium/third_party/devtools-frontend/src/third_party/axe-core/LICENSE
-sha256  a8ad31b1c3f40dca5a84119351b8fa8ddc868edd77fad8a8ebf6d8f2d16fa4ae  src/3rdparty/chromium/third_party/devtools-frontend/src/third_party/pyjson5/src/LICENSE
-sha256  4f5753ce8acf3feafc758599058746d30bda07bc0d4cc3a6a1eb8e039fdba1dc  src/3rdparty/chromium/third_party/dom_distiller_js/LICENSE
-sha256  ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6  src/3rdparty/chromium/third_party/dpkg-shlibdeps/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/emoji-segmenter/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/emoji-segmenter/src/LICENSE
-sha256  9021fdb5341ebbb2eb5c771ac5cfac527790673179d3b21a42de1ab2798ec30f  src/3rdparty/chromium/third_party/espresso/LICENSE
-sha256  46336ab2fec900803e2f1a4253e325ac01d998efb09bc6906651f7259e636f76  src/3rdparty/chromium/third_party/expat/src/expat/COPYING
-sha256  d9c904abd0ead61b3fbaef0a609285548076ff9c3f814cc1cf019c5d7150736d  src/3rdparty/chromium/third_party/ffmpeg/chromium/scripts/license_texts/full_lgpl.txt
-sha256  a8579e3fc40c11ab147bc299257733eb749cd455010385f7c117f70d7aef24e4  src/3rdparty/chromium/third_party/ffmpeg/chromium/scripts/license_texts/jpeg.txt
-sha256  857d5f537af3aa164e7a27eda60147d34195e5781abe7b1d358d9fb01e222ae0  src/3rdparty/chromium/third_party/ffmpeg/chromium/scripts/license_texts/mips.txt
-sha256  b4c85cce2b772f27d83f4562c20787057dc6949fcecc820a82c1d2e7047e89c3  src/3rdparty/chromium/third_party/ffmpeg/chromium/scripts/license_texts/oggparse_ahlberg_rullgayrd_2005.txt
-sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  src/3rdparty/chromium/third_party/ffmpeg/COPYING.GPLv2
-sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  src/3rdparty/chromium/third_party/ffmpeg/COPYING.GPLv3
-sha256  b634ab5640e258563c536e658cad87080553df6f34f62269a21d554844e58bfe  src/3rdparty/chromium/third_party/ffmpeg/COPYING.LGPLv2.1
-sha256  da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768  src/3rdparty/chromium/third_party/ffmpeg/COPYING.LGPLv3
-sha256  cb48bf09a11f5fb576cddb0431c8f5ed0a60157a9ec942adffc13907cbe083f2  src/3rdparty/chromium/third_party/ffmpeg/LICENSE.md
-sha256  f45cc81b400a048b56c9edbd4c3317f7a8958463dfd55aa96f268ecfd6baa12c  src/3rdparty/chromium/third_party/flac/COPYING.FDL
-sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  src/3rdparty/chromium/third_party/flac/COPYING.GPL
-sha256  5df07007198989c622f5d41de8d703e7bef3d0e79d62e24332ee739a452af62a  src/3rdparty/chromium/third_party/flac/COPYING.LGPL
-sha256  946b733afbaa20a192c8dc022b4e43090e78f28fd293494d1b307f7301552c9b  src/3rdparty/chromium/third_party/flac/COPYING.Xiph
-sha256  7ec9661a8afafab1eee3523d6f1a193eff76314a5ab10b4ce96aefd87621b0c3  src/3rdparty/chromium/third_party/flatbuffers/LICENSE
-sha256  3112ebbfc0fe10ad40a97672f5590c4292536a28cbfe3506820b15dec70b2258  src/3rdparty/chromium/third_party/flatbuffers/src/dart/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/flatbuffers/src/LICENSE.txt
-sha256  fa4cd9ab005185e10cd8f7504518856c7dd36c01e766c2bac87f4fc638e9f886  src/3rdparty/chromium/third_party/fontconfig/LICENSE
-sha256  fa4cd9ab005185e10cd8f7504518856c7dd36c01e766c2bac87f4fc638e9f886  src/3rdparty/chromium/third_party/fontconfig/src/COPYING
-sha256  fd056de4196903a676208ef58cfddafc7d583d1f28fa2e44c309cf84a59e62fb  src/3rdparty/chromium/third_party/freetype/src/docs/LICENSE.TXT
-sha256  56e67061ab590046b09876a084478ea87c4ece1579deb194347096e61c2537dd  src/3rdparty/chromium/third_party/fuchsia-sdk/LICENSE
-sha256  c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4  src/3rdparty/chromium/third_party/gif_player/LICENSE
-sha256  8ea14fdc7efee7fe53c79101b97049bd547dc6686cfa05df4f0686146a561423  src/3rdparty/chromium/third_party/glfw/src/LICENSE.md
-sha256  23353f4505b1c8ce4f8f72fc3b11dc74b4a8a7bf95921d93ff77f227c171a710  src/3rdparty/chromium/third_party/glslang/LICENSE
-sha256  d3cbc77d99642114bc925cce51eda84b48ae4879947ac89941a2e2aa4150db76  src/3rdparty/chromium/third_party/glslang/src/LICENSE.txt
-sha256  9702de7e4117a8e2b20dafab11ffda58c198aede066406496bef670d40a22138  src/3rdparty/chromium/third_party/googletest/src/googlemock/LICENSE
-sha256  5e0df8c845c742e76f2f64d2d9ce1b7e74a2422fddbc577ae6a56319083de0bf  src/3rdparty/chromium/third_party/googletest/src/googlemock/scripts/generator/LICENSE
-sha256  9702de7e4117a8e2b20dafab11ffda58c198aede066406496bef670d40a22138  src/3rdparty/chromium/third_party/googletest/src/googletest/LICENSE
-sha256  9702de7e4117a8e2b20dafab11ffda58c198aede066406496bef670d40a22138  src/3rdparty/chromium/third_party/googletest/src/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/google-truth/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/guava/LICENSE
-sha256  ca382aa537f8923d6c0991fb976d184a2009eb76080313bf10dcecdc9311f0dd  src/3rdparty/chromium/third_party/gvr-android-keyboard/LICENSE
-sha256  f54c49d3ff865458c5d3c68c3367a1f6e0d7b3f686f8c88a6a563ef90f84ad9e  src/3rdparty/chromium/third_party/gvr-android-sdk/LICENSE
-sha256  96e5bbd81970983d666e702fa56f67dfd2fdaa363b8a4266e8d98847374cd7c8  src/3rdparty/chromium/third_party/hamcrest/LICENSE
-sha256  beb3f017ceb41387667f78237a7cecf84defa0ed257c505894663d6a9f13211b  src/3rdparty/chromium/third_party/harfbuzz-ng/src/COPYING
-sha256  c2cfccb812fe482101a8f04597dfc5a9991a6b2748266c47ac91b6a5aae15383  src/3rdparty/chromium/third_party/harfbuzz-ng/src/src/ms-use/COPYING
-sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  src/3rdparty/chromium/third_party/hunspell/COPYING
-sha256  da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768  src/3rdparty/chromium/third_party/hunspell/COPYING.LESSER
-sha256  53692a2ed6c6a2c6ec9b32dd0b820dfae91e0a1fcdf625ca9ed0bdf8705fcc4f  src/3rdparty/chromium/third_party/hunspell/COPYING.MPL
-sha256  610809f1586ee4d22468f1e97c256153cea8be7a662193db70d6ca424e0f17c8  src/3rdparty/chromium/third_party/iaccessible2/LICENSE
-sha256  a412a53925efc6b50800bf8519a2e033949243d5a5a8c5422bae8a5007ad09c8  src/3rdparty/chromium/third_party/iccjpeg/LICENSE
-sha256  d18e75f216f177d41304f5e94c2cba7d1bf9f8f8583a0777cceb5cca0c5ad137  src/3rdparty/chromium/third_party/icu4j/LICENSE
-sha256  6a18c5fac70d7860b57f5b72b4e2c9a1ba6b3d2741eef7ff9767c5379364f10d  src/3rdparty/chromium/third_party/icu/LICENSE
-sha256  c62d7697c03979f5056d28b338fafc7a1152820f7b379adf4a9d88cd37160f96  src/3rdparty/chromium/third_party/icu/license.html
-sha256  845022e0c1db1abb41a6ba4cd3c4b674ec290f3359d9d3c78ae558d4c0ed9308  src/3rdparty/chromium/third_party/icu/scripts/LICENSE
-sha256  8c6db340475136df3c1201d458fa5755698eace76e510471ecc9d857d6083dac  src/3rdparty/chromium/third_party/ijar/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/ink/LICENSE
-sha256  b9be92f13356083392d97da13cab8ae543c7911f44eff5289b693da8b17b9e08  src/3rdparty/chromium/third_party/inspector_protocol/LICENSE
-sha256  7a92c5e7a83b5ddcc693bb84ea8bdb842308509c1758cffdfe24717609154c75  src/3rdparty/chromium/third_party/isimpledom/LICENSE
-sha256  ed8d7a24769ac9d57d08769b5f8be27519dd8811d06b0995dbe8ca6714e96d08  src/3rdparty/chromium/third_party/jacoco/LICENSE
-sha256  33b6816eb449962d307495946519ed78cef8743819f6f1d60e8b3d4e86c38b1c  src/3rdparty/chromium/third_party/javalang/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/jetifier_standalone/LICENSE
-sha256  7975c0027cfa5d08253fbb6ff4676acc38248bd5e046d0dbab3d810971e97970  src/3rdparty/chromium/third_party/jinja2/LICENSE
-sha256  76c45ece83a26117f86f4e349e7df118708e061e87225328fb478ce1e8b3eb86  src/3rdparty/chromium/third_party/jsoncpp/LICENSE
-sha256  95039d77a20e75b428207740d9a8f97b2dce3c89da4b21f1ad862b5997160e0a  src/3rdparty/chromium/third_party/jsoncpp/source/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/jstemplate/COPYING
-sha256  71a19392a0eb3255ab2055ed978bb0f93865cea84d31a3510eaffb74d8981e7f  src/3rdparty/chromium/third_party/khronos/LICENSE
-sha256  ccc19f1da0798ed666609b65a5b44dd8b3abe6fc08b9c0592eb76e82e174db19  src/3rdparty/chromium/third_party/leveldatabase/src/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/libaddressinput/LICENSE
-sha256  c9a5bd7c8cc1267ddacdc5228c68ecd811cf6d74286e9141bc80d8af2eb1a025  src/3rdparty/chromium/third_party/libaddressinput/src/cpp/LICENSE.chromium
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/libaddressinput/src/LICENSE
-sha256  4764a286d8b2faeaf42f4418e7d7a28d58fc8fd4d00a3d0a7f44b0a4099de7f2  src/3rdparty/chromium/third_party/libaom/source/libaom/LICENSE
-sha256  043dcfd059386f9facd376351b2bd79325778744aa442177390cdfcca54babed  src/3rdparty/chromium/third_party/libaom/source/libaom/third_party/fastfeat/LICENSE
-sha256  9702de7e4117a8e2b20dafab11ffda58c198aede066406496bef670d40a22138  src/3rdparty/chromium/third_party/libaom/source/libaom/third_party/googletest/src/googletest/LICENSE
-sha256  5aec868f669e384a22372a4e8a1a6cd7d44c64cd451f960ca69cc170d1e13acf  src/3rdparty/chromium/third_party/libaom/source/libaom/third_party/libwebm/LICENSE.TXT
-sha256  ff6c857ce2708e87701323078aef115c1872a1f80a9649f86dc899b48083bc60  src/3rdparty/chromium/third_party/libaom/source/libaom/third_party/vector/LICENSE
-sha256  719d8fa235f2068e0ae6d6a7dceb0a7720d7840f0f0ebed29957989e6ded3cd8  src/3rdparty/chromium/third_party/libaom/source/libaom/third_party/x86inc/LICENSE
-sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  src/3rdparty/chromium/third_party/libcxx-pretty-printers/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/libgav1/src/LICENSE
-sha256  d56bafdaeaa793331a29e9766b7efe66524c98533da798a57201e291863ef625  src/3rdparty/chromium/third_party/libgifcodec/LICENSE.md
-sha256  37d8bfba91b745693ea58f846f2f1276229745adf532974b73c1911cfd144241  src/3rdparty/chromium/third_party/libipp/LICENSE
-sha256  ab00a482b6a3902e40211b43c5d0441962ea99b6cc7c25c0f243fa270b78d482  src/3rdparty/chromium/third_party/libjingle_xmpp/LICENSE
-sha256  8412238c5ad95965cf3c3197791e9dea8b5fae505d133449e33ee2fa754fe61e  src/3rdparty/chromium/third_party/libjpeg_turbo/LICENSE.md
-sha256  3bf128851aff9f392953276ea8ade3e41da0f40b853fde58ec21034aa91ccc31  src/3rdparty/chromium/third_party/libovr/LICENSE
-sha256  bf5e22b9dce8464064ae17a48ea1133c3369ac9e1d80ef9e320e5219aa14ea9b  src/3rdparty/chromium/third_party/libpng/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/libprotobuf-mutator/src/LICENSE
-sha256  a1a33180d02960ab1c5de36cf20b1a2f0fe9888d83826ad263da5db52f1b183b  src/3rdparty/chromium/third_party/libsecret/LICENSE
-sha256  8e19d42a1eec9561f3f347253ddf2e385c55f392f025bb0fd41b88dbf38db5ae  src/3rdparty/chromium/third_party/libsrtp/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/libsync/LICENSE
-sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  src/3rdparty/chromium/third_party/libudev/LICENSE
-sha256  5df07007198989c622f5d41de8d703e7bef3d0e79d62e24332ee739a452af62a  src/3rdparty/chromium/third_party/libusb/src/COPYING
-sha256  8267348d5af1262c11d1a08de2f5afc77457755f1ac658627dd9acf71011d615  src/3rdparty/chromium/third_party/libvpx/source/libvpx/LICENSE
-sha256  9702de7e4117a8e2b20dafab11ffda58c198aede066406496bef670d40a22138  src/3rdparty/chromium/third_party/libvpx/source/libvpx/third_party/googletest/src/LICENSE
-sha256  5aec868f669e384a22372a4e8a1a6cd7d44c64cd451f960ca69cc170d1e13acf  src/3rdparty/chromium/third_party/libvpx/source/libvpx/third_party/libwebm/LICENSE.TXT
-sha256  2b2cc1180c7e6988328ad2033b04b80117419db9c4c584918bbb3cfec7e9364f  src/3rdparty/chromium/third_party/libvpx/source/libvpx/third_party/libyuv/LICENSE
-sha256  719d8fa235f2068e0ae6d6a7dceb0a7720d7840f0f0ebed29957989e6ded3cd8  src/3rdparty/chromium/third_party/libvpx/source/libvpx/third_party/x86inc/LICENSE
-sha256  5aec868f669e384a22372a4e8a1a6cd7d44c64cd451f960ca69cc170d1e13acf  src/3rdparty/chromium/third_party/libwebm/source/LICENSE.TXT
-sha256  6de6fe48ff7b249a51ec5522d1af618dd50effc6f030fd24e17878566ad2ca5d  src/3rdparty/chromium/third_party/libwebp/LICENSE
-sha256  c5c63674f8a83c4d2e385d96d1c670a03cb871ba2927755467017317878574bd  src/3rdparty/chromium/third_party/libxml/src/COPYING
-sha256  c5c63674f8a83c4d2e385d96d1c670a03cb871ba2927755467017317878574bd  src/3rdparty/chromium/third_party/libxml/src/Copyright
-sha256  31346421254a3e6e12687cf17f19f6357ee73a617fa7b3d3ccefdcbabe49bdd3  src/3rdparty/chromium/third_party/libXNVCtrl/LICENSE
-sha256  7e48e290b6bfccc2ec1b297023a1d77f2fd87417f71fbb9f50aabef40a851819  src/3rdparty/chromium/third_party/libxslt/linux/COPYING
-sha256  7e48e290b6bfccc2ec1b297023a1d77f2fd87417f71fbb9f50aabef40a851819  src/3rdparty/chromium/third_party/libxslt/src/Copyright
-sha256  2b2cc1180c7e6988328ad2033b04b80117419db9c4c584918bbb3cfec7e9364f  src/3rdparty/chromium/third_party/libyuv/LICENSE
-sha256  0d4077a7055ead389c4c5a9a6ac4bb8b784fc6e9e37be2caf544fcceed26cb16  src/3rdparty/chromium/third_party/lottie/LICENSE
-sha256  6e3e0a978f1e136cb3efb89702f4314671581a0c70c9a52447669e00f7b129e8  src/3rdparty/chromium/third_party/lzma_sdk/LICENSE
-sha256  c3b124673c93872156757a934c75b498d68eec09510e25e549d9dc2013776499  src/3rdparty/chromium/third_party/mako/LICENSE
-sha256  0bbe88228fd63d20ec097f64e58d5a0a465123ae139140a18d406c60b48824b5  src/3rdparty/chromium/third_party/markupsafe/LICENSE
-sha256  58d1e17ffe5109a7ae296caafcadfdbe6a7d176f0bc4ab01e12a689b0499d8bd  src/3rdparty/chromium/third_party/material_design_icons/LICENSE
-sha256  536284e40c611f371f6ce5d74efac37a20d993cd3af96259b9b9e20b1669ff1e  src/3rdparty/chromium/third_party/mesa_headers/LICENSE
-sha256  845022e0c1db1abb41a6ba4cd3c4b674ec290f3359d9d3c78ae558d4c0ed9308  src/3rdparty/chromium/third_party/metrics_proto/LICENSE
-sha256  27ebda9d51f0a56b7e281ccd8230a27236dcb51c05f64b07869ecf6e965d68b0  src/3rdparty/chromium/third_party/microsoft_webauthn/LICENSE
-sha256  83bb6bd9ccd2cf5230cb1807ed16258289768dc4d9cb80069a814e04415a1275  src/3rdparty/chromium/third_party/minigbm/LICENSE
-sha256  8610954adbca6c6b85d8b1ae5613b44b0014e437d32fcad6683bb27541411686  src/3rdparty/chromium/third_party/minigbm/src/LICENSE
-sha256  4919cfb14a73cd64fcef67b107613970cf1659a09aa675dba31314f373bc7204  src/3rdparty/chromium/third_party/minizip/src/lib/bzip2/LICENSE
-sha256  87642305968765a4030fd202ff7006afa67274da7f9bde84506e51ae58ecc2b4  src/3rdparty/chromium/third_party/minizip/src/LICENSE
-sha256  bd5663836feb58ffb7d0e6b9e62010f4c3399f2bb0a4cf6514a15d597bbdd577  src/3rdparty/chromium/third_party/mocha/LICENSE
-sha256  380893a2f01aea5c3328b1a8b08cdc488bf236916abac3af0d1f1a5d2634c31a  src/3rdparty/chromium/third_party/mockito/LICENSE
-sha256  d47e8390fb0d7ad4a18f26aedd6283c7ab6b5b4fabab536ccb4db7f9f6d90c08  src/3rdparty/chromium/third_party/modp_b64/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/motemplate/LICENSE
-sha256  7a92c5e7a83b5ddcc693bb84ea8bdb842308509c1758cffdfe24717609154c75  src/3rdparty/chromium/third_party/mozilla/LICENSE
-sha256  1563996c52e220e15ef2418e67d39488255aa8c28c89e617074d3afe3ee329e0  src/3rdparty/chromium/third_party/nasm/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/netty4/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/netty-tcnative/LICENSE
-sha256  0cd1bd4b934ffdc5e7f1bcfa9d08bd17295e5414bdca99c06b1036278b01f0b1  src/3rdparty/chromium/third_party/node/LICENSE
-sha256  b5730da9a26472a405b0b1c61d3d166714d9d654ab3282e54e4a01a5f66316c3  src/3rdparty/chromium/third_party/objenesis/LICENSE
-sha256  0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594  src/3rdparty/chromium/third_party/ocmock/License.txt
-sha256  8bed129a6a15e631c93a624985e631eb62a55f7e072b78f4e1c3dde7c745283d  src/3rdparty/chromium/third_party/one_euro_filter/LICENSE
-sha256  dd5c1c9668512530fa5a96e4c29ac4033d70a7eeb0eed7a42fddb6dd794ebdbb  src/3rdparty/chromium/third_party/openh264/src/LICENSE
-sha256  34a5c58db7cc4d3265d14a9aa26e38067fe114311d8bec31f909d1c240e626c4  src/3rdparty/chromium/third_party/openscreen/src/LICENSE
-sha256  284545e873c704952e5b1b39d457dd83a3b115a51d9f1eb5175137bd69b8fa1b  src/3rdparty/chromium/third_party/openscreen/src/third_party/mozilla/LICENSE.txt
-sha256  f56ff606104d4ef18e617921a75c73ad73b5a1a1d70c69590c29de16919e04ad  src/3rdparty/chromium/third_party/openvr/src/LICENSE
-sha256  8338ce8d922bb4416ce3dd1e5680173332435e3f0755007ac7801ccd674fe682  src/3rdparty/chromium/third_party/opus/src/COPYING
-sha256  7efb4989e0cd1b256229bdf2f09300c5d14e35db0e7476bfb87fac243498273d  src/3rdparty/chromium/third_party/opus/src/LICENSE_PLEASE_READ.txt
-sha256  0d74de3c3cd3196a9ed1bc612cfd5f81d7509d66c4be34a50f99d61bd1ad00d4  src/3rdparty/chromium/third_party/ots/LICENSE
-sha256  9dd8d2fb95ba862a5d166a167682c1c67a209acd3bf09b6fd03f76d3579729bc  src/3rdparty/chromium/third_party/ow2_asm/LICENSE
-sha256  76621fcfb65adfd6602b700708b74c8e20f3325b32f1a54bec83a5cf7c679f53  src/3rdparty/chromium/third_party/pdfium/LICENSE
-sha256  32759d1397d8f7b9e15ece146e4038b22b90e93b4935b5a840bcef4d2ba5ea55  src/3rdparty/chromium/third_party/pdfium/third_party/bigint/LICENSE
-sha256  bf5e22b9dce8464064ae17a48ea1133c3369ac9e1d80ef9e320e5219aa14ea9b  src/3rdparty/chromium/third_party/pdfium/third_party/libpng16/LICENSE
-sha256  c5b14f5a3814d2e57b9bb9520dcf57a2c3817b65c4f989e5c82e332c82af1038  src/3rdparty/chromium/third_party/pdfium/third_party/pymock/LICENSE.txt
-sha256  e323929b7c2178e2efc9ac70e62166670274bd772f90a8d83a90300c5f60002c  src/3rdparty/chromium/third_party/perfetto/LICENSE
-sha256  9f98bab33648b77578d85ac0f1d1c3941a72aa6d7e65015ba181f2fe804bb85d  src/3rdparty/chromium/third_party/pexpect/LICENSE
-sha256  a46200592eb193853527250da098e6bb0c75424e7a2c7db8da526c4f301c3d88  src/3rdparty/chromium/third_party/pffft/LICENSE
-sha256  dd4930c619afd8527591353c7d3d1c1d7f4bf62ed1cb411f4f507dbdee7738a2  src/3rdparty/chromium/third_party/ply/LICENSE
-sha256  d6c873c08a8806f08fdafe1aa00ba38837f6ac29f91d6b26510614b0df2001e0  src/3rdparty/chromium/third_party/ply/license.patch
-sha256  24699c6858472311aa9acc6c2b7112ff9de6e7792569158ba9e439deb0529ef6  src/3rdparty/chromium/third_party/polymer/LICENSE.polymer
-sha256  a5adc2955c0dd848c97aa6afb14e0047a610f0fcfa6ce0011efad01a0e051406  src/3rdparty/chromium/third_party/polymer/v1_0/components-chromium/polymer2/LICENSE.txt
-sha256  984fb04a16a9f1e0145ffd891125dc366a01cd921f58c9b0369be400c720790d  src/3rdparty/chromium/third_party/polymer/v1_0/components-chromium/polymer/LICENSE.txt
-sha256  a5adc2955c0dd848c97aa6afb14e0047a610f0fcfa6ce0011efad01a0e051406  src/3rdparty/chromium/third_party/polymer/v3_0/components-chromium/polymer/LICENSE.txt
-sha256  58d1e17ffe5109a7ae296caafcadfdbe6a7d176f0bc4ab01e12a689b0499d8bd  src/3rdparty/chromium/third_party/private-join-and-compute/src/crypto/LICENSE
-sha256  58d1e17ffe5109a7ae296caafcadfdbe6a7d176f0bc4ab01e12a689b0499d8bd  src/3rdparty/chromium/third_party/private-join-and-compute/src/LICENSE
-sha256  58d1e17ffe5109a7ae296caafcadfdbe6a7d176f0bc4ab01e12a689b0499d8bd  src/3rdparty/chromium/third_party/private-join-and-compute/src/util/LICENSE
-sha256  294f58267c6f473c4ce7270bf5c8d34b2003cb43804552459654c36553431276  src/3rdparty/chromium/third_party/proguard/LICENSE
-sha256  6e5e117324afd944dcf67f36cf329843bc1a92229a8cd9bb573d7a83130fea7d  src/3rdparty/chromium/third_party/protobuf/LICENSE
-sha256  2ab28b982a7f3150e1597befaa87e1636b9973c80aef3752597945d270c4c4e4  src/3rdparty/chromium/third_party/pycoverage/LICENSE
-sha256  f8d0c347a0dcc6ebe1671640dfae8d2411b6ded892e06a6764f8208b218b2af4  src/3rdparty/chromium/third_party/pyelftools/elftools/construct/LICENSE
-sha256  f8c8ccecdbb044fd6fa1a586c596a055fb2b14fb3e335d8ed282db58d80b7410  src/3rdparty/chromium/third_party/pyelftools/LICENSE
-sha256  cb5e8e7e5f4a3988e1063c142c60dc2df75605f4c46515e776e3aca6df976e14  src/3rdparty/chromium/third_party/pyjson5/src/LICENSE
-sha256  c5b14f5a3814d2e57b9bb9520dcf57a2c3817b65c4f989e5c82e332c82af1038  src/3rdparty/chromium/third_party/pymock/LICENSE.txt
-sha256  318cea263a2fb726d767e2777771a431a3220008e6940dd5138a235a1fc498fc  src/3rdparty/chromium/third_party/pystache/LICENSE
-sha256  956c3b678228a216142df38d039bba56ee6509d3298e7a4b8dd5bc3eaa80fe33  src/3rdparty/chromium/third_party/Python-Markdown/LICENSE.md
-sha256  5a2954f05e7fcc1bf240a3b58534f974760b5aae02438ce875c9c7fe0bdb4cf9  src/3rdparty/chromium/third_party/pywebsocket3/src/LICENSE
-sha256  c903100da706172066fa1b6f02eba60f202fea63036492d2c4a01267e32aa7a8  src/3rdparty/chromium/third_party/qcms/src/COPYING
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/quic_trace/src/LICENSE
-sha256  38751245389e1e23f73e6f5384b5cbe7fa972cc4410c5adc9c04b082a0b9561a  src/3rdparty/chromium/third_party/quic_trace/src/third_party/fonts/LICENSE
-sha256  8991cd11befec7c6a63662700f03c0cc42e864b6e77c7e70b80297c951a7f0ff  src/3rdparty/chromium/third_party/quic_trace/src/third_party/glew/LICENSE.txt
-sha256  f98f3db81b4dd3873d8672117e409286142cfae9b7673ab6d7aab4bae1527d20  src/3rdparty/chromium/third_party/qunit/LICENSE
-sha256  68834f116f8ff545f05d14753357b620748156d60ee36b26beab4cb3f317efe4  src/3rdparty/chromium/third_party/r8/LICENSE
-sha256  6040cda75d90b1738292a631d89934c411ef7ffd543c4d6a1b7edfc8edf29449  src/3rdparty/chromium/third_party/re2/LICENSE
-sha256  6040cda75d90b1738292a631d89934c411ef7ffd543c4d6a1b7edfc8edf29449  src/3rdparty/chromium/third_party/re2/src/LICENSE
-sha256  e479bcdfa777738226b4282bf8536cc5416a25cec3100cbe210b8be4d1e2ed84  src/3rdparty/chromium/third_party/requests/LICENSE
-sha256  e2f59ff41d9d03adc3dcf3deff170f8c8cf4a6eb4a9b174762a7656d23200ffa  src/3rdparty/chromium/third_party/rnnoise/COPYING
-sha256  0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594  src/3rdparty/chromium/third_party/robolectric/LICENSE
-sha256  19c9b910bec5a4f2c420747d1bf81e975ffdb1377ad91c5d9b1e8dd3e38f4c17  src/3rdparty/chromium/third_party/robolectric/licenses/extreme.indiana.edu.license.txt
-sha256  a7436c952fa2dc0701860cf4187d1e8e8e6de6720dec0ae9e0b641bc50eebced  src/3rdparty/chromium/third_party/robolectric/licenses/javolution.license.txt
-sha256  5b6ac717e37db4f6d17bda7791f4ce3f99947aeb21e6e72b705aa3d1ee2de480  src/3rdparty/chromium/third_party/robolectric/licenses/pivotal.labs.license.txt
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/s2cellid/LICENSE
-sha256  3f941b3b89cf7b8370ceb83cc76d2120d471b58735d8ca60238a751a48d7f72f  src/3rdparty/chromium/third_party/schema_org/LICENSE
-sha256  c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4  src/3rdparty/chromium/third_party/shaderc/src/LICENSE
-sha256  b5a00e94f058edc87e05978329b55730d8689abe61205d9018443d03de4f07da  src/3rdparty/chromium/third_party/shaderc/src/third_party/LICENSE.glslang
-sha256  47e20ce182bc68fab1a0cfb129b03c326aaf4f2b6b7905aa9d376d31018bd29f  src/3rdparty/chromium/third_party/shaderc/src/third_party/LICENSE.spirv-tools
-sha256  33c9a2fe619e1200937629f318895898ffcd1bf7d0ddd39adc382c030925e61e  src/3rdparty/chromium/third_party/simplejson/LICENSE.txt
-sha256  b25948e48c44312d04ffc626a9d52cae7c04539a1a8e0c1be47b7bfa0da03e1d  src/3rdparty/chromium/third_party/sinonjs/LICENSE
-sha256  8bb850c565aa389fdc16f3a46965ad23d82adff60f2393fc2762b63185e8e6c9  src/3rdparty/chromium/third_party/six/LICENSE
-sha256  8bb850c565aa389fdc16f3a46965ad23d82adff60f2393fc2762b63185e8e6c9  src/3rdparty/chromium/third_party/six/src/LICENSE
-sha256  e59bb5c5c6ba426a9ac4ba9fe667ad14c5166b12aa25be8af1d122b14fbe2e36  src/3rdparty/chromium/third_party/skia/include/third_party/skcms/LICENSE
-sha256  e59bb5c5c6ba426a9ac4ba9fe667ad14c5166b12aa25be8af1d122b14fbe2e36  src/3rdparty/chromium/third_party/skia/include/third_party/vulkan/LICENSE
-sha256  5f787c1dee3c56547f09ccc2906ab5f5293c4d8dd6c8654e573216c38e908dbd  src/3rdparty/chromium/third_party/skia/LICENSE
-sha256  d27678cba0d529e77201e2d2a053628143e986aad8f1e77f7039ad4366c8f978  src/3rdparty/chromium/third_party/skia/modules/canvaskit/canvaskit/LICENSE
-sha256  d27678cba0d529e77201e2d2a053628143e986aad8f1e77f7039ad4366c8f978  src/3rdparty/chromium/third_party/skia/modules/pathkit/npm-asmjs/LICENSE
-sha256  d27678cba0d529e77201e2d2a053628143e986aad8f1e77f7039ad4366c8f978  src/3rdparty/chromium/third_party/skia/modules/pathkit/npm-wasm/LICENSE
-sha256  5366e97b4478f15a1e2fd7e6094337426597df28de50cd9fed3f2e7e87f1229e  src/3rdparty/chromium/third_party/skia/third_party/etc1/LICENSE
-sha256  e59bb5c5c6ba426a9ac4ba9fe667ad14c5166b12aa25be8af1d122b14fbe2e36  src/3rdparty/chromium/third_party/skia/third_party/skcms/LICENSE
-sha256  e21477eed484b07902a861a1b18d1e4ecd3e6f22fa81e2410f0770cfb67290e8  src/3rdparty/chromium/third_party/skia/third_party/vulkanmemoryallocator/include/LICENSE.txt
-sha256  d27678cba0d529e77201e2d2a053628143e986aad8f1e77f7039ad4366c8f978  src/3rdparty/chromium/third_party/skia/third_party/vulkanmemoryallocator/LICENSE
-sha256  e59bb5c5c6ba426a9ac4ba9fe667ad14c5166b12aa25be8af1d122b14fbe2e36  src/3rdparty/chromium/third_party/skia/third_party/wuffs/LICENSE
-sha256  3f6f1b520bc53e878ccbb698ad0bacef3752a5f4e4b50a26552bd70f60b40748  src/3rdparty/chromium/third_party/smhasher/LICENSE
-sha256  55172044f7e241207117448a4d9d6ba1d0925c8ad66b5d4c08c70adfa9cc3de6  src/3rdparty/chromium/third_party/snappy/src/COPYING
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/spirv-cross/spirv-cross/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/spirv-headers/LICENSE
-sha256  9b243f6f0bf44e295ff411a0f7b7642d1d0dff7cdc42507e9f7206f439e51b5a  src/3rdparty/chromium/third_party/spirv-headers/src/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/SPIRV-Tools/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/SPIRV-Tools/src/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/SPIRV-Tools/src/utils/vscode/src/lsp/LICENSE
-sha256  0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594  src/3rdparty/chromium/third_party/sqlite4java/LICENSE
-sha256  06545a6ec25fbbff6c62f205f94a35be49e38f33bea827a8cfb07d7b82e4b083  src/3rdparty/chromium/third_party/sqlite/LICENSE
-sha256  66e056b6e8687f32af30d5187611b98b12a8f46f07aaf62f43585f276e8f0ac9  src/3rdparty/chromium/third_party/sqlite/src/autoconf/tea/license.terms
-sha256  9c6479123f32a1ed50d9a0af203dfe8972e65035b0cdeef436b5f8d0924517fe  src/3rdparty/chromium/third_party/sqlite/src/LICENSE.md
-sha256  033d0150b3bd78b36894c88fcc68da0c3f2e661d3b3485e8cc9a61b2c2bf7895  src/3rdparty/chromium/third_party/subresource-filter-ruleset/LICENSE
-sha256  28113a6e9e2fd7584187c738a7c5484452a1c383307a1741bec50a73262fac08  src/3rdparty/chromium/third_party/sudden_motion_sensor/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/swiftshader/LICENSE.txt
-sha256  ad4672b403488876635d2b455918f74b829d478da868ffc0c621a00fc99195f5  src/3rdparty/chromium/third_party/tcmalloc/LICENSE
-sha256  81ebf38708899097aacaac9723679b3ffa17640c14cd3193c46b75197de18b2c  src/3rdparty/chromium/third_party/tcmalloc/vendor/COPYING
-sha256  d600ff20c150a675461dde76752e35f4cc3be6e7d8e70b8da3e775ea7e5ec4aa  src/3rdparty/chromium/third_party/test_fonts/LICENSE
-sha256  bb04dd22ee55fe3c24ee2a3c82bd1efdebbd965f7c178224a2977edc2457bb2f  src/3rdparty/chromium/third_party/tlslite/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/turbine/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/ub-uiautomator/LICENSE
-sha256  0a90947436dc17f047f8c95b64593e2cc9a2b6d4ff6618f2f0beba5a9b568c14  src/3rdparty/chromium/third_party/unrar/LICENSE
-sha256  6ecc1687808b7d66b24f874755abfed7464d9751ed0001cd4e8e5d9bf397ff8a  src/3rdparty/chromium/third_party/unrar/src/license.txt
-sha256  6629d6edceffa9c68f4245b817137d2265fdab1e98068893420edb6689ccce9e  src/3rdparty/chromium/third_party/usb_ids/LICENSE
-sha256  7a4a31e05391919c05a996f09fc20ffc80c69af72cb3e69ac71b70c825fbdd1d  src/3rdparty/chromium/third_party/usrsctp/LICENSE
-sha256  fa53711b25af4b9a9b8dadfea3cb38166ec4b96760c8d62b284055554537d9ef  src/3rdparty/chromium/third_party/usrsctp/usrsctplib/LICENSE.md
-sha256  5a7f623a50e384aaf6d2ced068339ddf93d0a50d3a0ecbe86f125b07804ecc78  src/3rdparty/chromium/third_party/v4l-utils/COPYING.libv4l
-sha256  376b54d4c5f4aa99421823fa4da93e3ab73096fce2400e89858632aa7da24a14  src/3rdparty/chromium/third_party/wds/LICENSE
-sha256  376b54d4c5f4aa99421823fa4da93e3ab73096fce2400e89858632aa7da24a14  src/3rdparty/chromium/third_party/wds/src/COPYING
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/web-animations-js/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/web-animations-js/sources/COPYING
-sha256  d51b39e7ed0391e75e0add75d1a162fdf4a0d6b49fba7635ed0ac4e16f324773  src/3rdparty/chromium/third_party/webdriver/COPYING
-sha256  6d83e980b9b843cf6fe24cb94714d00f9b0cf69cb00d0e3b0bed018d49d6f24f  src/3rdparty/chromium/third_party/webdriver/LICENSE
-sha256  fec8eb2896784d7b9ef5bcb1c64b97156455a3c88df4fdd36538fb55c0decac4  src/3rdparty/chromium/third_party/webgpu-cts/src/LICENSE.txt
-sha256  e30fbe869f1fa489901bb08888a919c5d50ddb5be6d16b9e4a2cb226263dd7db  src/3rdparty/chromium/third_party/webgpu-cts/src/third_party/jquery/LICENSE.txt
-sha256  25b7731b70c77ecd5f3bb19303fbaa99be18860f81d44f71da670fdcd04829db  src/3rdparty/chromium/third_party/webrtc/common_audio/third_party/fft4g/LICENSE
-sha256  41d791701e3e1c1073470403de7e342442d1e6a2af72681023b13a2f45f2125c  src/3rdparty/chromium/third_party/webrtc/common_audio/third_party/spl_sqrt_floor/LICENSE
-sha256  0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594  src/3rdparty/chromium/third_party/webrtc/examples/androidapp/third_party/autobanh/LICENSE
-sha256  26d2d16d48825edf1194cb3907c5c0b7d01f9c5527eb0fefb949c51f304635e9  src/3rdparty/chromium/third_party/webrtc/examples/androidapp/third_party/autobanh/LICENSE.md
-sha256  21a742dd8cceebb1d5df7c6f945c75ccf1ad4f0d4c17e404517500c1a7de86a4  src/3rdparty/chromium/third_party/webrtc/examples/objc/AppRTCMobile/third_party/SocketRocket/LICENSE
-sha256  ab00a482b6a3902e40211b43c5d0441962ea99b6cc7c25c0f243fa270b78d482  src/3rdparty/chromium/third_party/webrtc/LICENSE
-sha256  1f7a086c17fa2bdbe27d3eb6424a64b9bea9d7db89a4e220fef52ca24addb9e9  src/3rdparty/chromium/third_party/webrtc/license_template.txt
-sha256  6fdbabd2c95c5efc6f1e46175278239afb9343120a3022ed0e0cb04267a6aeb3  src/3rdparty/chromium/third_party/webrtc/modules/third_party/fft/LICENSE
-sha256  b29c8f13f91feb2dab7d6655444369fa9f29c0d7121a52dab90ff97e40343a85  src/3rdparty/chromium/third_party/webrtc/modules/third_party/g711/LICENSE
-sha256  61862327fd00d6a4deb2c1276577782c2500f4fe103e072018fc369d8e37e876  src/3rdparty/chromium/third_party/webrtc/modules/third_party/g722/LICENSE
-sha256  641007ea2810c4cfc10a5d1a44db33983ec1409305e953c7119cc2457ec5c536  src/3rdparty/chromium/third_party/webrtc/modules/third_party/portaudio/LICENSE
-sha256  a508773ebf00f8c777a910e941e5fd0072195843e1b72a90eb8787d26d4ab1d7  src/3rdparty/chromium/third_party/webrtc/rtc_base/third_party/base64/LICENSE
-sha256  905bc5ab1c66eea2669aee6cb5185488508264df6492f71ae1a6595180ff8c2b  src/3rdparty/chromium/third_party/webrtc/rtc_base/third_party/sigslot/LICENSE
-sha256  eb077b108bac4c81abe7410274af0930456790add09a6fe5316910e2b936c0f9  src/3rdparty/chromium/third_party/webxr_test_pages/LICENSE
-sha256  eb077b108bac4c81abe7410274af0930456790add09a6fe5316910e2b936c0f9  src/3rdparty/chromium/third_party/webxr_test_pages/webxr-samples/js/cottontail/LICENSE.md
-sha256  47754d3064047c300714af25258efa782e144fdf1e835bfd1edbeb7f8f4ef9e4  src/3rdparty/chromium/third_party/webxr_test_pages/webxr-samples/js/third-party/dat.gui/LICENSE
-sha256  71819b5a0a080b6a3d35b3579817c2c558abcf3c92bb5abc052145a7c106573e  src/3rdparty/chromium/third_party/webxr_test_pages/webxr-samples/js/third-party/gl-matrix/LICENSE
-sha256  eb077b108bac4c81abe7410274af0930456790add09a6fe5316910e2b936c0f9  src/3rdparty/chromium/third_party/webxr_test_pages/webxr-samples/LICENSE.md
-sha256  88d855a8e07a39df758fe9964f5d04d5c2fab39416e566e9d91588e254ca27dc  src/3rdparty/chromium/third_party/weston/LICENSE
-sha256  fdb65868f65d0fbdb05c2d3b779e10ce9969fa0c4b9262ba4f260e87086ab860  src/3rdparty/chromium/third_party/weston/src/COPYING
-sha256  a34730970264d619f352598bf30295ad505a60fc3a493add8aa851645ce3ea47  src/3rdparty/chromium/third_party/weston/src/data/COPYING
-sha256  20de375707692099b3132084695377ce5fec0aec05813dedcce094b8eda44386  src/3rdparty/chromium/third_party/widevine/LICENSE
-sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  src/3rdparty/chromium/third_party/woff2/LICENSE
-sha256  0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594  src/3rdparty/chromium/third_party/wuffs/LICENSE
-sha256  0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594  src/3rdparty/chromium/third_party/wuffs/src/LICENSE
-sha256  b244f73c3d21edaf44ec253b9a7c389ec43313c417f52f8b71914b0c40d87325  src/3rdparty/chromium/third_party/xdg-utils/LICENSE
-sha256  1cf71700f3403ca26f002e2dc1d1861dcb3d2af9bb9d98d529a903be9d7f06fc  src/3rdparty/chromium/third_party/xstream/LICENSE
-sha256  795f8d76eade6130129b680ac72ea81cb3e143467a65ea1f5f64946151d7fa20  src/3rdparty/chromium/third_party/yasm/source/patched-yasm/COPYING
-sha256  942755efa272dbfbcd7afea7a38556801e36c16dcad002d572378367094a2593  src/3rdparty/chromium/third_party/zlib/LICENSE
-sha256  a4c8c5abf82b36c22f8c9f8bd6229584f32eb9f7a2429dd9664dda43e63e9fda  src/3rdparty/chromium/tools/grit/third_party/six/LICENSE
-sha256  63f0c0039b477857e54708d9501ed91b7a46e828ac3c623bedbc318129ceb174  src/3rdparty/chromium/tools/origin_trials/third_party/ed25519/LICENSE
-sha256  f5b244982699ca9fe5cc8fa8a7c08cf5dee5d3a0c8896892899e5df13316e1b7  src/3rdparty/chromium/tools/page_cycler/acid3/LICENSE
-sha256  7389900fb68d920c6cb21b70702a2bc240523472a3fd091023d6135cf01d1c5c  src/3rdparty/chromium/tools/win/ChromeDebug/ChromeDebug/LICENSE
-sha256  284545e873c704952e5b1b39d457dd83a3b115a51d9f1eb5175137bd69b8fa1b  src/3rdparty/chromium/url/third_party/mozilla/LICENSE.txt
-sha256  f10a1808e442ae7dbfecf6b54ae4de84193a768770e189a67d5f397730acdbc9  src/3rdparty/chromium/v8/LICENSE
-sha256  e7115e18444dae09d17f361ddc365fb1d342640fe500796209c63f7c80dfae10  src/3rdparty/chromium/v8/LICENSE.fdlibm
-sha256  6a585a9f466654abc8fc0829d56b1bc987e3a073d31faa03bba37d33640a23cd  src/3rdparty/chromium/v8/LICENSE.strongtalk
-sha256  4af93c12062c58058378de2397dc1c92bbff9ddfb1d583a01c84127557ce97ca  src/3rdparty/chromium/v8/LICENSE.v8
-sha256  cae8c00ca6e90a682c321ec11e7a5a345d0d317aa0b8f038e03ef03a18095b2f  src/3rdparty/chromium/v8/LICENSE.valgrind
-sha256  36ffd9dc085d529a7e60e1276d73ae5a030b020313e6c5408593a6ae2af39673  src/3rdparty/chromium/v8/src/third_party/siphash/LICENSE
-sha256  3f712e5fbdfdbd5ee7d9b8c8152580220df55de47f4eba2f26c95c4de19ad096  src/3rdparty/chromium/v8/src/third_party/utf8-decoder/LICENSE
-sha256  ebf25b8ce59c9e8883acd1ca75b6fc121937ca034f666c4077d2be739d2e1622  src/3rdparty/chromium/v8/src/third_party/valgrind/LICENSE
-sha256  cfe7599e45f340a35b4635090382897ca1526bc49b5e1889047f0168d131c415  src/3rdparty/chromium/v8/src/third_party/vtune/LICENSE
-sha256  15137d6c822e3ab097093a33c3a39a9df699f373f6438867ad534ff60762a947  src/3rdparty/chromium/v8/third_party/colorama/LICENSE
-sha256  b9be92f13356083392d97da13cab8ae543c7911f44eff5289b693da8b17b9e08  src/3rdparty/chromium/v8/third_party/inspector_protocol/LICENSE
-sha256  b9a6d9320b8f2693e8d41e496ce56caadacaddcca9be2a64a61749278f425cf2  src/3rdparty/chromium/v8/third_party/v8/builtins/LICENSE
-sha256  c6596eb7be8581c18be736c846fb9173b69eccf6ef94c5135893ec56bd92ba08  src/3rdparty/chromium/v8/third_party/wasm-api/LICENSE
-sha256  5d85142a5609ad177a2d7a2e7cae060b886b8b42f25c5b9803cf0cb5ee04ad2f  src/3rdparty/gn/base/third_party/icu/LICENSE
-sha256  845022e0c1db1abb41a6ba4cd3c4b674ec290f3359d9d3c78ae558d4c0ed9308  src/3rdparty/gn/LICENSE
-sha256  eb7e9ab9690124c5c9f42bdc81383d886a3dede26345b6ed15bbad7caf81f7ea  src/3rdparty/ninja/COPYING
diff --git a/package/qt5/qt5webengine/qt5webengine.mk b/package/qt5/qt5webengine/qt5webengine.mk
index 64c9c96cc2..1b5529d2bb 100644
--- a/package/qt5/qt5webengine/qt5webengine.mk
+++ b/package/qt5/qt5webengine/qt5webengine.mk
@@ -5,18 +5,18 @@
 ################################################################################
 
 QT5WEBENGINE_VERSION = $(QT5_VERSION)
-QT5WEBENGINE_SITE = $(QT5_SITE)
-QT5WEBENGINE_SOURCE = qtwebengine-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5WEBENGINE_VERSION).tar.xz
+QT5WEBENGINE_SITE = $(QT5_SITE)/qtwebengine/-/archive/v$(QT5WEBENGINE_VERSION)-lts
+QT5WEBENGINE_SOURCE = qtwebengine-v$(QT5WEBENGINE_VERSION)-lts.tar.bz2
 QT5WEBENGINE_DEPENDENCIES = ffmpeg libglib2 libvpx libxkbcommon opus webp \
-	qt5declarative qt5webchannel host-bison host-flex host-gperf \
-	host-pkgconf host-python
+	qt5declarative qt5webchannel host-bison host-flex host-freetype \
+	host-gperf host-nodejs host-pkgconf host-python
+QT5WEBENGINE_PATCH_DEPENDENCIES = qt5webengine-chromium
 QT5WEBENGINE_INSTALL_STAGING = YES
-
-include package/qt5/qt5webengine/chromium-latest.inc
+QT5WEBENGINE_SYNC_QT_HEADERS = YES
 
 QT5WEBENGINE_LICENSE = GPL-2.0 or LGPL-3.0 or GPL-3.0 or GPL-3.0 with exception
 QT5WEBENGINE_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT \
-	LICENSE.GPLv3 LICENSE.LGPL3 $(QT5WEBENGINE_CHROMIUM_LICENSE_FILES)
+	LICENSE.GPLv3 LICENSE.LGPL3
 
 ifeq ($(BR2_PACKAGE_QT5BASE_EXAMPLES),y)
 QT5WEBENGINE_DEPENDENCIES += qt5svg
@@ -24,7 +24,7 @@ endif
 
 ifeq ($(BR2_PACKAGE_QT5BASE_XCB),y)
 QT5WEBENGINE_DEPENDENCIES += xlib_libXScrnSaver xlib_libXcomposite \
-	xlib_libXcursor xlib_libXi xlib_libXrandr xlib_libXtst
+	xlib_libXcursor xlib_libXi xlib_libxkbfile xlib_libXrandr xlib_libXtst
 endif
 
 QT5WEBENGINE_DEPENDENCIES += host-libpng host-libnss libnss
@@ -44,7 +44,9 @@ endif
 # QtWebengine's build system uses python, but only supports python2. We work
 # around this by forcing python2 early in the PATH, via a python->python2
 # symlink.
-QT5WEBENGINE_ENV = PATH=$(@D)/host-bin:$(BR_PATH)
+QT5WEBENGINE_ENV = \
+	PATH=$(@D)/host-bin:$(BR_PATH) \
+	PKG_CONFIG_PATH=$(STAGING_DIR)/usr/lib/pkgconfig
 define QT5WEBENGINE_PYTHON2_SYMLINK
 	mkdir -p $(@D)/host-bin
 	ln -sf $(HOST_DIR)/bin/python2 $(@D)/host-bin/python
@@ -53,12 +55,20 @@ QT5WEBENGINE_PRE_CONFIGURE_HOOKS += QT5WEBENGINE_PYTHON2_SYMLINK
 
 QT5WEBENGINE_ENV += NINJAFLAGS="-j$(PARALLEL_JOBS)"
 
+define QT5WEBENGINE_COPY_CHROMIUM
+	rm -rf $(@D)/src/3rdparty
+	cp -a $(QT5WEBENGINE_CHROMIUM_DIR) $(@D)/src/3rdparty
+endef
+QT5WEBENGINE_POST_PATCH_HOOKS += QT5WEBENGINE_COPY_CHROMIUM
+
 define QT5WEBENGINE_CREATE_HOST_PKG_CONFIG
 	sed s%@HOST_DIR@%$(HOST_DIR)%g $(QT5WEBENGINE_PKGDIR)/host-pkg-config.in > $(@D)/host-bin/host-pkg-config
 	chmod +x $(@D)/host-bin/host-pkg-config
 endef
 QT5WEBENGINE_PRE_CONFIGURE_HOOKS += QT5WEBENGINE_CREATE_HOST_PKG_CONFIG
-QT5WEBENGINE_ENV += GN_PKG_CONFIG_HOST=$(@D)/host-bin/host-pkg-config
+QT5WEBENGINE_ENV += \
+	GN_PKG_CONFIG_HOST=$(@D)/host-bin/host-pkg-config \
+	GN_HOST_TOOLCHAIN_EXTRA_CPPFLAGS="$(HOST_CPPFLAGS)"
 
 QT5WEBENGINE_CONF_ENV = $(QT5WEBENGINE_ENV)
 QT5WEBENGINE_MAKE_ENV = $(QT5WEBENGINE_ENV)
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 3/3] package/qt5: bump packages to latest kde submodule versions
  2022-01-05 10:14 [Buildroot] [PATCH 1/3] package/qt5/qt5webengine-chromium-catapult: new package James Hilliard
  2022-01-05 10:14 ` [Buildroot] [PATCH 2/3] package/qt5/qt5webengine: bump to version 5.15.8 James Hilliard
@ 2022-01-05 10:14 ` James Hilliard
  1 sibling, 0 replies; 3+ messages in thread
From: James Hilliard @ 2022-01-05 10:14 UTC (permalink / raw)
  To: buildroot
  Cc: Naumann Andreas, Joshua Henderson, Bartosz Bilas,
	Angelo Compagnucci, Peter Seiderer, Gaël Portay,
	Thomas Petazzoni, James Hilliard, Julien Corjon

This points all qt5 packages to the latest kde submodule versions
available at https://invent.kde.org/qt/qt/qt5/-/tree/kde/5.15

We need to remove some patches applied upstream already.

We need to rework qt5location to pull in the mapboxgl dependency from
a separate package as that dependency is only included in release
archives.

We need to pin qt5 packages not available in the new upstream to the
previous 5.15.2 version.

We need to set SYNC_QT_HEADERS for all qt5 packages in the new
upstream as headers are only copied in release archives which are
not provided in the kde upstream.

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
 package/qt5/qt53d/qt53d.hash                  |  4 +-
 package/qt5/qt53d/qt53d.mk                    |  7 ++-
 ...Fix-build-with-GCC-11-include-limits.patch | 53 ----------------
 .../qt5base/0007-Build-fixes-for-GCC-11.patch | 61 -------------------
 .../0008-Add-missing-limits-include.patch     | 32 ----------
 .../qt5base/0009-Fix-build-on-riscv32.patch   | 45 --------------
 package/qt5/qt5base/qt5base.hash              |  4 +-
 package/qt5/qt5base/qt5base.mk                |  7 ++-
 package/qt5/qt5charts/qt5charts.hash          |  4 +-
 package/qt5/qt5charts/qt5charts.mk            |  7 ++-
 package/qt5/qt5coap/qt5coap.mk                |  2 +-
 .../qt5/qt5connectivity/qt5connectivity.hash  |  4 +-
 .../qt5/qt5connectivity/qt5connectivity.mk    |  7 ++-
 ...t_p-needs-c-limits-inlcude-fixes-gcc.patch | 45 --------------
 .../qt5/qt5declarative/qt5declarative.hash    |  4 +-
 package/qt5/qt5declarative/qt5declarative.mk  |  7 ++-
 .../qt5graphicaleffects.hash                  |  4 +-
 .../qt5graphicaleffects.mk                    |  7 ++-
 .../qt5/qt5imageformats/qt5imageformats.hash  |  4 +-
 .../qt5/qt5imageformats/qt5imageformats.mk    |  7 ++-
 package/qt5/qt5knx/qt5knx.mk                  |  2 +-
 ...gl-native-fix-musl-compile-pthread_g.patch |  8 +--
 .../qt5location-mapboxgl.hash                 | 16 +++++
 .../qt5location-mapboxgl.mk                   | 13 ++++
 ...ix-compilation-for-no-opengl-builds.patch} |  0
 package/qt5/qt5location/qt5location.hash      |  4 +-
 package/qt5/qt5location/qt5location.mk        | 14 ++++-
 package/qt5/qt5lottie/qt5lottie.hash          |  4 +-
 package/qt5/qt5lottie/qt5lottie.mk            |  7 ++-
 package/qt5/qt5mqtt/qt5mqtt.mk                |  2 +-
 package/qt5/qt5multimedia/qt5multimedia.hash  |  4 +-
 package/qt5/qt5multimedia/qt5multimedia.mk    |  7 ++-
 package/qt5/qt5opcua/qt5opcua.mk              |  2 +-
 .../qt5quickcontrols/qt5quickcontrols.hash    |  4 +-
 .../qt5/qt5quickcontrols/qt5quickcontrols.mk  |  7 ++-
 .../qt5quickcontrols2/qt5quickcontrols2.hash  |  4 +-
 .../qt5quickcontrols2/qt5quickcontrols2.mk    |  7 ++-
 .../qt5quicktimeline/qt5quicktimeline.hash    |  4 +-
 .../qt5/qt5quicktimeline/qt5quicktimeline.mk  |  7 ++-
 .../qt5remoteobjects/qt5remoteobjects.hash    |  4 +-
 .../qt5/qt5remoteobjects/qt5remoteobjects.mk  |  7 ++-
 package/qt5/qt5script/qt5script.hash          |  4 +-
 package/qt5/qt5script/qt5script.mk            |  7 ++-
 package/qt5/qt5scxml/qt5scxml.hash            |  4 +-
 package/qt5/qt5scxml/qt5scxml.mk              |  7 ++-
 package/qt5/qt5sensors/qt5sensors.hash        |  4 +-
 package/qt5/qt5sensors/qt5sensors.mk          |  7 ++-
 package/qt5/qt5serialbus/qt5serialbus.hash    |  4 +-
 package/qt5/qt5serialbus/qt5serialbus.mk      |  7 ++-
 package/qt5/qt5serialport/qt5serialport.hash  |  4 +-
 package/qt5/qt5serialport/qt5serialport.mk    |  7 ++-
 package/qt5/qt5svg/qt5svg.hash                |  4 +-
 package/qt5/qt5svg/qt5svg.mk                  |  7 ++-
 package/qt5/qt5tools/qt5tools.hash            |  4 +-
 package/qt5/qt5tools/qt5tools.mk              |  7 ++-
 .../qt5virtualkeyboard.hash                   |  4 +-
 .../qt5virtualkeyboard/qt5virtualkeyboard.mk  |  7 ++-
 package/qt5/qt5wayland/qt5wayland.hash        |  4 +-
 package/qt5/qt5wayland/qt5wayland.mk          |  7 ++-
 package/qt5/qt5webchannel/qt5webchannel.hash  |  4 +-
 package/qt5/qt5webchannel/qt5webchannel.mk    |  7 ++-
 .../qt5webkit-examples/qt5webkit-examples.mk  |  2 +-
 package/qt5/qt5websockets/qt5websockets.hash  |  4 +-
 package/qt5/qt5websockets/qt5websockets.mk    |  7 ++-
 package/qt5/qt5webview/qt5webview.hash        |  4 +-
 package/qt5/qt5webview/qt5webview.mk          |  7 ++-
 package/qt5/qt5x11extras/qt5x11extras.hash    |  4 +-
 package/qt5/qt5x11extras/qt5x11extras.mk      |  7 ++-
 .../qt5/qt5xmlpatterns/qt5xmlpatterns.hash    |  4 +-
 package/qt5/qt5xmlpatterns/qt5xmlpatterns.mk  |  7 ++-
 70 files changed, 213 insertions(+), 385 deletions(-)
 delete mode 100644 package/qt5/qt5base/0006-Fix-build-with-GCC-11-include-limits.patch
 delete mode 100644 package/qt5/qt5base/0007-Build-fixes-for-GCC-11.patch
 delete mode 100644 package/qt5/qt5base/0008-Add-missing-limits-include.patch
 delete mode 100644 package/qt5/qt5base/0009-Fix-build-on-riscv32.patch
 delete mode 100644 package/qt5/qt5declarative/0003-qqmlprofilerevent_p-needs-c-limits-inlcude-fixes-gcc.patch
 rename package/qt5/{qt5location => qt5location-mapboxgl}/0001-3rdparty-mapbox-gl-native-fix-musl-compile-pthread_g.patch (81%)
 create mode 100644 package/qt5/qt5location-mapboxgl/qt5location-mapboxgl.hash
 create mode 100644 package/qt5/qt5location-mapboxgl/qt5location-mapboxgl.mk
 rename package/qt5/qt5location/{0002-fix-compilation-for-no-opengl-builds.patch => 0001-fix-compilation-for-no-opengl-builds.patch} (100%)

diff --git a/package/qt5/qt53d/qt53d.hash b/package/qt5/qt53d/qt53d.hash
index 43b2132cc7..32d3675619 100644
--- a/package/qt5/qt53d/qt53d.hash
+++ b/package/qt5/qt53d/qt53d.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qt3d-everywhere-src-5.15.2.tar.xz.sha256
-sha256  03ed6a48c813c75296c19f5d721184ab168280b69d2656cf16f877d3d4c55c1d  qt3d-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  4c40260d4298b3e71a9879b43530b1e0b3f235a680bb0e7be76a375f4ae24696  qt3d-dba14d48611b9e9d59576172658779ab4a39b416.tar.bz2
 
 # Hashes for license files:
 sha256  edfe70e99be2a7c109d860b19204609e582720b211c50caedac729da372a1253  LICENSE.GPL
diff --git a/package/qt5/qt53d/qt53d.mk b/package/qt5/qt53d/qt53d.mk
index f3eff9edf0..9a07d189bd 100644
--- a/package/qt5/qt53d/qt53d.mk
+++ b/package/qt5/qt53d/qt53d.mk
@@ -4,11 +4,12 @@
 #
 ################################################################################
 
-QT53D_VERSION = $(QT5_VERSION)
-QT53D_SITE = $(QT5_SITE)
-QT53D_SOURCE = qt3d-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT53D_VERSION).tar.xz
+QT53D_VERSION = dba14d48611b9e9d59576172658779ab4a39b416
+QT53D_SITE = $(QT5_SITE)/qt3d/-/archive/$(QT53D_VERSION)
+QT53D_SOURCE = qt3d-$(QT53D_VERSION).tar.bz2
 QT53D_DEPENDENCIES = qt5declarative
 QT53D_INSTALL_STAGING = YES
+QT53D_SYNC_QT_HEADERS = YES
 
 ifeq ($(BR2_PACKAGE_ASSIMP),y)
 QT53D_DEPENDENCIES += assimp
diff --git a/package/qt5/qt5base/0006-Fix-build-with-GCC-11-include-limits.patch b/package/qt5/qt5base/0006-Fix-build-with-GCC-11-include-limits.patch
deleted file mode 100644
index f014a160d5..0000000000
--- a/package/qt5/qt5base/0006-Fix-build-with-GCC-11-include-limits.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-From 9c56d4da2ff631a8c1c30475bd792f6c86bda53c Mon Sep 17 00:00:00 2001
-From: Thiago Macieira <thiago.macieira@intel.com>
-Date: Mon, 18 Jan 2021 07:40:54 -0800
-Subject: [PATCH] Fix build with GCC 11: include <limits>
-
-Fixes: QTBUG-90395
-Pick-to: 6.0
-Change-Id: Iecc74d2000eb40dfbe7bfffd165b5dd3708b7a40
-Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
-
-[Retrieved (and backported) from:
-https://github.com/qt/qtbase/commit/9c56d4da2ff631a8c1c30475bd792f6c86bda53c]
-Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
----
- src/corelib/global/qendian.h  | 6 ++++--
- src/corelib/global/qfloat16.h | 1 +
- 2 files changed, 5 insertions(+), 2 deletions(-)
-
-diff --git a/src/corelib/global/qendian.h b/src/corelib/global/qendian.h
-index 99b529f17cd..c874c5e47ab 100644
---- a/src/corelib/global/qendian.h
-+++ b/src/corelib/global/qendian.h
-@@ -1,7 +1,7 @@
- /****************************************************************************
- **
--** Copyright (C) 2016 The Qt Company Ltd.
--** Copyright (C) 2016 Intel Corporation.
-+** Copyright (C) 2021 The Qt Company Ltd.
-+** Copyright (C) 2021 Intel Corporation.
- ** Contact: https://www.qt.io/licensing/
- **
- ** This file is part of the QtCore module of the Qt Toolkit.
-@@ -44,6 +44,8 @@
- #include <QtCore/qfloat16.h>
- #include <QtCore/qglobal.h>
- 
-+#include <limits>
-+
- // include stdlib.h and hope that it defines __GLIBC__ for glibc-based systems
- #include <stdlib.h>
- #include <string.h>
-diff --git a/src/corelib/global/qfloat16.h b/src/corelib/global/qfloat16.h
-index e9477d2ecec..a25fac28862 100644
---- a/src/corelib/global/qfloat16.h
-+++ b/src/corelib/global/qfloat16.h
-@@ -44,6 +44,7 @@
-
- #include <QtCore/qglobal.h>
- #include <QtCore/qmetatype.h>
-+#include <limits>
- #include <string.h>
- 
- #if defined(QT_COMPILER_SUPPORTS_F16C) && defined(__AVX2__) && !defined(__F16C__)
diff --git a/package/qt5/qt5base/0007-Build-fixes-for-GCC-11.patch b/package/qt5/qt5base/0007-Build-fixes-for-GCC-11.patch
deleted file mode 100644
index d20600c6ce..0000000000
--- a/package/qt5/qt5base/0007-Build-fixes-for-GCC-11.patch
+++ /dev/null
@@ -1,61 +0,0 @@
-From 86494659b2ab14edc653cd2d9260561ad4c4e4e8 Mon Sep 17 00:00:00 2001
-From: Ville Voutilainen <ville.voutilainen@qt.io>
-Date: Mon, 18 Jan 2021 09:58:17 +0200
-Subject: [PATCH] Build fixes for GCC 11
-
-Task-number: QTBUG-89977
-Change-Id: Ic1b7ddbffb8a0a00f8c621d09a868f1d94a52c21
-Reviewed-by: Lars Knoll <lars.knoll@qt.io>
-Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
-[Retrieved (and backported) from:
-https://github.com/qt/qtbase/commit/813a928c7c3cf98670b6043149880ed5c955efb9]
-Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
----
- src/corelib/text/qbytearraymatcher.h     | 2 ++
- src/corelib/tools/qsharedpointer_impl.h  | 3 ---
- src/plugins/platforms/xcb/qxcbwindow.cpp | 2 +-
- 3 files changed, 3 insertions(+), 4 deletions(-)
-
-diff --git a/src/corelib/text/qbytearraymatcher.h b/src/corelib/text/qbytearraymatcher.h
-index 0eedfc1d20..f5f9bef7b8 100644
---- a/src/corelib/text/qbytearraymatcher.h
-+++ b/src/corelib/text/qbytearraymatcher.h
-@@ -42,6 +42,8 @@
- 
- #include <QtCore/qbytearray.h>
- 
-+#include <limits>
-+
- QT_BEGIN_NAMESPACE
- 
- 
-diff --git a/src/corelib/tools/qsharedpointer_impl.h b/src/corelib/tools/qsharedpointer_impl.h
-index 790c187cb9..4aee98af53 100644
---- a/src/corelib/tools/qsharedpointer_impl.h
-+++ b/src/corelib/tools/qsharedpointer_impl.h
-@@ -155,9 +155,6 @@ namespace QtSharedPointer {
- #endif
-         inline void checkQObjectShared(...) { }
-         inline void setQObjectShared(...) { }
--
--        inline void operator delete(void *ptr) { ::operator delete(ptr); }
--        inline void operator delete(void *, void *) { }
-     };
-     // sizeof(ExternalRefCountData) = 12 (32-bit) / 16 (64-bit)
- 
-diff --git a/src/plugins/platforms/xcb/qxcbwindow.cpp b/src/plugins/platforms/xcb/qxcbwindow.cpp
-index 9e7e1a5572..f0866a90ac 100644
---- a/src/plugins/platforms/xcb/qxcbwindow.cpp
-+++ b/src/plugins/platforms/xcb/qxcbwindow.cpp
-@@ -698,7 +698,7 @@ void QXcbWindow::show()
-         if (isTransient(window())) {
-             const QWindow *tp = window()->transientParent();
-             if (tp && tp->handle())
--                transientXcbParent = static_cast<const QXcbWindow *>(tp->handle())->winId();
-+                transientXcbParent = tp->handle()->winId();
-             // Default to client leader if there is no transient parent, else modal dialogs can
-             // be hidden by their parents.
-             if (!transientXcbParent)
--- 
-2.31.1
-
diff --git a/package/qt5/qt5base/0008-Add-missing-limits-include.patch b/package/qt5/qt5base/0008-Add-missing-limits-include.patch
deleted file mode 100644
index e489f2e551..0000000000
--- a/package/qt5/qt5base/0008-Add-missing-limits-include.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 87a869a8404047240cccaa9f101351aeb9417a26 Mon Sep 17 00:00:00 2001
-From: Nicolas Fella <nicolas.fella@kdab.com>
-Date: Sun, 20 Jun 2021 17:36:41 +0200
-Subject: [PATCH] Add missing limits include
-
-The code uses std::numeric_limits but is lacking the appropriate include
-
-Pick-to: 5.15 6.1 6.2
-Change-Id: I41fa5ac4d8c4e06f35b5b1551ef2ad8417df80bd
-Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
-
-[Upstream: https://code.qt.io/cgit/qt/qtbase.git/patch/?id=2b2b3155d9f6ba1e4f859741468fbc47db09292b]
-Signed-off-by: Peter Seiderer <ps.report@gmx.net>
----
- src/corelib/tools/qoffsetstringarray_p.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/corelib/tools/qoffsetstringarray_p.h b/src/corelib/tools/qoffsetstringarray_p.h
-index 4dd9e960..e26a57ff 100644
---- a/src/corelib/tools/qoffsetstringarray_p.h
-+++ b/src/corelib/tools/qoffsetstringarray_p.h
-@@ -55,6 +55,7 @@
- 
- #include <tuple>
- #include <array>
-+#include <limits>
- 
- QT_BEGIN_NAMESPACE
- 
--- 
-2.32.0
-
diff --git a/package/qt5/qt5base/0009-Fix-build-on-riscv32.patch b/package/qt5/qt5base/0009-Fix-build-on-riscv32.patch
deleted file mode 100644
index 98c7210551..0000000000
--- a/package/qt5/qt5base/0009-Fix-build-on-riscv32.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-From 035dc537bee26e3b63a211b2835d8560439e161f Mon Sep 17 00:00:00 2001
-From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
-Date: Fri, 27 Aug 2021 16:28:32 +0200
-Subject: Fix build on riscv32
-
-riscv32 fails to build because __NR_futex is not defined on this
-architecture:
-
-In file included from thread/qmutex_linux.cpp:45,
-                 from thread/qmutex.cpp:804:
-thread/qfutex_p.h: In function 'int QtLinuxFutex::_q_futex(int*, int, int, quintptr, int*, int)':
-thread/qfutex_p.h:116:30: error: '__NR_futex' was not declared in this scope; did you mean '_q_futex'?
-  116 |         int result = syscall(__NR_futex, addr, op | FUTEX_PRIVATE_FLAG, val, val2, addr2, val3);
-      |                              ^~~~~~~~~~
-      |                              _q_futex
-
-Pick-to: 6.1 6.2
-Fixes: QTBUG-96067
-Change-Id: Ib6a9bcc496f37e69ac39362cb0a021fccaf311f5
-Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
-[Retrieved from:
-https://code.qt.io/cgit/qt/qtbase.git/commit/?id=035dc537bee26e3b63a211b2835d8560439e161f]
----
- src/corelib/thread/qfutex_p.h | 5 +++++
- 1 file changed, 5 insertions(+)
-
-diff --git a/src/corelib/thread/qfutex_p.h b/src/corelib/thread/qfutex_p.h
-index 40482b6fc1..037207a5c0 100644
---- a/src/corelib/thread/qfutex_p.h
-+++ b/src/corelib/thread/qfutex_p.h
-@@ -103,6 +103,11 @@ QT_END_NAMESPACE
- // if not defined in linux/futex.h
- #  define FUTEX_PRIVATE_FLAG        128         // added in v2.6.22
- 
-+// RISC-V does not supply __NR_futex
-+#  ifndef __NR_futex
-+#    define __NR_futex __NR_futex_time64
-+#  endif
-+
- QT_BEGIN_NAMESPACE
- namespace QtLinuxFutex {
-     constexpr inline bool futexAvailable() { return true; }
--- 
-cgit v1.2.1
-
diff --git a/package/qt5/qt5base/qt5base.hash b/package/qt5/qt5base/qt5base.hash
index a824890e3c..d10847ea04 100644
--- a/package/qt5/qt5base/qt5base.hash
+++ b/package/qt5/qt5base/qt5base.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtbase-everywhere-src-5.15.2.tar.xz.sha256
-sha256  909fad2591ee367993a75d7e2ea50ad4db332f05e1c38dd7a5a274e156a4e0f8  qtbase-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  b23754a97af171a6b0b0a21eda3fcc47ad4ac96db172010a7453afc41b6b227d  qtbase-6e9cf7f32ceffd62d230d482d8d0d4a5b2c9303a.tar.bz2
 
 # Hashes for license files:
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
diff --git a/package/qt5/qt5base/qt5base.mk b/package/qt5/qt5base/qt5base.mk
index ba2971dc08..294542fabb 100644
--- a/package/qt5/qt5base/qt5base.mk
+++ b/package/qt5/qt5base/qt5base.mk
@@ -4,12 +4,13 @@
 #
 ################################################################################
 
-QT5BASE_VERSION = $(QT5_VERSION)
-QT5BASE_SITE = $(QT5_SITE)
-QT5BASE_SOURCE = qtbase-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5BASE_VERSION).tar.xz
+QT5BASE_VERSION = 6e9cf7f32ceffd62d230d482d8d0d4a5b2c9303a
+QT5BASE_SITE = $(QT5_SITE)/qtbase/-/archive/$(QT5BASE_VERSION)
+QT5BASE_SOURCE = qtbase-$(QT5BASE_VERSION).tar.bz2
 
 QT5BASE_DEPENDENCIES = host-pkgconf pcre2 zlib
 QT5BASE_INSTALL_STAGING = YES
+QT5BASE_SYNC_QT_HEADERS = YES
 
 # A few comments:
 #  * -no-pch to workaround the issue described at
diff --git a/package/qt5/qt5charts/qt5charts.hash b/package/qt5/qt5charts/qt5charts.hash
index b52be714b7..021d4ea19f 100644
--- a/package/qt5/qt5charts/qt5charts.hash
+++ b/package/qt5/qt5charts/qt5charts.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtcharts-everywhere-src-5.15.2.tar.xz.sha256
-sha256  e0750e4195bd8a8b9758ab4d98d437edbe273cd3d289dd6a8f325df6d13f3d11  qtcharts-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  60f973c79aa059981347864ca26ef361ac38bc835286ac5875f6c7c1248a9b21  qtcharts-130463160b4923069eb98da49edaf7d93180f4f8.tar.bz2
 
 # Hashes for license files:
 sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  LICENSE.GPL3
diff --git a/package/qt5/qt5charts/qt5charts.mk b/package/qt5/qt5charts/qt5charts.mk
index 2c40ac1c89..24e635b93b 100644
--- a/package/qt5/qt5charts/qt5charts.mk
+++ b/package/qt5/qt5charts/qt5charts.mk
@@ -4,10 +4,11 @@
 #
 ################################################################################
 
-QT5CHARTS_VERSION = $(QT5_VERSION)
-QT5CHARTS_SITE = $(QT5_SITE)
-QT5CHARTS_SOURCE = qtcharts-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5CHARTS_VERSION).tar.xz
+QT5CHARTS_VERSION = 130463160b4923069eb98da49edaf7d93180f4f8
+QT5CHARTS_SITE = $(QT5_SITE)/qtcharts/-/archive/$(QT5CHARTS_VERSION)
+QT5CHARTS_SOURCE = qtcharts-$(QT5CHARTS_VERSION).tar.bz2
 QT5CHARTS_INSTALL_STAGING = YES
+QT5CHARTS_SYNC_QT_HEADERS = YES
 
 QT5CHARTS_LICENSE = GPL-3.0
 QT5CHARTS_LICENSE_FILES = LICENSE.GPL3
diff --git a/package/qt5/qt5coap/qt5coap.mk b/package/qt5/qt5coap/qt5coap.mk
index 24de869120..a50f19d7f2 100644
--- a/package/qt5/qt5coap/qt5coap.mk
+++ b/package/qt5/qt5coap/qt5coap.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-QT5COAP_VERSION = $(QT5_VERSION)
+QT5COAP_VERSION = 5.15.2
 QT5COAP_SITE = https://code.qt.io/cgit/qt/qtcoap.git
 QT5COAP_SITE_METHOD = git
 QT5COAP_INSTALL_STAGING = YES
diff --git a/package/qt5/qt5connectivity/qt5connectivity.hash b/package/qt5/qt5connectivity/qt5connectivity.hash
index 3edc2d666a..12e9d637b2 100644
--- a/package/qt5/qt5connectivity/qt5connectivity.hash
+++ b/package/qt5/qt5connectivity/qt5connectivity.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtconnectivity-everywhere-src-5.15.2.tar.xz.sha256
-sha256  0380327871f76103e5b8c2a305988d76d352b6a982b3e7b3bc3cdc184c64bfa0  qtconnectivity-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  216e9f6b1be00897ac1ce12f0ea4d1733eb70acd49ec3a83d01cd472b2fb5450  qtconnectivity-5e9ca5d36d65dadb98ef90013a1dcf15fbd7ae26.tar.bz2
 
 # Hashes for license files:
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
diff --git a/package/qt5/qt5connectivity/qt5connectivity.mk b/package/qt5/qt5connectivity/qt5connectivity.mk
index 6402b505bf..a4c79be10b 100644
--- a/package/qt5/qt5connectivity/qt5connectivity.mk
+++ b/package/qt5/qt5connectivity/qt5connectivity.mk
@@ -4,10 +4,11 @@
 #
 ################################################################################
 
-QT5CONNECTIVITY_VERSION = $(QT5_VERSION)
-QT5CONNECTIVITY_SITE = $(QT5_SITE)
-QT5CONNECTIVITY_SOURCE = qtconnectivity-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5CONNECTIVITY_VERSION).tar.xz
+QT5CONNECTIVITY_VERSION = 5e9ca5d36d65dadb98ef90013a1dcf15fbd7ae26
+QT5CONNECTIVITY_SITE = $(QT5_SITE)/qtconnectivity/-/archive/$(QT5CONNECTIVITY_VERSION)
+QT5CONNECTIVITY_SOURCE = qtconnectivity-$(QT5CONNECTIVITY_VERSION).tar.bz2
 QT5CONNECTIVITY_INSTALL_STAGING = YES
+QT5CONNECTIVITY_SYNC_QT_HEADERS = YES
 
 QT5CONNECTIVITY_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception(tools), GFDL-1.3 (docs)
 QT5CONNECTIVITY_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPL3 LICENSE.FDL
diff --git a/package/qt5/qt5declarative/0003-qqmlprofilerevent_p-needs-c-limits-inlcude-fixes-gcc.patch b/package/qt5/qt5declarative/0003-qqmlprofilerevent_p-needs-c-limits-inlcude-fixes-gcc.patch
deleted file mode 100644
index 0e6da652f9..0000000000
--- a/package/qt5/qt5declarative/0003-qqmlprofilerevent_p-needs-c-limits-inlcude-fixes-gcc.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-From cc8d62f556c065d28a52e4b784b5d22f2cca3001 Mon Sep 17 00:00:00 2001
-From: Peter Seiderer <ps.report@gmx.net>
-Date: Thu, 22 Jul 2021 23:13:43 +0200
-Subject: [PATCH] qqmlprofilerevent_p: needs c++ limits inlcude (fixes gcc-11
- compile)
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Fixes:
-
-  In file included from qqmlprofilertypedevent_p.h:43,
-                   from qqmlprofilertypedevent.cpp:40:
-  qqmlprofilerevent_p.h: In member function ‘void QQmlProfilerEvent::assignNumbers(const Container&)’:
-  qqmlprofilerevent_p.h:314:65: error: ‘numeric_limits’ is not a member of ‘std’
-    314 |                     static_cast<quint16>(numbers.size()) : std::numeric_limits<quint16>::max();
-        |                                                                 ^~~~~~~~~~~~~~
-  qqmlprofilerevent_p.h:314:87: error: expected primary-expression before ‘>’ token
-    314 |                     static_cast<quint16>(numbers.size()) : std::numeric_limits<quint16>::max();
-        |                                                                                       ^
-  qqmlprofilerevent_p.h:314:90: error: ‘::max’ has not been declared; did you mean ‘std::max’?
-    314 |                     static_cast<quint16>(numbers.size()) : std::numeric_limits<quint16>::max();
-        |                                                                                          ^~~
-        |                                                                                          std::max
-
-Signed-off-by: Peter Seiderer <ps.report@gmx.net>
----
- src/qmldebug/qqmlprofilerevent_p.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/qmldebug/qqmlprofilerevent_p.h b/src/qmldebug/qqmlprofilerevent_p.h
-index a7e37d1964..01b2f58f16 100644
---- a/src/qmldebug/qqmlprofilerevent_p.h
-+++ b/src/qmldebug/qqmlprofilerevent_p.h
-@@ -48,6 +48,7 @@
- #include <QtCore/qmetatype.h>
- 
- #include <initializer_list>
-+#include <limits>
- #include <type_traits>
- 
- //
--- 
-2.32.0
-
diff --git a/package/qt5/qt5declarative/qt5declarative.hash b/package/qt5/qt5declarative/qt5declarative.hash
index ab83b71814..f9dc08a6e0 100644
--- a/package/qt5/qt5declarative/qt5declarative.hash
+++ b/package/qt5/qt5declarative/qt5declarative.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtdeclarative-everywhere-src-5.15.2.tar.xz.sha256
-sha256  c600d09716940f75d684f61c5bdaced797f623a86db1627da599027f6c635651  qtdeclarative-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  ff460197ea96d2313d1da92587d82ff5d90e9d56ac8249d83f4a01ea847bdfb3  qtdeclarative-8aa1164f1bb6a5dfb5527bcfbf128ab6f2c73ed4.tar.bz2
 
 # Hashes for license files:
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
diff --git a/package/qt5/qt5declarative/qt5declarative.mk b/package/qt5/qt5declarative/qt5declarative.mk
index 3318cd24c8..036baed444 100644
--- a/package/qt5/qt5declarative/qt5declarative.mk
+++ b/package/qt5/qt5declarative/qt5declarative.mk
@@ -4,10 +4,11 @@
 #
 ################################################################################
 
-QT5DECLARATIVE_VERSION = $(QT5_VERSION)
-QT5DECLARATIVE_SITE = $(QT5_SITE)
-QT5DECLARATIVE_SOURCE = qtdeclarative-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5DECLARATIVE_VERSION).tar.xz
+QT5DECLARATIVE_VERSION = 8aa1164f1bb6a5dfb5527bcfbf128ab6f2c73ed4
+QT5DECLARATIVE_SITE = $(QT5_SITE)/qtdeclarative/-/archive/$(QT5DECLARATIVE_VERSION)
+QT5DECLARATIVE_SOURCE = qtdeclarative-$(QT5DECLARATIVE_VERSION).tar.bz2
 QT5DECLARATIVE_INSTALL_STAGING = YES
+QT5DECLARATIVE_SYNC_QT_HEADERS = YES
 
 QT5DECLARATIVE_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception(tools), GFDL-1.3 (docs)
 QT5DECLARATIVE_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPL3 LICENSE.FDL
diff --git a/package/qt5/qt5graphicaleffects/qt5graphicaleffects.hash b/package/qt5/qt5graphicaleffects/qt5graphicaleffects.hash
index 9d7a837b8b..e755f0848b 100644
--- a/package/qt5/qt5graphicaleffects/qt5graphicaleffects.hash
+++ b/package/qt5/qt5graphicaleffects/qt5graphicaleffects.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtgraphicaleffects-everywhere-src-5.15.2.tar.xz.sha256
-sha256  ec8d67f64967d5046410490b549c576f9b9e8b47ec68594ae84aa8870173dfe4  qtgraphicaleffects-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  3035f0a07a0c0a0627ecd082de4b39bbe91521314f11bb63bf4ce81347b855f9  qtgraphicaleffects-c36998dc1581167b12cc3de8e4ac68c2a5d9f76e.tar.bz2
 
 # Hashes for license files:
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
diff --git a/package/qt5/qt5graphicaleffects/qt5graphicaleffects.mk b/package/qt5/qt5graphicaleffects/qt5graphicaleffects.mk
index a9ddff454e..542eb4de90 100644
--- a/package/qt5/qt5graphicaleffects/qt5graphicaleffects.mk
+++ b/package/qt5/qt5graphicaleffects/qt5graphicaleffects.mk
@@ -4,11 +4,12 @@
 #
 ################################################################################
 
-QT5GRAPHICALEFFECTS_VERSION = $(QT5_VERSION)
-QT5GRAPHICALEFFECTS_SITE = $(QT5_SITE)
-QT5GRAPHICALEFFECTS_SOURCE = qtgraphicaleffects-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5GRAPHICALEFFECTS_VERSION).tar.xz
+QT5GRAPHICALEFFECTS_VERSION = c36998dc1581167b12cc3de8e4ac68c2a5d9f76e
+QT5GRAPHICALEFFECTS_SITE = $(QT5_SITE)/qtgraphicaleffects/-/archive/$(QT5GRAPHICALEFFECTS_VERSION)
+QT5GRAPHICALEFFECTS_SOURCE = qtgraphicaleffects-$(QT5GRAPHICALEFFECTS_VERSION).tar.bz2
 QT5GRAPHICALEFFECTS_DEPENDENCIES = qt5declarative
 QT5GRAPHICALEFFECTS_INSTALL_STAGING = YES
+QT5GRAPHICALEFFECTS_SYNC_QT_HEADERS = YES
 
 QT5GRAPHICALEFFECTS_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception(tools), GFDL-1.3 (docs)
 QT5GRAPHICALEFFECTS_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPL3 LICENSE.FDL
diff --git a/package/qt5/qt5imageformats/qt5imageformats.hash b/package/qt5/qt5imageformats/qt5imageformats.hash
index b4281e712d..49690de3bb 100644
--- a/package/qt5/qt5imageformats/qt5imageformats.hash
+++ b/package/qt5/qt5imageformats/qt5imageformats.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtimageformats-everywhere-src-5.15.2.tar.xz.sha256
-sha256  bf8285c7ce04284527ab823ddc7cf48a1bb79131db3a7127342167f4814253d7  qtimageformats-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  f2ff68c0d7192443e2fbcfdec73ee6a6bb160461b7757539906d9ad0c7f600d9  qtimageformats-cb82c74310837fe4e832c8ab72176a5d63e4355f.tar.bz2
 
 # Hashes for license files:
 sha256  edfe70e99be2a7c109d860b19204609e582720b211c50caedac729da372a1253  LICENSE.GPLv2
diff --git a/package/qt5/qt5imageformats/qt5imageformats.mk b/package/qt5/qt5imageformats/qt5imageformats.mk
index ffb094d566..506cd123a8 100644
--- a/package/qt5/qt5imageformats/qt5imageformats.mk
+++ b/package/qt5/qt5imageformats/qt5imageformats.mk
@@ -4,10 +4,11 @@
 #
 ################################################################################
 
-QT5IMAGEFORMATS_VERSION = $(QT5_VERSION)
-QT5IMAGEFORMATS_SITE = $(QT5_SITE)
-QT5IMAGEFORMATS_SOURCE = qtimageformats-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5IMAGEFORMATS_VERSION).tar.xz
+QT5IMAGEFORMATS_VERSION = cb82c74310837fe4e832c8ab72176a5d63e4355f
+QT5IMAGEFORMATS_SITE = $(QT5_SITE)/qtimageformats/-/archive/$(QT5IMAGEFORMATS_VERSION)
+QT5IMAGEFORMATS_SOURCE = qtimageformats-$(QT5IMAGEFORMATS_VERSION).tar.bz2
 QT5IMAGEFORMATS_INSTALL_STAGING = YES
+QT5IMAGEFORMATS_SYNC_QT_HEADERS = YES
 
 QT5IMAGEFORMATS_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception(tools), GFDL-1.3 (docs)
 QT5IMAGEFORMATS_LICENSE_FILES = LICENSE.GPLv2 LICENSE.GPLv3 LICENSE.GPL3-EXCEPT LICENSE.LGPLv3 LICENSE.FDL
diff --git a/package/qt5/qt5knx/qt5knx.mk b/package/qt5/qt5knx/qt5knx.mk
index 9fc121111c..412e31c652 100644
--- a/package/qt5/qt5knx/qt5knx.mk
+++ b/package/qt5/qt5knx/qt5knx.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-QT5KNX_VERSION = $(QT5_VERSION)
+QT5KNX_VERSION = 5.15.2
 QT5KNX_SITE = https://code.qt.io/cgit/qt/qtknx.git
 QT5KNX_SITE_METHOD = git
 QT5KNX_INSTALL_STAGING = YES
diff --git a/package/qt5/qt5location/0001-3rdparty-mapbox-gl-native-fix-musl-compile-pthread_g.patch b/package/qt5/qt5location-mapboxgl/0001-3rdparty-mapbox-gl-native-fix-musl-compile-pthread_g.patch
similarity index 81%
rename from package/qt5/qt5location/0001-3rdparty-mapbox-gl-native-fix-musl-compile-pthread_g.patch
rename to package/qt5/qt5location-mapboxgl/0001-3rdparty-mapbox-gl-native-fix-musl-compile-pthread_g.patch
index 0894af9ce5..0f56a488e3 100644
--- a/package/qt5/qt5location/0001-3rdparty-mapbox-gl-native-fix-musl-compile-pthread_g.patch
+++ b/package/qt5/qt5location-mapboxgl/0001-3rdparty-mapbox-gl-native-fix-musl-compile-pthread_g.patch
@@ -24,13 +24,13 @@ Signed-off-by: Peter Seiderer <ps.report@gmx.net>
 [yann.morin.1998@free.fr: add uClibc]
 Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
 ---
- src/3rdparty/mapbox-gl-native/platform/default/thread.cpp | 3 ++-
+ platform/default/thread.cpp | 3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
-diff --git a/src/3rdparty/mapbox-gl-native/platform/default/thread.cpp b/src/3rdparty/mapbox-gl-native/platform/default/thread.cpp
+diff --git a/platform/default/thread.cpp b/platform/default/thread.cpp
 index c7c79b4..3f135eb 100644
---- a/src/3rdparty/mapbox-gl-native/platform/default/thread.cpp
-+++ b/src/3rdparty/mapbox-gl-native/platform/default/thread.cpp
+--- a/platform/default/thread.cpp
++++ b/platform/default/thread.cpp
 @@ -11,8 +11,9 @@ namespace platform {
  
  std::string getCurrentThreadName() {
diff --git a/package/qt5/qt5location-mapboxgl/qt5location-mapboxgl.hash b/package/qt5/qt5location-mapboxgl/qt5location-mapboxgl.hash
new file mode 100644
index 0000000000..e44081c465
--- /dev/null
+++ b/package/qt5/qt5location-mapboxgl/qt5location-mapboxgl.hash
@@ -0,0 +1,16 @@
+# Locally calculated
+sha256  71e3eb527b94a3e2be381cadf0a286eb5d5f248258b2cfb04013ee4009501220  qtlocation-mapboxgl-d3101bbc22edd41c9036ea487d4a71eabd97823d.tar.bz2
+
+# Hashes for license files:
+sha256  50fbbf443ab764019871ed5eedd9035967cb1b4f94baccbc05f3062f2d0fef4e  LICENSE.md
+sha256  c9bff75738922193e67fa726fa225535870d2aa1059f91452c411736284ad566  LICENSE_Boost.txt
+sha256  23b997149a52805b5e6acfbd26924e2d2c8dc31d4824c85da46dac4603815055  LICENSE_CSSColorParser.txt
+sha256  44b7f71c4d7f3da85e5e6a5d0cfa6942055d326a24f4d60a3728ebed26ea2b9d  LICENSE_geojson.txt
+sha256  828f2aed51b6526881a236758ec9b08cd69928fbfc70346d9d44a0b3a3444fe1  LICENSE_geojson_vt_cpp.txt
+sha256  e2bf3affd357261f7451bb19108281c1bde54746bfa2beb0c1c34ab042b21700  LICENSE_geometry.txt
+sha256  900ee7709271d6c227e33e600fd3ff156a6eac63fdd7a9089021cd49fe48e19a  LICENSE_mapbox.txt
+sha256  b4fa5cbec66c57716d1a5cd528af311ebb9610f57ae1550b82dac1dff690c6e9  LICENSE_parsedate.txt
+sha256  1f4d477e3c2d74d8706c8f05437bd86804abe46853b1f233ce1549a4de76fa49  LICENSE_protozero.txt
+sha256  3bb670161958064f54329ca1d9d45854f6ec5225aa937048c2c4b8af5b8ab5d0  LICENSE_rapidjson.txt
+sha256  e2bf3affd357261f7451bb19108281c1bde54746bfa2beb0c1c34ab042b21700  LICENSE_vectortile.txt
+sha256  5e39d227943f601123be20a99151094be889e3d6925799d5c67173ab5b2996d5  LICENSE_wagyu.txt
diff --git a/package/qt5/qt5location-mapboxgl/qt5location-mapboxgl.mk b/package/qt5/qt5location-mapboxgl/qt5location-mapboxgl.mk
new file mode 100644
index 0000000000..58e167e483
--- /dev/null
+++ b/package/qt5/qt5location-mapboxgl/qt5location-mapboxgl.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# qt5location-mapboxgl
+#
+################################################################################
+
+QT5LOCATION_MAPBOXGL_VERSION = d3101bbc22edd41c9036ea487d4a71eabd97823d
+QT5LOCATION_MAPBOXGL_SITE = $(QT5_SITE)/qtlocation-mapboxgl/-/archive/$(QT5LOCATION_MAPBOXGL_VERSION)
+QT5LOCATION_MAPBOXGL_SOURCE = qtlocation-mapboxgl-$(QT5LOCATION_MAPBOXGL_VERSION).tar.bz2
+QT5LOCATION_MAPBOXGL_LICENSE = Apache-2.0, BSD-2-Clause, BSD-3-Clause, BSL-1.0, curl, IJG, ISC, Libpng, MIT, NCSA, OpenSSL, Zlib
+QT5LOCATION_MAPBOXGL_LICENSE_FILES = LICENSE.md LICENSE_Boost.txt LICENSE_CSSColorParser.txt LICENSE_geojson.txt LICENSE_geojson_vt_cpp.txt LICENSE_geometry.txt LICENSE_mapbox.txt LICENSE_parsedate.txt LICENSE_protozero.txt LICENSE_rapidjson.txt LICENSE_vectortile.txt LICENSE_wagyu.txt
+
+$(eval $(generic-package))
diff --git a/package/qt5/qt5location/0002-fix-compilation-for-no-opengl-builds.patch b/package/qt5/qt5location/0001-fix-compilation-for-no-opengl-builds.patch
similarity index 100%
rename from package/qt5/qt5location/0002-fix-compilation-for-no-opengl-builds.patch
rename to package/qt5/qt5location/0001-fix-compilation-for-no-opengl-builds.patch
diff --git a/package/qt5/qt5location/qt5location.hash b/package/qt5/qt5location/qt5location.hash
index 0bb293305c..52649897b1 100644
--- a/package/qt5/qt5location/qt5location.hash
+++ b/package/qt5/qt5location/qt5location.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtlocation-everywhere-src-5.15.2.tar.xz.sha256
-sha256  984fcb09e108df49a8dac35d5ce6dffc49caafd2acb1c2f8a5173a6a21f392a0  qtlocation-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  4d8ae2e2b6c1a379fcf68d35a587c2660fbd7d10148bfd93840af98c5800072b  qtlocation-861e372b6ad81570d4f496e42fb25a6699b72f2f.tar.bz2
 
 # Hashes for license files:
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
diff --git a/package/qt5/qt5location/qt5location.mk b/package/qt5/qt5location/qt5location.mk
index ea741d0df6..98af8b233b 100644
--- a/package/qt5/qt5location/qt5location.mk
+++ b/package/qt5/qt5location/qt5location.mk
@@ -4,10 +4,12 @@
 #
 ################################################################################
 
-QT5LOCATION_VERSION = $(QT5_VERSION)
-QT5LOCATION_SITE = $(QT5_SITE)
-QT5LOCATION_SOURCE = qtlocation-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5LOCATION_VERSION).tar.xz
+QT5LOCATION_VERSION = 861e372b6ad81570d4f496e42fb25a6699b72f2f
+QT5LOCATION_SITE = $(QT5_SITE)/qtlocation/-/archive/$(QT5LOCATION_VERSION)
+QT5LOCATION_SOURCE = qtlocation-$(QT5LOCATION_VERSION).tar.bz2
+QT5LOCATION_PATCH_DEPENDENCIES = qt5location-mapboxgl
 QT5LOCATION_INSTALL_STAGING = YES
+QT5LOCATION_SYNC_QT_HEADERS = YES
 
 QT5LOCATION_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception(tools), GFDL-1.3 (docs)
 QT5LOCATION_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPL3 LICENSE.FDL
@@ -16,4 +18,10 @@ ifeq ($(BR2_PACKAGE_QT5DECLARATIVE),y)
 QT5LOCATION_DEPENDENCIES += qt5declarative
 endif
 
+define QT5LOCATION_COPY_MAPBOXGL
+	rm -rf $(@D)/src/3rdparty/mapbox-gl-native
+	cp -a $(QT5LOCATION_MAPBOXGL_DIR) $(@D)/src/3rdparty/mapbox-gl-native
+endef
+QT5LOCATION_POST_PATCH_HOOKS += QT5LOCATION_COPY_MAPBOXGL
+
 $(eval $(qmake-package))
diff --git a/package/qt5/qt5lottie/qt5lottie.hash b/package/qt5/qt5lottie/qt5lottie.hash
index 740f9072f2..46ab3f60df 100644
--- a/package/qt5/qt5lottie/qt5lottie.hash
+++ b/package/qt5/qt5lottie/qt5lottie.hash
@@ -1,5 +1,5 @@
-# Hash from: http://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtlottie-everywhere-src-5.15.2.tar.xz.sha256
-sha256  cec6095ab8f714e609d2ad3ea8c4fd819461ce8793adc42abe37d0f6dc432517  qtlottie-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  edbf1270733e385189dbcdad67ecec24c9e372168215873eadb31735d0947de1  qtlottie-fa8c8bfc6742ab98b61d1351e054e0e73e9a42f4.tar.bz2
 
 # Hashes for license files:
 sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  LICENSE.GPL3
diff --git a/package/qt5/qt5lottie/qt5lottie.mk b/package/qt5/qt5lottie/qt5lottie.mk
index 1423a629b9..e9614fbecf 100644
--- a/package/qt5/qt5lottie/qt5lottie.mk
+++ b/package/qt5/qt5lottie/qt5lottie.mk
@@ -4,11 +4,12 @@
 #
 ################################################################################
 
-QT5LOTTIE_VERSION = $(QT5_VERSION)
-QT5LOTTIE_SITE = $(QT5_SITE)
-QT5LOTTIE_SOURCE = qtlottie-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5LOTTIE_VERSION).tar.xz
+QT5LOTTIE_VERSION = fa8c8bfc6742ab98b61d1351e054e0e73e9a42f4
+QT5LOTTIE_SITE = $(QT5_SITE)/qtlottie/-/archive/$(QT5LOTTIE_VERSION)
+QT5LOTTIE_SOURCE = qtlottie-$(QT5LOTTIE_VERSION).tar.bz2
 QT5LOTTIE_DEPENDENCIES = qt5declarative
 QT5LOTTIE_INSTALL_STAGING = YES
+QT5LOTTIE_SYNC_QT_HEADERS = YES
 
 QT5LOTTIE_LICENSE = GPL-3.0
 QT5LOTTIE_LICENSE_FILES = LICENSE.GPL3 LICENSE.GPL3-EXCEPT
diff --git a/package/qt5/qt5mqtt/qt5mqtt.mk b/package/qt5/qt5mqtt/qt5mqtt.mk
index 54cc1de632..0b62cf1bed 100644
--- a/package/qt5/qt5mqtt/qt5mqtt.mk
+++ b/package/qt5/qt5mqtt/qt5mqtt.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-QT5MQTT_VERSION = $(QT5_VERSION)
+QT5MQTT_VERSION = 5.15.2
 QT5MQTT_SITE = https://code.qt.io/cgit/qt/qtmqtt.git
 QT5MQTT_SITE_METHOD = git
 QT5MQTT_INSTALL_STAGING = YES
diff --git a/package/qt5/qt5multimedia/qt5multimedia.hash b/package/qt5/qt5multimedia/qt5multimedia.hash
index b70a4ecf51..1c4d930248 100644
--- a/package/qt5/qt5multimedia/qt5multimedia.hash
+++ b/package/qt5/qt5multimedia/qt5multimedia.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtmultimedia-everywhere-src-5.15.2.tar.xz.sha256
-sha256  0c3758810e5131aabcf76e4965e4c18b8911af54d9edd9305d2a8278d8346df5  qtmultimedia-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  95e94b016f256b57b2df3f1df7d02d6f077c600faa4312561f02121623dfecef  qtmultimedia-bd29c87027637a013f2c5e3b549fcda84e4d7545.tar.bz2
 
 # Hashes for license files:
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
diff --git a/package/qt5/qt5multimedia/qt5multimedia.mk b/package/qt5/qt5multimedia/qt5multimedia.mk
index 39eddc3afc..6695369063 100644
--- a/package/qt5/qt5multimedia/qt5multimedia.mk
+++ b/package/qt5/qt5multimedia/qt5multimedia.mk
@@ -4,10 +4,11 @@
 #
 ################################################################################
 
-QT5MULTIMEDIA_VERSION = $(QT5_VERSION)
-QT5MULTIMEDIA_SITE = $(QT5_SITE)
-QT5MULTIMEDIA_SOURCE = qtmultimedia-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5MULTIMEDIA_VERSION).tar.xz
+QT5MULTIMEDIA_VERSION = bd29c87027637a013f2c5e3b549fcda84e4d7545
+QT5MULTIMEDIA_SITE = $(QT5_SITE)/qtmultimedia/-/archive/$(QT5MULTIMEDIA_VERSION)
+QT5MULTIMEDIA_SOURCE = qtmultimedia-$(QT5MULTIMEDIA_VERSION).tar.bz2
 QT5MULTIMEDIA_INSTALL_STAGING = YES
+QT5MULTIMEDIA_SYNC_QT_HEADERS = YES
 
 QT5MULTIMEDIA_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception(tools), GFDL-1.3 (docs)
 QT5MULTIMEDIA_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPL3 LICENSE.FDL
diff --git a/package/qt5/qt5opcua/qt5opcua.mk b/package/qt5/qt5opcua/qt5opcua.mk
index a58c4c5e14..ef51abddf8 100644
--- a/package/qt5/qt5opcua/qt5opcua.mk
+++ b/package/qt5/qt5opcua/qt5opcua.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-QT5OPCUA_VERSION = $(QT5_VERSION)
+QT5OPCUA_VERSION = 5.15.2
 QT5OPCUA_SITE = https://code.qt.io/qt/qtopcua.git
 QT5OPCUA_SITE_METHOD = git
 QT5OPCUA_INSTALL_STAGING = YES
diff --git a/package/qt5/qt5quickcontrols/qt5quickcontrols.hash b/package/qt5/qt5quickcontrols/qt5quickcontrols.hash
index 1fa0d6430a..2138b3e313 100644
--- a/package/qt5/qt5quickcontrols/qt5quickcontrols.hash
+++ b/package/qt5/qt5quickcontrols/qt5quickcontrols.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtquickcontrols-everywhere-src-5.15.2.tar.xz.sha256
-sha256  c393fb7384b1f047f10e91a6832cf3e6a4c2a41408b8cb2d05af2283e8549fb5  qtquickcontrols-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  7df0648d9b8fdde1ea27abd9d6eb3ff170e8e666872ea97c07e1bb5ac241be4b  qtquickcontrols-cf3f6d7fec824cdf01f9b329ab3b92b1c0e0a420.tar.bz2
 
 # Hashes for license files:
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
diff --git a/package/qt5/qt5quickcontrols/qt5quickcontrols.mk b/package/qt5/qt5quickcontrols/qt5quickcontrols.mk
index 1ac8689d6e..c2b5ae182e 100644
--- a/package/qt5/qt5quickcontrols/qt5quickcontrols.mk
+++ b/package/qt5/qt5quickcontrols/qt5quickcontrols.mk
@@ -4,11 +4,12 @@
 #
 ################################################################################
 
-QT5QUICKCONTROLS_VERSION = $(QT5_VERSION)
-QT5QUICKCONTROLS_SITE = $(QT5_SITE)
-QT5QUICKCONTROLS_SOURCE = qtquickcontrols-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5QUICKCONTROLS_VERSION).tar.xz
+QT5QUICKCONTROLS_VERSION = cf3f6d7fec824cdf01f9b329ab3b92b1c0e0a420
+QT5QUICKCONTROLS_SITE = $(QT5_SITE)/qtquickcontrols/-/archive/$(QT5QUICKCONTROLS_VERSION)
+QT5QUICKCONTROLS_SOURCE = qtquickcontrols-$(QT5QUICKCONTROLS_VERSION).tar.bz2
 QT5QUICKCONTROLS_DEPENDENCIES = qt5declarative
 QT5QUICKCONTROLS_INSTALL_STAGING = YES
+QT5QUICKCONTROLS_SYNC_QT_HEADERS = YES
 
 QT5QUICKCONTROLS_LICENSE = GPL-2.0 or GPL-3.0 or LGPL-3.0, GFDL-1.3 (docs)
 QT5QUICKCONTROLS_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.LGPL3 LICENSE.FDL
diff --git a/package/qt5/qt5quickcontrols2/qt5quickcontrols2.hash b/package/qt5/qt5quickcontrols2/qt5quickcontrols2.hash
index f66a1186ee..8c0e02152d 100644
--- a/package/qt5/qt5quickcontrols2/qt5quickcontrols2.hash
+++ b/package/qt5/qt5quickcontrols2/qt5quickcontrols2.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtquickcontrols2-everywhere-src-5.15.2.tar.xz.sha256
-sha256  671b6ce5f4b8ecc94db622d5d5fb29ef4ff92819be08e5ea55bfcab579de8919  qtquickcontrols2-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  d786f7ca3e825eb754d9eff0eb33dee2848e7d447426178625a9bd3fb547bf17  qtquickcontrols2-be66bf9a5618c745d2a6ee2262967af6307b3b07.tar.bz2
 
 # Hashes for license files:
 sha256  d2cfc059acb4abd8e513cd0a73cd8489f34cbafa7bc34d5d31fb3210821cf8ca  LICENSE.GPLv3
diff --git a/package/qt5/qt5quickcontrols2/qt5quickcontrols2.mk b/package/qt5/qt5quickcontrols2/qt5quickcontrols2.mk
index 2f6dcd1f2f..4bdb90b203 100644
--- a/package/qt5/qt5quickcontrols2/qt5quickcontrols2.mk
+++ b/package/qt5/qt5quickcontrols2/qt5quickcontrols2.mk
@@ -4,11 +4,12 @@
 #
 ################################################################################
 
-QT5QUICKCONTROLS2_VERSION = $(QT5_VERSION)
-QT5QUICKCONTROLS2_SITE = $(QT5_SITE)
-QT5QUICKCONTROLS2_SOURCE = qtquickcontrols2-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5QUICKCONTROLS2_VERSION).tar.xz
+QT5QUICKCONTROLS2_VERSION = be66bf9a5618c745d2a6ee2262967af6307b3b07
+QT5QUICKCONTROLS2_SITE = $(QT5_SITE)/qtquickcontrols2/-/archive/$(QT5QUICKCONTROLS2_VERSION)
+QT5QUICKCONTROLS2_SOURCE = qtquickcontrols2-$(QT5QUICKCONTROLS2_VERSION).tar.bz2
 QT5QUICKCONTROLS2_DEPENDENCIES = qt5declarative
 QT5QUICKCONTROLS2_INSTALL_STAGING = YES
+QT5QUICKCONTROLS2_SYNC_QT_HEADERS = YES
 
 QT5QUICKCONTROLS2_LICENSE = GPL-3.0 or LGPL-3.0, GFDL-1.3 (docs)
 QT5QUICKCONTROLS2_LICENSE_FILES = LICENSE.GPLv3 LICENSE.LGPLv3 LICENSE.FDL
diff --git a/package/qt5/qt5quicktimeline/qt5quicktimeline.hash b/package/qt5/qt5quicktimeline/qt5quicktimeline.hash
index ac97fc319c..c2d0b11f2b 100644
--- a/package/qt5/qt5quicktimeline/qt5quicktimeline.hash
+++ b/package/qt5/qt5quicktimeline/qt5quicktimeline.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtquicktimeline-everywhere-src-5.15.2.tar.xz.sha256
-sha256  b9c247227607437acec7c7dd18ad46179d20369c9d22bdb1e9fc128dfb832a28  qtquicktimeline-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  4d88f7f70c8a983378cb9702bf1551c6a150fb283d0540bd43a120d953e077e3  qtquicktimeline-67503cdadea43b95ddad0de1a04951aff0ce1a07.tar.bz2
 
 # Hashes for license files:
 sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  LICENSE.GPL3
diff --git a/package/qt5/qt5quicktimeline/qt5quicktimeline.mk b/package/qt5/qt5quicktimeline/qt5quicktimeline.mk
index ef6927f928..49d0cb330b 100644
--- a/package/qt5/qt5quicktimeline/qt5quicktimeline.mk
+++ b/package/qt5/qt5quicktimeline/qt5quicktimeline.mk
@@ -4,11 +4,12 @@
 #
 ################################################################################
 
-QT5QUICKTIMELINE_VERSION = $(QT5_VERSION)
-QT5QUICKTIMELINE_SITE = $(QT5_SITE)
-QT5QUICKTIMELINE_SOURCE = qtquicktimeline-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5QUICKTIMELINE_VERSION).tar.xz
+QT5QUICKTIMELINE_VERSION = 67503cdadea43b95ddad0de1a04951aff0ce1a07
+QT5QUICKTIMELINE_SITE = $(QT5_SITE)/qtquicktimeline/-/archive/$(QT5QUICKTIMELINE_VERSION)
+QT5QUICKTIMELINE_SOURCE = qtquicktimeline-$(QT5QUICKTIMELINE_VERSION).tar.bz2
 QT5QUICKTIMELINE_DEPENDENCIES = qt5declarative
 QT5QUICKTIMELINE_INSTALL_STAGING = YES
+QT5QUICKTIMELINE_SYNC_QT_HEADERS = YES
 
 QT5QUICKTIMELINE_LICENSE = GPL-3.0, GFDL-1.3 (docs)
 QT5QUICKTIMELINE_LICENSE_FILES = LICENSE.GPL3
diff --git a/package/qt5/qt5remoteobjects/qt5remoteobjects.hash b/package/qt5/qt5remoteobjects/qt5remoteobjects.hash
index 30c5bfc51d..a2573a018a 100644
--- a/package/qt5/qt5remoteobjects/qt5remoteobjects.hash
+++ b/package/qt5/qt5remoteobjects/qt5remoteobjects.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtremoteobjects-everywhere-src-5.15.2.tar.xz.sha256
-sha256  6781b6bc90888254ea77ce812736dac00c67fa4eeb3095f5cd65e4b9c15dcfc2  qtremoteobjects-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  43c876d475228a0b727d2b2ae47cecc8cbd665d1574ad4db61b209c08a488b90  qtremoteobjects-4d6d1e35fb8e0cb900b5e5e9266edea51dc4f735.tar.bz2
 
 # Hashes for license files:
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
diff --git a/package/qt5/qt5remoteobjects/qt5remoteobjects.mk b/package/qt5/qt5remoteobjects/qt5remoteobjects.mk
index a6b5f0954c..b7dee4f2f3 100644
--- a/package/qt5/qt5remoteobjects/qt5remoteobjects.mk
+++ b/package/qt5/qt5remoteobjects/qt5remoteobjects.mk
@@ -4,13 +4,14 @@
 #
 ################################################################################
 
-QT5REMOTEOBJECTS_VERSION = $(QT5_VERSION)
-QT5REMOTEOBJECTS_SITE = $(QT5_SITE)
-QT5REMOTEOBJECTS_SOURCE = qtremoteobjects-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5REMOTEOBJECTS_VERSION).tar.xz
+QT5REMOTEOBJECTS_VERSION = 4d6d1e35fb8e0cb900b5e5e9266edea51dc4f735
+QT5REMOTEOBJECTS_SITE = $(QT5_SITE)/qtremoteobjects/-/archive/$(QT5REMOTEOBJECTS_VERSION)
+QT5REMOTEOBJECTS_SOURCE = qtremoteobjects-$(QT5REMOTEOBJECTS_VERSION).tar.bz2
 QT5REMOTEOBJECTS_DEPENDENCIES = qt5base
 QT5REMOTEOBJECTS_INSTALL_STAGING = YES
 QT5REMOTEOBJECTS_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception (tools), GFDL-1.3 (docs)
 QT5REMOTEOBJECTS_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPL3
+QT5REMOTEOBJECTS_SYNC_QT_HEADERS = YES
 
 ifeq ($(BR2_PACKAGE_QT5DECLARATIVE),y)
 QT5REMOTEOBJECTS_DEPENDENCIES += qt5declarative
diff --git a/package/qt5/qt5script/qt5script.hash b/package/qt5/qt5script/qt5script.hash
index 783598047b..0b34ff3e8f 100644
--- a/package/qt5/qt5script/qt5script.hash
+++ b/package/qt5/qt5script/qt5script.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtscript-everywhere-src-5.15.2.tar.xz.sha256
-sha256  a299715369afbd1caa4d7fa2875d442eab91adcaacafce54a36922442624673e  qtscript-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  bd748330ad08ea504875b9e0a316c0ecc01e6990e16d3bec61f5f55b9e291011  qtscript-5be95f966aabc5170f0aacfd4b0a46217241bfd6.tar.bz2
 
 # Hashes for license files:
 sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  LICENSE.GPL3
diff --git a/package/qt5/qt5script/qt5script.mk b/package/qt5/qt5script/qt5script.mk
index 77254fec0f..4e51eacfc3 100644
--- a/package/qt5/qt5script/qt5script.mk
+++ b/package/qt5/qt5script/qt5script.mk
@@ -4,10 +4,11 @@
 #
 ################################################################################
 
-QT5SCRIPT_VERSION = $(QT5_VERSION)
-QT5SCRIPT_SITE = $(QT5_SITE)
-QT5SCRIPT_SOURCE = qtscript-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5SCRIPT_VERSION).tar.xz
+QT5SCRIPT_VERSION = 5be95f966aabc5170f0aacfd4b0a46217241bfd6
+QT5SCRIPT_SITE = $(QT5_SITE)/qtscript/-/archive/$(QT5SCRIPT_VERSION)
+QT5SCRIPT_SOURCE = qtscript-$(QT5SCRIPT_VERSION).tar.bz2
 QT5SCRIPT_INSTALL_STAGING = YES
+QT5SCRIPT_SYNC_QT_HEADERS = YES
 
 # JavaScriptCore contains files under BSD-2-Clause, BSD-3-Clause, and LGPL-2+.
 # This is linked into libQt5Script, which also contains Qt sources under
diff --git a/package/qt5/qt5scxml/qt5scxml.hash b/package/qt5/qt5scxml/qt5scxml.hash
index 6f816548e6..85e72f5378 100644
--- a/package/qt5/qt5scxml/qt5scxml.hash
+++ b/package/qt5/qt5scxml/qt5scxml.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtscxml-everywhere-src-5.15.2.tar.xz.sha256
-sha256  60b9590b9a41c60cee7b8a8c8410ee4625f0389c1ff8d79883ec5a985638a7dc  qtscxml-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  6ce28e969efae2ab74fe3eda61a5d90fcfc4bf734cd9f36942a6968189530e69  qtscxml-7a15000f42c7a3171719727cd056f82a78244ed7.tar.bz2
 
 # Hashes for license files:
 sha256  0dbe024961f6ab5c52689cbd036c977975d0d0f6a67ff97762d96cb819dd5652  LICENSE.GPL3-EXCEPT
diff --git a/package/qt5/qt5scxml/qt5scxml.mk b/package/qt5/qt5scxml/qt5scxml.mk
index 186a2d381b..d5d26536a3 100644
--- a/package/qt5/qt5scxml/qt5scxml.mk
+++ b/package/qt5/qt5scxml/qt5scxml.mk
@@ -4,11 +4,12 @@
 #
 ################################################################################
 
-QT5SCXML_VERSION = $(QT5_VERSION)
-QT5SCXML_SITE = $(QT5_SITE)
-QT5SCXML_SOURCE = qtscxml-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5SCXML_VERSION).tar.xz
+QT5SCXML_VERSION = 7a15000f42c7a3171719727cd056f82a78244ed7
+QT5SCXML_SITE = $(QT5_SITE)/qtscxml/-/archive/$(QT5SCXML_VERSION)
+QT5SCXML_SOURCE = qtscxml-$(QT5SCXML_VERSION).tar.bz2
 QT5SCXML_DEPENDENCIES = qt5declarative
 QT5SCXML_INSTALL_STAGING = YES
+QT5SCXML_SYNC_QT_HEADERS = YES
 
 QT5SCXML_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception(tools), GFDL-1.3 (docs)
 QT5SCXML_LICENSE_FILES = LICENSE.GPL3-EXCEPT LICENSE.LGPL3 LICENSE.FDL
diff --git a/package/qt5/qt5sensors/qt5sensors.hash b/package/qt5/qt5sensors/qt5sensors.hash
index 179c9833e0..6be87e8cf9 100644
--- a/package/qt5/qt5sensors/qt5sensors.hash
+++ b/package/qt5/qt5sensors/qt5sensors.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtsensors-everywhere-src-5.15.2.tar.xz.sha256
-sha256  3f0011f9e9942cad119146b54d960438f4568a22a274cdad4fae06bb4e0e4839  qtsensors-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  1db8f6093595b574217eaec98da874d5eb46bb80343ddaa0a5bff0f6b45c5498  qtsensors-921a31375f29e429e95352b08b2b9dbfea663cb1.tar.bz2
 
 # Hashes for license files:
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
diff --git a/package/qt5/qt5sensors/qt5sensors.mk b/package/qt5/qt5sensors/qt5sensors.mk
index f928aad1c1..eebda912a9 100644
--- a/package/qt5/qt5sensors/qt5sensors.mk
+++ b/package/qt5/qt5sensors/qt5sensors.mk
@@ -4,12 +4,13 @@
 #
 ################################################################################
 
-QT5SENSORS_VERSION = $(QT5_VERSION)
-QT5SENSORS_SITE = $(QT5_SITE)
-QT5SENSORS_SOURCE = qtsensors-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5SENSORS_VERSION).tar.xz
+QT5SENSORS_VERSION = 921a31375f29e429e95352b08b2b9dbfea663cb1
+QT5SENSORS_SITE = $(QT5_SITE)/qtsensors/-/archive/$(QT5SENSORS_VERSION)
+QT5SENSORS_SOURCE = qtsensors-$(QT5SENSORS_VERSION).tar.bz2
 QT5SENSORS_INSTALL_STAGING = YES
 QT5SENSORS_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception(tools), GFDL-1.3 (docs)
 QT5SENSORS_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPL3 LICENSE.FDL
+QT5SENSORS_SYNC_QT_HEADERS = YES
 
 ifeq ($(BR2_PACKAGE_QT5DECLARATIVE),y)
 QT5SENSORS_DEPENDENCIES += qt5declarative
diff --git a/package/qt5/qt5serialbus/qt5serialbus.hash b/package/qt5/qt5serialbus/qt5serialbus.hash
index 4f05049b99..8b560a8a83 100644
--- a/package/qt5/qt5serialbus/qt5serialbus.hash
+++ b/package/qt5/qt5serialbus/qt5serialbus.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtserialbus-everywhere-src-5.15.2.tar.xz.sha256
-sha256  aeeb7e5c0d3f8503215b22e1a84c0002ca67cf63862f6e3c6ef44a67ca31bd88  qtserialbus-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  77056fba2ea313241c4780d959d8a3d916add816ced4cd5c95138e331a178d6b  qtserialbus-8884c5e43df846deac5a0c7c290eeb633d6bfe32.tar.bz2
 
 # Hashes for license files:
 sha256  edfe70e99be2a7c109d860b19204609e582720b211c50caedac729da372a1253  LICENSE.GPLv2
diff --git a/package/qt5/qt5serialbus/qt5serialbus.mk b/package/qt5/qt5serialbus/qt5serialbus.mk
index 412a255612..fc62c85318 100644
--- a/package/qt5/qt5serialbus/qt5serialbus.mk
+++ b/package/qt5/qt5serialbus/qt5serialbus.mk
@@ -4,11 +4,12 @@
 #
 ################################################################################
 
-QT5SERIALBUS_VERSION = $(QT5_VERSION)
-QT5SERIALBUS_SITE = $(QT5_SITE)
-QT5SERIALBUS_SOURCE = qtserialbus-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5SERIALBUS_VERSION).tar.xz
+QT5SERIALBUS_VERSION = 8884c5e43df846deac5a0c7c290eeb633d6bfe32
+QT5SERIALBUS_SITE = $(QT5_SITE)/qtserialbus/-/archive/$(QT5SERIALBUS_VERSION)
+QT5SERIALBUS_SOURCE = qtserialbus-$(QT5SERIALBUS_VERSION).tar.bz2
 QT5SERIALBUS_DEPENDENCIES = qt5serialport
 QT5SERIALBUS_INSTALL_STAGING = YES
+QT5SERIALBUS_SYNC_QT_HEADERS = YES
 
 QT5SERIALBUS_LICENSE = GPL-2.0 or GPL-3.0 or LGPL-3.0, GFDL-1.3 (docs)
 QT5SERIALBUS_LICENSE_FILES = LICENSE.GPLv2 LICENSE.GPLv3 LICENSE.LGPLv3 LICENSE.FDL
diff --git a/package/qt5/qt5serialport/qt5serialport.hash b/package/qt5/qt5serialport/qt5serialport.hash
index 37bc8401f8..6d821c387f 100644
--- a/package/qt5/qt5serialport/qt5serialport.hash
+++ b/package/qt5/qt5serialport/qt5serialport.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtserialport-everywhere-src-5.15.2.tar.xz.sha256
-sha256  59c559d748417306bc1b2cf2315c1e63eed011ace38ad92946af71f23e2ef79d  qtserialport-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  fb618df447132364cabf75e36b5a1d74ae7664a604662366711b58e10d1ce075  qtserialport-941d1d8560d1f3e40077c251fbde6fd6a5b0f0d4.tar.bz2
 
 # Hashes for license files:
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
diff --git a/package/qt5/qt5serialport/qt5serialport.mk b/package/qt5/qt5serialport/qt5serialport.mk
index 902967c757..370093f6f8 100644
--- a/package/qt5/qt5serialport/qt5serialport.mk
+++ b/package/qt5/qt5serialport/qt5serialport.mk
@@ -4,11 +4,12 @@
 #
 ################################################################################
 
-QT5SERIALPORT_VERSION = $(QT5_VERSION)
-QT5SERIALPORT_SITE = $(QT5_SITE)
-QT5SERIALPORT_SOURCE = qtserialport-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5SERIALPORT_VERSION).tar.xz
+QT5SERIALPORT_VERSION = 941d1d8560d1f3e40077c251fbde6fd6a5b0f0d4
+QT5SERIALPORT_SITE = $(QT5_SITE)/qtserialport/-/archive/$(QT5SERIALPORT_VERSION)
+QT5SERIALPORT_SOURCE = qtserialport-$(QT5SERIALPORT_VERSION).tar.bz2
 QT5SERIALPORT_INSTALL_STAGING = YES
 QT5SERIALPORT_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception(tools), GFDL-1.3 (docs)
 QT5SERIALPORT_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPL3 LICENSE.FDL
+QT5SERIALPORT_SYNC_QT_HEADERS = YES
 
 $(eval $(qmake-package))
diff --git a/package/qt5/qt5svg/qt5svg.hash b/package/qt5/qt5svg/qt5svg.hash
index 7773a940bb..abffc2891d 100644
--- a/package/qt5/qt5svg/qt5svg.hash
+++ b/package/qt5/qt5svg/qt5svg.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtsvg-everywhere-src-5.15.2.tar.xz.sha256
-sha256  8bc3c2c1bc2671e9c67d4205589a8309b57903721ad14c60ea21a5d06acb585e  qtsvg-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  5d058785a3fd18fa9b94656e1b0bb097d423e21cd3d2a217a77e9dc708a9eb0c  qtsvg-0cb681eacca0f757702fa409bb05d3d3650aba4e.tar.bz2
 
 # Hashes for license files:
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
diff --git a/package/qt5/qt5svg/qt5svg.mk b/package/qt5/qt5svg/qt5svg.mk
index d4b31c231e..d48a37fafe 100644
--- a/package/qt5/qt5svg/qt5svg.mk
+++ b/package/qt5/qt5svg/qt5svg.mk
@@ -4,11 +4,12 @@
 #
 ################################################################################
 
-QT5SVG_VERSION = $(QT5_VERSION)
-QT5SVG_SITE = $(QT5_SITE)
-QT5SVG_SOURCE = qtsvg-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5SVG_VERSION).tar.xz
+QT5SVG_VERSION = 0cb681eacca0f757702fa409bb05d3d3650aba4e
+QT5SVG_SITE = $(QT5_SITE)/qtsvg/-/archive/$(QT5SVG_VERSION)
+QT5SVG_SOURCE = qtsvg-$(QT5SVG_VERSION).tar.bz2
 QT5SVG_INSTALL_STAGING = YES
 QT5SVG_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception(tools), GFDL-1.3 (docs)
 QT5SVG_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPLv3 LICENSE.LGPLv3 LICENSE.FDL
+QT5SVG_SYNC_QT_HEADERS = YES
 
 $(eval $(qmake-package))
diff --git a/package/qt5/qt5tools/qt5tools.hash b/package/qt5/qt5tools/qt5tools.hash
index e52d8e6df7..a563801997 100644
--- a/package/qt5/qt5tools/qt5tools.hash
+++ b/package/qt5/qt5tools/qt5tools.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qttools-everywhere-src-5.15.2.tar.xz.sha256
-sha256  c189d0ce1ff7c739db9a3ace52ac3e24cb8fd6dbf234e49f075249b38f43c1cc  qttools-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  e5ee14a50d5be68ba53e11c76c6e90cc7d7023eab5050447869e7f5e472478a8  qttools-33693a928986006d79c1ee743733cde5966ac402.tar.bz2
 
 # Hashes for license files:
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
diff --git a/package/qt5/qt5tools/qt5tools.mk b/package/qt5/qt5tools/qt5tools.mk
index 0543afd8f7..e2385080ce 100644
--- a/package/qt5/qt5tools/qt5tools.mk
+++ b/package/qt5/qt5tools/qt5tools.mk
@@ -4,11 +4,12 @@
 #
 ################################################################################
 
-QT5TOOLS_VERSION = $(QT5_VERSION)
-QT5TOOLS_SITE = $(QT5_SITE)
-QT5TOOLS_SOURCE = qttools-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5TOOLS_VERSION).tar.xz
+QT5TOOLS_VERSION = 33693a928986006d79c1ee743733cde5966ac402
+QT5TOOLS_SITE = $(QT5_SITE)/qttools/-/archive/$(QT5TOOLS_VERSION)
+QT5TOOLS_SOURCE = qttools-$(QT5TOOLS_VERSION).tar.bz2
 
 QT5TOOLS_INSTALL_STAGING = YES
+QT5TOOLS_SYNC_QT_HEADERS = YES
 
 # linguist tools compile conditionally on qtHaveModule(qmldevtools-private),
 # but the condition is used only used to decide if lupdate will support
diff --git a/package/qt5/qt5virtualkeyboard/qt5virtualkeyboard.hash b/package/qt5/qt5virtualkeyboard/qt5virtualkeyboard.hash
index 82f132378e..1e2c658109 100644
--- a/package/qt5/qt5virtualkeyboard/qt5virtualkeyboard.hash
+++ b/package/qt5/qt5virtualkeyboard/qt5virtualkeyboard.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtvirtualkeyboard-everywhere-src-5.15.2.tar.xz.sha256
-sha256  9a3193913be30f09a896e3b8c2f9696d2e9b3f88a63ae9ca8c97a2786b68cf55  qtvirtualkeyboard-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  5da55e63278127365d8d8881e43b34fd6544dfb46c7e1116ea15e16a3d211afe  qtvirtualkeyboard-353b75b2e34bdae901625bbddf5c5e3f3e6c0de5.tar.bz2
 
 # Hashes for license files:
 sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  LICENSE.GPL3
diff --git a/package/qt5/qt5virtualkeyboard/qt5virtualkeyboard.mk b/package/qt5/qt5virtualkeyboard/qt5virtualkeyboard.mk
index 3984c9866e..db0884fd18 100644
--- a/package/qt5/qt5virtualkeyboard/qt5virtualkeyboard.mk
+++ b/package/qt5/qt5virtualkeyboard/qt5virtualkeyboard.mk
@@ -4,11 +4,12 @@
 #
 ################################################################################
 
-QT5VIRTUALKEYBOARD_VERSION = $(QT5_VERSION)
-QT5VIRTUALKEYBOARD_SITE = $(QT5_SITE)
-QT5VIRTUALKEYBOARD_SOURCE = qtvirtualkeyboard-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5VIRTUALKEYBOARD_VERSION).tar.xz
+QT5VIRTUALKEYBOARD_VERSION = 353b75b2e34bdae901625bbddf5c5e3f3e6c0de5
+QT5VIRTUALKEYBOARD_SITE = $(QT5_SITE)/qtvirtualkeyboard/-/archive/$(QT5VIRTUALKEYBOARD_VERSION)
+QT5VIRTUALKEYBOARD_SOURCE = qtvirtualkeyboard-$(QT5VIRTUALKEYBOARD_VERSION).tar.bz2
 QT5VIRTUALKEYBOARD_DEPENDENCIES = qt5declarative qt5svg
 QT5VIRTUALKEYBOARD_INSTALL_STAGING = YES
+QT5VIRTUALKEYBOARD_SYNC_QT_HEADERS = YES
 
 QT5VIRTUALKEYBOARD_LICENSE = GPL-3.0
 QT5VIRTUALKEYBOARD_LICENSE_FILES = LICENSE.GPL3
diff --git a/package/qt5/qt5wayland/qt5wayland.hash b/package/qt5/qt5wayland/qt5wayland.hash
index b17dbdd10d..35708ec077 100644
--- a/package/qt5/qt5wayland/qt5wayland.hash
+++ b/package/qt5/qt5wayland/qt5wayland.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtwayland-everywhere-src-5.15.2.tar.xz.sha256
-sha256  193732229ff816f3aaab9a5e2f6bed71ddddbf1988ce003fe8dd84a92ce9aeb5  qtwayland-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  11dcc39291976721adc453f484e7b5ae22a574bce0710e24c61c2e80e6268e30  qtwayland-e0646f531e1e73a90a93faaa45d933ae40769985.tar.bz2
 
 # Hashes for license files:
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
diff --git a/package/qt5/qt5wayland/qt5wayland.mk b/package/qt5/qt5wayland/qt5wayland.mk
index 0076bbfe73..70e5b2655e 100644
--- a/package/qt5/qt5wayland/qt5wayland.mk
+++ b/package/qt5/qt5wayland/qt5wayland.mk
@@ -4,11 +4,12 @@
 #
 ################################################################################
 
-QT5WAYLAND_VERSION = $(QT5_VERSION)
-QT5WAYLAND_SITE = $(QT5_SITE)
-QT5WAYLAND_SOURCE = qtwayland-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5WAYLAND_VERSION).tar.xz
+QT5WAYLAND_VERSION = e0646f531e1e73a90a93faaa45d933ae40769985
+QT5WAYLAND_SITE = $(QT5_SITE)/qtwayland/-/archive/$(QT5WAYLAND_VERSION)
+QT5WAYLAND_SOURCE = qtwayland-$(QT5WAYLAND_VERSION).tar.bz2
 QT5WAYLAND_DEPENDENCIES = wayland
 QT5WAYLAND_INSTALL_STAGING = YES
+QT5WAYLAND_SYNC_QT_HEADERS = YES
 
 ifeq ($(BR2_PACKAGE_QT5DECLARATIVE_QUICK),y)
 QT5WAYLAND_DEPENDENCIES += qt5declarative
diff --git a/package/qt5/qt5webchannel/qt5webchannel.hash b/package/qt5/qt5webchannel/qt5webchannel.hash
index 47c7da3365..af195b32b3 100644
--- a/package/qt5/qt5webchannel/qt5webchannel.hash
+++ b/package/qt5/qt5webchannel/qt5webchannel.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtwebchannel-everywhere-src-5.15.2.tar.xz.sha256
-sha256  127fe79c43b386713f151ed7d411cd81e45e29f9c955584f29736f78c9303ec1  qtwebchannel-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  cc75d29ca38d512b79f2bfbcdb641cdb02dd3a1024f2c9c530abec00418effbf  qtwebchannel-fa8b07105b5e274daaa8adcc129fa4aa0447f9f7.tar.bz2
 
 # Hashes for license files:
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
diff --git a/package/qt5/qt5webchannel/qt5webchannel.mk b/package/qt5/qt5webchannel/qt5webchannel.mk
index 176c0fd7a3..042a28fca9 100644
--- a/package/qt5/qt5webchannel/qt5webchannel.mk
+++ b/package/qt5/qt5webchannel/qt5webchannel.mk
@@ -4,13 +4,14 @@
 #
 ################################################################################
 
-QT5WEBCHANNEL_VERSION = $(QT5_VERSION)
-QT5WEBCHANNEL_SITE = $(QT5_SITE)
-QT5WEBCHANNEL_SOURCE = qtwebchannel-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5WEBCHANNEL_VERSION).tar.xz
+QT5WEBCHANNEL_VERSION = fa8b07105b5e274daaa8adcc129fa4aa0447f9f7
+QT5WEBCHANNEL_SITE = $(QT5_SITE)/qtwebchannel/-/archive/$(QT5WEBCHANNEL_VERSION)
+QT5WEBCHANNEL_SOURCE = qtwebchannel-$(QT5WEBCHANNEL_VERSION).tar.bz2
 QT5WEBCHANNEL_DEPENDENCIES = qt5websockets
 QT5WEBCHANNEL_INSTALL_STAGING = YES
 QT5WEBCHANNEL_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception(tools), GFDL-1.3 (docs)
 QT5WEBCHANNEL_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPL3 LICENSE.FDL
+QT5WEBCHANNEL_SYNC_QT_HEADERS = YES
 
 ifeq ($(BR2_PACKAGE_QT5BASE_EXAMPLES),y)
 QT5WEBCHANNEL_LICENSE += , BSD-3-Clause (examples)
diff --git a/package/qt5/qt5webkit-examples/qt5webkit-examples.mk b/package/qt5/qt5webkit-examples/qt5webkit-examples.mk
index 84bc291739..3b14284e37 100644
--- a/package/qt5/qt5webkit-examples/qt5webkit-examples.mk
+++ b/package/qt5/qt5webkit-examples/qt5webkit-examples.mk
@@ -6,7 +6,7 @@
 
 QT5WEBKIT_EXAMPLES_VERSION = 5.9.1
 QT5WEBKIT_EXAMPLES_SITE = https://download.qt.io/official_releases/qt/5.9/5.9.1/submodules
-QT5WEBKIT_EXAMPLES_SOURCE = qtwebkit-examples-opensource-src-$(QT5WEBKIT_VERSION).tar.xz
+QT5WEBKIT_EXAMPLES_SOURCE = qtwebkit-examples-opensource-src-$(QT5WEBKIT_EXAMPLES_VERSION).tar.xz
 QT5WEBKIT_EXAMPLES_DEPENDENCIES = qt5webkit
 
 QT5WEBKIT_EXAMPLES_LICENSE_FILES = LICENSE.LGPLv21 LICENSE.LGPLv3 LICENSE.GPLv2 LICENSE.GPLv3
diff --git a/package/qt5/qt5websockets/qt5websockets.hash b/package/qt5/qt5websockets/qt5websockets.hash
index 29a9ebe439..3cc87865dc 100644
--- a/package/qt5/qt5websockets/qt5websockets.hash
+++ b/package/qt5/qt5websockets/qt5websockets.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtwebsockets-everywhere-src-5.15.2.tar.xz.sha256
-sha256  a0b42d85dd34ff6e2d23400e02f83d8b85bcd80e60efd1521d12d9625d4a233f  qtwebsockets-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  0f59abfa0172e1d4f7cddc3ed457b71faa3bba1cc25b02a06aa79b5ba0c68653  qtwebsockets-b13b56904b76e96ea52d0efe56395acc94b17d96.tar.bz2
 
 # Hashes for license files:
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
diff --git a/package/qt5/qt5websockets/qt5websockets.mk b/package/qt5/qt5websockets/qt5websockets.mk
index a35cdc5799..d222f025ee 100644
--- a/package/qt5/qt5websockets/qt5websockets.mk
+++ b/package/qt5/qt5websockets/qt5websockets.mk
@@ -4,12 +4,13 @@
 #
 ################################################################################
 
-QT5WEBSOCKETS_VERSION = $(QT5_VERSION)
-QT5WEBSOCKETS_SITE = $(QT5_SITE)
-QT5WEBSOCKETS_SOURCE = qtwebsockets-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5WEBSOCKETS_VERSION).tar.xz
+QT5WEBSOCKETS_VERSION = b13b56904b76e96ea52d0efe56395acc94b17d96
+QT5WEBSOCKETS_SITE = $(QT5_SITE)/qtwebsockets/-/archive/$(QT5WEBSOCKETS_VERSION)
+QT5WEBSOCKETS_SOURCE = qtwebsockets-$(QT5WEBSOCKETS_VERSION).tar.bz2
 QT5WEBSOCKETS_INSTALL_STAGING = YES
 QT5WEBSOCKETS_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception(tools)
 QT5WEBSOCKETS_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPL3
+QT5WEBSOCKETS_SYNC_QT_HEADERS = YES
 
 ifeq ($(BR2_PACKAGE_QT5BASE_EXAMPLES),y)
 QT5WEBSOCKETS_LICENSE += , BSD-3-Clause (examples)
diff --git a/package/qt5/qt5webview/qt5webview.hash b/package/qt5/qt5webview/qt5webview.hash
index c1cee9cf85..51d0fb0d7a 100644
--- a/package/qt5/qt5webview/qt5webview.hash
+++ b/package/qt5/qt5webview/qt5webview.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtwebview-everywhere-src-5.15.2.tar.xz.sha256
-sha256  be9f46167e4977ead5ef5ecf883fdb812a4120f2436383583792f65557e481e7  qtwebview-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  0fd949c35355bbde613c9daa61e32a3d8ed4a7b3e9fc0e3acf92981cc8bf16c3  qtwebview-920de5f1cd9f9001cfef1bfd2c19e6720793362f.tar.bz2
 
 # Hashes for license files:
 sha256  ed8742a95cb9db653a09b050e27ccff5e67ba69c14aa2c3137f2a4e1892f6c0d  LICENSE.FDL
diff --git a/package/qt5/qt5webview/qt5webview.mk b/package/qt5/qt5webview/qt5webview.mk
index 0f37f3eb85..ed1cfe5065 100644
--- a/package/qt5/qt5webview/qt5webview.mk
+++ b/package/qt5/qt5webview/qt5webview.mk
@@ -4,13 +4,14 @@
 #
 ################################################################################
 
-QT5WEBVIEW_VERSION = $(QT5_VERSION)
-QT5WEBVIEW_SITE = $(QT5_SITE)
-QT5WEBVIEW_SOURCE = qtwebview-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5WEBVIEW_VERSION).tar.xz
+QT5WEBVIEW_VERSION = 920de5f1cd9f9001cfef1bfd2c19e6720793362f
+QT5WEBVIEW_SITE = $(QT5_SITE)/qtwebview/-/archive/$(QT5WEBVIEW_VERSION)
+QT5WEBVIEW_SOURCE = qtwebview-$(QT5WEBVIEW_VERSION).tar.bz2
 QT5WEBVIEW_DEPENDENCIES = qt5webengine
 QT5WEBVIEW_INSTALL_STAGING = YES
 QT5WEBVIEW_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0, GFDL-1.3 (docs)
 QT5WEBVIEW_LICENSE_FILES = LICENSE.GPLv2 LICENSE.GPLv3 LICENSE.LGPLv3 LICENSE.FDL
+QT5WEBVIEW_SYNC_QT_HEADERS = YES
 
 ifeq ($(BR2_PACKAGE_QT5BASE_EXAMPLES),y)
 QT5WEBVIEW_LICENSE += , BSD-3-Clause (examples)
diff --git a/package/qt5/qt5x11extras/qt5x11extras.hash b/package/qt5/qt5x11extras/qt5x11extras.hash
index 08e6753f21..b854cedcb6 100644
--- a/package/qt5/qt5x11extras/qt5x11extras.hash
+++ b/package/qt5/qt5x11extras/qt5x11extras.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtx11extras-everywhere-src-5.15.2.tar.xz.sha256
-sha256  7014702ee9a644a5a93da70848ac47c18851d4f8ed622b29a72eed9282fc6e3e  qtx11extras-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  b562bc8b81e35d71df5530be07522b50065f177fb744782e4fc7536970c5d9da  qtx11extras-3898f5484fd4864b047729bfeda9a1222f32364f.tar.bz2
 
 # Hashes for license files:
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
diff --git a/package/qt5/qt5x11extras/qt5x11extras.mk b/package/qt5/qt5x11extras/qt5x11extras.mk
index 075d36dcd8..7b1e32df17 100644
--- a/package/qt5/qt5x11extras/qt5x11extras.mk
+++ b/package/qt5/qt5x11extras/qt5x11extras.mk
@@ -4,11 +4,12 @@
 #
 ################################################################################
 
-QT5X11EXTRAS_VERSION = $(QT5_VERSION)
-QT5X11EXTRAS_SITE = $(QT5_SITE)
-QT5X11EXTRAS_SOURCE = qtx11extras-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5X11EXTRAS_VERSION).tar.xz
+QT5X11EXTRAS_VERSION = 3898f5484fd4864b047729bfeda9a1222f32364f
+QT5X11EXTRAS_SITE = $(QT5_SITE)/qtx11extras/-/archive/$(QT5X11EXTRAS_VERSION)
+QT5X11EXTRAS_SOURCE = qtx11extras-$(QT5X11EXTRAS_VERSION).tar.bz2
 QT5X11EXTRAS_INSTALL_STAGING = YES
 QT5X11EXTRAS_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception(tools), GFDL-1.3 (docs)
 QT5X11EXTRAS_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPL3 LICENSE.FDL
+QT5X11EXTRAS_SYNC_QT_HEADERS = YES
 
 $(eval $(qmake-package))
diff --git a/package/qt5/qt5xmlpatterns/qt5xmlpatterns.hash b/package/qt5/qt5xmlpatterns/qt5xmlpatterns.hash
index 682e114a7f..c0e3caa407 100644
--- a/package/qt5/qt5xmlpatterns/qt5xmlpatterns.hash
+++ b/package/qt5/qt5xmlpatterns/qt5xmlpatterns.hash
@@ -1,5 +1,5 @@
-# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtxmlpatterns-everywhere-src-5.15.2.tar.xz.sha256
-sha256  76ea2162a7c349188d7e7e4f6c77b78e8a205494c90fee3cea3487a1ae2cf2fa  qtxmlpatterns-everywhere-src-5.15.2.tar.xz
+# Locally calculated
+sha256  20363267cd8dc93622a0f444708eb83f0ed6d9d9bceaf13c5db806d96b00cf09  qtxmlpatterns-189e28d0aff1f3d7960228ba318b83e3cadac98c.tar.bz2
 
 # Hashes for license files:
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSE.GPL2
diff --git a/package/qt5/qt5xmlpatterns/qt5xmlpatterns.mk b/package/qt5/qt5xmlpatterns/qt5xmlpatterns.mk
index 6845483327..27818ecb78 100644
--- a/package/qt5/qt5xmlpatterns/qt5xmlpatterns.mk
+++ b/package/qt5/qt5xmlpatterns/qt5xmlpatterns.mk
@@ -4,12 +4,13 @@
 #
 ################################################################################
 
-QT5XMLPATTERNS_VERSION = $(QT5_VERSION)
-QT5XMLPATTERNS_SITE = $(QT5_SITE)
-QT5XMLPATTERNS_SOURCE = qtxmlpatterns-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5XMLPATTERNS_VERSION).tar.xz
+QT5XMLPATTERNS_VERSION = 189e28d0aff1f3d7960228ba318b83e3cadac98c
+QT5XMLPATTERNS_SITE = $(QT5_SITE)/qtxmlpatterns/-/archive/$(QT5XMLPATTERNS_VERSION)
+QT5XMLPATTERNS_SOURCE = qtxmlpatterns-$(QT5XMLPATTERNS_VERSION).tar.bz2
 QT5XMLPATTERNS_INSTALL_STAGING = YES
 QT5XMLPATTERNS_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception(tools), GFDL-1.3 (docs)
 QT5XMLPATTERNS_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPL3 LICENSE.FDL
+QT5XMLPATTERNS_SYNC_QT_HEADERS = YES
 
 ifeq ($(BR2_PACKAGE_QT5DECLARATIVE),y)
 QT5XMLPATTERNS_DEPENDENCIES += qt5declarative
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-01-05 10:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-05 10:14 [Buildroot] [PATCH 1/3] package/qt5/qt5webengine-chromium-catapult: new package James Hilliard
2022-01-05 10:14 ` [Buildroot] [PATCH 2/3] package/qt5/qt5webengine: bump to version 5.15.8 James Hilliard
2022-01-05 10:14 ` [Buildroot] [PATCH 3/3] package/qt5: bump packages to latest kde submodule versions James Hilliard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.