diff --git a/.hgtags b/.hgtags index 88e324bdb77a1..9e84336304de2 100644 --- a/.hgtags +++ b/.hgtags @@ -4392,3 +4392,5 @@ bf2f656d025836975b7bf6aeb16901a037a01923 FIREFOX_115_2_0esr_RELEASE 8a02a7c43f1eddfd18926f0266d188b4f359c0aa FIREFOX_115_5_0esr_BUILD1 8a02a7c43f1eddfd18926f0266d188b4f359c0aa FIREFOX_115_5_0esr_RELEASE aa9f02961b2bbb92e17fea5d6b8fd14c097baf72 FIREFOX_115_6_0esr_BUILD1 +aa9f02961b2bbb92e17fea5d6b8fd14c097baf72 FIREFOX_115_6_0esr_RELEASE +980ec32f825b2f54c05d16057a6e60d5b62d2ee2 FIREFOX_115_7_0esr_BUILD1 diff --git a/CLOBBER b/CLOBBER index cc5e6c5d52322..ef3ce63d738cc 100644 --- a/CLOBBER +++ b/CLOBBER @@ -22,4 +22,4 @@ # changes to stick? As of bug 928195, this shouldn't be necessary! Please # don't change CLOBBER for WebIDL changes any more. -Merge day clobber 2023-11-20 \ No newline at end of file +Merge day clobber 2023-12-18 \ No newline at end of file diff --git a/accessible/base/NotificationController.cpp b/accessible/base/NotificationController.cpp index 3a99a05f0d405..6ac4223b7e048 100644 --- a/accessible/base/NotificationController.cpp +++ b/accessible/base/NotificationController.cpp @@ -946,7 +946,7 @@ void NotificationController::WillRefresh(mozilla::TimeStamp aTime) { } if (mDocument) { - mDocument->ClearMovedAccessibles(); + mDocument->ClearMutationData(); } if (ipc::ProcessChild::ExpectingShutdown()) { diff --git a/accessible/generic/DocAccessible.cpp b/accessible/generic/DocAccessible.cpp index afe84b2aa44bd..fda332ebe0e66 100644 --- a/accessible/generic/DocAccessible.cpp +++ b/accessible/generic/DocAccessible.cpp @@ -1035,9 +1035,6 @@ void DocAccessible::ContentRemoved(nsIContent* aChildNode, logging::MsgEnd(); } #endif - // This one and content removal notification from layout may result in - // double processing of same subtrees. If it pops up in profiling, then - // consider reusing a document node cache to reject these notifications early. ContentRemoved(aChildNode); } @@ -2165,6 +2162,10 @@ void DocAccessible::ContentRemoved(LocalAccessible* aChild) { } void DocAccessible::ContentRemoved(nsIContent* aContentNode) { + if (!mRemovedNodes.EnsureInserted(aContentNode)) { + return; + } + // If child node is not accessible then look for its accessible children. LocalAccessible* acc = GetAccessible(aContentNode); if (acc) { diff --git a/accessible/generic/DocAccessible.h b/accessible/generic/DocAccessible.h index f0453ce76671b..77c414f9e3404 100644 --- a/accessible/generic/DocAccessible.h +++ b/accessible/generic/DocAccessible.h @@ -550,12 +550,12 @@ class DocAccessible : public HyperTextAccessibleWrap, /** * Called from NotificationController after all mutation events have been - * processed to clear our data about Accessibles that were moved during this - * tick. + * processed to clear our data about mutations during this tick. */ - void ClearMovedAccessibles() { + void ClearMutationData() { mMovedAccessibles.Clear(); mInsertedAccessibles.Clear(); + mRemovedNodes.Clear(); } /** @@ -815,6 +815,9 @@ class DocAccessible : public HyperTextAccessibleWrap, // processes. This is needed to prevent insertions + moves of the same // Accessible in the same tick from being tracked as moves. nsTHashSet> mInsertedAccessibles; + // A set of DOM nodes removed during this tick. This avoids a lot of pointless + // recursive DOM traversals. + nsTHashSet mRemovedNodes; }; inline DocAccessible* LocalAccessible::AsDoc() { diff --git a/browser/components/enterprisepolicies/Policies.sys.mjs b/browser/components/enterprisepolicies/Policies.sys.mjs index b9e420eae6905..cb15d441a6512 100644 --- a/browser/components/enterprisepolicies/Policies.sys.mjs +++ b/browser/components/enterprisepolicies/Policies.sys.mjs @@ -1695,6 +1695,7 @@ export var Policies = { onBeforeAddons(manager, param) { let allowedPrefixes = [ "accessibility.", + "alerts.", "app.update.", "browser.", "datareporting.policy.", diff --git a/browser/components/search/test/unit/test_search_telemetry_config_validation.js b/browser/components/search/test/unit/test_search_telemetry_config_validation.js index 45f678dfe30a7..1c243cfc82cfc 100644 --- a/browser/components/search/test/unit/test_search_telemetry_config_validation.js +++ b/browser/components/search/test/unit/test_search_telemetry_config_validation.js @@ -4,6 +4,7 @@ "use strict"; ChromeUtils.defineESModuleGetters(this, { + AppConstants: "resource://gre/modules/AppConstants.sys.mjs", RemoteSettings: "resource://services-settings/remote-settings.sys.mjs", TELEMETRY_SETTINGS_KEY: "resource:///modules/SearchSERPTelemetry.sys.mjs", JsonSchema: "resource://gre/modules/JsonSchema.sys.mjs", @@ -32,6 +33,17 @@ function isObject(value) { * The section to check to see if an additionalProperties flag should be added. */ function disallowAdditionalProperties(section) { + // It is generally acceptable for new properties to be added to the + // configuration as older builds will ignore them. + // + // As a result, we only check for new properties on nightly builds, and this + // avoids us having to uplift schema changes. This also helps preserve the + // schemas as documentation of "what was supported in this version". + if (!AppConstants.NIGHTLY_BUILD) { + info("Skipping additional properties validation."); + return; + } + if (section.type == "object") { section.additionalProperties = false; } diff --git a/browser/config/version.txt b/browser/config/version.txt index f89a1b791a058..fe6fbc7f0290f 100644 --- a/browser/config/version.txt +++ b/browser/config/version.txt @@ -1 +1 @@ -115.6.0 +115.7.0 diff --git a/browser/config/version_display.txt b/browser/config/version_display.txt index 12f895e464752..897063bb32694 100644 --- a/browser/config/version_display.txt +++ b/browser/config/version_display.txt @@ -1 +1 @@ -11.7.1 +11.8.0 diff --git a/browser/locales/en-US/browser/newtab/asrouter.ftl b/browser/locales/en-US/browser/newtab/asrouter.ftl index 53b6515cec100..84cb660214e6a 100644 --- a/browser/locales/en-US/browser/newtab/asrouter.ftl +++ b/browser/locales/en-US/browser/newtab/asrouter.ftl @@ -243,7 +243,14 @@ fxa-sync-cfr-secondary = Remind me later ## Device Migration FxA Spotlight -device-migration-fxa-spotlight-header = Using an older device? -device-migration-fxa-spotlight-body = Back up your data to make sure you don’t lose important info like bookmarks and passwords — especially if you switch to a new device. -device-migration-fxa-spotlight-primary-button = How to back up my data -device-migration-fxa-spotlight-link = Remind me later +device-migration-fxa-spotlight-heavy-user-header = Don’t forget to back up your data +device-migration-fxa-spotlight-heavy-user-body = Make sure important info — like bookmarks and passwords — is updated and protected across all your devices. +device-migration-fxa-spotlight-heavy-user-primary-button = Get started + +device-migration-fxa-spotlight-older-device-header = Peace of mind, from { -brand-product-name } +device-migration-fxa-spotlight-older-device-body = An account keeps your important info updated and protected on any device you connect. +device-migration-fxa-spotlight-older-device-primary-button = Create an account + +device-migration-fxa-spotlight-getting-new-device-header-2 = New device in your future? +device-migration-fxa-spotlight-getting-new-device-body-2 = Follow a few simple steps to bring your bookmarks, history, and passwords with you when you get started on a new device. +device-migration-fxa-spotlight-getting-new-device-primary-button = How to back up my data diff --git a/browser/locales/l10n-changesets.json b/browser/locales/l10n-changesets.json index 311c317f6d166..077fa913e5022 100644 --- a/browser/locales/l10n-changesets.json +++ b/browser/locales/l10n-changesets.json @@ -15,7 +15,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "de9eb6a1e3e0838d984242ccbf7d9fef407d1b2d" + "revision": "09170737faea4b3c1002b7b171423b26d6a84249" }, "af": { "pin": false, @@ -33,7 +33,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "45b72420bf1756c4547825ed6d6d1c2e56f39d05" + "revision": "f75b56616bce86d35d7224d5d92a619184ad20e3" }, "an": { "pin": false, @@ -51,7 +51,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "babed417b5e8afea29ce2a81ef626960d06f9768" + "revision": "7dd08c770f7d6467384592dc4a9a9a3271159840" }, "ar": { "pin": false, @@ -69,7 +69,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "7df35a519b47abe1f2acc8882d3d9753a455fe89" + "revision": "4c7e24ef78bdc7567d43b849345ae880c8bb20a8" }, "ast": { "pin": false, @@ -87,7 +87,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "fd0068a8989f02761dac84350c426f8196261e01" + "revision": "64e0c51ec3b5b947743ed79b4481ce26f32fc5ad" }, "az": { "pin": false, @@ -105,7 +105,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "4df6d5edc74dff0f8e60e8af27639cf81c1e3637" + "revision": "f95282c649779d047fda89692d5d6aad083c1d7b" }, "be": { "pin": false, @@ -123,7 +123,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "97829729f0434be9a57987a2b14f1ce1b54c8212" + "revision": "0bed491fdb27e5052aef5083a8a10cc68809d071" }, "bg": { "pin": false, @@ -141,7 +141,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "4f568ae49cf326eb04226e47344ce70563577730" + "revision": "612502562eb1788688de1a4973e939c91782ac78" }, "bn": { "pin": false, @@ -159,7 +159,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "a634f8559ffd3affc77c4935d0a08a34e3462dae" + "revision": "503468755f8cff15b732e2bb9c3ddf7f3be07380" }, "br": { "pin": false, @@ -177,7 +177,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "4ca046b16e373c6ab7cae7a87f1eb6127eaf0c5f" + "revision": "7b4ddecda399bc6a8137afc9d2ea8415d02ea5ad" }, "bs": { "pin": false, @@ -195,7 +195,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "6909607005264047bebd386a75dc0e5b1137c5b7" + "revision": "0231a77ce204f5b1a8dbf3e06d1d9d2b9aec9261" }, "ca": { "pin": false, @@ -213,7 +213,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "58714a456fd697998a01f822a268dc1cdd63f401" + "revision": "24d50653ab5c9b99335a8e65cdf4d92ccc6a2b14" }, "ca-valencia": { "pin": false, @@ -231,7 +231,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "703352c2a9b43b6420ad4f554709d7edc340f468" + "revision": "8bf62f9aa0cbc1ebb1b1c5d373c48dcd50dbfd9c" }, "cak": { "pin": false, @@ -249,7 +249,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "12760eef74bc52895c494efa67b097b928db86b3" + "revision": "aedb8eeab1dbde2eacd079e6c9d1ce134ec338b8" }, "cs": { "pin": false, @@ -267,7 +267,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "6a7eef3982fb0e5adfb28d28c4144fe667d483bb" + "revision": "0d96b6b04bfb8a29ba7040144db80cc47f64b09d" }, "cy": { "pin": false, @@ -285,7 +285,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "9c30e4ec1ddeabdf0353f73148bffec32cc3fb52" + "revision": "3d1694ddd8f1b79d6af3fef4404918041d9fe0a9" }, "da": { "pin": false, @@ -303,7 +303,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "668cf42570effd413ffd204726933160a9e0c9e6" + "revision": "0a0b774407cc88a245653d3f258147f1bbe466fb" }, "de": { "pin": false, @@ -321,7 +321,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "c968a5118cda738f105e92e5877326d9f89f2a9f" + "revision": "633986260777ba4127fb9e672b96fb46b94b0a9d" }, "dsb": { "pin": false, @@ -339,7 +339,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "27dd7f4a3f3f0f85ddd7e3d4b416057daf8ebd54" + "revision": "74247a862227c161b9a5973bc9e58e50e9bcb56c" }, "el": { "pin": false, @@ -357,7 +357,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "920e28aa6758da6e53fcef0bcd903c1689129b28" + "revision": "e2f2d1541e385f8a4d44d7c7e19ae9cd7030f0b6" }, "en-CA": { "pin": false, @@ -375,7 +375,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "b0e55a5a6413dfd5fae18710f3b3f04b88970e03" + "revision": "12633b822526555f840e2a6b914362e470307af6" }, "en-GB": { "pin": false, @@ -393,7 +393,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "9aae743f32dfbf68af8d82ee0a516758b21a7ed4" + "revision": "e1234cb64b89c34f3a88d8c6b164df35825fe8d9" }, "eo": { "pin": false, @@ -411,7 +411,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "3c825be76f39309538e1e6064ee15aee2b37853a" + "revision": "8fc31a6f9a320f77339ed2d2a53d9ef38555888d" }, "es-AR": { "pin": false, @@ -429,7 +429,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "ffac56bd3aefea1d45651908ea1b1567bab86c89" + "revision": "78b3c38741dffc0f17a848e4faf873a1b86d2ca3" }, "es-CL": { "pin": false, @@ -447,7 +447,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "77e209bb2114cee9892dbaf0aab2d7413c18db57" + "revision": "1335f004be927c39ee0fefb37021a2969519b5e7" }, "es-ES": { "pin": false, @@ -465,7 +465,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "215ced58e499d3236d1215eb98b3b345881264fe" + "revision": "accf5e4506c03ec14eabb67e5fb79badfefb8f3b" }, "es-MX": { "pin": false, @@ -483,7 +483,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "d748a2a916435db17a7ef4377594b2d6e385f1a8" + "revision": "b92e1730f01bcf5499dbb772f17a13abd3a68c58" }, "et": { "pin": false, @@ -501,7 +501,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "66edf9863a047ed50d511a7739d76f5b33c12e58" + "revision": "d780fe37dfc6ab2be41baa886a83dad3e5e93af4" }, "eu": { "pin": false, @@ -519,7 +519,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "752b6aa2225e2c438fd7c43ed9a4f3560990a2c3" + "revision": "1f33c97dd4b9ded434f47ed1001f7258eabca501" }, "fa": { "pin": false, @@ -537,7 +537,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "4a57be1cf7833c6ffc3584d8c565bd77aa918f16" + "revision": "37aa71d77cb6de6cc9f1d67696f978deef2ade74" }, "ff": { "pin": false, @@ -555,7 +555,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "e42c0149059c4c4d44f9517f0cd0330e57057887" + "revision": "eb3ca2b29eb8e75b28b723f64eecc2c5ff993117" }, "fi": { "pin": false, @@ -573,7 +573,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "0a2a3e96367ccbc677d64da167abd46b316e182f" + "revision": "dc40a4fd5d0e787da56408576c6d673191827dc6" }, "fr": { "pin": false, @@ -591,7 +591,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "119b009eba98427cc36c8e5922abed9380bb4acd" + "revision": "415c1f0e84bd3287d07ed84aa23ce4da4673d46f" }, "fur": { "pin": false, @@ -609,7 +609,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "475065215d5c2716584fbe9f500743b86b42cd5d" + "revision": "c0f7e4e5ccca3f2c98a4d3c039f571310e95a08c" }, "fy-NL": { "pin": false, @@ -627,7 +627,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "6909c0c42a2ec31f4d15fd72d20af9abffae218b" + "revision": "45d949d7a90e669b8b9f4f7d950c336ea91de987" }, "ga-IE": { "pin": false, @@ -645,7 +645,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "2f350c9ba5056b9bf0461da083f6f4aa42856206" + "revision": "d271f275cf48a006acf046519793dde34bd0fbeb" }, "gd": { "pin": false, @@ -663,7 +663,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "3fe4a6bcac318156e251af2ae407e2371da19097" + "revision": "2b950e306295533e891ebf5ad4bdc945f1afc503" }, "gl": { "pin": false, @@ -681,7 +681,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "0482da4a3d5b1fb6807ce0ce2ffabe327d9a0211" + "revision": "a060dd864d61fd4d074d3d558955dcdb57c1c35e" }, "gn": { "pin": false, @@ -699,7 +699,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "bb255fc733c3779a7db6c75f1517ff5dd420fe98" + "revision": "372cc7e9a7d3da912da9f911b261110d0d5e2c6f" }, "gu-IN": { "pin": false, @@ -717,7 +717,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "dd3707daa411704918c1742287d9218477a58c14" + "revision": "ae2b9c18cfab55abf7ac8a50e371c3d8dd714060" }, "he": { "pin": false, @@ -735,7 +735,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "c247293030ae3795267f47ac7c53ef20dc0c5d97" + "revision": "46f8d7c031a6a4cd9ce99fd6d2fa1d97049aa9fb" }, "hi-IN": { "pin": false, @@ -753,7 +753,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "e9c1a1fe1b79150ec05869cd963dd16377830058" + "revision": "0061583f8a467014c7267e52745986f405aa8468" }, "hr": { "pin": false, @@ -771,7 +771,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "068c00ca7cae5fdd8ce07e89f59d44912ae1589c" + "revision": "3244c23d50d1ef88729b015af3829053e831b4a3" }, "hsb": { "pin": false, @@ -789,7 +789,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "5fd424d1061b0fdcc46bfbb7fa927e0f7b2db7cb" + "revision": "10dec0b4c8a0f360a86ed2c734d260d3d5928773" }, "hu": { "pin": false, @@ -807,7 +807,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "0ef89daff9424a1ddfd6e86d3dbadf5c396d2b05" + "revision": "086ac0260d6b5adc2a40751ac18d00ee6f32fdc5" }, "hy-AM": { "pin": false, @@ -825,7 +825,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "771fd65bc7818883317e57fabdb9a9a84fb1b060" + "revision": "932f864ceb4b455ea072ab4fde99768ed6892743" }, "ia": { "pin": false, @@ -843,7 +843,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "6cfa8fc01f2acd24c49fdf7db6202bd369eb41b9" + "revision": "b8ce45c9cc30ffd2839f6f566c3322fda1579fc7" }, "id": { "pin": false, @@ -861,7 +861,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "ae863f3cd230e2a0a72152e218f85cff2c96a01f" + "revision": "f03a6b3069a51f4142fa6f6df11df96b3ada8a55" }, "is": { "pin": false, @@ -879,7 +879,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "d465499a6600ccc2c8e768134cfb0966687cbff1" + "revision": "5c4b61165e1dbb5bb5c053bc88056520abc985d4" }, "it": { "pin": false, @@ -897,7 +897,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "a8ac504108151b4f1f46fa986c3efd53f157918c" + "revision": "07d5e1ff5f9b76a48b141ecbea23d20061bd969c" }, "ja": { "pin": false, @@ -913,7 +913,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "13abbdd8abdf87dea523d1074aa681d59af4c004" + "revision": "e6f9db9ce3e67576196c0e888bb8628a300ab8af" }, "ja-JP-mac": { "pin": false, @@ -921,7 +921,7 @@ "macosx64", "macosx64-devedition" ], - "revision": "1f388ad7f0e9facca0fbd0afa5f2913641bca3a0" + "revision": "b166ef1a805efb1ab0ee998108213de08e5be069" }, "ka": { "pin": false, @@ -939,7 +939,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "ed774dd2eff3833c6875f00efbe07fa996a8d5bf" + "revision": "a15eb9feea2cc1add03a14b2a2d7e2a41deaabdc" }, "kab": { "pin": false, @@ -957,7 +957,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "c9cfab9734b4f7f702b1c1a1f1d30b6a1a9db72e" + "revision": "4d619e0aace95075132d8e708a8f9055f95a784f" }, "kk": { "pin": false, @@ -975,7 +975,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "4797db4a0fcb4eacbcbe4e408fe7d4d7e87ab6fe" + "revision": "b6a707bf746107ef1dd3979b973f06a85d61aa2d" }, "km": { "pin": false, @@ -993,7 +993,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "f312da458d8b39d53ba9b64530b4eb5d5e815ad3" + "revision": "006435264ce37b6daf75558316730614936ce5e8" }, "kn": { "pin": false, @@ -1011,7 +1011,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "a30ac878de5628e4c7c74309d8d658b5650317f0" + "revision": "2bd68cc25a04fe321dac1ad6fa102c1424976e8f" }, "ko": { "pin": false, @@ -1029,7 +1029,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "6f5e9c8eb029b931901f6b10c57dd20c7280f079" + "revision": "805b85981696e9145d1a677c6624abe100267fc0" }, "lij": { "pin": false, @@ -1047,7 +1047,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "dcdf4bf4482b65c8f536c2d609b69f92f7134853" + "revision": "7c0f7f96530b48bd7ce46df25645ec91581ee19e" }, "lt": { "pin": false, @@ -1065,7 +1065,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "913770b70eade5ccc6e951cabcedbcd6dba0305c" + "revision": "943a26276832c09522fc9134e9f930cb0506f497" }, "lv": { "pin": false, @@ -1083,7 +1083,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "6351f7efe4d78e952762d69742d06d97d8b5e459" + "revision": "c67ce680ac800c004b22b9787166be20a7aae201" }, "mk": { "pin": false, @@ -1101,7 +1101,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "6acffb2c66ee0383761d0b1917dbb015690f1f61" + "revision": "fbef80de5499995a75db64bf06903e16f22dee4e" }, "mr": { "pin": false, @@ -1119,7 +1119,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "942eca4c76b650361a2f1b0c16755fd361ed08cf" + "revision": "019be6e3370b7a27e434d3a61e5f229160d4ed84" }, "ms": { "pin": false, @@ -1137,7 +1137,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "de00ab4bb6fe52104736652ca0b3d251b0aa0fce" + "revision": "20ec0915ec354d674a835ace3615aebfdf7f5219" }, "my": { "pin": false, @@ -1155,7 +1155,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "2ce7138cd12603dcf325534aceaad1bb6c8006e7" + "revision": "4ab6f0d05aa6ead61e2ba4ff34dff79a696b9318" }, "nb-NO": { "pin": false, @@ -1173,7 +1173,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "5cc51d23879004af4bc655a5730cad3d26304529" + "revision": "561b0cd86ec1561ca575ce663d4e21f5b43cda41" }, "ne-NP": { "pin": false, @@ -1191,7 +1191,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "db205a4fd15a558779fbb7cde51da4c4c56e3555" + "revision": "6367a1ca431c536985f8cab4597e569329bf9ba8" }, "nl": { "pin": false, @@ -1209,7 +1209,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "1abc02acab91d385e304044f36470939816f72c6" + "revision": "2a55df0cc3892d7f8dc789c33f377a64debe3c85" }, "nn-NO": { "pin": false, @@ -1227,7 +1227,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "b4ff1a7885c2dff22e57dadb615e2c47f45aa04a" + "revision": "f1e4c9dfd98e74f5bbd21e137f58bd4cf008e0f0" }, "oc": { "pin": false, @@ -1245,7 +1245,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "1c7d5471dba93f78719dbc7e6bbb9df28f52c89e" + "revision": "f562a64f01acb4acc47f51e46619232a83a7068f" }, "pa-IN": { "pin": false, @@ -1263,7 +1263,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "cf3fd8eb605be7df193c8321a59ee423b409f00d" + "revision": "f7f5f1096400869357e85aa17155cfd7a5d8cb86" }, "pl": { "pin": false, @@ -1281,7 +1281,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "3c9c3c67830aa5b45f56489a62586de8e22ff499" + "revision": "a64a7dab01c4ee4bcdc765de6cd03a0b2defeaa9" }, "pt-BR": { "pin": false, @@ -1299,7 +1299,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "68bf2b7c6f25f946e6054ebb5bfe4ba90e8e5434" + "revision": "33bf2a9f4c49e719ecb305dec731c83b94b5cccd" }, "pt-PT": { "pin": false, @@ -1317,7 +1317,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "fae18b48519f7f4d2b5ec1289ad6736a105b2f21" + "revision": "051c2c722aad78ac8327d7c919a54bdf65ef2c9b" }, "rm": { "pin": false, @@ -1335,7 +1335,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "92110fd6e211ab7ec84ef64b47a55969d890fba1" + "revision": "b97faa95a0c7083253ec08230f74290ad45ea357" }, "ro": { "pin": false, @@ -1353,7 +1353,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "5eeba1f64743ce37aaf90322484bb1e282f1d5a0" + "revision": "a367feeadd33275bcf1584719c45a401db376e84" }, "ru": { "pin": false, @@ -1371,7 +1371,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "47131134e34909c9ff0f1e2fb4d07c293132faca" + "revision": "528b76d6aaca450ecde21fd12ad3bb5aa13dc925" }, "sc": { "pin": false, @@ -1389,7 +1389,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "880b7986692ae3ff611435e40f426c3e1fb0937f" + "revision": "64a2a98ded661dc9540df18dfaf3341983d96461" }, "sco": { "pin": false, @@ -1407,7 +1407,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "bf5f6e362f6f777ee08e1dda4df58eb9e8ba28e6" + "revision": "da7bf2f8f68856930d61dae836d25c422837a8ee" }, "si": { "pin": false, @@ -1425,7 +1425,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "1f705c926a99a83805caed6d51e32b9641446ab2" + "revision": "dae09adba9b54655fbc84a3583726d6b45f613df" }, "sk": { "pin": false, @@ -1443,7 +1443,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "c1bd10d70325ba8d2e37f0cdafad266571dfd9b9" + "revision": "0dc3e74cf7ec420f7a288f1d6f549d7e9da930e3" }, "sl": { "pin": false, @@ -1461,7 +1461,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "44be3cbf69b61d5b5c74032f82f17f7d7b4546b7" + "revision": "8f1f703422a54854a6c145b3b4fd271143078932" }, "son": { "pin": false, @@ -1479,7 +1479,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "800576ff8ef90658a314f90e0353030622497ffb" + "revision": "6bf85312780bcff64c8879897ec811a2726d1e43" }, "sq": { "pin": false, @@ -1497,7 +1497,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "4de8638ac27f9de06312cd62caa5dabb76d87cd6" + "revision": "fa28d9d79cd3fde0d37d3459019446a8b2c5beab" }, "sr": { "pin": false, @@ -1515,7 +1515,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "ec560d96370c1645c5483cee02072f8d1cefef52" + "revision": "47887eb6e6d9818ede91d5277ec943e4819d0a83" }, "sv-SE": { "pin": false, @@ -1533,7 +1533,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "c5754f9325a116a44078c1f3213f03ef1ae9b6c6" + "revision": "cc8e8962e59c94b97b70db64bf41e0b87a8ede53" }, "szl": { "pin": false, @@ -1551,7 +1551,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "c3fa195a8edf02c3576f854260cc625cadb541e5" + "revision": "d8acb10b26c9347971b547157b60bc5b19be1796" }, "ta": { "pin": false, @@ -1569,7 +1569,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "755763981e9558012f0293abc05b5adf5092c42c" + "revision": "eafb88f45784c47606333379ccf7c95bcf5d8faa" }, "te": { "pin": false, @@ -1587,7 +1587,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "3a34078388afceca0c3802585584dd27ab7f422d" + "revision": "42666d51ccf74a64e8c86519470ce53d0afc3093" }, "tg": { "pin": false, @@ -1605,7 +1605,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "24c3a61f463c2a34a8bce30284042f1d5238160c" + "revision": "76c1aaea44b1f1299627101fd304cd4df52a70c5" }, "th": { "pin": false, @@ -1623,7 +1623,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "6dad5f8774df695866537789a3d41f88eb2b9d95" + "revision": "d361502c559ef169c866b6fff0ff3cad0e7ddd5e" }, "tl": { "pin": false, @@ -1641,7 +1641,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "befaa7917b351364336e40a014afc2b1a284d417" + "revision": "c15307863103ae3cb7c6859888a32051d98d3530" }, "tr": { "pin": false, @@ -1659,7 +1659,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "66c8bc5e9da625850c19010857f784a2f1500825" + "revision": "f6173aca47620504c5bb9a20eb5cf9c7dadb852a" }, "trs": { "pin": false, @@ -1677,7 +1677,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "9e86caeded11e1c1d83f301b9c9adab75c97ece3" + "revision": "87850b4b6da8190359bc0837850cee17e3a93bbe" }, "uk": { "pin": false, @@ -1695,7 +1695,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "bd5e0aad5f0b17326a71688cfca4c5dadf0e2588" + "revision": "c5ad4d4f70ebe7db1265f24fc89237808219b34c" }, "ur": { "pin": false, @@ -1713,7 +1713,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "040d506ed6639c3832d57bd4c6a3ebb75c8ae574" + "revision": "46cb98f8118cd844018df84eeb1f4f9d85d79a01" }, "uz": { "pin": false, @@ -1731,7 +1731,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "7e4e5290c700f172e5203d9b7508b545d6a98321" + "revision": "6eee9399633944011a3ebecc45fa0d5de758e81e" }, "vi": { "pin": false, @@ -1749,7 +1749,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "b8196f6465839e89a26333dbce68397c43b314e7" + "revision": "0e75c226763d2548044afe1d0f7b2b3158b7c56d" }, "xh": { "pin": false, @@ -1767,7 +1767,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "ef98e07b4b9e9bd094574a00188fc5cfacd5e4d0" + "revision": "b0a85e71398518c848ecf0512fa5f7c0afdcfb4c" }, "zh-CN": { "pin": false, @@ -1785,7 +1785,7 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "f614d8a315628b0204b6679a937df603b2feb7f1" + "revision": "df2d025ed63149f522134e928a3977b331b12873" }, "zh-TW": { "pin": false, @@ -1803,6 +1803,6 @@ "win64-aarch64-devedition", "win64-devedition" ], - "revision": "ab22459ceb2f6299a206b86c3b9eecc4a0d9e6b2" + "revision": "11f8d68148a4c6aa5b496f57c2f466347e1e4827" } } \ No newline at end of file diff --git a/config/milestone.txt b/config/milestone.txt index 96ab0fd01999a..d8ccef0a28de0 100644 --- a/config/milestone.txt +++ b/config/milestone.txt @@ -10,4 +10,4 @@ # hardcoded milestones in the tree from these two files. #-------------------------------------------------------- -115.6.0 +115.7.0 diff --git a/devtools/server/actors/addon/webextension-inspected-window.js b/devtools/server/actors/addon/webextension-inspected-window.js index e981874a16c64..e69a206c9d1cf 100644 --- a/devtools/server/actors/addon/webextension-inspected-window.js +++ b/devtools/server/actors/addon/webextension-inspected-window.js @@ -103,6 +103,50 @@ function logAccessDeniedWarning(window, callerInfo, extensionPolicy) { Services.console.logMessage(error); } +function extensionAllowedToInspectPrincipal(extensionPolicy, principal) { + if (principal.isNullPrincipal) { + // data: and sandboxed documents. + // + // Rather than returning true unconditionally, we go through additional + // checks to prevent execution in sandboxed documents created by principals + // that extensions cannot access otherwise. + principal = principal.precursorPrincipal; + if (!principal) { + // Top-level about:blank, etc. + return true; + } + } + if (!principal.isContentPrincipal) { + return false; + } + const principalURI = principal.URI; + if (principalURI.schemeIs("https") || principalURI.schemeIs("http")) { + if (WebExtensionPolicy.isRestrictedURI(principalURI)) { + return false; + } + if (extensionPolicy.quarantinedFromURI(principalURI)) { + return false; + } + // Common case: http(s) allowed. + return true; + } + + if (principalURI.schemeIs("moz-extension")) { + // Ordinarily, we don't allow extensions to execute arbitrary code in + // their own context. The devtools.inspectedWindow.eval API is a special + // case - this can only be used through the devtools_page feature, which + // requires the user to open the developer tools first. If an extension + // really wants to debug itself, we let it do so. + return extensionPolicy.id === principal.addonId; + } + + if (principalURI.schemeIs("file")) { + return true; + } + + return false; +} + class CustomizedReload { constructor(params) { this.docShell = params.targetActor.window.docShell; @@ -508,57 +552,22 @@ class WebExtensionInspectedWindowActor extends Actor { }); } - // Log the error for the user to know that the extension request has been denied - // (the extension may not warn the user at all). - const logEvalDenied = () => { - logAccessDeniedWarning(window, callerInfo, extensionPolicy); - }; - - if (isSystemPrincipalWindow(window)) { - logEvalDenied(); - - // On denied JS evaluation, report it to the extension using the same data format - // used in the corresponding chrome API method to report issues that are - // not exceptions raised in the evaluated javascript code. - return createExceptionInfoResult({ - description: "Inspector protocol error: %s", - details: [ - "This target has a system principal. inspectedWindow.eval denied.", - ], - }); - } - - const docPrincipalURI = window.document.nodePrincipal.URI; - - // Deny on document principals listed as restricted or - // related to the about: pages (only about:blank and about:srcdoc are - // allowed and their are expected to not have their about URI associated - // to the principal). if ( - WebExtensionPolicy.isRestrictedURI(docPrincipalURI) || - docPrincipalURI.schemeIs("about") + !extensionAllowedToInspectPrincipal( + extensionPolicy, + window.document.nodePrincipal + ) ) { - logEvalDenied(); + // Log the error for the user to know that the extension request has been + // denied (the extension may not warn the user at all). + logAccessDeniedWarning(window, callerInfo, extensionPolicy); + // The error message is generic here. If access is disallowed, we do not + // expose the URL either. return createExceptionInfoResult({ - description: "Inspector protocol error: %s %s", + description: "Inspector protocol error: %s", details: [ "This extension is not allowed on the current inspected window origin", - docPrincipalURI.spec, - ], - }); - } - - const windowAddonId = window.document.nodePrincipal.addonId; - - if (windowAddonId && extensionPolicy.id !== windowAddonId) { - logEvalDenied(); - - return createExceptionInfoResult({ - description: "Inspector protocol error: %s on %s", - details: [ - "This extension is not allowed to access this extension page.", - window.document.location.origin, ], }); } diff --git a/devtools/shared/commands/inspected-window/tests/browser.ini b/devtools/shared/commands/inspected-window/tests/browser.ini index 69c027e9bc1b0..d3b5ce5fbce77 100644 --- a/devtools/shared/commands/inspected-window/tests/browser.ini +++ b/devtools/shared/commands/inspected-window/tests/browser.ini @@ -8,4 +8,13 @@ support-files = head.js inspectedwindow-reload-target.sjs +prefs = + # restrictedDomains must be set as early as possible, before the first use of + # the preference. browser_webextension_inspected_window_access.js relies on + # this pref to be set. We cannot use "prefs =" at the individual file, because + # another test in this manifest may already have resulted in browser startup. + extensions.webextensions.restrictedDomains=test2.example.com + [browser_webextension_inspected_window.js] +[browser_webextension_inspected_window_access.js] +skip-if = http3 \ No newline at end of file diff --git a/devtools/shared/commands/inspected-window/tests/browser_webextension_inspected_window.js b/devtools/shared/commands/inspected-window/tests/browser_webextension_inspected_window.js index 8054a7b5e5778..bf2b752e4d5a7 100644 --- a/devtools/shared/commands/inspected-window/tests/browser_webextension_inspected_window.js +++ b/devtools/shared/commands/inspected-window/tests/browser_webextension_inspected_window.js @@ -233,48 +233,6 @@ add_task(async function test_error_inspectedWindowEval_result() { await teardown({ commands, extension }); }); -add_task( - async function test_system_principal_denied_error_inspectedWindowEval_result() { - const { commands, extension, fakeExtCallerInfo } = await setup( - "about:addons" - ); - - const result = await commands.inspectedWindowCommand.eval( - fakeExtCallerInfo, - "window", - {} - ); - - ok(!result.value, "Got a null result from inspectedWindow eval"); - ok( - result.exceptionInfo.isError, - "Got an API Error result from inspectedWindow eval on a system principal page" - ); - is( - result.exceptionInfo.code, - "E_PROTOCOLERROR", - "Got the expected 'code' property in the error result" - ); - is( - result.exceptionInfo.description, - "Inspector protocol error: %s", - "Got the expected 'description' property in the error result" - ); - is( - result.exceptionInfo.details.length, - 1, - "The 'details' array property should contains 1 element" - ); - is( - result.exceptionInfo.details[0], - "This target has a system principal. inspectedWindow.eval denied.", - "Got the expected content in the error results's details" - ); - - await teardown({ commands, extension }); - } -); - add_task(async function test_exception_inspectedWindowEval_result() { const { commands, extension, fakeExtCallerInfo } = await setup(URL_ROOT_SSL); diff --git a/devtools/shared/commands/inspected-window/tests/browser_webextension_inspected_window_access.js b/devtools/shared/commands/inspected-window/tests/browser_webextension_inspected_window_access.js new file mode 100644 index 0000000000000..3b32bb0aaabfa --- /dev/null +++ b/devtools/shared/commands/inspected-window/tests/browser_webextension_inspected_window_access.js @@ -0,0 +1,315 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ + +"use strict"; + +async function run_inspectedWindow_eval({ tab, codeToEval, extension }) { + const fakeExtCallerInfo = { + url: `moz-extension://${extension.uuid}/another/fake-caller-script.js`, + lineNumber: 1, + addonId: extension.id, + }; + const commands = await CommandsFactory.forTab(tab, { isWebExtension: true }); + await commands.targetCommand.startListening(); + const result = await commands.inspectedWindowCommand.eval( + fakeExtCallerInfo, + codeToEval, + {} + ); + await commands.destroy(); + return result; +} + +async function openAboutBlankTabWithExtensionOrigin(extension) { + const tab = await BrowserTestUtils.openNewForegroundTab( + gBrowser, + `moz-extension://${extension.uuid}/manifest.json` + ); + const loaded = BrowserTestUtils.browserLoaded(tab.linkedBrowser); + await ContentTask.spawn(tab.linkedBrowser, null, () => { + // about:blank inherits the principal when opened from content. + content.wrappedJSObject.location.assign("about:blank"); + }); + await loaded; + // Sanity checks: + is(tab.linkedBrowser.currentURI.spec, "about:blank", "expected tab"); + is( + tab.linkedBrowser.contentPrincipal.originNoSuffix, + `moz-extension://${extension.uuid}`, + "about:blank should be at the extension origin" + ); + return tab; +} + +async function checkEvalResult({ + extension, + description, + url, + createTab = () => BrowserTestUtils.openNewForegroundTab(gBrowser, url), + expectedResult, +}) { + const tab = await createTab(); + is(tab.linkedBrowser.currentURI.spec, url, "Sanity check: tab URL"); + const result = await run_inspectedWindow_eval({ + tab, + codeToEval: "'code executed at ' + location.href", + extension, + }); + BrowserTestUtils.removeTab(tab); + SimpleTest.isDeeply( + result, + expectedResult, + `eval result for devtools.inspectedWindow.eval at ${url} (${description})` + ); +} + +async function checkEvalAllowed({ extension, description, url, createTab }) { + info(`checkEvalAllowed: ${description} (at URL: ${url})`); + await checkEvalResult({ + extension, + description, + url, + createTab, + expectedResult: { value: `code executed at ${url}` }, + }); +} +async function checkEvalDenied({ extension, description, url, createTab }) { + info(`checkEvalDenied: ${description} (at URL: ${url})`); + await checkEvalResult({ + extension, + description, + url, + createTab, + expectedResult: { + exceptionInfo: { + isError: true, + code: "E_PROTOCOLERROR", + details: [ + "This extension is not allowed on the current inspected window origin", + ], + description: "Inspector protocol error: %s", + }, + }, + }); +} + +add_task(async function test_eval_at_http() { + await SpecialPowers.pushPrefEnv({ + set: [["dom.security.https_first", false]], + }); + + // eslint-disable-next-line @microsoft/sdl/no-insecure-url + const httpUrl = "http://example.com/"; + + // When running with --use-http3-server, http:-URLs cannot be loaded. + try { + await fetch(httpUrl); + } catch { + info("Skipping test_eval_at_http because http:-URL cannot be loaded"); + return; + } + + const extension = ExtensionTestUtils.loadExtension({}); + await extension.startup(); + + await checkEvalAllowed({ + extension, + description: "http:-URL", + url: httpUrl, + }); + await extension.unload(); + + await SpecialPowers.popPrefEnv(); +}); + +add_task(async function test_eval_at_https() { + const extension = ExtensionTestUtils.loadExtension({}); + await extension.startup(); + + const privilegedExtension = ExtensionTestUtils.loadExtension({ + isPrivileged: true, + }); + await privilegedExtension.startup(); + + await checkEvalAllowed({ + extension, + description: "https:-URL", + url: "https://example.com/", + }); + + await checkEvalDenied({ + extension, + description: "a restricted domain", + // Domain in extensions.webextensions.restrictedDomains by browser.toml. + url: "https://test2.example.com/", + }); + + await SpecialPowers.pushPrefEnv({ + set: [["extensions.quarantinedDomains.list", "example.com"]], + }); + + await checkEvalDenied({ + extension, + description: "a quarantined domain", + url: "https://example.com/", + }); + + await checkEvalAllowed({ + extension: privilegedExtension, + description: "a quarantined domain", + url: "https://example.com/", + }); + + await SpecialPowers.popPrefEnv(); + + await extension.unload(); + await privilegedExtension.unload(); +}); + +add_task(async function test_eval_at_sandboxed_page() { + const extension = ExtensionTestUtils.loadExtension({}); + await extension.startup(); + + await checkEvalAllowed({ + extension, + description: "page with CSP sandbox", + url: "https://example.com/document-builder.sjs?headers=Content-Security-Policy:sandbox&html=x", + }); + await checkEvalDenied({ + extension, + description: "restricted domain with CSP sandbox", + url: "https://test2.example.com/document-builder.sjs?headers=Content-Security-Policy:sandbox&html=x", + }); + + await extension.unload(); +}); + +add_task(async function test_eval_at_own_extension_origin_allowed() { + const extension = ExtensionTestUtils.loadExtension({ + background() { + // eslint-disable-next-line no-undef + browser.test.sendMessage( + "blob_url", + URL.createObjectURL(new Blob(["blob: here", { type: "text/html" }])) + ); + }, + files: { + "mozext.html": `moz-extension: here`, + }, + }); + await extension.startup(); + const blobUrl = await extension.awaitMessage("blob_url"); + + await checkEvalAllowed({ + extension, + description: "moz-extension:-URL from own extension", + url: `moz-extension://${extension.uuid}/mozext.html`, + }); + await checkEvalAllowed({ + extension, + description: "blob:-URL from own extension", + url: blobUrl, + }); + await checkEvalAllowed({ + extension, + description: "about:blank with origin from own extension", + url: "about:blank", + createTab: () => openAboutBlankTabWithExtensionOrigin(extension), + }); + + await extension.unload(); +}); + +add_task(async function test_eval_at_other_extension_denied() { + // The extension for which we simulate devtools_page, chosen as caller of + // devtools.inspectedWindow.eval API calls. + const extension = ExtensionTestUtils.loadExtension({}); + await extension.startup(); + + // The other extension, that |extension| should not be able to access: + const otherExt = ExtensionTestUtils.loadExtension({ + background() { + // eslint-disable-next-line no-undef + browser.test.sendMessage( + "blob_url", + URL.createObjectURL(new Blob(["blob: here", { type: "text/html" }])) + ); + }, + files: { + "mozext.html": `moz-extension: here`, + }, + }); + await otherExt.startup(); + const otherExtBlobUrl = await otherExt.awaitMessage("blob_url"); + + await checkEvalDenied({ + extension, + description: "moz-extension:-URL from another extension", + url: `moz-extension://${otherExt.uuid}/mozext.html`, + }); + await checkEvalDenied({ + extension, + description: "blob:-URL from another extension", + url: otherExtBlobUrl, + }); + await checkEvalDenied({ + extension, + description: "about:blank with origin from another extension", + url: "about:blank", + createTab: () => openAboutBlankTabWithExtensionOrigin(otherExt), + }); + + await otherExt.unload(); + await extension.unload(); +}); + +add_task(async function test_eval_at_about() { + const extension = ExtensionTestUtils.loadExtension({}); + await extension.startup(); + await checkEvalAllowed({ + extension, + description: "about:blank (null principal)", + url: "about:blank", + }); + await checkEvalDenied({ + extension, + description: "about:addons (system principal)", + url: "about:addons", + }); + await checkEvalDenied({ + extension, + description: "about:robots (about page)", + url: "about:robots", + }); + await extension.unload(); +}); + +add_task(async function test_eval_at_file() { + // FYI: There is also an equivalent test case with a full end-to-end test at: + // browser/components/extensions/test/browser/browser_ext_devtools_inspectedWindow_eval_file.js + + const extension = ExtensionTestUtils.loadExtension({}); + await extension.startup(); + + // A dummy file URL that can be loaded in a tab. + const fileUrl = + "file://" + + getTestFilePath("browser_webextension_inspected_window_access.js"); + + // checkEvalAllowed test helper cannot be used, because the file:-URL may + // redirect elsewhere, so the comparison with the full URL fails. + const tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, fileUrl); + const result = await run_inspectedWindow_eval({ + tab, + codeToEval: "'code executed at ' + location.protocol", + extension, + }); + BrowserTestUtils.removeTab(tab); + SimpleTest.isDeeply( + result, + { value: "code executed at file:" }, + `eval result for devtools.inspectedWindow.eval at ${fileUrl}` + ); + + await extension.unload(); +}); diff --git a/dom/base/Document.cpp b/dom/base/Document.cpp index f7853913a5e99..3a1575b7df9a0 100644 --- a/dom/base/Document.cpp +++ b/dom/base/Document.cpp @@ -1332,6 +1332,7 @@ Document::Document(const char* aContentType) mMayNeedFontPrefsUpdate(true), mMathMLEnabled(false), mIsInitialDocumentInWindow(false), + mIsEverInitialDocumentInWindow(false), mIgnoreDocGroupMismatches(false), mLoadedAsData(false), mAddedToMemoryReportingAsDataDocument(false), @@ -4097,9 +4098,8 @@ void Document::SetDocumentURI(nsIURI* aURI) { } // Tell our WindowGlobalParent that the document's URI has been changed. - nsPIDOMWindowInner* inner = GetInnerWindow(); - if (inner && inner->GetWindowGlobalChild()) { - inner->GetWindowGlobalChild()->SetDocumentURI(mDocumentURI); + if (WindowGlobalChild* wgc = GetWindowGlobalChild()) { + wgc->SetDocumentURI(mDocumentURI); } } @@ -7154,8 +7154,7 @@ void Document::DeletePresShell() { void Document::DisallowBFCaching(uint32_t aStatus) { NS_ASSERTION(!mBFCacheEntry, "We're already in the bfcache!"); if (!mBFCacheDisallowed) { - WindowGlobalChild* wgc = GetWindowGlobalChild(); - if (wgc) { + if (WindowGlobalChild* wgc = GetWindowGlobalChild()) { wgc->SendUpdateBFCacheStatus(aStatus, 0); } } @@ -8945,8 +8944,7 @@ void Document::SetDomain(const nsAString& aDomain, ErrorResult& rv) { MOZ_ALWAYS_SUCCEEDS(NodePrincipal()->SetDomain(newURI)); MOZ_ALWAYS_SUCCEEDS(PartitionedPrincipal()->SetDomain(newURI)); - WindowGlobalChild* wgc = GetWindowGlobalChild(); - if (wgc) { + if (WindowGlobalChild* wgc = GetWindowGlobalChild()) { wgc->SendSetDocumentDomain(newURI); } } @@ -9112,7 +9110,9 @@ Element* Document::GetTitleElement() { // we know there is nothing to do here. This avoids us having to search // the whole DOM if someone calls document.title on a large document // without a title. - if (!mMayHaveTitleElement) return nullptr; + if (!mMayHaveTitleElement) { + return nullptr; + } Element* root = GetRootElement(); if (root && root->IsSVGElement(nsGkAtoms::svg)) { @@ -9128,16 +9128,12 @@ Element* Document::GetTitleElement() { // We check the HTML namespace even for non-HTML documents, except SVG. This // matches the spec and the behavior of all tested browsers. - // We avoid creating a live nsContentList since we don't need to watch for DOM - // tree mutations. - RefPtr list = new nsContentList( - this, kNameSpaceID_XHTML, nsGkAtoms::title, nsGkAtoms::title, - /* aDeep = */ true, - /* aLiveList = */ false); - - nsIContent* first = list->Item(0, false); - - return first ? first->AsElement() : nullptr; + for (nsINode* node = GetFirstChild(); node; node = node->GetNextNode(this)) { + if (node->IsHTMLElement(nsGkAtoms::title)) { + return node->AsElement(); + } + } + return nullptr; } void Document::GetTitle(nsAString& aTitle) { @@ -9148,20 +9144,15 @@ void Document::GetTitle(nsAString& aTitle) { return; } - nsAutoString tmp; - if (rootElement->IsXULElement()) { - rootElement->GetAttr(kNameSpaceID_None, nsGkAtoms::title, tmp); + rootElement->GetAttr(nsGkAtoms::title, aTitle); + } else if (Element* title = GetTitleElement()) { + nsContentUtils::GetNodeTextContent(title, false, aTitle); } else { - Element* title = GetTitleElement(); - if (!title) { - return; - } - nsContentUtils::GetNodeTextContent(title, false, tmp); + return; } - tmp.CompressWhitespace(); - aTitle = tmp; + aTitle.CompressWhitespace(); } void Document::SetTitle(const nsAString& aTitle, ErrorResult& aRv) { @@ -9230,16 +9221,18 @@ void Document::NotifyPossibleTitleChange(bool aBoundTitleElement) { if (aBoundTitleElement) { mMayHaveTitleElement = true; } - if (mPendingTitleChangeEvent.IsPending()) return; + if (mPendingTitleChangeEvent.IsPending()) { + return; + } MOZ_RELEASE_ASSERT(NS_IsMainThread()); RefPtr> event = NewNonOwningRunnableMethod("Document::DoNotifyPossibleTitleChange", this, &Document::DoNotifyPossibleTitleChange); - nsresult rv = Dispatch(TaskCategory::Other, do_AddRef(event)); - if (NS_SUCCEEDED(rv)) { - mPendingTitleChangeEvent = std::move(event); + if (NS_WARN_IF(NS_FAILED(Dispatch(TaskCategory::Other, do_AddRef(event))))) { + return; } + mPendingTitleChangeEvent = std::move(event); } void Document::DoNotifyPossibleTitleChange() { @@ -9253,22 +9246,18 @@ void Document::DoNotifyPossibleTitleChange() { nsAutoString title; GetTitle(title); - RefPtr presShell = GetPresShell(); - if (presShell) { + if (RefPtr presShell = GetPresShell()) { nsCOMPtr container = presShell->GetPresContext()->GetContainerWeak(); if (container) { - nsCOMPtr docShellWin = do_QueryInterface(container); - if (docShellWin) { + if (nsCOMPtr docShellWin = do_QueryInterface(container)) { docShellWin->SetTitle(title); } } } - if (nsPIDOMWindowInner* inner = GetInnerWindow()) { - if (WindowGlobalChild* child = inner->GetWindowGlobalChild()) { - child->SendUpdateDocumentTitle(title); - } + if (WindowGlobalChild* child = GetWindowGlobalChild()) { + child->SendUpdateDocumentTitle(title); } // Fire a DOM event for the title change. @@ -9660,17 +9649,6 @@ Document* Document::Open(const Optional& /* unused */, } } - // document.open() inherits the CSP from the opening document. - // Please create an actual copy of the CSP (do not share the same - // reference) otherwise appending a new policy within the opened - // document will be incorrectly propagated to the opening doc. - nsCOMPtr csp = callerDoc->GetCsp(); - if (csp) { - RefPtr cspToInherit = new nsCSPContext(); - cspToInherit->InitFromOther(static_cast(csp.get())); - mCSP = cspToInherit; - } - // At this point we know this is a valid-enough document.open() call // and not a no-op. Increment our use counter. SetUseCounter(eUseCounter_custom_DocumentOpen); @@ -12242,8 +12220,7 @@ void Document::GetReadyState(nsAString& aReadyState) const { void Document::SuppressEventHandling(uint32_t aIncrease) { mEventsSuppressed += aIncrease; if (mEventsSuppressed == aIncrease) { - WindowGlobalChild* wgc = GetWindowGlobalChild(); - if (wgc) { + if (WindowGlobalChild* wgc = GetWindowGlobalChild()) { wgc->BlockBFCacheFor(BFCacheStatus::EVENT_HANDLING_SUPPRESSED); } } @@ -12665,8 +12642,7 @@ void Document::UnsuppressEventHandlingAndFireEvents(bool aFireEvents) { for (nsCOMPtr& doc : documents) { if (!doc->EventHandlingSuppressed()) { - WindowGlobalChild* wgc = doc->GetWindowGlobalChild(); - if (wgc) { + if (WindowGlobalChild* wgc = doc->GetWindowGlobalChild()) { wgc->UnblockBFCacheFor(BFCacheStatus::EVENT_HANDLING_SUPPRESSED); } @@ -17188,12 +17164,7 @@ already_AddRefed Document::HasStorageAccess( RefPtr Document::GetContentBlockingEvents() { - RefPtr inner = GetInnerWindow(); - if (!inner) { - return nullptr; - } - - RefPtr wgc = inner->GetWindowGlobalChild(); + RefPtr wgc = GetWindowGlobalChild(); if (!wgc) { return nullptr; } @@ -18396,6 +18367,10 @@ nsIPrincipal* Document::GetPrincipalForPrefBasedHacks() const { void Document::SetIsInitialDocument(bool aIsInitialDocument) { mIsInitialDocumentInWindow = aIsInitialDocument; + if (aIsInitialDocument && !mIsEverInitialDocumentInWindow) { + mIsEverInitialDocumentInWindow = aIsInitialDocument; + } + // Asynchronously tell the parent process that we are, or are no longer, the // initial document. This happens async. if (auto* wgc = GetWindowGlobalChild()) { @@ -18582,8 +18557,7 @@ void Document::DisableChildElementInPictureInPictureMode() { void Document::AddMediaElementWithMSE() { if (mMediaElementWithMSECount++ == 0) { - WindowGlobalChild* wgc = GetWindowGlobalChild(); - if (wgc) { + if (WindowGlobalChild* wgc = GetWindowGlobalChild()) { wgc->BlockBFCacheFor(BFCacheStatus::CONTAINS_MSE_CONTENT); } } @@ -18592,8 +18566,7 @@ void Document::AddMediaElementWithMSE() { void Document::RemoveMediaElementWithMSE() { MOZ_ASSERT(mMediaElementWithMSECount > 0); if (--mMediaElementWithMSECount == 0) { - WindowGlobalChild* wgc = GetWindowGlobalChild(); - if (wgc) { + if (WindowGlobalChild* wgc = GetWindowGlobalChild()) { wgc->UnblockBFCacheFor(BFCacheStatus::CONTAINS_MSE_CONTENT); } } diff --git a/dom/base/Document.h b/dom/base/Document.h index a66fec74a7428..073c6ab17981e 100644 --- a/dom/base/Document.h +++ b/dom/base/Document.h @@ -1040,6 +1040,12 @@ class Document : public nsINode, */ bool IsInitialDocument() const { return mIsInitialDocumentInWindow; } + /** + * Ask this document whether it has ever been a initial document in its + * window. + */ + bool IsEverInitialDocument() const { return mIsEverInitialDocumentInWindow; } + /** * Tell this document that it's the initial document in its window. See * comments on mIsInitialDocumentInWindow for when this should be called. @@ -4654,6 +4660,11 @@ class Document : public nsINode, // document in it. bool mIsInitialDocumentInWindow : 1; + // True if this document has ever been the initial document for a window. This + // is useful to determine if a document that was the initial document at one + // point, and became non-initial later. + bool mIsEverInitialDocumentInWindow : 1; + bool mIgnoreDocGroupMismatches : 1; // True if we're loaded as data and therefor has any dangerous stuff, such diff --git a/dom/canvas/DrawTargetWebgl.cpp b/dom/canvas/DrawTargetWebgl.cpp index 206b910bf05f9..22d69f3583387 100644 --- a/dom/canvas/DrawTargetWebgl.cpp +++ b/dom/canvas/DrawTargetWebgl.cpp @@ -3398,6 +3398,10 @@ void DrawTargetWebgl::DrawShadow(const Path* aPath, const Pattern& aPattern, const ShadowOptions& aShadow, const DrawOptions& aOptions, const StrokeOptions* aStrokeOptions) { + if (!aPath || aPath->GetBackendType() != BackendType::SKIA) { + return; + } + // If there is a WebGL context, then try to cache the path to avoid slow // fallbacks. if (ShouldAccelPath(aOptions, aStrokeOptions) && diff --git a/dom/canvas/ImageBitmap.cpp b/dom/canvas/ImageBitmap.cpp index d606e5ee3992f..0626e065b437f 100644 --- a/dom/canvas/ImageBitmap.cpp +++ b/dom/canvas/ImageBitmap.cpp @@ -668,6 +668,7 @@ void ImageBitmap::OnShutdown() { void ImageBitmap::SetPictureRect(const IntRect& aRect, ErrorResult& aRv) { mPictureRect = FixUpNegativeDimension(aRect, aRv); + mSurface = nullptr; } /* @@ -688,15 +689,35 @@ already_AddRefed ImageBitmap::PrepareForDrawTarget( return nullptr; } - if (!mSurface) { - mSurface = mData->GetAsSourceSurface(); - - if (!mSurface) { - return nullptr; + // We may have a cached surface optimized for the last DrawTarget. If it was + // created via DrawTargetRecording, it may not be suitable for use with the + // current DrawTarget, as we can only do readbacks via the + // PersistentBufferProvider for the canvas, and not for individual + // SourceSurfaceRecording objects. In such situations, the only thing we can + // do is clear our cache and extract a new SourceSurface from mData. + if (mSurface && mSurface->GetType() == gfx::SurfaceType::RECORDING && + !aTarget->IsRecording()) { + RefPtr dataSurface = mSurface->GetDataSurface(); + if (!dataSurface) { + mSurface = nullptr; } } - IntRect surfRect(0, 0, mSurface->GetSize().width, mSurface->GetSize().height); + // If we have a surface, then it is already cropped and premultiplied. + if (mSurface) { + return do_AddRef(mSurface); + } + + RefPtr surface = mData->GetAsSourceSurface(); + if (NS_WARN_IF(!surface)) { + return nullptr; + } + + IntRect surfRect(0, 0, surface->GetSize().width, surface->GetSize().height); + SurfaceFormat format = surface->GetFormat(); + bool isOpaque = IsOpaque(format); + bool mustPremultiply = mAlphaType == gfxAlphaType::NonPremult && !isOpaque; + bool hasCopied = false; // Check if we still need to crop our surface if (!mPictureRect.IsEqualEdges(surfRect)) { @@ -704,7 +725,6 @@ already_AddRefed ImageBitmap::PrepareForDrawTarget( // the crop lies entirely outside the surface area, nothing to draw if (surfPortion.IsEmpty()) { - mSurface = nullptr; return nullptr; } @@ -719,72 +739,99 @@ already_AddRefed ImageBitmap::PrepareForDrawTarget( // any pixels outside the surface portion must be filled with transparent // black, even if the surface is opaque, so force to an alpha format in // that case. - SurfaceFormat format = mSurface->GetFormat(); - if (!surfPortion.IsEqualEdges(mPictureRect) && IsOpaque(format)) { + if (!surfPortion.IsEqualEdges(mPictureRect) && isOpaque) { format = SurfaceFormat::B8G8R8A8; } - RefPtr cropped = - aTarget->CreateSimilarDrawTarget(mPictureRect.Size(), format); - if (!cropped) { - mSurface = nullptr; - return nullptr; + + // If we need to pre-multiply the alpha, then we need to be able to + // read/write the pixel data, and as such, we want to avoid creating a + // SourceSurfaceRecording for the same reasons earlier in this method. + RefPtr cropped; + if (mustPremultiply && aTarget->IsRecording()) { + cropped = Factory::CreateDrawTarget(BackendType::SKIA, + mPictureRect.Size(), format); + } else { + cropped = aTarget->CreateSimilarDrawTarget(mPictureRect.Size(), format); } - cropped->CopySurface(mSurface, surfPortion, dest); - mSurface = cropped->Snapshot(); - if (!mSurface) { + if (NS_WARN_IF(!cropped)) { return nullptr; } - // Make mCropRect match new surface we've cropped to - mPictureRect.MoveTo(0, 0); + cropped->CopySurface(surface, surfPortion, dest); + surface = cropped->GetBackingSurface(); + hasCopied = true; + if (NS_WARN_IF(!surface)) { + return nullptr; + } } // Pre-multiply alpha here. // Ignore this step if the source surface does not have alpha channel; this - // kind of source surfaces might come form layers::PlanarYCbCrImage. - if (mAlphaType == gfxAlphaType::NonPremult && - !IsOpaque(mSurface->GetFormat())) { - MOZ_ASSERT(mSurface->GetFormat() == SurfaceFormat::R8G8B8A8 || - mSurface->GetFormat() == SurfaceFormat::B8G8R8A8 || - mSurface->GetFormat() == SurfaceFormat::A8R8G8B8); - - RefPtr srcSurface = mSurface->GetDataSurface(); + // kind of source surfaces might come form layers::PlanarYCbCrImage. If the + // crop rect imputed transparency, and the original surface was opaque, we + // can skip doing the pre-multiply here as the only transparent pixels are + // already transparent black. + if (mustPremultiply) { + MOZ_ASSERT(surface->GetFormat() == SurfaceFormat::R8G8B8A8 || + surface->GetFormat() == SurfaceFormat::B8G8R8A8 || + surface->GetFormat() == SurfaceFormat::A8R8G8B8); + + RefPtr srcSurface = surface->GetDataSurface(); if (NS_WARN_IF(!srcSurface)) { return nullptr; } - RefPtr dstSurface = Factory::CreateDataSourceSurface( - srcSurface->GetSize(), srcSurface->GetFormat()); - if (NS_WARN_IF(!dstSurface)) { - return nullptr; - } - DataSourceSurface::ScopedMap srcMap(srcSurface, DataSourceSurface::READ); - if (!srcMap.IsMapped()) { - gfxCriticalError() - << "Failed to map source surface for premultiplying alpha."; - return nullptr; - } + if (hasCopied) { + // If we are using our own local copy, then we can safely premultiply in + // place without an additional allocation. + DataSourceSurface::ScopedMap map(srcSurface, + DataSourceSurface::READ_WRITE); + if (!map.IsMapped()) { + gfxCriticalError() << "Failed to map surface for premultiplying alpha."; + return nullptr; + } - DataSourceSurface::ScopedMap dstMap(dstSurface, DataSourceSurface::WRITE); - if (!dstMap.IsMapped()) { - gfxCriticalError() - << "Failed to map destination surface for premultiplying alpha."; - return nullptr; - } + PremultiplyData(map.GetData(), map.GetStride(), srcSurface->GetFormat(), + map.GetData(), map.GetStride(), srcSurface->GetFormat(), + surface->GetSize()); + } else { + RefPtr dstSurface = Factory::CreateDataSourceSurface( + srcSurface->GetSize(), srcSurface->GetFormat()); + if (NS_WARN_IF(!dstSurface)) { + return nullptr; + } + + DataSourceSurface::ScopedMap srcMap(srcSurface, DataSourceSurface::READ); + if (!srcMap.IsMapped()) { + gfxCriticalError() + << "Failed to map source surface for premultiplying alpha."; + return nullptr; + } + + DataSourceSurface::ScopedMap dstMap(dstSurface, DataSourceSurface::WRITE); + if (!dstMap.IsMapped()) { + gfxCriticalError() + << "Failed to map destination surface for premultiplying alpha."; + return nullptr; + } - PremultiplyData(srcMap.GetData(), srcMap.GetStride(), mSurface->GetFormat(), - dstMap.GetData(), dstMap.GetStride(), mSurface->GetFormat(), - dstSurface->GetSize()); + PremultiplyData(srcMap.GetData(), srcMap.GetStride(), + srcSurface->GetFormat(), dstMap.GetData(), + dstMap.GetStride(), dstSurface->GetFormat(), + dstSurface->GetSize()); - mAlphaType = gfxAlphaType::Premult; - mSurface = dstSurface; + surface = std::move(dstSurface); + } } // Replace our surface with one optimized for the target we're about to draw // to, under the assumption it'll likely be drawn again to that target. // This call should be a no-op for already-optimized surfaces - mSurface = aTarget->OptimizeSourceSurface(mSurface); + mSurface = aTarget->OptimizeSourceSurface(surface); + if (!mSurface) { + mSurface = std::move(surface); + } return do_AddRef(mSurface); } @@ -1321,15 +1368,21 @@ already_AddRefed ImageBitmap::CreateInternal( return nullptr; } - IntRect cropRect = aImageBitmap.mPictureRect; + IntRect cropRect; RefPtr surface; + RefPtr dataSurface; + gfxAlphaType alphaType; bool needToReportMemoryAllocation = false; - if (aImageBitmap.mSurface) { - // the source imageBitmap already has a cropped surface, just use this + if (aImageBitmap.mSurface && + (dataSurface = aImageBitmap.mSurface->GetDataSurface())) { + // the source imageBitmap already has a cropped surface, and we can get a + // DataSourceSurface from it, so just use it directly surface = aImageBitmap.mSurface; - cropRect = aCropRect.valueOr(cropRect); + cropRect = aCropRect.valueOr(IntRect(IntPoint(0, 0), surface->GetSize())); + alphaType = IsOpaque(surface->GetFormat()) ? gfxAlphaType::Opaque + : gfxAlphaType::Premult; } else { RefPtr data = aImageBitmap.mData; surface = data->GetAsSourceSurface(); @@ -1338,6 +1391,8 @@ already_AddRefed ImageBitmap::CreateInternal( return nullptr; } + cropRect = aImageBitmap.mPictureRect; + alphaType = aImageBitmap.mAlphaType; if (aCropRect.isSome()) { // get new crop rect relative to original uncropped surface IntRect newCropRect = aCropRect.ref(); @@ -1367,7 +1422,7 @@ already_AddRefed ImageBitmap::CreateInternal( return CreateImageBitmapInternal( aGlobal, surface, Some(cropRect), aOptions, aImageBitmap.mWriteOnly, - needToReportMemoryAllocation, false, aImageBitmap.mAlphaType, aRv); + needToReportMemoryAllocation, false, alphaType, aRv); } class FulfillImageBitmapPromise { diff --git a/dom/ipc/ContentParent.cpp b/dom/ipc/ContentParent.cpp index 969a426e8346b..a6e95d04bf165 100644 --- a/dom/ipc/ContentParent.cpp +++ b/dom/ipc/ContentParent.cpp @@ -4242,7 +4242,7 @@ static bool CloneIsLegal(ContentParent* aCp, CanonicalBrowsingContext& aSource, return false; } - auto* targetEmbedder = aSource.GetParentWindowContext(); + auto* targetEmbedder = aTarget.GetParentWindowContext(); if (NS_WARN_IF(!targetEmbedder) || NS_WARN_IF(targetEmbedder->GetContentParent() != aCp)) { return false; diff --git a/dom/security/test/csp/file_bug1764343.html b/dom/security/test/csp/file_bug1764343.html new file mode 100644 index 0000000000000..09781cce89224 --- /dev/null +++ b/dom/security/test/csp/file_bug1764343.html @@ -0,0 +1,11 @@ + + + + + Bug 1764343 - CSP inheritance for same-origin iframes + + + + initial content + + diff --git a/dom/security/test/csp/mochitest.ini b/dom/security/test/csp/mochitest.ini index a9e98dc7c82a3..a19aa9d2ca94f 100644 --- a/dom/security/test/csp/mochitest.ini +++ b/dom/security/test/csp/mochitest.ini @@ -264,6 +264,8 @@ skip-if = (asan || tsan) # alert should be blocked by CSP - got false, expected true http3 fission && os == "android" # Bug 1827756 +[test_bug1764343.html] +support-files = file_bug1764343.html [test_bug1777572.html] support-files = file_bug1777572.html skip-if = diff --git a/dom/security/test/csp/test_bug1764343.html b/dom/security/test/csp/test_bug1764343.html new file mode 100644 index 0000000000000..1af9a710fe80d --- /dev/null +++ b/dom/security/test/csp/test_bug1764343.html @@ -0,0 +1,116 @@ + + + + + Bug 1764343 - CSP inheritance for same-origin iframes + + + + + + + + + + + + diff --git a/gfx/2d/DrawTargetD2D1.cpp b/gfx/2d/DrawTargetD2D1.cpp index f5b14d38e57ed..96a898163d9d9 100644 --- a/gfx/2d/DrawTargetD2D1.cpp +++ b/gfx/2d/DrawTargetD2D1.cpp @@ -1690,7 +1690,8 @@ void DrawTargetD2D1::FinalizeDrawing(CompositionOp aOp, const ConicGradientPattern* pat = static_cast(&aPattern); - if (!pat->mStops) { + if (!pat->mStops || + pat->mStops->GetBackendType() != BackendType::DIRECT2D) { // Draw nothing because of no color stops return; } @@ -1734,7 +1735,7 @@ void DrawTargetD2D1::FinalizeDrawing(CompositionOp aOp, return; } - if (!pat->mStops) { + if (!pat->mStops || pat->mStops->GetBackendType() != BackendType::DIRECT2D) { // Draw nothing because of no color stops return; } @@ -2077,9 +2078,8 @@ already_AddRefed DrawTargetD2D1::CreateBrushForPattern( const LinearGradientPattern* pat = static_cast(&aPattern); - GradientStopsD2D* stops = static_cast(pat->mStops.get()); - - if (!stops) { + if (!pat->mStops || + pat->mStops->GetBackendType() != BackendType::DIRECT2D) { gfxDebug() << "No stops specified for gradient pattern."; return CreateTransparentBlackBrush(); } @@ -2088,6 +2088,8 @@ already_AddRefed DrawTargetD2D1::CreateBrushForPattern( return CreateTransparentBlackBrush(); } + GradientStopsD2D* stops = static_cast(pat->mStops.get()); + mDC->CreateLinearGradientBrush( D2D1::LinearGradientBrushProperties(D2DPoint(pat->mBegin), D2DPoint(pat->mEnd)), @@ -2106,9 +2108,8 @@ already_AddRefed DrawTargetD2D1::CreateBrushForPattern( const RadialGradientPattern* pat = static_cast(&aPattern); - GradientStopsD2D* stops = static_cast(pat->mStops.get()); - - if (!stops) { + if (!pat->mStops || + pat->mStops->GetBackendType() != BackendType::DIRECT2D) { gfxDebug() << "No stops specified for gradient pattern."; return CreateTransparentBlackBrush(); } @@ -2117,6 +2118,8 @@ already_AddRefed DrawTargetD2D1::CreateBrushForPattern( return CreateTransparentBlackBrush(); } + GradientStopsD2D* stops = static_cast(pat->mStops.get()); + // This will not be a complex radial gradient brush. mDC->CreateRadialGradientBrush( D2D1::RadialGradientBrushProperties( diff --git a/gfx/2d/DrawTargetRecording.cpp b/gfx/2d/DrawTargetRecording.cpp index 25f408f855f32..d5ffede845982 100644 --- a/gfx/2d/DrawTargetRecording.cpp +++ b/gfx/2d/DrawTargetRecording.cpp @@ -441,7 +441,7 @@ already_AddRefed DrawTargetRecording::CreateFilter( FilterType aType) { RefPtr retNode = new FilterNodeRecording(mRecorder); - mRecorder->RecordEvent(RecordedFilterNodeCreation(retNode, aType)); + mRecorder->RecordEvent(RecordedFilterNodeCreation(this, retNode, aType)); return retNode.forget(); } @@ -617,7 +617,7 @@ already_AddRefed DrawTargetRecording::CreateSimilarDrawTarget( similarDT = new DrawTargetRecording(this, IntRect(IntPoint(0, 0), aSize), aFormat); mRecorder->RecordEvent( - RecordedCreateSimilarDrawTarget(similarDT.get(), aSize, aFormat)); + RecordedCreateSimilarDrawTarget(this, similarDT.get(), aSize, aFormat)); } else if (XRE_IsContentProcess()) { // Crash any content process that calls this function with arguments that // would fail to create a similar draw target. We do this to root out bad @@ -675,8 +675,8 @@ already_AddRefed DrawTargetRecording::CreateGradientStops( GradientStop* aStops, uint32_t aNumStops, ExtendMode aExtendMode) const { RefPtr retStops = new GradientStopsRecording(mRecorder); - mRecorder->RecordEvent( - RecordedGradientStopsCreation(retStops, aStops, aNumStops, aExtendMode)); + mRecorder->RecordEvent(RecordedGradientStopsCreation(this, retStops, aStops, + aNumStops, aExtendMode)); return retStops.forget(); } @@ -709,7 +709,7 @@ already_AddRefed DrawTargetRecording::EnsurePathStored( // It's important that AddStoredObject or TryAddStoredObject is called before // this because that will run any pending processing required by recorded // objects that have been deleted off the main thread. - mRecorder->RecordEvent(RecordedPathCreation(pathRecording.get())); + mRecorder->RecordEvent(RecordedPathCreation(this, pathRecording.get())); pathRecording->mStoredRecorders.push_back(mRecorder); return pathRecording.forget(); diff --git a/gfx/2d/DrawTargetSkia.cpp b/gfx/2d/DrawTargetSkia.cpp index b569438db44f5..0ddf9fef527b5 100644 --- a/gfx/2d/DrawTargetSkia.cpp +++ b/gfx/2d/DrawTargetSkia.cpp @@ -474,7 +474,9 @@ static void SetPaintPattern(SkPaint& aPaint, const Pattern& aPattern, const LinearGradientPattern& pat = static_cast(aPattern); GradientStopsSkia* stops = - static_cast(pat.mStops.get()); + pat.mStops && pat.mStops->GetBackendType() == BackendType::SKIA + ? static_cast(pat.mStops.get()) + : nullptr; if (!stops || stops->mCount < 2 || !pat.mBegin.IsFinite() || !pat.mEnd.IsFinite() || pat.mBegin == pat.mEnd) { aPaint.setColor(SK_ColorTRANSPARENT); @@ -506,7 +508,9 @@ static void SetPaintPattern(SkPaint& aPaint, const Pattern& aPattern, const RadialGradientPattern& pat = static_cast(aPattern); GradientStopsSkia* stops = - static_cast(pat.mStops.get()); + pat.mStops && pat.mStops->GetBackendType() == BackendType::SKIA + ? static_cast(pat.mStops.get()) + : nullptr; if (!stops || stops->mCount < 2 || !pat.mCenter1.IsFinite() || !std::isfinite(pat.mRadius1) || !pat.mCenter2.IsFinite() || !std::isfinite(pat.mRadius2) || @@ -541,7 +545,9 @@ static void SetPaintPattern(SkPaint& aPaint, const Pattern& aPattern, const ConicGradientPattern& pat = static_cast(aPattern); GradientStopsSkia* stops = - static_cast(pat.mStops.get()); + pat.mStops && pat.mStops->GetBackendType() == BackendType::SKIA + ? static_cast(pat.mStops.get()) + : nullptr; if (!stops || stops->mCount < 2 || !pat.mCenter.IsFinite() || !std::isfinite(pat.mAngle)) { aPaint.setColor(SK_ColorTRANSPARENT); @@ -747,6 +753,9 @@ DrawTargetType DrawTargetSkia::GetType() const { void DrawTargetSkia::DrawFilter(FilterNode* aNode, const Rect& aSourceRect, const Point& aDestPoint, const DrawOptions& aOptions) { + if (!aNode || aNode->GetBackendType() != FILTER_BACKEND_SOFTWARE) { + return; + } FilterNodeSoftware* filter = static_cast(aNode); filter->Draw(this, aSourceRect, aDestPoint, aOptions); } diff --git a/gfx/2d/RecordedEvent.h b/gfx/2d/RecordedEvent.h index 17516436e2c2f..3ffdf43272c89 100644 --- a/gfx/2d/RecordedEvent.h +++ b/gfx/2d/RecordedEvent.h @@ -122,9 +122,9 @@ class Translator { * @return an already addrefed GradientStops for our DrawTarget type */ virtual already_AddRefed GetOrCreateGradientStops( - GradientStop* aRawStops, uint32_t aNumStops, ExtendMode aExtendMode) { - return GetReferenceDrawTarget()->CreateGradientStops(aRawStops, aNumStops, - aExtendMode); + DrawTarget* aDrawTarget, GradientStop* aRawStops, uint32_t aNumStops, + ExtendMode aExtendMode) { + return aDrawTarget->CreateGradientStops(aRawStops, aNumStops, aExtendMode); } virtual void AddGradientStops(ReferencePtr aRefPtr, GradientStops* aPath) = 0; virtual void RemoveGradientStops(ReferencePtr aRefPtr) = 0; diff --git a/gfx/2d/RecordedEventImpl.h b/gfx/2d/RecordedEventImpl.h index 983e07dcb7c6b..7190299825481 100644 --- a/gfx/2d/RecordedEventImpl.h +++ b/gfx/2d/RecordedEventImpl.h @@ -105,9 +105,10 @@ class RecordedDrawTargetDestruction class RecordedCreateSimilarDrawTarget : public RecordedEventDerived { public: - RecordedCreateSimilarDrawTarget(ReferencePtr aRefPtr, const IntSize& aSize, - SurfaceFormat aFormat) + RecordedCreateSimilarDrawTarget(ReferencePtr aDT, ReferencePtr aRefPtr, + const IntSize& aSize, SurfaceFormat aFormat) : RecordedEventDerived(CREATESIMILARDRAWTARGET), + mDT(aDT), mRefPtr(aRefPtr), mSize(aSize), mFormat(aFormat) {} @@ -121,6 +122,7 @@ class RecordedCreateSimilarDrawTarget std::string GetName() const override { return "CreateSimilarDrawTarget"; } + ReferencePtr mDT; ReferencePtr mRefPtr; IntSize mSize; SurfaceFormat mFormat; @@ -794,7 +796,7 @@ class RecordedDrawFilter : public RecordedDrawingEvent { class RecordedPathCreation : public RecordedEventDerived { public: - MOZ_IMPLICIT RecordedPathCreation(PathRecording* aPath); + MOZ_IMPLICIT RecordedPathCreation(DrawTarget* aDT, PathRecording* aPath); bool PlayEvent(Translator* aTranslator) const override; @@ -807,6 +809,7 @@ class RecordedPathCreation : public RecordedEventDerived { private: friend class RecordedEvent; + ReferencePtr mDT; ReferencePtr mRefPtr; FillRule mFillRule; RefPtr mPath; @@ -962,8 +965,10 @@ class RecordedExternalSurfaceCreation class RecordedFilterNodeCreation : public RecordedEventDerived { public: - RecordedFilterNodeCreation(ReferencePtr aRefPtr, FilterType aType) + RecordedFilterNodeCreation(ReferencePtr aDT, ReferencePtr aRefPtr, + FilterType aType) : RecordedEventDerived(FILTERNODECREATION), + mDT(aDT), mRefPtr(aRefPtr), mType(aType) {} @@ -980,6 +985,7 @@ class RecordedFilterNodeCreation private: friend class RecordedEvent; + ReferencePtr mDT; ReferencePtr mRefPtr; FilterType mType; @@ -1013,9 +1019,11 @@ class RecordedFilterNodeDestruction class RecordedGradientStopsCreation : public RecordedEventDerived { public: - RecordedGradientStopsCreation(ReferencePtr aRefPtr, GradientStop* aStops, - uint32_t aNumStops, ExtendMode aExtendMode) + RecordedGradientStopsCreation(ReferencePtr aDT, ReferencePtr aRefPtr, + GradientStop* aStops, uint32_t aNumStops, + ExtendMode aExtendMode) : RecordedEventDerived(GRADIENTSTOPSCREATION), + mDT(aDT), mRefPtr(aRefPtr), mStops(aStops), mNumStops(aNumStops), @@ -1035,6 +1043,7 @@ class RecordedGradientStopsCreation private: friend class RecordedEvent; + ReferencePtr mDT; ReferencePtr mRefPtr; GradientStop* mStops = nullptr; uint32_t mNumStops = 0; @@ -1974,10 +1983,8 @@ inline void RecordedDrawTargetDestruction::OutputSimpleEventInfo( inline bool RecordedCreateSimilarDrawTarget::PlayEvent( Translator* aTranslator) const { - RefPtr drawTarget = aTranslator->GetReferenceDrawTarget(); + DrawTarget* drawTarget = aTranslator->LookupDrawTarget(mDT); if (!drawTarget) { - // We might end up with a null reference draw target due to a device - // failure, just return false so that we can recover. return false; } @@ -1996,6 +2003,7 @@ inline bool RecordedCreateSimilarDrawTarget::PlayEvent( template void RecordedCreateSimilarDrawTarget::Record(S& aStream) const { + WriteElement(aStream, mDT); WriteElement(aStream, mRefPtr); WriteElement(aStream, mSize); WriteElement(aStream, mFormat); @@ -2004,6 +2012,7 @@ void RecordedCreateSimilarDrawTarget::Record(S& aStream) const { template RecordedCreateSimilarDrawTarget::RecordedCreateSimilarDrawTarget(S& aStream) : RecordedEventDerived(CREATESIMILARDRAWTARGET) { + ReadElement(aStream, mDT); ReadElement(aStream, mRefPtr); ReadElement(aStream, mSize); ReadElementConstrained(aStream, mFormat, SurfaceFormat::A8R8G8B8_UINT32, @@ -2012,7 +2021,7 @@ RecordedCreateSimilarDrawTarget::RecordedCreateSimilarDrawTarget(S& aStream) inline void RecordedCreateSimilarDrawTarget::OutputSimpleEventInfo( std::stringstream& aStringStream) const { - aStringStream << "[" << mRefPtr + aStringStream << "[" << mDT << "] [" << mRefPtr << "] CreateSimilarDrawTarget (Size: " << mSize.width << "x" << mSize.height << ")"; } @@ -2959,17 +2968,17 @@ inline void RecordedDrawSurfaceWithShadow::OutputSimpleEventInfo( << mShadow.mColor.a << ")"; } -inline RecordedPathCreation::RecordedPathCreation(PathRecording* aPath) +inline RecordedPathCreation::RecordedPathCreation(DrawTarget* aDT, + PathRecording* aPath) : RecordedEventDerived(PATHCREATION), + mDT(aDT), mRefPtr(aPath), mFillRule(aPath->mFillRule), mPath(aPath) {} inline bool RecordedPathCreation::PlayEvent(Translator* aTranslator) const { - RefPtr drawTarget = aTranslator->GetReferenceDrawTarget(); + DrawTarget* drawTarget = aTranslator->LookupDrawTarget(mDT); if (!drawTarget) { - // We might end up with a null reference draw target due to a device - // failure, just return false so that we can recover. return false; } @@ -2985,6 +2994,7 @@ inline bool RecordedPathCreation::PlayEvent(Translator* aTranslator) const { template void RecordedPathCreation::Record(S& aStream) const { + WriteElement(aStream, mDT); WriteElement(aStream, mRefPtr); WriteElement(aStream, mFillRule); mPath->mPathOps.Record(aStream); @@ -2993,6 +3003,7 @@ void RecordedPathCreation::Record(S& aStream) const { template RecordedPathCreation::RecordedPathCreation(S& aStream) : RecordedEventDerived(PATHCREATION) { + ReadElement(aStream, mDT); ReadElement(aStream, mRefPtr); ReadElementConstrained(aStream, mFillRule, FillRule::FILL_WINDING, FillRule::FILL_EVEN_ODD); @@ -3003,8 +3014,8 @@ inline void RecordedPathCreation::OutputSimpleEventInfo( std::stringstream& aStringStream) const { size_t numberOfOps = mPath ? mPath->mPathOps.NumberOfOps() : mPathOps->NumberOfOps(); - aStringStream << "[" << mRefPtr << "] Path created (OpCount: " << numberOfOps - << ")"; + aStringStream << "[" << mDT << "] [" << mRefPtr + << "] Path created (OpCount: " << numberOfOps << ")"; } inline bool RecordedPathDestruction::PlayEvent(Translator* aTranslator) const { aTranslator->RemovePath(mRefPtr); @@ -3196,10 +3207,8 @@ inline RecordedFilterNodeCreation::~RecordedFilterNodeCreation() = default; inline bool RecordedFilterNodeCreation::PlayEvent( Translator* aTranslator) const { - RefPtr drawTarget = aTranslator->GetReferenceDrawTarget(); + DrawTarget* drawTarget = aTranslator->LookupDrawTarget(mDT); if (!drawTarget) { - // We might end up with a null reference draw target due to a device - // failure, just return false so that we can recover. return false; } @@ -3210,6 +3219,7 @@ inline bool RecordedFilterNodeCreation::PlayEvent( template void RecordedFilterNodeCreation::Record(S& aStream) const { + WriteElement(aStream, mDT); WriteElement(aStream, mRefPtr); WriteElement(aStream, mType); } @@ -3217,6 +3227,7 @@ void RecordedFilterNodeCreation::Record(S& aStream) const { template RecordedFilterNodeCreation::RecordedFilterNodeCreation(S& aStream) : RecordedEventDerived(FILTERNODECREATION) { + ReadElement(aStream, mDT); ReadElement(aStream, mRefPtr); ReadElementConstrained(aStream, mType, FilterType::BLEND, FilterType::OPACITY); @@ -3224,7 +3235,7 @@ RecordedFilterNodeCreation::RecordedFilterNodeCreation(S& aStream) inline void RecordedFilterNodeCreation::OutputSimpleEventInfo( std::stringstream& aStringStream) const { - aStringStream << "[" << mRefPtr + aStringStream << "[" << mDT << "] CreateFilter [" << mRefPtr << "] FilterNode created (Type: " << int(mType) << ")"; } @@ -3262,14 +3273,21 @@ inline bool RecordedGradientStopsCreation::PlayEvent( // Stops allocation failed return false; } + + DrawTarget* dt = aTranslator->LookupDrawTarget(mDT); + if (!dt) { + return false; + } + RefPtr src = - aTranslator->GetOrCreateGradientStops(mStops, mNumStops, mExtendMode); + aTranslator->GetOrCreateGradientStops(dt, mStops, mNumStops, mExtendMode); aTranslator->AddGradientStops(mRefPtr, src); return true; } template void RecordedGradientStopsCreation::Record(S& aStream) const { + WriteElement(aStream, mDT); WriteElement(aStream, mRefPtr); WriteElement(aStream, mExtendMode); WriteElement(aStream, mNumStops); @@ -3279,6 +3297,7 @@ void RecordedGradientStopsCreation::Record(S& aStream) const { template RecordedGradientStopsCreation::RecordedGradientStopsCreation(S& aStream) : RecordedEventDerived(GRADIENTSTOPSCREATION), mDataOwned(true) { + ReadElement(aStream, mDT); ReadElement(aStream, mRefPtr); ReadElementConstrained(aStream, mExtendMode, ExtendMode::CLAMP, ExtendMode::REFLECT); @@ -3300,7 +3319,7 @@ RecordedGradientStopsCreation::RecordedGradientStopsCreation(S& aStream) inline void RecordedGradientStopsCreation::OutputSimpleEventInfo( std::stringstream& aStringStream) const { - aStringStream << "[" << mRefPtr + aStringStream << "[" << mDT << "] [" << mRefPtr << "] GradientStops created (Stops: " << mNumStops << ")"; } diff --git a/gfx/angle/checkout/out/gen/angle/angle_commit.h b/gfx/angle/checkout/out/gen/angle/angle_commit.h index ca8f5d213a9ca..8edfbf8fcef40 100644 --- a/gfx/angle/checkout/out/gen/angle/angle_commit.h +++ b/gfx/angle/checkout/out/gen/angle/angle_commit.h @@ -1,5 +1,5 @@ -#define ANGLE_COMMIT_HASH "6784271c1c62" +#define ANGLE_COMMIT_HASH "fa03ab3adeaf" #define ANGLE_COMMIT_HASH_SIZE 12 -#define ANGLE_COMMIT_DATE "2023-07-20 16:31:09 -0400" -#define ANGLE_COMMIT_POSITION 19735 +#define ANGLE_COMMIT_DATE "2024-01-09 17:44:29 -0800" +#define ANGLE_COMMIT_POSITION 19736 #define ANGLE_HAS_BINARY_LOADING diff --git a/gfx/angle/checkout/src/compiler/translator/VariablePacker.cpp b/gfx/angle/checkout/src/compiler/translator/VariablePacker.cpp index 0da61c8237563..347395d382874 100644 --- a/gfx/angle/checkout/src/compiler/translator/VariablePacker.cpp +++ b/gfx/angle/checkout/src/compiler/translator/VariablePacker.cpp @@ -239,11 +239,10 @@ bool VariablePacker::checkExpandedVariablesWithinPackingLimits( break; } topNonFullRow_ += GetVariablePackingRows(variable); - } - - if (topNonFullRow_ > maxRows_) - { - return false; + if (topNonFullRow_ > maxRows_) + { + return false; + } } // Packs the 3 column variables. @@ -255,12 +254,12 @@ bool VariablePacker::checkExpandedVariablesWithinPackingLimits( { break; } - num3ColumnRows += GetVariablePackingRows(variable); - } - if (topNonFullRow_ + num3ColumnRows > maxRows_) - { - return false; + num3ColumnRows += GetVariablePackingRows(variable); + if (topNonFullRow_ + num3ColumnRows > maxRows_) + { + return false; + } } fillColumns(topNonFullRow_, num3ColumnRows, 0, 3); diff --git a/gfx/angle/cherry_picks.txt b/gfx/angle/cherry_picks.txt index 57a40d542a0eb..a7988d194e3fc 100644 --- a/gfx/angle/cherry_picks.txt +++ b/gfx/angle/cherry_picks.txt @@ -1,3 +1,25 @@ +commit fa03ab3adeaf286dbbfbf63ecb4fad33978ca5db +Author: Geoff Lang +Date: Fri Dec 8 13:20:36 2023 -0500 + + Validate Uniform variable limits with each iteration + + VariablePacker would loop over all variables and sum up the total + row counts before validating. Each variable can take hundreds of rows + so it is possible to overflow the counters before validating them. + + Validate the limits with each iteration and early-out when the limits + are exceeded. + + https://bugzilla.mozilla.org/show_bug.cgi?id=1864587 + + Bug: chromium:1864587 + Change-Id: Ic235ada1516a0d5a9948d82b22f6316a037c09ca + Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/5106408 + Reviewed-by: Shahbaz Youssefi + Auto-Submit: Geoff Lang + Commit-Queue: Shahbaz Youssefi + commit 6784271c1c6273a1be0b6a2dad9ac7b921521ad8 Author: Shahbaz Youssefi Date: Tue Mar 28 11:43:23 2023 -0400 diff --git a/gfx/angle/update-angle.py b/gfx/angle/update-angle.py index 57714e40d25b4..1e047d1fac249 100755 --- a/gfx/angle/update-angle.py +++ b/gfx/angle/update-angle.py @@ -26,9 +26,10 @@ Prepare your env: -~~~ -export PATH="$PATH:/path/to/depot_tools" -~~~ +* If in `cmd`: + `export PATH="$PATH:/path/to/depot_tools"` +* If in `powershell`: + `$env:Path += ";C:\path\to\depot_tools"` If this is a new repo, don't forget: diff --git a/gfx/ipc/CanvasManagerParent.cpp b/gfx/ipc/CanvasManagerParent.cpp index 11aaf5a0e5fa5..a697bf84441c2 100644 --- a/gfx/ipc/CanvasManagerParent.cpp +++ b/gfx/ipc/CanvasManagerParent.cpp @@ -10,6 +10,7 @@ #include "mozilla/gfx/gfxVars.h" #include "mozilla/ipc/Endpoint.h" #include "mozilla/layers/CompositorThread.h" +#include "mozilla/StaticPrefs_webgl.h" #include "mozilla/webgpu/WebGPUParent.h" #include "mozilla/webrender/RenderThread.h" #include "nsIThread.h" @@ -97,12 +98,18 @@ void CanvasManagerParent::ActorDestroy(ActorDestroyReason aWhy) { } already_AddRefed CanvasManagerParent::AllocPWebGLParent() { + if (NS_WARN_IF(!gfxVars::AllowWebglOop() && + !StaticPrefs::webgl_out_of_process_force())) { + MOZ_ASSERT_UNREACHABLE("AllocPWebGLParent without remote WebGL"); + return nullptr; + } return MakeAndAddRef(); } already_AddRefed CanvasManagerParent::AllocPWebGPUParent() { - if (!gfxVars::AllowWebGPU()) { + if (NS_WARN_IF(!gfxVars::AllowWebGPU())) { + MOZ_ASSERT_UNREACHABLE("AllocPWebGPUParent without WebGPU"); return nullptr; } diff --git a/gfx/layers/ipc/CanvasTranslator.cpp b/gfx/layers/ipc/CanvasTranslator.cpp index e654f5d70e7ca..81c40270fb894 100644 --- a/gfx/layers/ipc/CanvasTranslator.cpp +++ b/gfx/layers/ipc/CanvasTranslator.cpp @@ -513,18 +513,12 @@ already_AddRefed CanvasTranslator::LookupExternalSurface( } already_AddRefed CanvasTranslator::GetOrCreateGradientStops( - gfx::GradientStop* aRawStops, uint32_t aNumStops, - gfx::ExtendMode aExtendMode) { + gfx::DrawTarget* aDrawTarget, gfx::GradientStop* aRawStops, + uint32_t aNumStops, gfx::ExtendMode aExtendMode) { + MOZ_ASSERT(aDrawTarget); nsTArray rawStopArray(aRawStops, aNumStops); - RefPtr drawTarget = GetReferenceDrawTarget(); - if (!drawTarget) { - // We might end up with a null reference draw target due to a device - // failure, just return false so that we can recover. - return nullptr; - } - return gfx::gfxGradientCache::GetOrCreateGradientStops( - drawTarget, rawStopArray, aExtendMode); + aDrawTarget, rawStopArray, aExtendMode); } gfx::DataSourceSurface* CanvasTranslator::LookupDataSurface( diff --git a/gfx/layers/ipc/CanvasTranslator.h b/gfx/layers/ipc/CanvasTranslator.h index 3648ed8c2071c..af2769b0b42ea 100644 --- a/gfx/layers/ipc/CanvasTranslator.h +++ b/gfx/layers/ipc/CanvasTranslator.h @@ -137,8 +137,8 @@ class CanvasTranslator final : public gfx::InlineTranslator, gfx::SurfaceFormat aFormat) final; already_AddRefed GetOrCreateGradientStops( - gfx::GradientStop* aRawStops, uint32_t aNumStops, - gfx::ExtendMode aExtendMode) final; + gfx::DrawTarget* aDrawTarget, gfx::GradientStop* aRawStops, + uint32_t aNumStops, gfx::ExtendMode aExtendMode) final; /** * Get the TextureData associated with a TextureData from another process. diff --git a/image/decoders/icon/mac/nsIconChannelCocoa.mm b/image/decoders/icon/mac/nsIconChannelCocoa.mm index 8bc4729a224a9..368ecdda207ed 100644 --- a/image/decoders/icon/mac/nsIconChannelCocoa.mm +++ b/image/decoders/icon/mac/nsIconChannelCocoa.mm @@ -28,6 +28,7 @@ #include "nsContentSecurityManager.h" #include "nsNetUtil.h" #include "mozilla/RefPtr.h" +#include "mozilla/UniquePtrExtensions.h" #include @@ -307,7 +308,11 @@ // - 1 byte for the image height, as u8 // - the raw image data as BGRA, width * height * 4 bytes. size_t bufferCapacity = 4 + width * height * 4; - UniquePtr fileBuf = MakeUnique(bufferCapacity); + UniquePtr fileBuf = MakeUniqueFallible(bufferCapacity); + if (NS_WARN_IF(!fileBuf)) { + return NS_ERROR_OUT_OF_MEMORY; + } + fileBuf[0] = uint8_t(width); fileBuf[1] = uint8_t(height); fileBuf[2] = uint8_t(mozilla::gfx::SurfaceFormat::B8G8R8A8); diff --git a/image/decoders/nsAVIFDecoder.cpp b/image/decoders/nsAVIFDecoder.cpp index aaddbdc7029d2..06b5a60086713 100644 --- a/image/decoders/nsAVIFDecoder.cpp +++ b/image/decoders/nsAVIFDecoder.cpp @@ -19,6 +19,7 @@ #include "mozilla/Telemetry.h" #include "mozilla/TelemetryComms.h" +#include "mozilla/UniquePtrExtensions.h" using namespace mozilla::gfx; @@ -680,7 +681,7 @@ bool OwnedAOMImage::CloneFrom(aom_image_t* aImage, bool aIsAlpha) { // If aImage is alpha plane. The data is located in Y channel. if (aIsAlpha) { - mBuffer = MakeUnique(yBufSize); + mBuffer = MakeUniqueFallible(yBufSize); if (!mBuffer) { return false; } @@ -702,7 +703,7 @@ bool OwnedAOMImage::CloneFrom(aom_image_t* aImage, bool aIsAlpha) { int crHeight = aom_img_plane_height(aImage, AOM_PLANE_V); size_t crBufSize = crStride * crHeight; - mBuffer = MakeUnique(yBufSize + cbBufSize + crBufSize); + mBuffer = MakeUniqueFallible(yBufSize + cbBufSize + crBufSize); if (!mBuffer) { return false; } @@ -1728,9 +1729,8 @@ nsAVIFDecoder::DecodeResult nsAVIFDecoder::DoDecodeInternal( return AsVariant(NonDecoderResult::SizeOverflow); } - UniquePtr rgbBuf = MakeUnique(rgbBufLength.value()); - const uint8_t* endOfRgbBuf = {rgbBuf.get() + rgbBufLength.value()}; - + UniquePtr rgbBuf = + MakeUniqueFallible(rgbBufLength.value()); if (!rgbBuf) { MOZ_LOG(sAVIFLog, LogLevel::Debug, ("[this=%p] allocation of %u-byte rgbBuf failed", this, @@ -1792,6 +1792,7 @@ nsAVIFDecoder::DecodeResult nsAVIFDecoder::DoDecodeInternal( } MOZ_LOG(sAVIFLog, LogLevel::Debug, ("[this=%p] writing to surface", this)); + const uint8_t* endOfRgbBuf = {rgbBuf.get() + rgbBufLength.value()}; WriteState writeBufferResult = WriteState::NEED_MORE_DATA; for (uint8_t* rowPtr = rgbBuf.get(); rowPtr < endOfRgbBuf; rowPtr += rgbStride.value()) { diff --git a/image/decoders/nsBMPDecoder.cpp b/image/decoders/nsBMPDecoder.cpp index 5eea76ea149ea..da971e054faf7 100644 --- a/image/decoders/nsBMPDecoder.cpp +++ b/image/decoders/nsBMPDecoder.cpp @@ -100,6 +100,7 @@ #include "mozilla/Attributes.h" #include "mozilla/EndianUtils.h" #include "mozilla/Likely.h" +#include "mozilla/UniquePtrExtensions.h" #include "RasterImage.h" #include "SurfacePipeFactory.h" @@ -716,7 +717,10 @@ LexerTransition nsBMPDecoder::ReadBitfields( // Always allocate and zero 256 entries, even though mNumColors might be // smaller, because the file might erroneously index past mNumColors. - mColors = MakeUnique(256); + mColors = MakeUniqueFallible(256); + if (NS_WARN_IF(!mColors)) { + return Transition::TerminateFailure(); + } memset(mColors.get(), 0, 256 * sizeof(ColorTableEntry)); // OS/2 Bitmaps have no padding byte. diff --git a/image/decoders/nsICODecoder.cpp b/image/decoders/nsICODecoder.cpp index 0fbc9558550f7..ff37355429e8a 100644 --- a/image/decoders/nsICODecoder.cpp +++ b/image/decoders/nsICODecoder.cpp @@ -15,6 +15,7 @@ #include "RasterImage.h" #include "mozilla/EndianUtils.h" #include "mozilla/gfx/Swizzle.h" +#include "mozilla/UniquePtrExtensions.h" using namespace mozilla::gfx; @@ -490,7 +491,11 @@ LexerTransition nsICODecoder::PrepareForMask() { MOZ_ASSERT(bmpDecoder->GetImageDataLength() == mDownscaler->TargetSize().width * mDownscaler->TargetSize().height * sizeof(uint32_t)); - mMaskBuffer = MakeUnique(bmpDecoder->GetImageDataLength()); + mMaskBuffer = + MakeUniqueFallible(bmpDecoder->GetImageDataLength()); + if (NS_WARN_IF(!mMaskBuffer)) { + return Transition::TerminateFailure(); + } nsresult rv = mDownscaler->BeginFrame(mDirEntry->mSize.ToUnknownSize(), Nothing(), mMaskBuffer.get(), /* aHasAlpha = */ true, diff --git a/image/encoders/jpeg/nsJPEGEncoder.cpp b/image/encoders/jpeg/nsJPEGEncoder.cpp index 843e6a5106674..2975532b5888a 100644 --- a/image/encoders/jpeg/nsJPEGEncoder.cpp +++ b/image/encoders/jpeg/nsJPEGEncoder.cpp @@ -9,6 +9,7 @@ #include "nsStreamUtils.h" #include "gfxColor.h" #include "mozilla/CheckedInt.h" +#include "mozilla/UniquePtrExtensions.h" extern "C" { #include "jpeglib.h" @@ -148,6 +149,15 @@ nsJPEGEncoder::InitFromData(const uint8_t* aData, } } + UniquePtr rowptr; + if (aInputFormat == INPUT_FORMAT_RGBA || + aInputFormat == INPUT_FORMAT_HOSTARGB) { + rowptr = MakeUniqueFallible(aWidth * 3); + if (NS_WARN_IF(!rowptr)) { + return NS_ERROR_OUT_OF_MEMORY; + } + } + jpeg_compress_struct cinfo; // We set up the normal JPEG error routines, then override error_exit. @@ -196,14 +206,14 @@ nsJPEGEncoder::InitFromData(const uint8_t* aData, jpeg_write_scanlines(&cinfo, const_cast(&row), 1); } } else if (aInputFormat == INPUT_FORMAT_RGBA) { - UniquePtr rowptr = MakeUnique(aWidth * 3); + MOZ_ASSERT(rowptr); uint8_t* row = rowptr.get(); while (cinfo.next_scanline < cinfo.image_height) { ConvertRGBARow(&aData[cinfo.next_scanline * aStride], row, aWidth); jpeg_write_scanlines(&cinfo, &row, 1); } } else if (aInputFormat == INPUT_FORMAT_HOSTARGB) { - UniquePtr rowptr = MakeUnique(aWidth * 3); + MOZ_ASSERT(rowptr); uint8_t* row = rowptr.get(); while (cinfo.next_scanline < cinfo.image_height) { ConvertHostARGBRow(&aData[cinfo.next_scanline * aStride], row, aWidth); diff --git a/image/encoders/png/nsPNGEncoder.cpp b/image/encoders/png/nsPNGEncoder.cpp index 7553ab814ad46..f21bab67a6ae8 100644 --- a/image/encoders/png/nsPNGEncoder.cpp +++ b/image/encoders/png/nsPNGEncoder.cpp @@ -10,6 +10,7 @@ #include "nsString.h" #include "prprf.h" #include "mozilla/CheckedInt.h" +#include "mozilla/UniquePtrExtensions.h" using namespace mozilla; @@ -278,7 +279,10 @@ nsPNGEncoder::AddImageFrame(const uint8_t* aData, if (aInputFormat == INPUT_FORMAT_HOSTARGB) { // PNG requires RGBA with post-multiplied alpha, so we need to // convert - UniquePtr row = MakeUnique(aWidth * 4); + UniquePtr row = MakeUniqueFallible(aWidth * 4); + if (NS_WARN_IF(!row)) { + return NS_ERROR_OUT_OF_MEMORY; + } for (uint32_t y = 0; y < aHeight; y++) { ConvertHostARGBRow(&aData[y * aStride], row.get(), aWidth, useTransparency); @@ -286,7 +290,10 @@ nsPNGEncoder::AddImageFrame(const uint8_t* aData, } } else if (aInputFormat == INPUT_FORMAT_RGBA && !useTransparency) { // RBGA, but we need to strip the alpha - UniquePtr row = MakeUnique(aWidth * 4); + UniquePtr row = MakeUniqueFallible(aWidth * 4); + if (NS_WARN_IF(!row)) { + return NS_ERROR_OUT_OF_MEMORY; + } for (uint32_t y = 0; y < aHeight; y++) { StripAlpha(&aData[y * aStride], row.get(), aWidth); png_write_row(mPNG, row.get()); diff --git a/image/encoders/webp/nsWebPEncoder.cpp b/image/encoders/webp/nsWebPEncoder.cpp index f1221d1186cb6..72ac1388e9cb7 100644 --- a/image/encoders/webp/nsWebPEncoder.cpp +++ b/image/encoders/webp/nsWebPEncoder.cpp @@ -10,6 +10,7 @@ #include "nsString.h" #include "prprf.h" #include "mozilla/CheckedInt.h" +#include "mozilla/UniquePtrExtensions.h" using namespace mozilla; @@ -124,7 +125,11 @@ nsWebPEncoder::InitFromData(const uint8_t* aData, : WebPEncodeRGBA(aData, width.value(), height.value(), stride.value(), quality, &mImageBuffer); } else if (aInputFormat == INPUT_FORMAT_HOSTARGB) { - UniquePtr aDest = MakeUnique(aStride * aHeight); + UniquePtr aDest = + MakeUniqueFallible(aStride * aHeight); + if (NS_WARN_IF(!aDest)) { + return NS_ERROR_OUT_OF_MEMORY; + } for (uint32_t y = 0; y < aHeight; y++) { for (uint32_t x = 0; x < aWidth; x++) { diff --git a/layout/base/PresShell.cpp b/layout/base/PresShell.cpp index 7bcb85d8e308b..7032dfc2d8945 100644 --- a/layout/base/PresShell.cpp +++ b/layout/base/PresShell.cpp @@ -2480,17 +2480,26 @@ PresShell::CompleteMove(bool aForward, bool aExtend) { // end implementations nsISelectionController nsIFrame* PresShell::GetRootScrollFrame() const { + if (!mFrameConstructor) { + return nullptr; + } nsIFrame* rootFrame = mFrameConstructor->GetRootFrame(); // Ensure root frame is a viewport frame - if (!rootFrame || !rootFrame->IsViewportFrame()) return nullptr; + if (!rootFrame || !rootFrame->IsViewportFrame()) { + return nullptr; + } nsIFrame* theFrame = rootFrame->PrincipalChildList().FirstChild(); - if (!theFrame || !theFrame->IsScrollFrame()) return nullptr; + if (!theFrame || !theFrame->IsScrollFrame()) { + return nullptr; + } return theFrame; } nsIScrollableFrame* PresShell::GetRootScrollFrameAsScrollable() const { nsIFrame* frame = GetRootScrollFrame(); - if (!frame) return nullptr; + if (!frame) { + return nullptr; + } nsIScrollableFrame* scrollableFrame = do_QueryFrame(frame); NS_ASSERTION(scrollableFrame, "All scroll frames must implement nsIScrollableFrame"); diff --git a/layout/base/nsLayoutUtils.cpp b/layout/base/nsLayoutUtils.cpp index 1861acf04f780..5963a74ab2c34 100644 --- a/layout/base/nsLayoutUtils.cpp +++ b/layout/base/nsLayoutUtils.cpp @@ -3092,14 +3092,20 @@ void nsLayoutUtils::PaintFrame(gfxContext* aRenderingContext, nsIFrame* aFrame, MOZ_ASSERT(builder && list && metrics); nsAutoString uri; - Document* doc = presContext->Document(); - MOZ_ASSERT(doc); - Unused << doc->GetDocumentURI(uri); + if (MOZ_LOG_TEST(GetLoggerByProcess(), LogLevel::Info) || + MOZ_UNLIKELY(gfxUtils::DumpDisplayList()) || + MOZ_UNLIKELY(gfxEnv::MOZ_DUMP_PAINT())) { + if (Document* doc = presContext->Document()) { + Unused << doc->GetDocumentURI(uri); + } + } nsAutoString frameName, displayRootName; #ifdef DEBUG_FRAME_DUMP - aFrame->GetFrameName(frameName); - displayRoot->GetFrameName(displayRootName); + if (MOZ_LOG_TEST(GetLoggerByProcess(), LogLevel::Info)) { + aFrame->GetFrameName(frameName); + displayRoot->GetFrameName(displayRootName); + } #endif DL_LOGI("PaintFrame: %p (%s), DisplayRoot: %p (%s), Builder: %p, URI: %s", diff --git a/layout/base/nsPresContext.cpp b/layout/base/nsPresContext.cpp index 4bb79a2bc85b5..e65e6116e4336 100644 --- a/layout/base/nsPresContext.cpp +++ b/layout/base/nsPresContext.cpp @@ -1228,7 +1228,7 @@ bool nsPresContext::UserInputEventsAllowed() { } // Special document - if (Document()->IsInitialDocument()) { + if (Document()->IsEverInitialDocument()) { return true; } diff --git a/layout/base/nsRefreshObservers.cpp b/layout/base/nsRefreshObservers.cpp index d5fbb67444bbd..44f797c0f1488 100644 --- a/layout/base/nsRefreshObservers.cpp +++ b/layout/base/nsRefreshObservers.cpp @@ -6,6 +6,7 @@ #include "nsRefreshObservers.h" #include "nsPresContext.h" +#include "mozilla/Likely.h" namespace mozilla { @@ -14,30 +15,40 @@ ManagedPostRefreshObserver::ManagedPostRefreshObserver(nsPresContext* aPc, : mPresContext(aPc), mAction(std::move(aAction)) {} ManagedPostRefreshObserver::ManagedPostRefreshObserver(nsPresContext* aPc) - : mPresContext(aPc) {} + : mPresContext(aPc) { + MOZ_ASSERT(mPresContext, "Can't observe without a nsPresContext"); +} ManagedPostRefreshObserver::~ManagedPostRefreshObserver() = default; void ManagedPostRefreshObserver::Cancel() { // Caller holds a strong reference, so no need to reference stuff from here. - mAction(true); + if (mAction) { + mAction(true); + } mAction = nullptr; mPresContext = nullptr; } void ManagedPostRefreshObserver::DidRefresh() { + if (MOZ_UNLIKELY(!mAction)) { + return; + } + RefPtr thisObject = this; + auto action = std::move(mAction); + Unregister unregister = action(false); - Unregister unregister = mAction(false); if (unregister == Unregister::Yes) { if (RefPtr pc = std::move(mPresContext)) { - // In theory mAction could've ended up in `Cancel` being called. In which - // case we're already unregistered so no need to do anything. - mAction = nullptr; + // We have to null-check mPresContext here because in theory, mAction + // could've ended up in `Cancel` being called, which would clear + // mPresContext. In that case, we're already unregistered so no need to + // do anything. pc->UnregisterManagedPostRefreshObserver(this); - } else { - MOZ_DIAGNOSTIC_ASSERT(!mAction); } + } else { + mAction = std::move(action); } } diff --git a/netwerk/dns/effective_tld_names.dat b/netwerk/dns/effective_tld_names.dat index 79248a73f04b4..6d6af67dd0e5a 100644 --- a/netwerk/dns/effective_tld_names.dat +++ b/netwerk/dns/effective_tld_names.dat @@ -6710,7 +6710,7 @@ org.zw // newGTLDs -// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2023-12-06T15:14:09Z +// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2024-01-06T15:12:04Z // This list is auto-generated, don't edit it manually. // aaa : American Automobile Association, Inc. // https://www.iana.org/domains/root/db/aaa.html @@ -8720,7 +8720,7 @@ jpmorgan // https://www.iana.org/domains/root/db/jprs.html jprs -// juegos : Internet Naming Company LLC +// juegos : Dog Beach, LLC // https://www.iana.org/domains/root/db/juegos.html juegos @@ -9928,10 +9928,6 @@ sbi // https://www.iana.org/domains/root/db/sbs.html sbs -// sca : SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ) -// https://www.iana.org/domains/root/db/sca.html -sca - // scb : The Siam Commercial Bank Public Company Limited ("SCB") // https://www.iana.org/domains/root/db/scb.html scb @@ -13430,10 +13426,6 @@ london.cloudapps.digital // Submitted by Richard Baker pymnt.uk -// UKHomeOffice : https://www.gov.uk/government/organisations/home-office -// Submitted by Jon Shanks -homeoffice.gov.uk - // GlobeHosting, Inc. // Submitted by Zoltan Egresi ro.im diff --git a/python/l10n/fluent_migrations/bug_1866295_new_device_migration_strings.py b/python/l10n/fluent_migrations/bug_1866295_new_device_migration_strings.py new file mode 100644 index 0000000000000..a8ccb8c1457c4 --- /dev/null +++ b/python/l10n/fluent_migrations/bug_1866295_new_device_migration_strings.py @@ -0,0 +1,22 @@ +# Any copyright is dedicated to the Public Domain. +# http://creativecommons.org/publicdomain/zero/1.0/ + +from fluent.migrate.helpers import transforms_from + + +def migrate(ctx): + """Bug 1866295 - Land new strings for device migration ASRouter messages, part {index}.""" + + source = "browser/browser/newtab/asrouter.ftl" + target = source + + ctx.add_transforms( + target, + target, + transforms_from( + """ +device-migration-fxa-spotlight-getting-new-device-primary-button = {COPY_PATTERN(from_path, "device-migration-fxa-spotlight-primary-button")} +""", + from_path=source, + ), + ) diff --git a/python/l10n/fluent_migrations/bug_1867346_new_device_migration_string_replacement.py b/python/l10n/fluent_migrations/bug_1867346_new_device_migration_string_replacement.py new file mode 100644 index 0000000000000..a926bff41a6e0 --- /dev/null +++ b/python/l10n/fluent_migrations/bug_1867346_new_device_migration_string_replacement.py @@ -0,0 +1,22 @@ +# Any copyright is dedicated to the Public Domain. +# http://creativecommons.org/publicdomain/zero/1.0/ + +from fluent.migrate.helpers import transforms_from + + +def migrate(ctx): + """Bug 1867346 - Replace a string for device migration ASRouter messages, part {index}.""" + + source = "browser/browser/newtab/asrouter.ftl" + target = source + + ctx.add_transforms( + target, + target, + transforms_from( + """ +device-migration-fxa-spotlight-getting-new-device-header-2 = {COPY_PATTERN(from_path, "fxa-sync-cfr-header")} +""", + from_path=source, + ), + ) diff --git a/python/mozboot/mozboot/android-avds/arm.json b/python/mozboot/mozboot/android-avds/arm.json index bcabc737fd7c3..756018631c561 100644 --- a/python/mozboot/mozboot/android-avds/arm.json +++ b/python/mozboot/mozboot/android-avds/arm.json @@ -22,5 +22,6 @@ "hw.lcd.density": "320", "disk.dataPartition.size": "4000MB", "sdcard.size": "600M" - } + }, + "emulator_prewarm": false } diff --git a/security/manager/pki/resources/content/certManager.css b/security/manager/pki/resources/content/certManager.css index bf8dcc042d23f..9259472771e04 100644 --- a/security/manager/pki/resources/content/certManager.css +++ b/security/manager/pki/resources/content/certManager.css @@ -24,7 +24,8 @@ treecol { /* This matches the height from dialog.css */ richlistbox { - height: 15em; + min-height: 15em; + contain: size; } richlistbox, diff --git a/security/manager/ssl/StaticHPKPins.h b/security/manager/ssl/StaticHPKPins.h index 35c0747ebdd9c..80ce67f4bc22e 100644 --- a/security/manager/ssl/StaticHPKPins.h +++ b/security/manager/ssl/StaticHPKPins.h @@ -775,4 +775,4 @@ static const TransportSecurityPreload kPublicKeyPinningPreloadList[] = { static const int32_t kUnknownId = -1; -static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1710759186047000); +static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1713783018573000); diff --git a/security/manager/ssl/nsSTSPreloadList.inc b/security/manager/ssl/nsSTSPreloadList.inc index 991056eee7778..6a057c767d289 100644 --- a/security/manager/ssl/nsSTSPreloadList.inc +++ b/security/manager/ssl/nsSTSPreloadList.inc @@ -8,7 +8,7 @@ /*****************************************************************************/ #include -const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); +const PRTime gPreloadListExpirationTime = INT64_C(1716202214765000); %% 0--1.de, 1 0-0.io, 1 @@ -43,7 +43,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 001yapan.com, 1 002.ro, 0 00228.am, 0 -00228.org, 1 00228555.com, 1 00228999.com, 1 00228vip5.com, 1 @@ -161,7 +160,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 015kb.com, 1 018663.com, 1 018zl.com, 1 -019328.com, 1 019ks.com, 1 019zl.com, 1 01electronica.com.ar, 1 @@ -172,7 +170,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 021002.com, 1 0222z6.com, 1 022367.com, 1 -022379.com, 1 022391.com, 1 022501.com, 1 022503.com, 1 @@ -250,6 +247,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 0555z6.com, 1 056687.com, 0 056697.com, 0 +057180.com, 1 0571z6.com, 1 0575z6.com, 1 0597z6.com, 1 @@ -324,7 +322,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 089640.xyz, 1 089818.com, 1 08detaxe.fr, 1 -09.ag, 1 +09.ag, 0 09000113.nl, 1 090124.xyz, 1 090136.com, 1 @@ -352,7 +350,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 0cdn.net, 1 0cean.tk, 1 0chan.pl, 1 -0chanru.net, 1 0cp8778.com, 1 0culus.tk, 1 0d111.com, 1 @@ -523,16 +520,17 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 1020318.com, 1 1020319.com, 1 1020320.com, 1 +10218.com, 1 10218app10218.com, 1 -10218b.com, 1 -10218c.com, 1 +10218b.com, 0 +10218c.com, 0 10218cj.com, 1 -10218d.com, 1 -10218e.com, 1 -10218f.com, 1 -10218g.com, 1 -10218h.com, 1 -10218i.com, 1 +10218d.com, 0 +10218e.com, 0 +10218f.com, 0 +10218g.com, 0 +10218h.com, 0 +10218i.com, 0 1024.ee, 1 1024.kr, 1 1025.ga, 1 @@ -553,13 +551,11 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 104760.com, 1 10495.net, 1 105318.com, 1 -1057thehog.com, 1 105861.com, 1 106.hi.cn, 1 10628.com, 1 1068511.com, 1 10705.ml, 1 -10774.net, 0 107996.com, 1 1079fm.ga, 1 10840.net, 1 @@ -898,7 +894,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 12356.xyz, 1 12365t.com, 1 123apps.com, 1 -123apps.net, 1 123birthdaygreetings.com, 1 123comparer.be, 1 123comparer.fr, 1 @@ -941,6 +936,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 127661.com, 1 12778.com, 1 1277bet.com, 1 +128012.com, 0 128612.com, 1 12877.com, 1 1288366.com, 1 @@ -997,7 +993,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 13826145000.com, 1 138z6.com, 1 1395kj.com, 1 -1396.net, 1 139z6.com, 1 13ad.de, 1 13ag8.com, 1 @@ -1012,7 +1007,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 14159.gb.net, 1 142552.com, 0 142710.com, 1 -1428elm.com, 1 144-217-180-114.xyz, 1 144chan.ml, 1 1453914078.rsc.cdn77.org, 1 @@ -1302,7 +1296,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 1800petmeds.com, 1 180btt.com, 1 181k8.com, 1 -181ks.net, 1 181z6.com, 1 1820301.com, 1 1820302.com, 1 @@ -1528,7 +1521,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 1kilise.org, 1 1kmi.co, 1 1kv.com.pl, 1 -1lc1.com, 1 +1lc1.com, 0 1ll.uk, 1 1lord1faith.com, 1 1m.duckdns.org, 1 @@ -1569,7 +1562,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 1rs.nl, 1 1rust.net, 1 1sand0s.nl, 1 -1satoshi.org, 1 1scope.com, 1 1se.co, 0 1se2or3.com, 1 @@ -1831,7 +1823,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 200fcw.com, 1 200mmx.net, 1 200pppp.com, 1 -2012.ovh, 1 2012review.tk, 1 2013review.tk, 1 20140301.xyz, 1 @@ -2153,13 +2144,12 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 24bel.ru, 0 24chance.tk, 1 24control.com, 1 -24dian30.com, 1 24fair.com, 1 24fan.com, 1 24gazette.ga, 1 24gis.com, 1 24go.me, 1 -24h.com.br, 1 +24h.com.br, 0 24hod.com, 1 24hour-locksmithsanantonio.com, 1 24hourcyclist.co.uk, 1 @@ -2168,10 +2158,10 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 24hrbrandbash.com, 1 24images.com, 1 24k.co.jp, 1 +24livene.com, 1 24london.com, 1 24meg.com, 1 24monitor.com, 1 -24ohrana.com, 1 24onlain.tk, 1 24read.com, 1 24see.com, 1 @@ -2225,7 +2215,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 272live.com, 1 275004.com, 1 275763.com, 1 -276112.com, 0 27728522.com, 1 277z6.com, 1 27lx.me, 1 @@ -2245,7 +2234,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 287328.com, 1 287628.com, 1 2881dh.com, 1 -288628.com, 1 +288628.com, 0 28865.de, 1 288cn-563.com, 1 288game.net, 1 @@ -2339,7 +2328,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 2link.ga, 1 2logical.net, 1 2manydits.com, 1 -2manydots.nl, 1 2mb.solutions, 1 2mfitnessduo.com, 1 2milebridge.com, 1 @@ -2359,7 +2347,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 2or3.tk, 1 2pi.finance, 1 2pi.network, 1 -2q.ru, 0 2rsc.com, 1 2rsc.net, 1 2sendai.net, 1 @@ -2400,7 +2387,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 30375533.com, 1 3056999.com, 1 305westendassistedliving.com, 1 -3078i.com, 1 +3078i.com, 0 308274.com, 1 3090.eu, 1 30bet365.com, 1 @@ -2434,18 +2421,14 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 31789999.com, 0 317899999.com, 0 3178b.com, 0 -3178bbb.com, 0 3178c.com, 0 3178dd.com, 1 3178ddd.com, 0 3178e.com, 0 3178f.com, 0 -3178fff.com, 0 3178g.com, 0 3178h.com, 0 3178i.com, 0 -3178iii.com, 0 -3178jjj.com, 0 3178l.com, 0 3178m.com, 0 3178n.com, 0 @@ -2468,12 +2451,10 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 319064.com, 1 319k3.com, 1 319xpj.com, 1 -31fss.com, 1 31fss.marketing, 1 31fss.net, 1 31fss.support, 1 320281.net, 1 -320331.com, 0 321132.com, 0 321666365.com, 1 321live.nl, 1 @@ -2566,7 +2547,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 33ffyyy.com, 1 33ffzzz.com, 1 33knkn.com, 1 -33weishang.com, 1 33zv.com, 0 33zxzx.com, 1 3400.cf, 1 @@ -2724,7 +2704,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 3659868.com, 1 3659869.com, 1 3659980.com, 1 -365a1.com, 1 +365a1.com, 0 365air.com, 1 365beautyworld.com, 1 365blog.com, 1 @@ -2941,7 +2921,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 3cbalance.pl, 1 3cc365.com, 1 3changtrai.com, 1 -3commas.io, 1 3countiescastlehire.co.uk, 1 3creation.com, 1 3cs.ch, 0 @@ -3509,7 +3488,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 5060715.com, 1 50balles.com, 1 50firstavenue.com.au, 1 -50fss.marketing, 1 50hertz.tk, 1 50lakeshore.com, 1 50ma.xyz, 1 @@ -3611,7 +3589,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 51pinpai.com, 1 51power.com, 1 51resume.com, 1 -51rose.com, 1 51senluo.com, 1 51share.com, 1 51shoes.com, 1 @@ -3692,9 +3669,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 53pluk.cz, 1 540interactive.com, 1 541651.com, 1 -5424vip.com, 1 5454app.com, 1 -5454pk.com, 1 5455bet.com, 1 545755.com, 0 54below.com, 0 @@ -3878,7 +3853,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 5aelettroni.ga, 1 5agks.com, 1 5am.is, 1 -5amat.com, 1 5apps.com, 1 5baiwan.com, 1 5bet86.com, 1 @@ -3905,7 +3879,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 5in.win, 0 5long88.com, 1 5minutemystery.com, 1 -5mustsee.com, 1 +5mustsee.com, 0 5n.be, 1 5net.ga, 1 5ososea.com, 1 @@ -3926,6 +3900,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 5thfloormedia.com, 1 5thgenrams.com, 1 5tiptop.com, 1 +5top.nl, 1 5u15.com, 1 5y.fi, 1 5yeb.com, 0 @@ -4357,7 +4332,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 683168.com, 1 683968.com, 1 684781.com, 1 -68522.com, 1 68522c.com, 1 68522k.com, 1 68522m.com, 1 @@ -4368,7 +4342,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 68636.cc, 1 68636.com, 1 68636.vip, 1 -68722.com, 1 689368.com, 1 68reg.tk, 1 690469.com, 1 @@ -4512,7 +4485,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 7261696e626f77.net, 1 727877.com, 0 727sss.com, 1 -72hours2sold.com, 1 730.no, 1 732273.com, 1 732473.com, 1 @@ -4522,6 +4494,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 733673.com, 1 734365.com, 1 734551.com, 1 +735973.com, 1 736373.com, 1 736416.com, 1 736573.com, 1 @@ -4574,7 +4547,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 759419.com, 1 759675.com, 1 75codes.com, 1 -75dr.com, 1 75refer.tk, 1 76.to, 1 761.com, 1 @@ -4688,7 +4660,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 788zzz.com, 1 7891553.com, 1 7891997.com, 1 -7893.net, 1 78936565.com, 0 789365t.com, 1 789zr.com, 0 @@ -4797,7 +4768,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 80780780.com, 1 8078d.com, 1 807software.com, 1 -8081d.com, 1 808cleanups.org, 1 808gutterking.com, 1 808mao.com, 1 @@ -4831,7 +4801,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 8139d.com, 1 8151d.com, 1 8153365.com, 0 -8153d.com, 1 8156d.com, 1 8159d88.com, 1 815jz.com, 1 @@ -4848,7 +4817,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 8173d.com, 1 817615.com, 1 8176d.com, 1 -8178d.com, 1 81818app.com, 0 81818d.com, 1 81818z.com, 1 @@ -4859,7 +4827,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 8183d88.com, 1 8186d.com, 1 818bwf.com, 1 -8190d.com, 1 8190d88.com, 1 819323.com, 1 8193d.com, 1 @@ -4944,9 +4911,9 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 8278yy.com, 0 829882.com, 1 829917.com, 1 -82fss.com, 1 82fss.marketing, 1 82kb88.com, 1 +830891.com, 0 830res.com, 1 831783.com, 1 83365365.com, 1 @@ -5018,7 +4985,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 84yv.com, 1 84yw.com, 1 84zb.com, 1 -8501indie.nl, 1 850226.com, 1 8521.co, 0 8522hk.com, 1 @@ -5039,7 +5005,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 866300.vip, 1 866305.vip, 1 866308.vip, 1 -866341.com, 1 8666321.com, 1 867104.com, 1 8688fc.com, 1 @@ -5049,6 +5014,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 86kb88.com, 1 86metro.ru, 1 870.cc, 0 +872291.com, 1 8722ph.com, 1 8722usa.com, 1 872787.com, 1 @@ -5245,7 +5211,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 8900d.com, 1 890238.com, 1 8906d.com, 1 -890789d.com, 1 +890789d.com, 0 8908d.com, 1 8921d.com, 1 8925d.com, 1 @@ -5315,7 +5281,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 8time.com, 1 8tuffbeers.com, 1 8ung.online, 1 -8xx.io, 0 8xx888.com, 1 8xxxxxxx.com, 1 8y.network, 1 @@ -5350,8 +5315,8 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 9021.io, 1 9022.cf, 1 9023.cf, 1 -9023n.com, 1 -9023w.com, 1 +9023n.com, 0 +9023w.com, 0 9024.cf, 1 9025.cf, 1 9026.cf, 1 @@ -5541,6 +5506,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 9186.fun, 1 9186119.com, 1 9187.cf, 1 +918991.com, 1 918991a.com, 0 918991b.com, 0 918991c.com, 0 @@ -5627,6 +5593,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 9234.cf, 1 9235.cf, 1 9236.cf, 1 +923601.com, 1 9237.cf, 1 9239.cf, 1 9240.cf, 1 @@ -5822,46 +5789,29 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 9397b.com, 1 9397bb.com, 0 9397c.com, 1 -9397cc.com, 0 9397dd.com, 0 -9397dh.com, 1 9397e.com, 1 9397ee.com, 0 -9397ff.com, 0 9397g.com, 0 -9397gg.com, 0 9397hb.com, 1 9397hd.com, 1 -9397hh.com, 1 9397i.com, 1 -9397ii.com, 0 9397jj.com, 0 9397kk.com, 0 -9397ll.com, 0 9397m.com, 0 -9397n.com, 1 9397nn.com, 0 -9397o.com, 1 -9397oo.com, 0 9397p.com, 1 9397pp.com, 1 9397q.com, 0 9397qq.com, 0 9397r.com, 1 -9397rr.com, 0 9397s.com, 0 -9397ss.com, 0 -9397t.com, 0 9397tt.com, 0 9397u.com, 0 -9397uu.com, 0 -9397v.com, 1 9397vv.com, 0 -9397w.com, 0 9397ww.com, 1 9397x.com, 0 9397xx.com, 0 -9397yy.com, 0 9397z.com, 0 9397zz.com, 0 9398.cf, 1 @@ -6106,7 +6056,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 9707.cf, 1 9708.cf, 1 9709.cf, 1 -970locksmithservices.tech, 1 +970locksmithservices.tech, 0 9710.cf, 1 9711.cf, 1 9712.cf, 1 @@ -6733,7 +6683,6 @@ a-care.net, 1 a-classinflatables.co.uk, 1 a-dish.com, 1 a-frique.com, 1 -a-fx.ru, 1 a-gokan.com, 1 a-h-p.de, 1 a-hitoduma.com, 1 @@ -6775,7 +6724,7 @@ a1cashforcar.com.au, 1 a1cdrinks.com, 1 a1cookingequipment.com.au, 1 a1demolitionhauling.com, 1 -a1expresscarremoval.com.au, 0 +a1expresscarremoval.com.au, 1 a1hypnosis.ga, 1 a1jumpandbounce.co.uk, 1 a1locksafeofnc.net, 1 @@ -6849,7 +6798,6 @@ a88fc.com, 1 a899365.com, 0 a9-9.top, 1 a9297.co, 1 -a9297.com, 0 a9721.com, 1 a9728.co, 1 aa00228.com, 0 @@ -6892,7 +6840,6 @@ aagetransport.no, 1 aahhbali.com, 1 aaic.ca, 1 aajkakavi.in, 0 -aakf.org.pk, 1 aalalbayt.com, 1 aalalbayt.net, 1 aalaslearninglibrary.org, 1 @@ -6934,7 +6881,6 @@ aarhusinside.dk, 1 aariefhaafiz.com, 1 aarisings.com, 1 aarklendoia.com, 1 -aarkue.eu, 0 aaron-gustafson.com, 0 aaron-russell.co.uk, 1 aaron-schaal.de, 1 @@ -7055,7 +7001,6 @@ abcc.dk, 1 abccomputerservices.com, 0 abcdreamusa.com, 1 abcdthesis.net, 1 -abceducationacademy.com, 1 abcensax.tk, 1 abcfinance.co.uk, 0 abcgruppen.se, 1 @@ -7219,7 +7164,6 @@ abnobapetstore.co.uk, 1 abnradiofm.tk, 1 aboces.org, 1 aboderenovation.co.uk, 0 -abogadocriminalorlando.com, 0 abogadoperu.com, 1 abogadophd.com, 1 abogadoscav.com, 1 @@ -7384,7 +7328,6 @@ absolutebritney.com, 1 absolutechristmas.com, 1 absolutedouble.co.uk, 1 absolutegames.ga, 1 -absolutelybaching.com, 1 absolutepondcare.com, 1 absoluterush.net, 1 absoluteup.com.au, 1 @@ -7485,7 +7428,6 @@ acapara.net, 1 acapellalanguage.tk, 1 acapetahua.tk, 1 acaptureservices.com, 1 -acara-yoga.de, 1 acara.edu.au, 1 acasadavella.tk, 1 acasadoprodutor.com.br, 1 @@ -7522,7 +7464,6 @@ accent-homedecor.com, 1 accentchair.net, 1 accentsduterroir.fr, 1 accentwebs.ie, 1 -acceptthisrose.com, 1 acces-elevation.fr, 1 accesloges.com, 1 accesoriiutilaje.ro, 1 @@ -7573,7 +7514,6 @@ account.gov.mo, 1 account.gov.uk, 1 accountancymanager.co.uk, 1 accountingedu.org, 1 -accountmanager.tips, 1 accountmover.io, 1 accountryclub.com, 1 accounts.firefox.com, 1 @@ -7583,7 +7523,6 @@ accpl.co, 1 accpressurewashing.com, 1 accreditamento.net, 1 accreditedbuildingservices.com, 1 -accreditedsafety.com, 1 accretech.vn, 1 accrosoft.com, 1 acct-affiliate.com, 1 @@ -7703,7 +7642,6 @@ achtpfade.de, 1 achtzehn.de, 1 achtzehn.eu, 1 achtzig20.de, 0 -achwo.de, 1 aciclovir.ga, 1 acidchrist.tk, 1 acidoascorbico.com, 1 @@ -7776,7 +7714,6 @@ acquisitiongateway.gov, 1 acquistorealestate.com, 1 acraftedpassion.com, 1 acrealamendolara.tk, 1 -acredperu.org, 1 acreinfoco.com, 1 acrepairgeorgetown.com, 1 acrepairhutto.com, 1 @@ -7806,7 +7743,6 @@ acsbbs.org, 1 acsc.gov.au, 1 acscargo.ca, 1 acscbasket.com, 1 -acscu.net, 1 acsd-az.gov, 1 acse.net, 1 acsemb.org, 1 @@ -7832,8 +7768,6 @@ actheater.com, 1 acticu.com, 1 actiefgeld.nl, 0 actieplaza.tk, 1 -actievloerkleden.com, 1 -actievloerkleden.nl, 1 actifii.com, 1 actifyleads.com, 1 actigamer.pt, 1 @@ -7878,7 +7812,6 @@ activehire.co.uk, 1 activeleisure.ie, 1 activelife.travel, 1 activenl.co.uk, 1 -activephoto.se, 1 activephysiohealth.com.au, 1 activeplatesystem.ga, 1 activeprospect.com, 1 @@ -7901,7 +7834,6 @@ activityinfo.org, 1 activitypub.cyou, 1 activityshelter.com, 1 activlux.pt, 1 -activohotels.com, 1 activpilot.at, 1 activs.ru, 1 actom.cc, 1 @@ -8019,7 +7951,6 @@ adamevevod.com, 1 adamfontenot.com, 1 adamgian.com, 1 adamh.us, 1 -adamiok.online, 1 adamj.eu, 1 adamjoycegames.co.uk, 1 adamkissee.com, 1 @@ -8201,6 +8132,7 @@ adhockery.ga, 1 adhocracy.plus, 1 adi.com.au, 1 adi.net.au, 1 +adiamo.pl, 1 adiaz.us, 1 adib.family, 1 adictosdominantescdls.tk, 1 @@ -8257,7 +8189,6 @@ admin.google.com, 1 admin.se, 1 admin.stg.fedoraproject.org, 1 adminconnection.net, 1 -admindaily.com, 1 adminforge.de, 1 admingator.net, 1 admini.cl, 1 @@ -8282,6 +8213,7 @@ admody.com, 1 admongo.gov, 1 admstudio.co.uk, 1 admus.pl, 1 +adn-recrutement.fr, 0 adnanotoyedekparca.com, 1 adndigital.com.br, 1 adnempresa.es, 1 @@ -8334,7 +8266,6 @@ adpot.xyz, 0 adr-stock.com, 1 adr.gov, 1 adrabataille.fr, 0 -adradio.ae, 1 adrafinil.wiki, 1 adreaminsteel.tk, 1 adreana.com, 1 @@ -8419,7 +8350,6 @@ adson.nl, 1 adson.no, 1 adson.pt, 1 adspire.tk, 1 -adsports.ae, 1 adspottest.tk, 1 adspu.org, 1 adst.dk, 1 @@ -8433,7 +8363,6 @@ adt.pl, 1 adtelligent.com, 1 adtgroup.com, 1 adti.pt, 0 -adtv.ae, 1 adubosvidere.com.br, 1 adultbizz.eu, 1 adultdvdparadise.com, 1 @@ -8546,7 +8475,6 @@ adverganda.com, 1 adverganda.de, 1 adversus-test.tk, 0 adversus-web-staging.tk, 0 -advertis.biz, 0 advertise-ment.tk, 1 advertising-design.tk, 1 advertisingcompany.tk, 1 @@ -8947,8 +8875,6 @@ afrimarket.ci, 1 afrique.buzz, 1 afriregister.com.ss, 1 afriregister.et, 1 -afriregister.eu, 1 -afriregister.rw, 1 afriregister.sn, 1 afrodigital.uk, 1 afrodisiac.tk, 1 @@ -8962,7 +8888,6 @@ afseguros.com, 1 afslankstudiovelserbroek.nl, 1 aftamurae.com, 1 after-whoru.tk, 1 -after.digital, 1 afterblokrock.tk, 1 afterburnerjs.com, 1 afterdarklabs.net, 1 @@ -9149,7 +9074,6 @@ agencyeve.com, 1 agencygood.tk, 1 agencyinmotion.com, 1 agencymanager.be, 1 -agencymasala.com, 0 agenda-loto.net, 0 agenda21senden.de, 1 agendadelvolo.info, 1 @@ -9240,7 +9164,6 @@ agks19.com, 1 agks23.com, 1 agks27.com, 1 agks35.com, 1 -agks38.com, 1 agks4.com, 1 agks45.com, 1 agks53.com, 1 @@ -9263,7 +9186,6 @@ agks83.com, 1 agks86.com, 1 agks87.com, 1 agks888.com, 0 -agks89.com, 1 agks9.com, 1 agks92.com, 1 agktest1.ga, 1 @@ -9296,7 +9218,6 @@ agorapulse.com, 1 agoratek.fr, 1 agoravm.tk, 1 agoravox.it, 1 -agoravox.tv, 1 agorism.eu.org, 1 agoshop.de, 1 agossearch.tk, 1 @@ -9432,7 +9353,6 @@ agwin7.com, 1 agwin8.com, 1 agwin9.com, 1 agworkers.com, 1 -agzlapp.com, 1 agzy.tw, 1 agzy.vip, 1 ahanet.tk, 1 @@ -9488,7 +9408,6 @@ ahoefer.de, 1 ahoeheng.com, 1 ahoj.email, 1 ahoj.hu, 1 -ahollamby.com, 1 ahomeconcept.com, 1 ahorasalud.com, 1 ahornblatt.org, 1 @@ -9674,7 +9593,6 @@ ainaishi.com, 1 ainameals.com, 1 ainamoroms.com, 1 aine.com.br, 1 -ainet.biz, 1 ainfographie.com, 1 aini99.club, 0 ainong.com, 1 @@ -9706,7 +9624,6 @@ aipi.ch, 1 aipi.de, 1 aipi.tel, 1 aipi.uk, 1 -aipixel.top, 1 aipor.pt, 0 aipregnancy.com, 1 aipregnant.com, 1 @@ -10181,6 +10098,7 @@ aiwosq.cn, 1 aiwriter.tools, 1 aixamfinancialservices.nl, 1 aixlab.de, 1 +aixm.aero, 1 aixploringprovence.com, 1 aixue.net, 1 aizhuan.com, 1 @@ -10274,7 +10192,6 @@ akalashnikov.ru, 1 akamaiseo.com, 1 akamon.ac.jp, 1 akamu.de, 1 -akaoma.com, 1 akaratasker.com, 1 akari.net, 1 akarisoftware.com, 1 @@ -10364,7 +10281,6 @@ akmens.id, 1 ako-world.com, 1 akoben.cloud, 1 akoch.net, 1 -akode.in, 1 akoestischafbouwen.nl, 1 akonlineworks.tk, 1 akoofs.com, 0 @@ -10583,7 +10499,6 @@ albalinks.tk, 1 albamiss.com, 1 albamusic.tk, 1 albaneselorenzo.com, 0 -albanesi.it, 1 albaniachat.tk, 1 albaniaonline.tk, 1 albanien.tk, 1 @@ -10643,7 +10558,6 @@ albuterolwithoutprescription.gq, 1 albylane.com.au, 1 alca31.com, 0 alcalainos.tk, 1 -alcamilo.cloudns.cc, 1 alcanaan.com, 1 alcanaplata.com, 1 alcantara.cf, 1 @@ -10664,7 +10578,6 @@ alchiemy.com, 1 alchimic.ch, 0 alchimist-paulo-coelho.tk, 1 alchosting.net, 0 -alcineconamor.com, 1 alcites.com, 1 alcnutrition.com, 1 alcobendas.tk, 1 @@ -10757,7 +10670,6 @@ alentaja.fi, 1 alenvlahovljak.com, 1 alenwich.com, 1 alephindia.in, 1 -aleragroup.com, 1 alerbon.net, 1 aleromtrowbank.tk, 1 alerque.com, 1 @@ -10805,7 +10717,7 @@ alexander.dk, 1 alexanderandwilks.co.uk, 1 alexanderb.info, 1 alexanderbernitz.eu, 1 -alexandererber.com, 1 +alexandererber.com, 0 alexanderg.tk, 1 alexanderiwan.de, 1 alexanderjshapiro.com, 1 @@ -10818,7 +10730,6 @@ alexanderpiatigorsky.tk, 1 alexanderplatz.tk, 1 alexanderpopov.tk, 1 alexandersavvidis.de, 1 -alexanderschimpf.de, 1 alexandertechniquenow.com, 1 alexandertutoring.com, 1 alexanderwagner.tk, 1 @@ -10833,6 +10744,7 @@ alexandre-acaries.fr, 1 alexandre-barret.fr, 1 alexandreguarita.com.br, 1 alexandremottier.tk, 1 +alexandrepedrosa.com, 1 alexandrevicente.net, 1 alexandrianh.gov, 1 alexandrin.com, 1 @@ -10926,6 +10838,7 @@ aleymedya.gq, 1 aleymedya.ml, 1 aleynadavetiye.com, 1 aleynamasajsalonu.gq, 1 +alezinhababykids.com.br, 1 alfa-auto.tk, 1 alfa-books.ga, 1 alfa-host.ml, 1 @@ -10995,7 +10908,6 @@ algonaiowa.gov, 1 algopix.com, 1 algorista.tk, 1 algorithmic.ml, 1 -algorithmofsuccess.com, 1 algorithms.guide, 1 algoritm.gq, 1 algoritmika.org, 1 @@ -11138,7 +11050,6 @@ alix-board.de, 1 alix.energy, 1 aliyasin.org, 1 alizah.id, 1 -alize-theatre.ch, 0 alizeemedia.tk, 1 aljaspod.ch, 1 aljaspod.com, 1 @@ -11348,7 +11259,6 @@ allforcreate.ru, 1 allforex.ml, 1 allforhon.tk, 1 allforlocal.com, 1 -allfortennessee.com, 1 allfortips.com, 1 allfreelancers.su, 0 allfundsconnect.com, 1 @@ -11444,7 +11354,6 @@ allopurinol.gq, 1 allopurinol100mg.tk, 1 allopurinol300mg.ml, 1 alloutauto1.com, 1 -alloverthehill.com, 1 allpantypics.com, 1 allpedia.tk, 1 allpinouts.org, 1 @@ -11591,7 +11500,6 @@ almiriatechstore.co.ke, 1 almlab.tk, 1 almlc.gov, 1 almokhlifoud.com, 1 -almonetto.com, 1 almorafestival.com, 1 almosis.tk, 1 almost.cf, 1 @@ -11599,7 +11507,6 @@ almost.fit, 1 almost.gq, 1 almostobjective.com, 1 almudenallacer.com, 1 -almujadilah.qa, 1 almukhtar.se, 0 almurtaqa.com, 1 almusbahperfume.com, 1 @@ -11723,7 +11630,6 @@ alphalibraries.com, 1 alphamosa.fr, 1 alphanodes.com, 1 alphapengu.in, 1 -alphaperfumes.com.br, 1 alphapoker.ru, 1 alpharail.se, 1 alpharettaga.gov, 1 @@ -11749,7 +11655,6 @@ alphie.me, 1 alphimedia.com, 1 alphipneux.fr, 1 alphline.com.sg, 1 -alpholiday.it, 1 alphotelmilano.it, 1 alpilean.com, 1 alpinar.tk, 1 @@ -11781,7 +11686,6 @@ alroniks.com, 0 alsaagency.tk, 1 alsabil.tk, 1 alsace-informatique.shop, 1 -alsafadventures.com, 1 alsetat.com, 1 alshabab.tk, 1 alshamil.tk, 1 @@ -11913,6 +11817,7 @@ altius.com.pa, 1 altiusconsulting.com, 1 altiusconsulting.net, 1 altiusondemand.com, 1 +altkia.com, 1 altkremsmuensterer.at, 1 altmaestrat.es, 1 altmann-systems.de, 1 @@ -11960,7 +11865,6 @@ aluminumfencestlouis.com, 1 alumni-kusa.jp, 1 alumni-skensa.tk, 1 alumni.education, 1 -alumnifire-staging.com, 1 alumnifire.com, 1 alumnispecialers.ga, 1 alumnivilleest.ga, 1 @@ -11998,7 +11902,6 @@ alwayslookingyourbest.com, 1 alwaysmine.fi, 1 alwayswanderlust.com, 1 alwiam.info, 1 -alwib.net, 1 alwistra.eu, 1 alwuz.com, 1 alxclub.tk, 1 @@ -12089,7 +11992,6 @@ amaranth.gq, 1 amaranth.tk, 1 amaranthinewanderlust.com, 1 amaranthus.com.ph, 1 -amarasbutterflies.com, 1 amaresq.com, 1 amarilio.com.mx, 1 amarillosquare.com, 1 @@ -12153,7 +12055,6 @@ amazon.eg, 1 amazon.pl, 1 amazon.sa, 1 amazon.se, 1 -amazonadviser.com, 1 amazonteckathon.com, 1 amazstaff.com, 1 amaztravail.com, 1 @@ -12271,7 +12172,6 @@ americandisinfectingassociation.com, 1 americandisinfectingassociation.org, 1 americanews.ml, 1 americanfan.com, 1 -americanfandl.com, 1 americanflooring.co, 1 americanflooringservicesinc.com, 1 americanfootball.ml, 1 @@ -12576,6 +12476,7 @@ amvisor.com, 1 amvisualgraphics.com, 1 amwake.com, 1 amwine.ru, 1 +amxm.aero, 1 amxpj888.com, 0 amy-nichols.ga, 1 amyapets.tk, 1 @@ -12622,6 +12523,7 @@ anacom.pt, 1 anacron.pl, 1 anacruz.es, 1 anadiuvo.fi, 1 +anadlelkheir.com, 1 anaelog.com.au, 1 anaethelion.fr, 1 anafranil.cf, 1 @@ -12653,8 +12555,6 @@ analogfreeers.ga, 1 analogical.ga, 1 analogist.net, 1 analogman.com, 1 -analottery.com, 1 -analotto.com, 1 analpantyhose.org, 1 analpics.com, 1 analyser-mon-site.fr, 1 @@ -12671,7 +12571,7 @@ analyticum.eu, 1 analyticum.net, 1 analytik.news, 1 analyzemyfriends.com, 1 -analyzepoker.com, 0 +analyzepoker.com, 1 anamelikian.com, 1 anamterminal.tk, 1 ananas.gq, 1 @@ -12712,7 +12612,6 @@ anasaci.com, 1 anasahr.be, 1 anassiriphotography.com, 0 anastasiaweb.tk, 1 -anastasis.lu, 1 anastasis.studio, 1 anastasiyasivayeva.ru, 1 anastore.com, 1 @@ -12858,7 +12757,6 @@ andreeapasat.ro, 1 andreferreira.website, 1 andrehartensveld.tk, 1 andrehazeswinactie.nl, 1 -andrei-nakov.org, 1 andreichira.ro, 1 andreihodorog.com, 1 andreina-atencio.com, 1 @@ -12898,7 +12796,6 @@ andrewhowden.com, 0 andrewimeson.com, 1 andrewin.ru, 1 andrewjphotography.com, 1 -andrewlarson.org, 1 andrewmcfarlane.tk, 1 andrewmichaelsmith.com, 1 andrewmichaud.me, 1 @@ -12908,7 +12805,7 @@ andrewpucci.com, 0 andrewrdaws.com, 1 andrewrgoss.com, 1 andrewryno.com, 1 -andrews-waste.co.uk, 1 +andrews-waste.co.uk, 0 andrewsfasteners.uk, 1 andrewsfss.marketing, 1 andrewsnc.gov, 1 @@ -12955,10 +12852,6 @@ androidgadgematic.com, 1 androidgaming.tk, 1 androidhack.tk, 1 androidhry.cz, 1 -androidification.com, 1 -androidification.info, 1 -androidification.net, 1 -androidification.org, 1 androidinfotech.com, 1 androidioswindows18378.ml, 1 androidkatalog.cz, 1 @@ -13067,9 +12960,9 @@ angel-wing.jp, 1 angel163.ru, 0 angela.baby, 1 angeladietrich.com, 1 +angelaheck.com, 1 angelalombardo.it, 1 angelarellano.tk, 1 -angelawhitepornstar.com, 1 angelbulldog.tk, 1 angelcastellanos.tk, 1 angelcorpus.tk, 1 @@ -13121,7 +13014,7 @@ angeredmoon.tk, 1 angermanalvorna.tk, 1 angesehen.com, 1 angestoepselt.de, 1 -angie-webdesign.ch, 1 +angie-webdesign.ch, 0 angiejones.com, 1 angielynx.net, 1 angiesite.tk, 1 @@ -13138,8 +13031,6 @@ anglarsports.com, 1 angleline.cn, 1 anglersconservation.net, 1 anglertanke.de, 1 -anglesgirl.eu.org, 1 -anglicanwatch.com, 1 anglictina-sojcak.cz, 1 anglictinasojcak.cz, 1 anglingactive.co.uk, 0 @@ -13208,7 +13099,6 @@ animal-world.tk, 1 animalarkvets.co.uk, 1 animalcenterunomas.tk, 1 animalcrossingwiki.de, 1 -animaletnous.be, 1 animalkingdom.cl, 1 animalliberation.tk, 1 animallog.tk, 1 @@ -13224,7 +13114,6 @@ animalshelter.tk, 1 animalsphoto.tk, 1 animalstropic.com, 1 animaltesting.fr, 1 -animalworld.club, 1 animalworld.gq, 1 animalz.ga, 1 animalz.ml, 1 @@ -13285,7 +13174,6 @@ animelime.ru, 1 animelolipop.com, 1 animemotivation.com, 1 animeonsen.xyz, 1 -animepahe.ru, 1 animeplus1.tk, 1 animepower.gq, 1 animepower.tk, 1 @@ -13331,7 +13219,6 @@ anitklib.ml, 1 anitop.ga, 1 anitop.tk, 1 anitube-nocookie.ch, 1 -anitube.ch, 1 aniviasport.store, 1 anivision.tk, 1 aniwatch.me, 1 @@ -13459,13 +13346,11 @@ anniangel-porn.com, 1 annicascakes.nl, 1 anniecloth.com, 1 anniegagnonphotographie.com, 1 -annies.com, 1 anniesdollhouse.com, 1 annihilation-squad.tk, 1 annikarose-porn.com, 1 annitrinity.com, 1 annitrinity.net, 1 -anniversary-cruise.com, 1 anniversaryforumers.ga, 1 annonasoftware.com, 1 annoncer.ga, 1 @@ -13492,7 +13377,6 @@ annunciationbvmchurch.org, 1 annuncisesso.tk, 1 annyaurora.net, 1 annygraces.com, 1 -annynantasiri.com, 1 anodas.lt, 1 anohana.org, 1 anokacountybuys.gov, 1 @@ -13728,13 +13612,14 @@ antikeo.com, 1 antikfloors.ga, 1 antikfloors.gq, 1 antikfloors.ml, 1 -antikpest.hu, 1 +antikpest.hu, 0 antikvar-i-ya.tk, 1 antikvar-net.tk, 1 antikvariat22.cz, 1 antikvarshop.tk, 1 antilaserpriority.com, 1 antiled.by, 1 +antimateri.com, 1 antimaterie.tk, 1 antimine.me, 1 antiminutemen5.tk, 1 @@ -13923,7 +13808,6 @@ ao-vivo.net, 1 ao2.it, 1 ao27.net, 1 ao2law.com, 1 -ao6.me, 1 ao6.works, 1 aoa.gov, 1 aoa2.ch, 1 @@ -14043,6 +13927,7 @@ apercloud.es, 1 aperioadvice.ga, 1 aperiomoney.ga, 1 aperiotaxation.ga, 1 +apert.be, 1 aperta.ro, 1 aperta.shop, 1 apertis.org, 0 @@ -14082,7 +13967,6 @@ aphelis.net, 1 aphorismen-archiv.de, 1 api-agri.ga, 1 api-bitrefill.com, 1 -api-geek.com, 1 api-hany.cf, 1 api.biz.tr, 1 api.lookout.com, 1 @@ -14090,7 +13974,6 @@ api.recurly.com, 1 api42.ch, 1 api64.com, 1 apiary.shop, 1 -apiary.store, 1 apiary.supplies, 1 apiary.supply, 1 apicep.com, 1 @@ -14135,7 +14018,7 @@ apkfuse.com, 1 apkindirsene.com, 1 apkmaze.com, 1 apkmint.co, 1 -apkmodders.com, 1 +apkmodders.com, 0 apkmody.io, 1 apknut.com, 1 apkoc.com, 1 @@ -14218,7 +14101,6 @@ apostalegal.pt, 1 apostascomvalor.com, 1 apostasdesportivas.tv, 1 apostasolida.com, 1 -apostasonline.guru, 1 apostillelondon.com, 1 apothecarydouglasville.com, 1 apotheek-ict.nl, 1 @@ -14432,7 +14314,6 @@ appt.to, 1 apptesters.com, 1 apptio.com, 1 apptoutou.com, 1 -apptrigger.com, 1 appuals.com, 1 appub.co.jp, 1 appugo.tk, 1 @@ -14558,7 +14439,6 @@ aquafirm.com, 1 aquagino.nl, 1 aquahill.net, 1 aquaholic.tk, 1 -aquahomo.com, 1 aquaist.com, 1 aqualantic.de, 1 aqualife.cf, 1 @@ -14711,8 +14591,6 @@ arbitrarion.com, 1 arbitrary.ch, 1 arbitrations.tk, 1 arbitrazh.tk, 1 -arbitrazhstavki.com, 1 -arbitrazhtraff.com, 1 arbobille.es, 1 arboleda-hurtado.com, 1 arbolesdenavidad.info, 1 @@ -14752,12 +14630,10 @@ arcbouncycastles.co.uk, 1 arcdesantmarti.net, 1 arcenergy.co.uk, 1 arcese.com, 1 -arceusx.net, 1 arch-design.com, 1 archaeoadventures.com, 1 archambault.paris, 1 archangelbio.com, 1 -archauthority.com, 1 archbishop.ga, 1 archdetal.com.ua, 1 archeologicatoscana.it, 1 @@ -14817,7 +14693,6 @@ archsec.info, 1 archtekton.com.ve, 1 arcinapoli.it, 1 arcj.es, 1 -arckr.com, 1 arclookup.com, 1 arcmarine.eu, 1 arco.lu, 1 @@ -14852,7 +14727,7 @@ arcticwolf.com, 1 arctus-security.com, 1 arcueil-cachan.fr, 0 arcza.com, 1 -arcza.net, 1 +arcza.net, 0 ardabil.tk, 1 ardacar.com, 1 ardadanal.com, 1 @@ -15033,8 +14908,6 @@ arilto.com, 1 arima.co.ke, 1 arima.tk, 1 arimarie.com, 1 -arimarie.net, 1 -arimarie.org, 1 arina.is, 1 arina.moscow, 1 arinahashimoto.com, 1 @@ -15086,7 +14959,6 @@ arkagis.com, 1 arkagt.ir, 1 arkaic.dyndns.org, 1 arkantos.agency, 1 -arkenco.net, 1 arkenstone.ml, 1 arkforum.de, 1 arkfoundationrepair.com, 1 @@ -15229,7 +15101,7 @@ arnoweterings.nl, 1 arnstein.it, 1 arny.ru, 1 aroablog.tk, 1 -arobaz-informatique.org, 0 +arobaz-informatique.org, 1 arockets.ru, 1 arod.tk, 1 arofabric.com, 1 @@ -15284,7 +15156,6 @@ arpsel.de, 1 arpsel.ws, 1 arpteamdiabolo.tk, 1 arpuff.eu, 1 -arqandes.org, 1 arqpericial.es, 1 arqueo-ecuatoriana.ec, 1 arquipielago.tk, 1 @@ -15479,7 +15350,6 @@ artificethefilm.com, 1 artificial.army, 1 artificiala.gq, 1 artificialaxis.com, 1 -artificialgrassandlandscaping.com, 1 artificialplants.tk, 1 artificialpoetry.com, 1 artifort.com, 1 @@ -15489,7 +15359,6 @@ artigoagency.com, 1 artikel5ev.de, 1 artikel9.com, 1 artilect.studio, 1 -artinfo.ge, 0 artinfo.tk, 1 artintend.com, 0 artioml.net, 1 @@ -15538,7 +15407,6 @@ artmo.com, 1 arto.group, 1 artofcode.co.uk, 1 artofeyes.nl, 1 -artofgears.com, 1 artofhappyliving.com, 1 artoflinesmd.ca, 1 artofmonitoring.com, 0 @@ -15616,7 +15484,6 @@ arvadaco.gov, 1 arvadafireco.gov, 1 arveex.eu, 1 arveron.ch, 0 -arviamedspa.com, 1 arviksa.co.uk, 1 arvindhariharan.com, 1 arvindhariharan.me, 1 @@ -15650,8 +15517,6 @@ as136964.com, 1 as136964.net, 1 as198768.eu.org, 1 as200351.net, 1 -as200753.com, 1 -as200753.net, 1 as202413.net, 1 as203145.com, 1 as204982.net, 1 @@ -15669,7 +15534,6 @@ as6369.com, 1 as6369.net, 1 as8423.net, 1 asaabforever.com, 1 -asaacai.com.br, 1 asabacortoscaseros.tk, 1 asadatec.de, 1 asaduddinowaisi.tk, 1 @@ -15919,7 +15783,6 @@ asker-massasje.no, 1 askerweb.cf, 1 askeverythingonline.com, 1 askeygeek.com, 1 -askfree.net, 1 askgamblers.com, 1 askhow.co.il, 1 askimsin.com, 1 @@ -15949,6 +15812,7 @@ asm802.com, 1 asm802.es, 1 asmbsurvey.com, 1 asmdz.com, 1 +asmeets.nl, 1 asmess.com, 1 asmgroup.rs, 1 asmm.cc, 0 @@ -16035,7 +15899,6 @@ assamtenders.gov.in, 1 assanti.com, 1 assassinasian.tk, 1 assdecoeur.org, 1 -assecuro.com.ua, 1 assedo.tk, 1 asseenfromthesidecar.org, 1 asseenontvonline.ru, 1 @@ -16088,7 +15951,7 @@ assistenzamicroonde.org, 1 assistere-a-casa.it, 1 assistere-a-domicilio.it, 1 assistere-in-famiglia.it, 1 -assistouest.cloud, 1 +assistouest.fr, 1 assistouest.net, 1 assistouest.shop, 1 assmb.ly, 1 @@ -16157,11 +16020,11 @@ astilleroslagos.es, 1 astleyplumbing.com, 1 astmatiki.ru, 1 astolfo.cool, 1 +astonbysqli.com, 1 astonishing.tk, 1 astore.co.uk, 1 astorfoodservice.com, 1 astorhospitality.com, 1 -astorline.com, 1 astormueble.tk, 1 astorship.com, 1 astour.ee, 1 @@ -16301,7 +16164,6 @@ atalantapsicologia.es, 1 atallo.es, 1 atanas.ch, 1 atanet.it, 1 -atapindonesia.com, 1 atarinew.tk, 1 atary.tk, 1 ataton.ch, 0 @@ -16337,11 +16199,11 @@ atelierbw.com, 1 atelierdelacreation.com, 1 atelierdeloulou.fr, 1 atelierdesflammesnoires.fr, 1 -atelierdosorrisoalmancil.pt, 1 atelierfantazie.sk, 1 atelierferro.be, 1 atelierhsn.com, 1 atelierjs.com, 1 +atelierkuni.jp, 1 atelierlk.art, 1 ateliernaruby.cz, 1 ateliernox.com, 1 @@ -16383,7 +16245,6 @@ athenaspark.com, 1 athenasystems.com, 1 athenasystems.net, 1 atheneum-partners.cn, 1 -athenrymusicschool.net, 1 athensdrunktour.com, 1 athensil.gov, 1 athenstn.gov, 1 @@ -16496,6 +16357,7 @@ atlassen.com, 1 atlassian.net, 1 atlassignsandplaques.com, 1 atlastax.ga, 1 +atlastaxi.eu, 1 atlastravelvic.com.au, 1 atlastube.com, 1 atlasuno.com, 1 @@ -16606,7 +16468,6 @@ attogtech.com, 1 attorneybiographies.ga, 1 attorneybiographiesest.ga, 1 attorneyrebeccawhittington.com, 1 -attorneystrialgroup.com, 1 attosoft.tk, 1 attractant.com, 1 attractieparken.tk, 1 @@ -16641,7 +16502,7 @@ atyuan.one, 1 atyum.com, 1 atzenchefin.de, 1 atzeneta.tk, 1 -atzzz.com, 0 +atzzz.com, 1 au-be.net, 1 au-inter.net, 1 au.by, 1 @@ -16683,6 +16544,7 @@ audifs.com, 1 audilio.it, 1 audio-extractor.net, 1 audio-joiner.com, 1 +audio.servemp3.com, 1 audiobit.es, 1 audioblackmagic.com, 1 audiobone.com, 1 @@ -16920,7 +16782,6 @@ australianairbrushedtattoos.com.au, 1 australianattractions.com.au, 1 australiancattle.dog, 1 australiancurriculum.edu.au, 1 -australiangold.si, 1 australianhimalayanfoundation.org.au, 1 australianhomemade.com, 1 australianimmigrationadvisors.com.au, 1 @@ -17019,7 +16880,6 @@ autobedrijfgarant.nl, 1 autobella-hurtownia.pl, 1 autobelle.it, 1 autobelt.com, 1 -autobidbroker.com, 1 autobiz.tk, 1 autoblog-de.com, 1 autoblogs.ml, 1 @@ -17036,14 +16896,12 @@ autocartruck.com, 1 autocashmachine.tk, 1 autocenters.ca, 1 autocheck.co.nz, 1 -autochin.ir, 1 autocirkel.tk, 1 autoclassics.com, 1 autocmall.com, 1 autocoder.chat, 1 autoconcept.ga, 1 autoconcept.tk, 1 -autocont.cz, 1 autocorner.com, 1 autocross.tk, 1 autocrossfoto.tk, 1 @@ -17086,7 +16944,6 @@ autohaussued.gmbh, 1 autohero.com.au, 1 autohit.ro, 1 autohomehub.com, 1 -autohubmarketing.com.br, 1 autohunt.ga, 1 autohut.ca, 1 autohuttruckcenter.ca, 1 @@ -17109,6 +16966,7 @@ autolawetawroclaw.pl, 1 autoleaders.gr, 1 autoledky.sk, 1 autolet.tk, 1 +autologix.io, 1 automaatic.com, 1 automacity.com, 1 automacro.com, 1 @@ -17132,7 +16990,6 @@ automobile-gadgets.ru, 1 automobile-propre.com, 1 automobileescrowers.ga, 1 automobileescrowest.ga, 1 -automobiliteit.nl, 1 automods.com.au, 1 automodulegods.com, 1 automotive.org.ua, 1 @@ -17364,7 +17221,6 @@ autostrady.tk, 1 autostramites.com, 1 autostramites.com.ar, 1 autosupirkimas.tk, 1 -autosystem.co.uk, 1 autoteched.com, 1 autoteplo.org, 1 autoterminus-used.be, 0 @@ -17396,7 +17252,6 @@ autoviral.ga, 1 autoviral.gq, 1 autoviral.ml, 1 autoviral.tk, 1 -autovolo.co.uk, 1 autowallpapers.tk, 1 autowatch.tk, 1 autoweek.nl, 1 @@ -17407,7 +17262,6 @@ autozuki.com, 1 autres-talents.fr, 1 autumnhungary.tk, 1 autumnmanor.com, 1 -auturoa.nz, 1 autya.ga, 1 auverdrift.ovh, 1 auvernet.org, 1 @@ -17433,7 +17287,6 @@ av163.cc, 1 ava-creative.de, 0 ava-sky.ga, 1 ava-software.at, 1 -ava360.com, 1 avaamo.com, 1 avaaz.org, 1 avacariu.me, 1 @@ -17512,7 +17365,6 @@ avatarka.tk, 1 avatedu.com, 1 avaxprices.com, 1 avay.vn, 1 -avcd.cz, 1 avcipets.com, 1 avclub.com, 1 avdagic.net, 1 @@ -17534,7 +17386,6 @@ avenad.net, 1 avenade.com, 1 avenade.net, 1 avenade.org, 1 -avengehub.com, 1 avengepet.eu.org, 1 avengersonline.ml, 1 avengersonlinemovie.ga, 1 @@ -17673,7 +17524,6 @@ avonindiana.gov, 1 avonlearningcampus.com, 1 avontuurlijk-natuurlijk.be, 1 avonvets.co.uk, 1 -avonwithedda.ca, 1 avoonix.com, 1 avounossoupes.be, 1 avp-emobility.de, 1 @@ -17748,7 +17598,7 @@ awarenessadvisor.ga, 1 awarenessadvisorest.ga, 1 awaresec.com, 1 awaresec.no, 1 -awareservices.com, 1 +awareservices.com, 0 awarify.io, 1 awarify.me, 1 awarity.be, 1 @@ -17805,6 +17655,7 @@ axa.ch, 1 axa.de, 1 axavalon.tk, 1 axchap.ir, 1 +axcient.com, 1 axe-formation.com, 1 axe.io, 1 axeapi.au, 1 @@ -17856,7 +17707,6 @@ axisortho.com.sg, 1 axispara-bg.com, 1 axist.com.co, 1 axisunderwriting.com.au, 1 -axitech.com.br, 1 axl.net, 1 axmedmessi.tk, 1 axoftglobal.com, 1 @@ -17994,7 +17844,6 @@ aysima.com, 1 ayubesportes.com.br, 1 ayudacloud.com, 1 ayudaconmibanco.gov, 1 -ayudacontenedores.org, 1 ayudalabs.com, 1 ayudamineduc.cl, 1 ayudamutua.red, 1 @@ -18308,7 +18157,6 @@ b9586.net, 1 b9588.net, 1 b95888.net, 1 b9589.net, 1 -b960.com, 1 b96899.com, 1 b9728.co, 1 b979365.com, 0 @@ -18429,7 +18277,6 @@ babia.to, 1 babibonami.tk, 1 babichsteriliser.com.au, 1 babico.name.tr, 1 -babindo.com, 1 babineaux.zone, 1 babitaji.tk, 1 babki-mgnovenno.ga, 1 @@ -18471,7 +18318,6 @@ babygearlab.com, 1 babygirlholidaydresses.tk, 1 babyinthehouse.com.br, 1 babykappy.com, 1 -babyledweaning.website, 1 babylonclub.cf, 1 babylonplast.com, 1 babymall.hk, 1 @@ -18508,7 +18354,6 @@ bacanovel.id, 1 bacardi.cf, 1 bacardicola.tk, 1 baccarat.tk, 1 -bacchtalia.com, 1 bacchus.report, 1 baccredomatic.voyage, 1 bacgp.com, 1 @@ -18641,11 +18486,9 @@ badboyz.org, 1 badboyzclub.de, 1 badcarma.tk, 1 badcomputer.tk, 1 -baddielatina.com, 1 baddrones.llc, 1 badeand.net, 1 badekappen.com, 1 -baderscott.com, 1 badeurlaub.tk, 1 badf00d.de, 1 badge.rs, 1 @@ -18959,7 +18802,6 @@ ballarin.cc, 1 ballast.tk, 1 ballbusting-cbt.com, 1 ballcancan.tk, 1 -balldurham.com, 1 ballejaune.com, 1 ballensiefen.net, 1 ballerkneipe.com, 1 @@ -18989,7 +18831,6 @@ balslev.io, 1 balt.net, 1 balter.com, 1 baltialcoholicos.tk, 1 -balticroofing.com, 1 baltimorecashflow.com, 1 baltimorecitybnmd.gov, 1 baltimorecolonrectal.com, 1 @@ -18999,8 +18840,6 @@ baltlex.de, 1 baltoe.com, 0 baluarte.com, 1 bam.com.gt, 1 -bamadidesho.ir, 1 -bamahammer.com, 1 bamaland.org, 1 bamberger-maelzerei.de, 1 bambergerdatenschutz.de, 1 @@ -19025,7 +18864,6 @@ bamily.rocks, 1 baming.com, 1 bammatta.ch, 1 bampers.tk, 1 -bamsmackpow.com, 1 ban-list.gq, 1 banabarka.tk, 1 banajanitorialservices.com, 1 @@ -19055,7 +18893,6 @@ bancontinental.com.py, 1 bancosdominicanos.net, 1 bancoserfinanza.com, 1 bancosol.com.bo, 1 -bancsource.net, 1 band.us, 1 banda-car-service.com, 1 bandaancha.eu, 1 @@ -19137,7 +18974,6 @@ bank, 1 bank-credit.org, 1 bank-laan.dk, 0 bank-yahav.co.il, 1 -bank.barclays.co.uk, 1 bank34.ua, 1 banka.space, 0 bankanswers.gov, 1 @@ -19178,7 +19014,6 @@ bankofharbin.com, 1 bankofireland.com, 1 bankofrealty.review, 1 bankofshaanxi.com, 1 -bankowy-leasing.pl, 1 bankpolicies.com, 1 bankrbk.kz, 1 bankruptcy.ky, 1 @@ -19265,7 +19100,6 @@ baransys.com, 1 baranyavar.hu, 1 barao.tk, 1 barataeletrica.tk, 1 -baratbooks.com, 1 baratzegrowshop.com, 1 baravalle.com, 1 baraxolka.ga, 1 @@ -19464,7 +19298,6 @@ baruch.me, 1 barwaldesigns.com, 1 barwave.com, 1 barzallof.com, 1 -barzus.com.ua, 1 barzza.tk, 1 bas.bio, 1 bas.codes, 1 @@ -19479,7 +19312,6 @@ basdferty.cf, 1 base-autonome-durable.com, 0 base-people.ml, 1 base-radio.cf, 1 -base27.eu, 1 base2face.tk, 1 base48.systems, 1 basebalance.net, 1 @@ -19504,7 +19336,6 @@ basement961.co.nz, 1 basementdefender.net, 1 basementdoctorwestvirginia.com, 1 basementfinishingohio.com, 1 -basementwaterproofingannarbor.com, 1 basementwaterproofingasheville.com, 1 basementwaterproofingdesmoines.com, 1 basementwaterproofingknoxvilletn.com, 1 @@ -19647,9 +19478,8 @@ batiburrillo.net, 1 batiim.co.il, 1 batipiscine.com, 1 batipresta.ch, 0 -batitrakya.org, 1 batiweb.tv, 1 -batiwebgroup.com, 1 +batiwebgroup.com, 0 batka-stealer.tk, 1 batkhonjon.com, 1 batkonjon.com, 1 @@ -19688,7 +19518,6 @@ batwatt.com, 1 bau.ua, 1 baubau.bg, 1 bauchtanz.tk, 1 -bauen-mit-ziegel.de, 1 bauer-plus.de, 1 bauer-reininghorses.com, 1 bauer.network, 0 @@ -19740,7 +19569,6 @@ bavartec.de, 1 bavi.tk, 1 bavoogi.com, 1 bawag.at, 1 -bawamedical.com, 1 bawbby.com, 1 bawsiebezpiecznie.pl, 1 baxir.fr, 1 @@ -19777,6 +19605,7 @@ bayerstefan.com, 1 bayerstefan.de, 1 bayerstefan.eu, 1 bayfly.net, 1 +bayhauling.net, 1 bayherbalist.com, 1 bayilelakiku.com, 1 bayliss.aero, 1 @@ -19799,7 +19628,6 @@ baysidephotography.ga, 1 bayt.com, 1 baytalebaa.com, 1 baytobayaircon.com.au, 1 -baytv.it, 1 bayvotesfl.gov, 1 baywatbemacom.cf, 1 baywatch.io, 1 @@ -19887,7 +19715,6 @@ bbmsarauniteam.com, 1 bbnx.net, 1 bbp.ng, 1 bbpnas.win, 1 -bbqblessings.com, 0 bbqs-algarve.com, 1 bbrassart.fr, 1 bbrigittae.hu, 1 @@ -19904,7 +19731,6 @@ bbusa.tk, 1 bbw-wrestling.com, 1 bbwanalsex.com, 1 bbwhale.org, 1 -bbwmellon.com, 1 bbwmovies.com, 1 bbwpictures.com, 1 bbwpornpics.com, 1 @@ -19963,7 +19789,6 @@ bcsnygroup.com, 1 bcsytv.com, 0 bcu.ac.uk, 1 bcubeanalytics.com, 1 -bcuniversity.tech, 1 bcutah.gov, 1 bcvps.com, 1 bcyw56.live, 0 @@ -19973,7 +19798,6 @@ bd-friend.com, 1 bd-media.tk, 1 bd.foundation, 1 bda-boulevarddesairs.com, 0 -bdasites.in, 1 bdbe.ga, 1 bdbxml.net, 1 bdcdev.in, 1 @@ -20093,7 +19917,7 @@ beard.se, 1 beardboys.co.za, 1 bearded.sexy, 1 bearden.io, 1 -beardic.cn, 1 +beardic.cn, 0 beardsome.me, 1 bearfactory.tk, 1 bearfarm.tk, 1 @@ -20293,7 +20117,6 @@ bedrocklinux.org, 1 bedstecasinobonusser.dk, 1 bedtimeflirt.com, 1 bedum-blues.tk, 1 -bedwars.party, 1 bedwettingyoungsters.tk, 1 bee-creative.nl, 1 bee-line.org.uk, 1 @@ -20391,7 +20214,6 @@ begemoth.tk, 1 begethost.cf, 1 begin-motorcycling.co.uk, 1 beginnercampingguide.top, 1 -beginwp.tips, 1 begleitung-zuhause.at, 1 begonias.tk, 1 begoth.boutique, 1 @@ -20426,7 +20248,6 @@ behomewithlove.com.br, 1 behoreal.cz, 1 behrami.com, 1 behrer.se, 1 -bei18.com, 1 beiduofu.com, 1 beiersdorf-svz.ch, 1 beijing.bj, 1 @@ -20439,7 +20260,6 @@ beinad.ru, 1 beinghuman.tk, 1 beinghumanpsychotherapy.com.au, 1 beingmad.org, 1 -beingoptimist.com, 1 beinsports.pro, 1 beinsured.cloud, 0 beinteractive.pl, 1 @@ -20598,7 +20418,6 @@ bellatight.com, 1 bellavistaoutdoor.com, 1 bellcarrington.com, 1 bellcomp.co.uk, 1 -bellcontainer.co.uk, 1 belle-bete.ca, 1 belle-epoque-toys.com, 1 belle-lingerie.co.uk, 0 @@ -20640,7 +20459,6 @@ belmount.com.br, 1 belmundo.org, 1 belocallyseo.com, 1 beloevino.ml, 1 -belos.at, 1 belouga.org, 1 belovedbumps.sg, 1 belowaverage.tk, 1 @@ -20708,7 +20526,6 @@ bendechrai.com, 0 bendemaree.com, 1 bender.ga, 1 benderssportsandspirits.com, 0 -bendigoland.com.au, 1 bendingtheending.com, 1 bendjadid.com, 1 bendminding.com, 1 @@ -20771,10 +20588,11 @@ benicee.com, 1 benidormcd.tk, 1 benify.com, 1 benify.se, 1 -benimseom.com, 1 +benimseom.com, 0 benimsetin.com, 1 benimsetin.org, 1 beninca.link, 1 +beniskala.com, 1 benjamin-horvath.com, 1 benjamin-suess.de, 1 benjamin-thomsen.de, 1 @@ -20852,8 +20670,6 @@ bentoncountyia.gov, 1 bentoncountyor.gov, 1 bentoncountywa.gov, 1 bentongroup.co.uk, 1 -bentonvillemedia.com, 1 -bentonvilleppc.com, 1 bentonweatherstone.co.uk, 1 bentonwi.gov, 1 bentpunk.tk, 1 @@ -20871,7 +20687,6 @@ benzieco.gov, 1 benzin.tk, 1 benzonestore.tk, 1 benzou-space.com, 1 -beoandpartners.com, 1 beonas.ddns.net, 1 beonline.ml, 1 beornish.com, 1 @@ -20963,6 +20778,7 @@ berkhills.com, 1 berksabstract.com, 1 berksestateplanning.com, 1 berkshire.com, 1 +berkshireesupply.com, 0 berkspa.gov, 1 berkswatertech.com, 1 berkvensgm.nl, 1 @@ -21100,7 +20916,6 @@ beskiden.com, 1 besnard.me, 1 besnik.de, 0 besnik.tk, 1 -besola.de, 1 besole.ch, 1 besolov.tk, 1 besonderheit.com, 1 @@ -21188,7 +21003,6 @@ bestchoicehomeinspections.com, 1 bestclassifiedsusa.com, 1 bestclix.ml, 1 bestcms.tk, 1 -bestcollegeaid.com, 1 bestcreditcards.biz, 1 bestcreditcards.me, 1 bestcreditcards.news, 1 @@ -21199,6 +21013,7 @@ bestcrossbowguide.com, 1 bestdatingsite.ml, 1 bestdatingsite.tk, 1 bestdeal.co.in, 1 +bestdealstrips.com, 1 bestdiabeteshealth.com, 1 bestdlsites2.tk, 1 bestdownloadscenter.com, 1 @@ -21430,7 +21245,6 @@ bestomania.tk, 1 bestonlinestuffs.com, 1 bestparking.com, 1 bestpartyhire.com, 1 -bestperfumebrands.com, 0 bestpig.fr, 1 bestplus.ml, 1 bestplus.tk, 1 @@ -21499,7 +21313,6 @@ bet166b.com, 1 bet166bbb.com, 1 bet166c.com, 1 bet166ddd.com, 1 -bet166fff.com, 1 bet166uu.com, 1 bet166ww.com, 1 bet166yy.com, 1 @@ -21753,7 +21566,6 @@ bettercallsully.com, 1 bettercareclinic.co.uk, 1 bettercleaningcompany.co.uk, 1 bettercommunication.org.uk, 1 -bettercompass.com.au, 1 bettercrypto.org, 1 betterdecoratingbible.com, 1 betterhealthatworkaward.org.uk, 1 @@ -21908,7 +21720,6 @@ beyond3dviews.com, 1 beyondalderaan.net, 1 beyondauth.io, 1 beyondbounce.co.uk, 1 -beyondboxgifts.com, 1 beyondfrosting.com, 1 beyondgameplay.com, 1 beyondinfinite.com, 1 @@ -21991,14 +21802,13 @@ bgjargon.com, 1 bgkoleda.bg, 1 bglobal.com, 1 bglsingles.de, 1 -bgm.bg, 0 +bgm.bg, 1 bgmall.tk, 1 bgmedia.tk, 1 bgmn.me, 1 bgmontaggi.com, 1 bgmringtonedownload.com, 1 bgmsquad.com, 1 -bgmsquad.net, 1 bgp.co, 1 bgr34.cz, 1 bgs-game.com, 1 @@ -22021,7 +21831,6 @@ bhbet365.com, 1 bhcarroll.edu, 1 bhf.im, 1 bhfseo.com, 1 -bhhscalhomes.com, 1 bhi.consulting, 1 bhiglu.com, 1 bhitnews.tk, 1 @@ -22082,6 +21891,7 @@ biber-bike.de, 1 biberonshop.bg, 1 bibet365.com, 1 bibi-xxx.com, 1 +bibica.net, 1 bibimanga.com, 1 bibit.id, 1 bibitbunga.com, 1 @@ -22137,7 +21947,6 @@ bicha.net, 1 bichonfrise.com.br, 1 bichonmaltes.com.br, 1 bicicletassym.com, 1 -bicicletassym.com.co, 1 bicignet.ga, 1 bicommarketing.com, 1 bicranial.io, 0 @@ -22148,7 +21957,6 @@ bicycle-events.com, 1 bicyclesoftheworld.com, 1 bidaah.tk, 1 bidadari.my, 1 -bidarzani.com, 0 bidc.ltd, 1 biddl.com, 1 biddle.co, 1 @@ -22322,7 +22130,6 @@ bigsister.tk, 1 bigskyhomebuyers.com, 1 bigskylifestylerealestate.com, 1 bigskymontanalandforsale.com, 1 -bigskysir.com, 1 bigsmallhosting.com, 1 bigsolar.com, 1 bigspark.it, 1 @@ -22406,7 +22213,6 @@ bildiri.ci, 1 bildkomponist.de, 1 bildschirmflackern.de, 1 bildung-mv.de, 0 -bildungswelt.dvag, 1 bilecikhaberleri.tk, 1 biletkesfet.com, 1 biletru.net, 1 @@ -22418,9 +22224,8 @@ biletyplus.ru, 1 biletyplus.ua, 1 bilgehan.net, 1 bilgiliksel.com, 1 -bilgireis.com, 0 +bilgireis.com, 1 bilgisayarkursu.tk, 1 -bilgisoft.ir, 1 bilgo.com, 1 bilhos.com.tr, 1 bilibili.link, 1 @@ -22430,7 +22235,7 @@ bilimoe.com, 1 bilingualunit.tk, 1 bilirrubina.com, 1 bilisimdanismani.com, 1 -biliwind.com, 0 +biliwind.com, 1 biljettmonster.se, 1 bilke.org, 1 bilkovita.bg, 1 @@ -22490,9 +22295,6 @@ billywig.stream, 1 biloxihistoricalsociety.org, 0 biloxisportfishing.com, 1 bilsho.com, 1 -biltmoreatthepark.com, 1 -biltullen.com, 1 -bim.finance, 1 bim.physio, 1 bim0s.com, 1 bimacitizen.com, 1 @@ -22598,7 +22400,6 @@ bintangtop.com, 1 bintelligence.cl, 1 bintelligence.info, 1 bintelligence.nl, 1 -bintooshoots.com, 1 bintra.directory, 1 bintube.com, 1 bio-disinfestazione.it, 1 @@ -22612,7 +22413,6 @@ bioadva.com, 1 bioarc.com.au, 1 bioarchlinux.org, 1 bioatrium.com, 1 -bioaufvorrat.de, 1 bioblog.tk, 1 biobone.net, 1 biobuttons.ch, 1 @@ -22702,7 +22502,6 @@ biomedsciinstrum.org, 1 biomedyczne.pl, 1 biometriccoe.gov, 1 biometrics.gov, 1 -biometservices.com, 1 biomin.co.uk, 1 biomod.tk, 1 biomodra.cz, 1 @@ -22727,7 +22526,6 @@ bioshine.com.sg, 1 bioshome.de, 1 biosignalanalytics.com, 1 biosky.tk, 1 -biospeak.solutions, 1 biospw.com, 1 biostar.com.tw, 1 biosuit.ga, 1 @@ -22810,7 +22608,6 @@ birthdayapp.io, 1 birthdayapp.today, 1 birthdaybuzz.org, 1 birthdayinsiderest.ga, 1 -birthinjurylawyer.com, 1 birthlight-austria.com, 1 birthright.host, 1 birtles.blog, 1 @@ -22927,7 +22724,6 @@ bitcoincasino.today, 1 bitcoincasinos.pro, 1 bitcoincore.org, 1 bitcoineffect.ml, 1 -bitcoinera-review.com, 1 bitcoinfaucet.tech, 1 bitcoinfax.net, 1 bitcoinfees.net, 1 @@ -22995,7 +22791,6 @@ bitga.in, 1 bitgarant.tk, 1 bitgo.com, 1 bithosting.pt, 1 -bitiobmen.com, 1 bititrain.com, 1 bitix.tk, 1 bitjunkiehosting.com, 1 @@ -23185,7 +22980,6 @@ bjorknet.com, 0 bjornerastrefelling.no, 1 bjornhelmersson.se, 1 bjornjohansen.no, 1 -bjornlarssen.com, 1 bjrn.io, 1 bjs.com.au, 1 bjs.gov, 1 @@ -23447,7 +23241,6 @@ blacklightparty.be, 1 blacklist.support, 1 blacklodge.tk, 1 blacklotusaudio.com, 1 -blackmagic.sk, 1 blackmagick-candles.com, 1 blackmagickwitch.com, 1 blackmagicshaman.com, 1 @@ -23478,7 +23271,6 @@ blackroses.tk, 1 blacksamantha.tk, 1 blackscytheconsulting.com, 1 blackseals.net, 1 -blacksecurityamg.art, 1 blacksega.ga, 1 blacksentry.io, 1 blackshark.cf, 1 @@ -23593,7 +23385,6 @@ blatnice.online, 1 blatnice.tk, 1 blau-weiss-stolberg.de, 1 blaudev.es, 1 -blauequelle.de, 1 blauesschwarz.de, 0 blauglockenbaum.de, 1 blaumedia.com, 1 @@ -23614,7 +23405,6 @@ blazing.cz, 1 blazingsaddles.ga, 1 blazingsuns.tk, 1 blazor.nl, 1 -blbcleaningservices.com.au, 1 blbet365.com, 1 blblblblbl.fr, 0 blc.net.au, 1 @@ -23639,6 +23429,7 @@ blenderinsider.com, 1 blenderrecipereviews.com, 1 blendessencial.com, 1 blending.kr, 1 +blendle.com, 1 blendle.nl, 1 blenneros.net, 0 blero.tk, 1 @@ -23665,7 +23456,6 @@ blijfbij.com, 1 blijfbij.eu, 1 bliker.ga, 1 blikund.swedbank.se, 1 -blinblin.la, 1 blindaryproduction.tk, 1 blindenfreizeiten.de, 1 blindfold.cf, 1 @@ -23675,7 +23465,6 @@ blindpigandtheacorn.com, 1 blindscribblings.com, 1 blindsjoburg.com, 1 blingbusinessest.ga, 1 -blingdot.com, 1 blingsparkleshine.com, 1 blink-security.com, 1 blink.mortgage, 1 @@ -23693,7 +23482,6 @@ blippr.com, 1 blissbox.com, 1 blissdrive.com, 1 blissfulsmile.com, 1 -blissjoe.com, 1 blissplan.com, 1 blissso.com, 1 blissway.tk, 1 @@ -23774,7 +23562,6 @@ blodeuyn.com, 1 bloemenbesteld.nl, 1 bloemendaalsamen.nl, 1 bloemendal.me, 1 -blog-erotyczny.pl, 1 blog-gpt.pl, 1 blog-investimenti.it, 1 blog-ludmily.ml, 1 @@ -23819,7 +23606,6 @@ blogexpress.org, 1 blogext.com, 1 blogfeng.tk, 1 blogforprofit.tk, 1 -bloggeek.com.au, 1 bloggermobile.tk, 1 bloggermoney.ml, 1 bloggermumofthreeboys.com, 1 @@ -23848,7 +23634,6 @@ blognews.cf, 1 blognik.pl, 1 blognone.com, 1 blogofapps.com, 1 -blogoflegends.com, 1 blogom.at, 1 blogotomia.tk, 1 blogpark.tk, 1 @@ -23862,7 +23647,6 @@ blogssl.com, 0 blogstar.tk, 1 blogtechnologiczny.pl, 1 blogthedata.com, 1 -blogthetech.com, 1 blogtienao.com, 1 blogtroterzy.pl, 1 bloguerrilla.it, 1 @@ -23903,7 +23687,6 @@ bloombergtv.mn, 1 bloomfield-investment.com, 1 bloomingbit.io, 1 bloomingpink.in, 1 -bloomingskills.com, 1 bloomingtonelectionsil.gov, 1 bloomingtonil.gov, 1 bloomingwoods.tk, 1 @@ -24032,7 +23815,7 @@ blueskybrokerage.tk, 1 blueskycantina.com, 1 blueskycoverage.com, 1 blueskyinsure.com, 1 -blueskywebdesign.net, 0 +blueskywebdesign.net, 1 bluesnews.tk, 1 bluesoap.com.au, 1 bluespace.ng, 1 @@ -24083,7 +23866,7 @@ blur.io, 1 blurbhack.com, 1 blurringexistence.net, 1 blurt.cf, 1 -blushbymounika.com, 0 +blushbymounika.com, 1 blushingweb.tk, 1 blusmurf.net, 1 blutooth.ga, 1 @@ -24121,6 +23904,7 @@ bmotorsports.com, 1 bmr.ar, 1 bmriv.com, 1 bmros.com.ar, 1 +bmskibaru.com, 1 bmsupermercados.es, 1 bmw-motorradclub-seefeld.de, 1 bmwcolors.com, 1 @@ -24130,7 +23914,6 @@ bmwpartsdeal.com, 1 bmyjacks.cn, 0 bmzm.nl, 0 bnb-buddy.nl, 1 -bnb.direct, 1 bnbhome.com, 1 bnboy.cn, 1 bnbsinflatablehire.co.uk, 1 @@ -24297,7 +24080,6 @@ bodycare.cn, 1 bodyecology.com, 1 bodygearguide.com, 1 bodyhealthcare.tk, 1 -bodyheightweight.com, 1 bodymassage.cf, 1 bodymfr.com, 1 bodymod.tk, 1 @@ -24350,7 +24132,6 @@ bogtom.tk, 1 bogus.ltd, 1 bogwitch.tk, 1 bohaishibei.com, 1 -bohan.co, 1 bohemiantooers.ga, 1 bohramt.de, 1 bohyn.cz, 1 @@ -24366,7 +24147,6 @@ bointon.com, 1 boip.in, 1 boira.tk, 1 boisebirthdoula.com, 1 -boiseonlinemall.com, 1 boizeau.fr, 1 bojan.tk, 1 bojanowskiszkolka.pl, 1 @@ -24455,9 +24235,7 @@ bolzanoinfo.it, 1 boma.ml, 1 bomanufacture.com, 1 bombard.ga, 1 -bombasticthoughtexperiments.com, 1 bombe-lacrymogene.fr, 1 -bombeirostv.pt, 0 bomberosceuta.tk, 1 bomberus.de, 1 bombgame.tk, 1 @@ -24702,9 +24480,9 @@ boosinflatablegames.co.uk, 1 boosman.nu, 1 boosmanpoolservice.com, 1 boost-collective.com, 0 -boost.fyi, 1 boost.ink, 1 boostdesign.tk, 1 +boostermachine.com, 1 boostertonbusiness.com, 1 boostgame.win, 1 boostitco.com, 1 @@ -24924,7 +24702,6 @@ bouldercountyrecovery.gov, 1 bouldercountytreasurer.gov, 1 bouldercountyvotes.gov, 1 boulderdowntown.com, 1 -boulderlibrary.org, 1 boulderodm.gov, 1 bouldersheriff.gov, 1 boulderswap.com, 1 @@ -24988,7 +24765,6 @@ bouncycastlehirechelmsford.org.uk, 1 bouncycastlehirehull.co.uk, 1 bouncycastlehirelouth.co.uk, 1 bouncycastlehiremalvern.co.uk, 1 -bouncycastlehireoldham.co.uk, 1 bouncycastlehiresurrey.co.uk, 1 bouncycastlehirewinchester.co.uk, 1 bouncycastleman.co.uk, 1 @@ -25040,7 +24816,6 @@ bourse-aux-vetements.org, 0 bourse-puericulture.org, 0 bourseauxservices.com, 1 bourtalm.fr, 1 -boutique-pcland.fr, 1 boutique.be, 1 boutiquedecanetas.com.br, 1 boutiquedelhogar.cl, 1 @@ -25055,7 +24830,6 @@ bouw.live, 1 bouwbedrijfdesmet.be, 1 bouwbedrijfjstam.nl, 1 bouwbedrijfkorstanje.nl, 1 -bouwhuisman.nl, 1 bouwma.nl, 1 bouwplaatscheckin.nl, 1 bouwstenen.com, 1 @@ -25256,7 +25030,6 @@ brainstew.tk, 1 brainstormproductions.tk, 1 braintensive.com, 1 braintonus.tk, 1 -braintreegateway.com, 1 braintreevt.gov, 1 brainup-clinic.com, 1 brainvation.de, 1 @@ -25275,7 +25048,6 @@ bramburek.net, 1 bramfri.dk, 1 bramhallsamusements.com, 1 bramhopetails.uk, 1 -bramming-fysio.dk, 1 bramois.tk, 1 bramptonaikikai.tk, 1 bramptonscrapcarremoval.com, 1 @@ -25413,7 +25185,6 @@ bratteng.me, 1 bratteng.solutions, 1 brattleboro.gov, 1 bratunaconline.tk, 1 -bratvanov.com, 1 brau-ingenieur.de, 1 braudoktor.de, 1 brauer-augenoptik.de, 1 @@ -25475,7 +25246,6 @@ brazzersnetwork.com, 1 brazzersvod.com, 1 brb.city, 1 brba.nl, 1 -brbcbd.com, 1 brbt.eu, 1 brbt.net, 1 brc.fj.cn, 1 @@ -25498,7 +25268,6 @@ breakfastcafe.tk, 1 breakfree.tk, 1 breakingdeal.fr, 1 breakingnewskenya.tk, 1 -breakingtech.fr, 1 breakingthesilence.org.il, 1 breakinoutpr.com, 1 breakmaps.net, 1 @@ -25554,7 +25323,6 @@ breizh.pm, 1 breizhetho.com, 1 breizhpuffy.org, 1 breket.ml, 1 -brelahotelberulia.com, 1 brelin.tk, 1 brellich.eu, 1 breloque.com, 1 @@ -25722,7 +25490,6 @@ bridgesinbelize.org, 1 bridgethailand28chidlom.com, 1 bridgetmcauliffe.ie, 1 bridgetonmo.gov, 1 -bridgetosupport.org.uk, 1 bridgetownrecords.tk, 1 bridgetroll.org, 1 bridgewaterma.gov, 1 @@ -25826,7 +25593,6 @@ brisignshop.com.au, 1 brisp.nl, 1 brisq.design, 1 bristebein.com, 1 -bristol.se, 1 bristolandwestonsuperbounce.com, 1 bristolctwatersewer.gov, 1 bristolmoneyman.com, 1 @@ -25875,7 +25641,6 @@ brittainconsulting.ca, 1 brittany.com.ph, 1 brittanyferriesnewsroom.com, 1 brittas-world.tk, 1 -britton-photography.com, 1 brivawn.com, 1 brix-central.tk, 1 brixxonline.nl, 1 @@ -25957,7 +25722,6 @@ brokenrevolution.com, 1 brokenships.com, 1 brokensword.tk, 1 brokentoaster.tk, 1 -broker.vn, 1 broker4u.com, 1 brokerdecredite.ro, 1 brokerlink.ca, 1 @@ -26062,7 +25826,6 @@ brpmanuals.com, 1 brq.com, 1 brr.fyi, 1 brrr.fr, 1 -brsociety.club, 1 brsvcs.in, 1 brtve.tk, 1 bru6.de, 1 @@ -26177,7 +25940,6 @@ brztec.com, 1 bs-facilityservice.ch, 0 bs-network.net, 1 bs-security.com, 1 -bs.gl, 1 bs.sb, 1 bs.to, 1 bs2k.me, 1 @@ -26298,7 +26060,6 @@ btln.de, 1 btmic.ro, 1 btnissanparts.com, 1 btool.eu.org, 1 -btopc.jp, 1 btorrent.xyz, 1 btrade.io, 1 btrans.by, 1 @@ -26337,7 +26098,6 @@ buai.ml, 1 buai.tk, 1 buatcvonline.com, 1 buayacorp.com, 1 -bub.cat, 1 bubalova.com, 1 bubba.cc, 1 bubbelwafel.nl, 1 @@ -26386,7 +26146,6 @@ buckfast.tk, 1 buckglobal.com, 1 bucklinmo.gov, 1 buckmans.com, 1 -bucknerrealtors.com, 1 buckscounty.gov, 1 bucksfund.com, 1 buckthorn.ml, 1 @@ -26429,7 +26188,6 @@ budgetimize.com, 1 budgetlob.gov, 1 budgetlovers.nl, 1 budgetrf.tk, 1 -budgetscan.nl, 1 budidayatani.com, 1 budilnik.ml, 1 budofjoy.com, 1 @@ -26511,6 +26269,7 @@ buildbackbetter.gov, 1 buildbytes.com, 1 buildconcierge.ga, 1 buildcor.com.au, 1 +builddesygner.xyz, 1 buildersdiscount.net, 1 buildersofthesilentcities.tk, 1 buildfood.com, 1 @@ -26649,7 +26408,6 @@ bunaken.tk, 1 bunbun.be, 1 bunburydad.tk, 1 buncombecounty.org, 1 -bund-von-theramore.de, 1 bundesamtsozialesicherung.de, 1 bundesanzeieger.com, 1 bundespolizei-forum.de, 1 @@ -26668,7 +26426,6 @@ bunker307.tk, 1 bunkerhilltx.gov, 1 bunkyo-life.com, 1 bunlarateist.space, 1 -bunniesoflasvegas.com, 0 bunny-rabbits.com, 1 bunny.tk, 1 bunnybloythost.com, 1 @@ -26750,14 +26507,12 @@ burlapsac.ca, 1 burlesonconstructioninc.com, 1 burlesontx.gov, 1 burling.cz, 1 -burlingameparentsclub.org, 1 burma-we-care.tk, 1 burmalin.ml, 1 burmania.tk, 1 burmeister-gmbh.de, 1 burmesecatscare.com, 1 burmesepythonpet.com, 1 -burnabyhighstar.com, 1 burncorp.org, 1 burndyt3.com, 1 burnedyouers.ga, 1 @@ -26860,7 +26615,7 @@ business-secreti.cf, 1 business-secreti.ga, 1 business-secreti.gq, 1 business-secreti.tk, 1 -business-swiss.ch, 1 +business-swiss.ch, 0 business.facebook.com, 0 business.gov, 0 business.medbank.com.mt, 1 @@ -27018,7 +26773,6 @@ businessleadsworld.com, 1 businesslegacy.ga, 1 businessless.ga, 1 businesslion.ga, 1 -businesslistingd.com, 1 businesslite.pl, 1 businessloanconnection.org, 0 businessloco.ga, 1 @@ -27136,7 +26890,6 @@ buster.me.uk, 1 bustickets.ph, 1 bustillodeloro.tk, 1 bustimes.org, 1 -bustingbrackets.com, 1 bustmold.com, 1 bustmovesest.ga, 1 busty-milf.net, 1 @@ -27272,7 +27025,6 @@ buyessays.net, 1 buyessayscheap.com, 1 buyfluoxetineonline.gq, 1 buyharpoon.com, 1 -buyhouse.com.ua, 1 buyhydrochlorothiazide.ml, 1 buyingstatus.com, 1 buyingtvsers.ga, 1 @@ -27346,8 +27098,6 @@ buzzeditora.com.br, 1 buzzenginegroup.com, 1 buzzfeast.com, 1 buzzhub.tk, 1 -buzzkuri.co.jp, 1 -buzzkuri.com, 1 buzzman.ga, 1 buzzpost.tk, 1 buzzprint.it, 1 @@ -27437,7 +27187,6 @@ byanabelen.com, 1 byange.pro, 1 byanjushka.com, 0 byatte.com, 1 -bybet365.com, 1 byblog.tk, 1 bybym.ml, 1 bycafeonline.com, 1 @@ -27754,7 +27503,6 @@ cactus-search.com, 1 cactusarium.tk, 1 cactusdentrepair.com, 1 cactusgreen.com.br, 1 -cactuskiev.com.ua, 0 cactuspedia.cf, 1 cactuspedia.ga, 1 cactuspedia.gq, 1 @@ -27767,7 +27515,6 @@ cadastroloteamento.com.br, 1 cadaunoescomoes.tk, 1 cadaver.tk, 1 cadavre-exquis-musical.tk, 1 -cadcc.cl, 0 cadconcrete.ca, 1 cadcrowd.com, 1 caddo.gov, 1 @@ -27805,7 +27552,6 @@ caduceuslane.com, 1 cadusilva.com, 1 caduta-capelli.tk, 1 cadvending.ch, 1 -cadventura.com, 1 cadwalk.de, 1 cady-jennifer.tk, 1 cadynce.com, 1 @@ -27914,6 +27660,7 @@ cainesjannif.com, 1 cainiao.moe, 1 caio.moe, 1 caipai.fm, 1 +caipiao.com.cn, 1 caipsnotes.com, 1 caiqu.com, 1 caiqueparrot.com, 1 @@ -27924,7 +27671,6 @@ cairokebab.com, 1 cairui.com, 1 cais.de, 1 caise.tk, 1 -caishikou.com, 1 caissefrancaisedefinancementlocal.fr, 1 caivps.com, 1 caiwenjian.xyz, 1 @@ -28155,7 +27901,6 @@ calverttx.gov, 1 calvin.my, 1 calvusconsultancy.nl, 1 calystral.com, 1 -calyxengineers.com, 1 calyxinstitute.org, 1 calzadonline1.com, 1 camago.dk, 1 @@ -28173,7 +27918,6 @@ camaronazo.com, 1 camarzanadetera.tk, 1 camashop.de, 1 camastowncar.com, 1 -camazoon.com, 1 cambados.tk, 1 cambait.tk, 1 camberford.com, 1 @@ -28186,9 +27930,7 @@ cambioeuro.it, 1 cambiowatch.ch, 0 cambodiainfo.tk, 1 cambopost.tk, 1 -camboysuniverse.com, 1 cambramanresa.cat, 1 -cambriacoveapartments.com, 1 cambridge-security.com, 1 cambridgeanalytica.cz, 1 cambridgeanalytica.net, 1 @@ -28216,7 +27958,6 @@ cameo-membership.uk, 0 cameo.ee, 1 cameos.bo, 1 camera-podvod.tk, 1 -camerahainam.net, 1 camerahire.com.au, 1 cameraman.tk, 1 cameramark.nl, 1 @@ -28359,7 +28100,6 @@ camslurp.org, 1 camsupplier.ml, 1 camsupplierers.ga, 1 camtor.ml, 1 -camtu.com, 1 camuri.com, 1 camview.nz, 1 camworld.com, 1 @@ -28492,7 +28232,6 @@ canecorsodogguide.com, 1 canek.es, 0 canelaimobiliaria.com.br, 1 canellayachts.com, 1 -caneswarning.com, 1 canetelareal.tk, 1 canfazz.com, 1 canfield.gov, 1 @@ -28506,7 +28245,7 @@ cangurin.com, 1 canhas.report, 1 canhazip.com, 1 canhq.tk, 1 -canhtuaone.com, 1 +canhtuaone.com, 0 cani-compostelle.fr, 1 canibrowse.net, 1 canidelite-toulouse.fr, 1 @@ -28633,9 +28372,7 @@ capa.digital, 1 capacityproject.org, 1 capari.co, 1 caparicasurfing.com, 1 -caparicasurflessons.com, 1 caparis.nl, 1 -capctury.com, 1 capeannpediatrics.com, 1 capebretonpiper.com, 1 capecanaveral.gov, 1 @@ -28739,7 +28476,6 @@ captain-droid.com, 1 captainark.net, 1 captainchef.net, 1 captainclaw.tk, 1 -captainclinic.com.tw, 1 captainjanks.tk, 1 captainratnesh.tk, 1 captainsavage.lt, 1 @@ -28756,7 +28492,6 @@ capturelead.tk, 1 capturis.com, 1 capuchinox.com, 1 caputo.com, 1 -caputodesign.com, 1 capybaraowner.com, 1 car-alarm.tk, 1 car-clean-nord.de, 1 @@ -28773,6 +28508,7 @@ car-touch.tk, 1 car.info, 1 car24portal.de, 1 car3d.gq, 1 +car4rent.fr, 1 cara-bisnis.tk, 1 cara-mudah-hidup-sehat.tk, 1 carabin.cf, 1 @@ -28806,7 +28542,6 @@ carballeira.tk, 1 carbaza.ru, 1 carberra.io, 1 carberra.xyz, 1 -carbeso.co.network, 1 carbeso.site, 1 carbgrent.com, 1 carbon-project.org, 1 @@ -28858,7 +28593,6 @@ cardingforum.co, 1 cardington.tk, 1 cardinus.com, 1 cardioagainstcancer.nl, 1 -cardioai.com, 1 cardiology.academy, 1 cardiology.gq, 1 cardios.srv.br, 1 @@ -28915,7 +28649,6 @@ careersinpsychology.org, 1 careertransformed.com, 1 carefix.pro, 1 carefree-creative.com, 1 -carefu.link, 1 carefy.ph, 1 carehomejob.co.uk, 1 careium.co.uk, 1 @@ -28959,7 +28692,6 @@ cargotransinfo.ru, 1 carhunters.cz, 1 caribank.org, 1 caribbeancinemas.com, 1 -caribbeanexams.com, 1 caribbeansolutionslab.com, 1 caribeeficiente.com.co, 1 caribuku.tk, 1 @@ -28991,7 +28723,6 @@ carl.land, 1 carlansell.co.uk, 1 carlaschiavone.tk, 1 carlasecrets.com, 1 -carlbwade.us, 1 carlcsaposs.com, 1 carlelo.com, 1 carlesribot.tk, 1 @@ -29043,7 +28774,6 @@ carlosjeurissen.nl, 1 carlospiga.fr, 1 carlosvelezmarketing.com, 1 carlot-j.com, 1 -carlovanwyk.com, 1 carls-fallout-4-guide.com, 1 carlsbadluxuryhotels.ga, 1 carlshamnbageri.com, 1 @@ -29143,7 +28873,6 @@ carpetcleaning-cypress.com, 1 carpetcleaningtomball.com, 1 carpetcobblers.ga, 1 carpio.tk, 1 -carplanet.ae, 1 carplus.es, 1 carplus.net, 1 carportus.com, 1 @@ -29416,7 +29145,6 @@ cashlink.de, 0 cashlogic.ch, 0 cashmanagerbg.com, 1 cashmaxtexas.com, 1 -cashola.com.br, 1 cashortrade.org, 1 cashper.de, 1 cashplk.com, 1 @@ -29449,7 +29177,6 @@ casinobonuscodes365.com, 1 casinobuyersguide.com, 1 casinocashflow.ru, 1 casinocashflow.su, 1 -casinocashflow.xyz, 1 casinochecking.com, 0 casinocity.africa, 1 casinocity.ag, 1 @@ -29595,7 +29322,6 @@ casinotopplistan.com, 1 casinotopplisten.com, 1 casinotopsonline.com, 1 casinoua.club, 1 -casinovalley.ca, 1 casinovendors.com, 1 casio-caisses-enregistreuses.fr, 1 casio.bg, 0 @@ -29751,7 +29477,6 @@ catego.info, 1 catenacondos.com, 1 caterbing.com, 1 catering-fantasia.tk, 1 -catering-xanadu.cz, 1 catfish.gq, 1 catfishworld.tk, 1 catflap.org, 1 @@ -29763,7 +29488,6 @@ catfun-foto.de, 1 catgarden.tk, 1 catgirl.center, 1 catgirl.cloud, 1 -catgirl.land, 1 catharinalingeries.com.br, 1 catharinaparkieten.tk, 1 catharinaziekenhuis.nl, 1 @@ -29805,6 +29529,7 @@ catl.st, 1 catland.club, 1 catlettsburgky.gov, 1 catlicking.com, 1 +catlive.com, 1 catlovingcare.com, 1 catmash.tk, 0 catmatchers.org, 1 @@ -29870,7 +29595,6 @@ cavecreekaz.gov, 1 cavediverharry.com, 1 cavemax.com, 1 cavenderhill.com, 1 -cavialand.de, 0 caviarmultimedia.com, 1 cavinesswealth.com, 1 cavisson.com, 1 @@ -29977,7 +29701,9 @@ cc9728.co, 1 cc98.eu.org, 1 cca.ky, 1 ccaa.gg, 1 +ccaag.link, 1 ccaag.me, 1 +ccaag.mx, 1 ccaag.net, 1 ccaag.us, 0 ccac.gov, 1 @@ -29989,6 +29715,7 @@ ccarps.com, 1 ccatpracticetest.com, 1 ccatpracticetests.com, 1 ccattestprep.com, 1 +ccautomobil.de, 1 ccayearbook.com, 1 ccb.gov, 1 ccbin.tk, 1 @@ -30012,7 +29739,6 @@ ccdiscussion.com, 1 ccdlab.ooo, 1 ccdnederland.org, 1 ccdohnj.gov, 1 -ccea.fi, 1 cceifame.com, 1 ccelectricaldrafting.ca, 1 cceputnam360.com, 1 @@ -30021,7 +29747,6 @@ ccgx.de, 1 cchat.de, 1 cchim.ca, 1 cciiblog.tk, 1 -ccimindia.org, 1 cciofficial.com, 1 cck-law.com, 1 ccl776o.tk, 0 @@ -30082,7 +29807,6 @@ cdasiaonline.com, 0 cdasphalt.com, 1 cdavis.xyz, 1 cdawoerden.org, 1 -cdbf.ch, 0 cdbp.pro, 1 cdbtech.com, 1 cdc-security.com, 1 @@ -30111,7 +29835,6 @@ cdkpatterns.com, 1 cdkrot.me, 1 cdlandb1.com, 1 cdlaserena.tk, 1 -cdlgoods.com, 1 cdlinares.tk, 1 cdm.guru, 1 cdmdisinfestazioni.it, 1 @@ -30529,6 +30252,7 @@ cert.se, 1 certain.com, 0 certainbiz-news.tk, 1 certaintelligence.com, 1 +certaireland.ie, 1 certasenergy.co.uk, 1 certbus.com, 1 certcenter.com, 0 @@ -30543,6 +30267,7 @@ certificateoflogistics.ga, 1 certificateofpurchasing.ga, 1 certificatespending.com, 1 certificatetools.com, 0 +certificationacademy.com, 1 certificationmap.com, 1 certificato-prevenzione-incendi.it, 1 certificazione.it, 1 @@ -30581,6 +30306,7 @@ cesarecirugiaplastica.com, 1 cesarfotos.com.br, 1 cesarparedespacora.com, 1 cesarpinto.com, 1 +cesarteixeiraimoveis.com.br, 1 cesboard.com, 1 cescfortuny.tk, 1 cesclam.org, 1 @@ -30723,7 +30449,6 @@ ch-investor.tk, 1 ch-laborit.fr, 1 ch-poitiers.fr, 1 ch-stjunien.fr, 1 -ch-y.org, 1 ch.bzh, 1 ch.search.yahoo.com, 0 ch225.com, 1 @@ -30814,7 +30539,6 @@ chamonixcamera.cn, 1 champagne-guilleminot.fr, 1 champagneandcoconuts.com, 1 champagneandcoffeestains.com, 0 -champagneandshade.com, 1 champaigncountyclerkil.gov, 1 champaigncountyil.gov, 1 champdogs.co.uk, 1 @@ -30931,7 +30655,6 @@ chargify.com, 1 chariots.tk, 1 charisma.ai, 1 charismadesign.ie, 1 -charitocracy.org, 1 charity.cz, 1 chariz.com, 1 charl.eu, 1 @@ -31004,7 +30727,6 @@ charonsecurity.com, 1 charpy.cc, 1 charqawi.tk, 1 charset.org, 1 -charta-digitale-vernetzung.de, 1 chartafzar.com, 1 chartbox.tk, 1 charteredsurveyorinlondon.co.uk, 1 @@ -31030,7 +30752,6 @@ chaskamn.gov, 1 chaskapolice.gov, 1 chasoslov.tk, 1 chasse-au-tresor.eu, 1 -chasse-au-tresor.info, 1 chasse-maree.com, 1 chasseurdetruites.com, 1 chastitybelts.tk, 1 @@ -31071,6 +30792,7 @@ chateaudestrainchamps.com, 0 chateaulabrede.com, 1 chateaulacordeliere.fr, 1 chatedit.org.uk, 1 +chatelaine.com, 1 chateroids.com, 1 chatforskning.no, 1 chatfreespeech.com, 1 @@ -31143,7 +30865,6 @@ chcheaptech.nz, 1 chcisezeptat.cz, 1 chckr.co, 1 chcoc.gov, 1 -chcsct.com, 1 chcuscojungle.com, 1 chda.fr, 1 chdg.gq, 1 @@ -31259,8 +30980,6 @@ checkme.ml, 1 checkmedia.org, 1 checkmin.cf, 1 checkmk.com, 1 -checkmyessay.com, 1 -checkmyessays.com, 1 checkmyhttps.net, 1 checkmypsoriasis.com, 1 checknetworks.com.au, 1 @@ -31283,14 +31002,12 @@ checkyourmath.com, 1 checkyourprivilege.org, 1 checkyourreps.org, 1 checookies.com, 1 -checos.co.uk, 1 cheddarpayments.com, 1 cheekboss.com, 1 cheekycharliessoftplay.co.uk, 1 cheela.org, 1 cheem.co.uk, 1 cheems.rip, 1 -cheerios.com, 1 cheers.bio, 1 cheese-storeroom.tk, 1 cheeseemergency.co.uk, 1 @@ -31462,7 +31179,6 @@ cheztitine.tk, 1 chfr.search.yahoo.com, 0 chg.codes, 1 chhlayban.tk, 1 -chhlin.com, 0 chhory.com, 1 chhy.at, 1 chialab.eu, 1 @@ -31534,7 +31250,6 @@ chiffrer.info, 1 chifumi.net, 1 chihuahuaalinstante.com, 1 chijb.cc, 1 -chika.kr, 0 chikahaku1001vr.jp, 1 chikan-beacon.net, 1 chikenweb.jp, 1 @@ -31796,7 +31511,6 @@ chooserealleather.cn, 1 choosetech.com.br, 1 choosevalley.co.uk, 1 chooseyourdesinty.tk, 1 -chopchat.com, 1 chopnotch.com, 1 chopper-parts.ru, 1 chopperdesign.com, 1 @@ -31810,6 +31524,7 @@ chorkley.co.uk, 1 chorkley.com, 1 chorkley.me, 1 chorkley.uk, 1 +chorleycaninesolutions.co.uk, 1 chornobyl.tk, 1 chorpinkpoemps.de, 1 choruru.jp, 1 @@ -31911,6 +31626,7 @@ christianconcepts.cf, 1 christianconcepts.ga, 1 christianconcepts.gq, 1 christiancountyil.gov, 1 +christiandiorsneakers.shop, 1 christiandiscourse.net, 1 christiangaro.com, 1 christiangaro.email, 1 @@ -32109,7 +31825,6 @@ chuongle.com, 1 chupacabra-drift.pl, 1 chupadelfrasco.com, 1 chupanhcotrang.com, 1 -chupanhdao.art, 1 chuppa.com.au, 1 chur-arosa-bahn.de, 1 chur-arosa-bahn.nl, 1 @@ -32170,7 +31885,6 @@ cialisfreetrial.ga, 1 cialismarketim.net, 1 cialismarketing.net, 1 cialisonlinee.com, 0 -cialisrmed.com, 1 cialisusapills.com, 1 cialisvtr.com, 1 cialisworld.net, 1 @@ -32202,7 +31916,6 @@ ciclista.roma.it, 1 ciclodekrebs.com, 1 ciclodelcarbono.com, 1 ciclohidrologico.com, 1 -cicybell.com, 1 cidbot.com, 1 cidcca.com, 1 cidersus.com.ec, 1 @@ -32221,7 +31934,6 @@ cielo-thefilm.com, 1 cienciasempresariais.pt, 1 cienegaspa.com, 1 cierreperimetral.com, 1 -cifapme.net, 1 cifop-numerique.fr, 1 ciftkabincikmaparca.com.tr, 1 ciftkabinyedekparca.com.tr, 1 @@ -32258,7 +31970,6 @@ cima-idf.fr, 1 cimaroom.com, 1 cimbalino.org, 1 cimballa.com, 1 -cimencamp.com.br, 1 cimfax.com, 1 cimtools.net, 1 cin.net.au, 1 @@ -32319,10 +32030,8 @@ cinnamon.bot, 1 cinnamon.gq, 1 cinnamonsnail.com, 1 cinnamonspiceandeverythingnice.com, 1 -cinnamontoastcrunch.com, 1 cinq-elements.com, 0 cinq-elements.net, 1 -cinqdecembre.com, 1 cinquecentoclubholland.tk, 1 cinqueportsvets.co.uk, 1 cins.rs, 1 @@ -32336,7 +32045,6 @@ cinteo.com, 1 cinthia.tk, 1 cio-spirit.de, 1 cio.gov, 1 -ciochina.com, 1 cionir.fr, 1 cioscloud.com, 1 cioudways.pro, 1 @@ -32786,7 +32494,6 @@ claimittexas.gov, 1 claimnote.com, 1 claimpilot.com, 1 claimspharmacy.services, 1 -claireandjamie.com, 1 clairebabai.nl, 1 clairegold.com, 1 clairelefort-architectes.com, 1 @@ -32982,7 +32689,6 @@ cleanenergy.gov, 1 cleanenergywire.org, 1 cleaner-en.com, 1 cleaner.tk, 1 -cleanerstool.com, 1 cleanertoday.com, 1 cleanertool.co.uk, 1 cleanfacesest.ga, 1 @@ -33016,6 +32722,7 @@ clearbreezesecuritydoors.com.au, 1 clearchatsandbox.com, 1 clearcreekcountyco.gov, 1 clearcreekcountydronepilot.com, 1 +cleared.io, 1 clearer.cloud, 1 clearfieldcountypa.gov, 1 clearfieldpa.gov, 1 @@ -33068,10 +32775,8 @@ clendeninwv.gov, 1 cleo.com, 1 cleocinonline.gq, 1 cleova.com, 1 -clep.cn, 1 cles-asso.fr, 1 cles.jp, 1 -clesurporte.be, 1 clevelandheights.gov, 1 clevelandokla.com, 1 clever-datenschutz.de, 1 @@ -33153,7 +32858,6 @@ clickdefense.io, 1 clickdocs.ca, 1 clickenergy.com.au, 1 clickfinger.net, 1 -clickforspeed.com, 1 clickforum.cf, 1 clickfreescore.com, 1 clickhelp.com, 1 @@ -33179,7 +32883,6 @@ clickspeedtest.net, 1 clickstart.ml, 1 clicktenisdemesa.com.br, 0 clicktest.cf, 1 -clickthebucket.com, 1 clicktheright.top, 1 clicktodiscount.com, 1 clicktolinkb.gq, 1 @@ -33242,7 +32945,6 @@ clinic-manager.academy, 1 clinic-narcom.ru, 1 clinica.zapto.org, 1 clinicaarques.es, 1 -clinicadeesteticacontagem.com.br, 1 clinicadentalados.com, 1 clinicadentalayomunoz.com, 1 clinicadentalhome.com, 1 @@ -33466,7 +33168,6 @@ cloudoptimizedsmb.com, 1 cloudoptimus.com, 1 cloudpagesforwork.com, 1 cloudpengu.in, 1 -cloudpipes.com, 1 cloudplan.nl, 1 cloudpole.de, 1 cloudpublic.pro, 1 @@ -33529,7 +33230,6 @@ cloudwayc.com, 1 cloudwayds.com, 1 cloudwayq.com, 1 cloudways.cm, 1 -cloudways.pro, 1 cloudwebservices.nl, 1 cloudwellmarketing.com, 1 cloudwithlightning.net, 1 @@ -33538,7 +33238,7 @@ clouglobal.com, 0 cloutcloset.ga, 1 clouvways.com, 1 clouwways.com, 1 -clouz.de, 0 +clouz.de, 1 clover-sendai.com, 1 cloverleafmoving.com, 1 cloversonoma.com, 1 @@ -33567,7 +33267,6 @@ clsoft.ch, 1 clu-in.org, 1 cluadmin.de, 1 club-adulti.ro, 1 -club-climate.com, 1 club-creole.com, 1 club-dieta.ru, 1 club-dresses.cf, 1 @@ -33632,6 +33331,7 @@ clubfunday.ga, 1 clubgalileo.com.ec, 1 clubgenesis.tk, 1 clubgls.com, 1 +clubhouseohio.org, 1 clubhousetownhomes.com, 0 clubic.com, 1 clubinhodobaby.com.br, 1 @@ -33763,7 +33463,6 @@ cmtportal.co.uk, 1 cmtso.com, 1 cmv.gr, 1 cmveraopersonalizados.com.br, 1 -cmw.net, 1 cmweb.xyz, 1 cmweller.com, 1 cn.search.yahoo.com, 0 @@ -33774,7 +33473,6 @@ cna.com.br, 1 cnabogota.tk, 1 cnairgroupstore.com, 1 cnam-idf.fr, 1 -cnaprograms.online, 1 cnatraining.network, 1 cnb.ie, 1 cnb1901.com, 1 @@ -33792,7 +33490,6 @@ cnews.ru, 1 cnexchange.com, 1 cnfei.com, 1 cnfree.xyz, 1 -cngf.com, 1 cngvp.org, 1 cni-certing.it, 1 cni.net.id, 1 @@ -33804,7 +33501,6 @@ cnlic.com, 1 cnlongtex.com, 1 cnmi.gov, 1 cnmilaw.gov, 1 -cnnc.jp, 1 cnnet.in, 1 cnns.co.uk, 1 cnnumerique.fr, 1 @@ -33854,7 +33550,7 @@ coalmen.ga, 1 coalpointcottage.com, 1 coalvillebasketball.tk, 1 coaojarlos.tk, 1 -coasa.me, 0 +coasa.me, 1 coassessment.com, 1 coast.tk, 1 coastalmotorcoach.com, 1 @@ -33900,7 +33596,6 @@ cochin-brahma.tk, 1 cochise.gov, 1 cochranwriting.com, 1 cocina.guru, 1 -cocinaconalegria.com, 1 cocinaconalegria.shop, 1 cocinandoenelsalnes.com, 1 cocinasazahara.tk, 1 @@ -33941,14 +33636,12 @@ cocoscastles.co.uk, 1 cocosunbeds.co.uk, 1 cocounty.org, 1 cocowine.com, 1 -cocquyt-usedcars.be, 1 cocresa.tk, 1 cocservice.top, 1 cocula.net, 1 cocyou.ooo, 1 cocytus.services, 1 cod-ggw.ml, 1 -cod4mw.fr, 1 cod88.cc, 1 coda-erfurt.de, 1 coda.io, 1 @@ -34042,7 +33735,6 @@ codeproxy.net, 1 codepwn.win, 1 codercross.com, 1 codered.sh, 1 -codereduction.promo, 1 coderema.de, 1 coderema.eu, 1 coderescue.com, 1 @@ -34088,7 +33780,6 @@ codex.online, 1 codezenith.com, 1 codezeno.com.au, 1 codific.com, 1 -codific.eu, 1 codifique.tk, 1 codigodelbonusbet365.com, 1 codigoexactodearea.com, 1 @@ -34140,6 +33831,7 @@ coffeebean.cf, 1 coffeebeanstudios.tk, 1 coffeebiz.co.nz, 1 coffeebreak.bg, 1 +coffeechi.ir, 1 coffeeciel.com, 1 coffeeciel.com.tr, 1 coffeeholic.tk, 1 @@ -34235,7 +33927,6 @@ coinsmat.com, 1 coinsuggest.com, 1 cointosh.jp, 1 coinwind.vip, 1 -coinworld.tw, 1 coinx.pro, 1 coiracom.net, 1 cojam.ru, 1 @@ -34291,7 +33982,6 @@ colectivo.tk, 1 colectivomackandal.tk, 1 colectivovictorjara.tk, 1 coleg.gov, 1 -colegioalemanmcbo.com, 1 colegiocuauhtzin.com.mx, 1 colegiojaimebalmes.es, 1 colegiorecanto.com, 1 @@ -34310,6 +34000,7 @@ coligo.fr, 1 colinasdog.com.br, 1 colincogle.name, 1 colinespinas.com, 0 +colinhouston.com, 1 colink.fi, 1 colinobrien.online, 1 colinsnaith.co.uk, 1 @@ -34330,6 +34021,7 @@ collabora.uk, 0 collaboracloudsuite.com, 0 collaboraoffice.co.uk, 1 collaboraoffice.com, 1 +collaboration.cafe, 1 collaborativedrug.com, 0 collaborativehealthpsychology.com, 1 collabornation.net, 1 @@ -34437,7 +34129,6 @@ colombiajobstoday.com, 1 colombian.cam, 1 colombianas.webcam, 1 colombianbride.net, 1 -colombiansuppliers.com, 1 colombyinai.ga, 1 coloniae.de, 1 colonialbeachva.gov, 1 @@ -34447,7 +34138,7 @@ colonize.africa, 1 coloquiocentrooeste.mat.br, 1 color-mixer.tk, 1 color01.net, 1 -colorado-locksmith.com, 0 +colorado-locksmith.com, 1 coloradobluebook.gov, 1 coloradochildrep.gov, 1 coloradoer.tk, 1 @@ -34538,7 +34229,6 @@ comarch.pl, 1 comarch.ru, 1 comarkinstruments.cloud, 1 comarkinstruments.net, 1 -comasenavi.com, 1 comasystem.dk, 1 combatix.io, 1 combattrecellulite.com, 1 @@ -34614,7 +34304,6 @@ comfy-court.com, 1 comfy.cafe, 0 comfyliving.net, 1 comhack.com, 1 -comic-conmuseum.org, 1 comical.ml, 1 comicbooktreasury.com, 1 comicborgs.com, 1 @@ -34701,7 +34390,6 @@ commonsubdoc.io, 1 commonvoice.tk, 1 commonwarest.ga, 1 commonwealthsl.com, 1 -commplace.pl, 1 communalconsulting.org, 1 communebouteille.org, 1 communi.biz, 1 @@ -34833,7 +34521,6 @@ complexart.ro, 1 complexcoral.ro, 1 complexorganization.com, 1 complexsystems.fail, 1 -compliance-management.ch, 0 compliance-risk.com, 1 compliance-systeme.de, 1 compliancebox.co, 1 @@ -35023,7 +34710,6 @@ condecom.com.br, 1 condemnity.net, 1 condenast.co.uk, 1 condensacion.com, 1 -condictor.pl, 1 condignum.com, 1 condit.cf, 1 condit.gq, 1 @@ -35064,7 +34750,6 @@ confer.ch, 1 conference-expert.eu, 1 conference.cafe, 1 conference.dnsfor.me, 1 -conferencehall.com.ua, 1 conferencemanager.ch, 1 conferencemanager.co.uk, 1 conferencemanager.de, 1 @@ -35081,12 +34766,11 @@ conferencemanagerpro.com, 1 conferencemonkey.org, 1 conferenciaepiscopal.es, 1 confettidogs.com, 1 -confia.io, 1 confianza.pe, 1 confidentielsn.com, 1 confidentliving.gq, 1 confidentliving.tk, 1 -config.schokokeks.org, 0 +config.schokokeks.org, 1 configcat.com, 1 configpoint.group, 1 configserverfirewall.com, 1 @@ -35096,7 +34780,6 @@ configwizard.xyz, 1 confio.gmbh, 0 confio.pt, 1 confirmit.ca, 1 -confirmit.com, 1 confirmit.com.au, 1 confirmit.de, 1 confiscate.ga, 1 @@ -35105,7 +34788,6 @@ confiwall.de, 1 conflictspecialist.com, 1 conflidentliving.cf, 1 confluent.cloud, 1 -conformal.com, 0 conformat.com, 1 conformax.com.br, 1 conformist.jp, 1 @@ -35156,7 +34838,6 @@ connectavid.com, 1 connectedbynexus.com, 1 connectedinvestors.com, 1 connectedmind.me, 1 -connectenefit.ee, 1 connectfss.com, 1 connecticare.com, 1 connecticutnet.tk, 1 @@ -35228,7 +34909,6 @@ consciente.ch, 1 consciente.ngo, 1 consciente.ong, 1 conscientia.com.mx, 1 -consec.systems, 0 consegnafioridomicilio.net, 1 consegne.it, 1 conseildesarts.ca, 1 @@ -35262,7 +34942,6 @@ consolemania.com, 1 consoletech.tk, 1 consoleuniverse.tk, 1 consolezone.tk, 1 -consommateuraverti.com, 1 consommation-locale.fr, 1 consonare.de, 1 consoom.soy, 1 @@ -35418,6 +35097,7 @@ contrastsecurity.com, 1 contratderatisation.com, 1 contratti.it, 1 contrebande-metz.fr, 1 +contreraslandscaping.com, 1 contributopia.org, 1 contributor.google.com, 1 contro.cf, 1 @@ -35425,7 +35105,6 @@ contro.ga, 1 contro.gq, 1 contro.ml, 1 contro.tk, 1 -control.cn, 1 controlautocom.com.br, 1 controlbooth.com, 1 controle-exportations.fr, 1 @@ -35462,7 +35141,6 @@ converser.tk, 1 conversionsciences.com, 1 convert.im, 1 convert.io, 1 -convert.zone, 1 convert2sql.com, 1 converter.ml, 1 convertire-documenti.it, 1 @@ -35543,7 +35221,6 @@ coolexpo.com, 1 coolfilm.cf, 1 coolgeography.co.uk, 1 coolgifs.de, 1 -coolhvac.pro, 1 coolink.pub, 1 cooljs.me, 1 cooljv.com, 1 @@ -35737,7 +35414,6 @@ corisu.co, 1 corkcityfc.tk, 1 corkedwinebar.com, 1 corky.tk, 1 -corl3ss.com, 1 corleoncatering.com, 1 corlija.com, 1 corlinde.nl, 1 @@ -35763,7 +35439,6 @@ cornertoyshop.ga, 1 corniche.com, 1 corningcu.org, 1 cornips.nl, 1 -cornishcamels.com, 0 cornitek.tk, 1 cornmachine.com, 1 cornodo.com, 1 @@ -35779,7 +35454,6 @@ corona-stats.online, 0 coronacheck.nl, 1 coronasafe.network, 1 coronastationphotography.com, 1 -coronatestalmere.nl, 1 coronavaccinatiedatum.nl, 1 coronavirus-19.es, 1 coronavirus-journal.fr, 1 @@ -35795,7 +35469,6 @@ corpfin.net, 1 corpheuss.ga, 1 corpio.nl, 1 corplex.com, 1 -corpoepele.com.br, 1 corpoflow.nl, 1 corpomotriztokio.com, 1 corpora.ga, 1 @@ -35844,7 +35517,6 @@ corrigan.xyz, 1 corrupt-republicans.com, 1 corruptcatz.com, 1 corruptos.tk, 1 -corry-new.cloud, 1 cors-proxy.cf, 1 corsa-b.uk, 1 corsac.nl, 1 @@ -35876,6 +35548,7 @@ cortezsanitation.gov, 1 corthouts.pl, 1 cortino.ga, 1 cortis-consulting.ch, 1 +cortizo.com.ar, 1 cortizocampillo.com.mx, 1 cortlandcountyny.gov, 1 cortlandreview.com, 1 @@ -35910,7 +35583,7 @@ coskun.tk, 1 coslinker.com, 0 cosmasiakraft.tk, 1 cosmeagardens.com, 1 -cosmekaitori.jp, 1 +cosmekaitori.jp, 0 cosmetic-surgery-prices.co.uk, 1 cosmeticasimple.com, 1 cosmeticenter.com.br, 1 @@ -35957,7 +35630,6 @@ cosplayer.com, 1 cospol.ch, 0 cosset.com.tw, 1 costa-ballena.tk, 1 -costablanca.villas, 1 costablancavoorjou.com, 1 costalinux.tk, 1 costarellos.com, 1 @@ -36161,7 +35833,6 @@ covid19.govt.nz, 1 covid19.melbourne, 1 covid19.nhs.uk, 1 covid19dataportal.si, 1 -covid19elite.com, 1 covid19resilience.org, 1 covid19responsepod.com, 1 covid19scotland.co.uk, 0 @@ -36187,13 +35858,13 @@ covybrat.cz, 1 cow-ims.herokuapp.com, 1 cowbird.org, 1 cowcreek-nsn.gov, 1 -coweo.cz, 1 cowleycountyks.gov, 1 cowleysexeter.co.uk, 1 cowlitzwa.gov, 1 coworkanywhere.ch, 1 coworking-luzern.ch, 1 coworking-space.tk, 1 +coxcapitalmanagement.com, 1 coxhealthfoundation.com, 1 coxxs.me, 1 coxxs.moe, 1 @@ -36217,10 +35888,10 @@ cozyeggdesigns.com, 1 cozynergy.com, 1 cozzack.com, 1 cp-st-martin.be, 1 -cp015.com, 1 +cp015.com, 0 cp017.com, 0 cp061.com, 0 -cpacharge.com, 0 +cpacharge.com, 1 cpadollar.cf, 1 cpagray.com, 0 cpanels.us, 1 @@ -36287,7 +35958,6 @@ cpxz.nl, 1 cpy.pt, 1 cqep.com, 1 cqfuchen.com, 1 -cqn.ch, 0 cqoicebordel.tk, 1 cqradio.tk, 1 cqre.business, 1 @@ -36301,7 +35971,6 @@ cra-bank.com, 1 cra-search.net, 1 cra-zy.tk, 1 crabfactory.com.my, 1 -crabgrasslawn.com, 1 crabo3d.de, 1 crabrave.space, 1 crabtreestore.nl, 1 @@ -36313,7 +35982,6 @@ crackedlink.com, 1 crackedsoftware.cf, 1 cracker.in.th, 1 crackerjohn.tk, 1 -crackers4cheese.com, 1 crackheros.site, 1 crackhomes.com, 1 cracklab.tk, 1 @@ -36435,7 +36103,6 @@ craytos.jp, 1 crazedknitters.com, 1 crazilyeverafter.com, 1 crazy-cake.tk, 1 -crazy-cat.net, 1 crazy-coders.com, 1 crazy-fox.cf, 1 crazy-project.ml, 1 @@ -36538,7 +36205,6 @@ creation-photos.com, 1 creationfox.gq, 1 creations-edita.com, 1 creationsgate.com, 1 -creative-thinking.ro, 1 creative-wave.fr, 1 creative2.ru, 1 creativeangles.in, 1 @@ -36644,7 +36310,6 @@ creeksidebiblechurch.org, 1 creeksidecentre.org.uk, 1 creeksideduluth.com, 1 creelandgow.com, 1 -creep.im, 1 creep.tk, 1 creepnt.stream, 1 creepycraft.nl, 1 @@ -36652,6 +36317,7 @@ creepypastas.com, 1 creepystories.tk, 1 creer-mon-business-plan.fr, 1 creer-une-boutique-en-ligne.com, 1 +creermonsite-wp.com, 1 creerunblog.net, 1 cremalleradenuria.tk, 1 crematory.tk, 1 @@ -36753,6 +36419,7 @@ criminalminds.tk, 1 criminalnote.tk, 1 criminalskin.tk, 1 criminologia.or.cr, 1 +crimsh.com, 0 crimson.no, 0 crimsonconnect.co.uk, 1 crimsoncoward.com, 1 @@ -36776,7 +36443,6 @@ criptozoologia.tk, 1 cris.org.in, 1 cris2006.com, 1 crisantacademy.com, 1 -criscond.co.uk, 1 crisisactual.com, 1 crisisclubers.ga, 1 crisisdelos40.tk, 1 @@ -37105,7 +36771,6 @@ cryptology.ch, 1 cryptolot.ru, 1 cryptomail.nl, 1 cryptomaniaks.com, 1 -cryptominerxhq.com, 1 cryptomining.mobi, 1 cryptomixer.io, 0 cryptomkt.com, 1 @@ -37309,9 +36974,7 @@ csrichter.com, 1 csroot.cf, 1 csrtci.com, 1 csrtech.com, 1 -csrtech.info, 1 -csrtech.pro, 1 -csrtech.support, 0 +csrtech.support, 1 csru.net, 1 css-krebs.ch, 1 css-tricks.com, 1 @@ -37348,7 +37011,6 @@ csvplot.com, 1 csw.cn, 1 cswapps.com, 1 cswatch.org, 1 -cswebi.net, 1 csx.co.za, 1 csy.hu, 1 ct-static.com, 1 @@ -37385,7 +37047,6 @@ ctnguyen.net, 1 ctns.de, 0 ctoin.tw, 1 ctonovenkogo.tk, 1 -ctor.ch, 1 ctoresms.com, 1 ctpe.info, 1 ctpe.net, 1 @@ -37411,6 +37072,7 @@ cuartob.tk, 1 cuasotinhyeu.vn, 1 cuatroporcuatro.tk, 1 cuatroymedia.com, 1 +cuban.wiki, 1 cubanas-shoes.com, 1 cubanchino.tk, 1 cubanda.de, 1 @@ -37441,7 +37103,6 @@ cubetech.co.jp, 1 cubex.ltd, 1 cubflaica.it, 1 cubia.com, 1 -cubia3.com, 1 cubia4.com, 1 cubic-lynx.com, 1 cubicempire.com, 1 @@ -37499,7 +37160,7 @@ cuisine-ultime.fr, 1 cuitrau.tk, 1 cujanovic.com, 1 cujo.com, 1 -cukrinelape.com, 1 +cukrinelape.com, 0 cukurbag.ml, 1 culan.dk, 0 culetto.at, 1 @@ -37531,7 +37192,6 @@ culturerain.com, 1 culturesgames.tk, 1 cultureshift.co, 1 culturesouthwest.org.uk, 1 -culturess.com, 1 culturestraveled.com, 1 culturevision.com, 1 culturism.ml, 1 @@ -37623,7 +37283,6 @@ curiositytrained.com, 1 curiosoando.com, 1 curiouscast.ca, 1 curiousduck.com, 1 -curiouspeddler.com, 1 curiousspoonfoods.com, 1 curioustea.com, 1 curiozitate.com, 1 @@ -37718,7 +37377,6 @@ customcircuitsltd.co.uk, 1 customcraft.tk, 1 customdissertation.com, 1 customeessay.com, 1 -customer2you.com, 1 customerfocus.co.za, 1 customerservicemanager.com, 1 customerservicepal.com, 1 @@ -37876,7 +37534,6 @@ cxorisks.com, 1 cxotrustsummit.com, 1 cy.ax, 1 cy.technology, 1 -cyanghost.com, 1 cyanhexagon.com, 1 cybbh.space, 1 cybeautiful.com.br, 1 @@ -37946,7 +37603,6 @@ cyberhelden.nl, 1 cyberhipsters.nl, 1 cyberhost.uk, 1 cyberianhusky.com, 0 -cyberintro.fr, 1 cyberislam.tk, 1 cyberium-planet.cf, 1 cyberjake.xyz, 1 @@ -38110,7 +37766,6 @@ cyprus-company-service.com, 1 cyptechost.co.ke, 1 cyqual.com, 1 cyraco.com, 1 -cyrano-books.com, 1 cyrenianhouse.com, 1 cyrex.tech, 0 cyrians.com, 1 @@ -38129,7 +37784,6 @@ cyson.tech, 1 cytat.tk, 1 cytech.com.tr, 1 cytegic-update-packages.com, 1 -cythereapornstar.com, 1 cytn.xyz, 1 cytophil.com, 1 cyumus.com, 1 @@ -38137,7 +37791,6 @@ cyvault.io, 1 cyware.com, 1 cz.ma, 1 cz.nl, 1 -cz10.com.br, 1 czakey.net, 1 czarni-czarne.tk, 1 czaw.org, 1 @@ -38247,7 +37900,6 @@ d6c5yfulmsbv6.cloudfront.net, 1 d8.io, 1 d8181.com, 1 d82365.com, 1 -d88-livechat.com, 0 d88.ag, 1 d88.cc, 0 d88.cn.com, 1 @@ -38301,10 +37953,8 @@ dabai.club, 1 dabai.ga, 1 dabai.ml, 1 dabai.photo, 1 -dabaixiong.com, 1 dabasstacija.lv, 1 dabbagam.tk, 1 -dabedi.ir, 1 dabhand.studio, 1 dabi.tk, 1 dabrecords.co.uk, 1 @@ -38429,7 +38079,6 @@ dailyblocks.com, 1 dailyblogged.com, 1 dailybusiness.tk, 1 dailycricnews.tk, 1 -dailyddt.com, 1 dailydealika.com, 1 dailydodge.com, 1 dailydote.com, 1 @@ -38466,7 +38115,6 @@ dailywork.ga, 1 dailyxenang.com, 1 daimonikos.com, 1 dairikab.go.id, 1 -dairylandexpress.com, 1 daisidaniels.co.uk, 1 daisuki.pw, 1 daisy-peanut.com, 1 @@ -38566,8 +38214,7 @@ dambo.tk, 1 dame.cf, 1 damedrogy.cz, 1 dameeq.cf, 1 -dameisports.com, 1 -dameshoes.it, 1 +dameisports.com, 0 damgan.com, 1 damgoodmedia.com, 1 damianmalrechauffe.tk, 1 @@ -38661,7 +38308,6 @@ danesara.com, 1 daneshtools.tk, 1 danfromit.co.uk, 1 danfromit.com, 1 -dang-designs.com, 1 dangeredwolf.com, 1 dangerscience.com, 1 dangmai.tk, 1 @@ -38787,7 +38433,6 @@ dankie.com.br, 1 dankim.de, 0 dankojunasevic.tk, 1 dankrpg.xyz, 1 -dankstocks.com, 1 danla.nl, 1 danlockton.tk, 1 danloona.nl, 1 @@ -38844,7 +38489,6 @@ danslavieyadescactus.ch, 1 danstillman.com, 1 danstoncu.be, 1 dantana.de, 1 -dantata1.com, 1 dantesinferno.tk, 1 danthecloudman.com, 1 dantikap.tk, 1 @@ -38862,7 +38506,6 @@ danwin1210.de, 1 danwise.online, 1 danwolff.se, 1 danya.ml, 1 -danyabanya.com, 1 danzavila.com, 1 danzenyogadaycare.com, 1 danzka.tk, 1 @@ -38915,7 +38558,6 @@ dariela.tk, 1 darientownwi.gov, 1 darienvillagewi.gov, 1 dario.gq, 1 -darioackermann.ch, 0 darioclip.com, 1 dariosirangelo.me, 1 darioturchetti.me, 1 @@ -39093,7 +38735,6 @@ dasignsource.com, 1 dasinternetluegt.at, 1 daskirschhaus.com, 1 dasler.eu, 1 -dasmailarchiv.ch, 1 dasolindustrialpark.tk, 1 dastchin.live, 1 dastchin.shop, 1 @@ -39115,7 +38756,6 @@ data-replicator.cloud, 1 data-replicator.com, 1 data-servers.com, 1 data-wing.ga, 0 -data.bayern, 1 data.gov, 1 data.govt.nz, 1 data.haus, 1 @@ -39231,7 +38871,6 @@ dataxl.net, 1 datazoo.asia, 1 datazoo.com, 1 datdt.com, 1 -date-conference.com, 1 date-hijri.net, 1 dateien.at, 1 dateierweiterung.com, 1 @@ -39248,7 +38887,6 @@ datenreiter.cf, 1 datenreiter.gq, 1 datenretter.tk, 1 datensalat.info, 1 -datenschutz-consult.de, 1 datenschutz-gruenwald.de, 1 datenschutz-individuell.de, 1 datenschutz-isny.de, 1 @@ -39305,6 +38943,7 @@ datutoday.tk, 1 datutorials.tk, 1 daubecity.de, 1 daubehosting.de, 1 +dauenhauer.de, 1 daughertyplasticsurgery.com, 1 daughtridgeenergy.com, 1 daugoitot.com, 1 @@ -39443,7 +39082,6 @@ davidsun.info, 1 davidsun.name, 1 davidtiffany.com, 1 davidtorres4congress.com, 1 -davidundetiwan.com, 1 davidvilla.tk, 1 davidzarza.tk, 1 davidzeegers.nl, 1 @@ -39453,7 +39091,9 @@ daviesscountyin.gov, 1 daviesscountyinsheriff.gov, 1 davimun.org, 1 davinamccall.tk, 1 +davinciwaldorfschool.org, 1 davisboroga.gov, 1 +daviscannabisco.com, 1 daviscountyelectionsutah.gov, 1 daviscountyiowa.gov, 1 davisdieselandautorepair.com, 1 @@ -39462,8 +39102,6 @@ davison.tech, 1 davisontwp-mi.gov, 1 davisvision.com, 1 davmimer-mercerie.ro, 1 -davo-usedcars.be, 1 -davoiceradio.com, 1 davorin.cf, 1 davosalestax.com, 1 davros.eu, 1 @@ -39478,14 +39116,11 @@ daware.io, 1 dawgs.ga, 1 dawidpotocki.com, 1 dawidwrobel.com, 1 -dawindycity.com, 1 dawnbringer.eu, 1 dawnbringer.net, 1 dawnbyte.ch, 1 dawnlydialnyc.com, 1 -dawnofeden.net, 1 dawnofhope.tk, 1 -dawnofthedawg.com, 1 dawnson.is, 1 dawnzine.com, 1 dawonmedax.com, 1 @@ -39590,7 +39225,6 @@ dbildungscloud.de, 1 dbinderbilling.com, 1 dbjc.tk, 1 dbjg.com, 1 -dbl-group.com, 1 dblabsite.net, 1 dblcastles.co.uk, 1 dbldub.net, 1 @@ -39644,7 +39278,7 @@ dcc.name, 1 dccdurgor1nbl.cloudfront.net, 1 dccode.gov, 1 dccomputerrepair.com, 1 -dccwiki.com, 1 +dccwiki.com, 0 dcdestetica.it, 1 dcgprecisionpainters.co.nz, 1 dchatelain.ch, 0 @@ -39700,7 +39334,6 @@ dd6729.co, 1 dd6729.com, 0 dd6957.co, 1 dd9297.co, 1 -dd9397.com, 0 dd9721.com, 0 dd9728.co, 1 dda.gov.ae, 1 @@ -39720,7 +39353,6 @@ ddhosted.com, 0 ddi.one, 1 ddiaz.tk, 1 ddinox.be, 1 -ddiss.bond, 1 ddjia.com, 0 ddjlawtampa.com, 1 ddk.dn.ua, 1 @@ -39804,7 +39436,6 @@ dealerwriter.com, 1 dealinflatables.co.uk, 1 dealjumbo.com, 1 deallix.com, 1 -dealnxt.com, 1 dealogic.com, 1 dealpost.it, 1 dealproject.org.au, 1 @@ -39878,7 +39509,6 @@ debesteehbodoos.nl, 1 debewaker.tk, 1 debian.link, 1 debianizzati.org, 1 -debie-usedcars.be, 1 debigare.com, 1 debijloke.be, 1 debijloke.gent, 1 @@ -40065,8 +39695,6 @@ deepbluecrafting.co.uk, 1 deepblueemail.com, 1 deepbuy.tech, 1 deepcreampie.com, 1 -deeperblue.com, 0 -deepersonar.com, 1 deepgame.tk, 1 deephill.com, 1 deephustlellc.com, 1 @@ -40530,7 +40158,6 @@ denejki.tk, 1 denet.pro, 0 denformlab.lt, 1 dengg.name, 1 -dengi.desa.id, 0 dengidoma24.ml, 1 dengisrazu.tk, 1 dengivdolg.ml, 1 @@ -40612,20 +40239,16 @@ dental-cloud.eu, 1 dental-colleges.com, 1 dental-fitness.co.jp, 1 dental.gq, 1 -dentalboutique.com.au, 1 dentalcareerfinder.com, 1 dentalcareersedu.org, 1 dentalcolleges.tk, 1 dentalimplantscost.com.au, 1 -dentalnasser.com, 1 dentaloptimizer.com, 1 dentalqore.com, 1 dentalqoretemp.com, 1 dentalreklamlari.tk, 1 dentals.cf, 1 dentalsupportuk.com, 1 -dentaltalent.nl, 1 -dentaltransitions.com, 1 dentalturism.com, 1 dentalunion.ru, 1 dentcountyhealth.gov, 1 @@ -40639,7 +40262,6 @@ dentistaaroma.com, 1 dentistabarbarajaqueline.com.br, 1 dentistalagoasanta.com.br, 1 dentistesdarveauetrioux.com, 1 -dentistglasgow.com, 1 dentistquezoncity.com, 1 dentistree.in.ua, 1 dentistsgainesvillega.com, 1 @@ -40661,7 +40283,6 @@ denver7.com, 1 denverautoinsurancecompany.com, 1 denverclassifieds.net, 1 denverescorts.net, 1 -denverfootballofficials.com, 1 denverilluminations.com, 1 denvernews.ml, 1 denverroot.com, 1 @@ -40680,7 +40301,6 @@ deooyevaar.de, 1 deooyevaar.es, 1 deooyevaar.fr, 1 deooyevaar.nl, 0 -deoremann.com, 1 deoxy.org, 1 depaco.com, 1 depak.de, 1 @@ -40878,7 +40498,6 @@ desenvolvimentolocalvfa.com.br, 1 deseosvip.tk, 1 desergo.com, 1 desert.cf, 1 -desertblockmasonry.com, 1 desertbloomplasticsurgery.com, 0 desertbloomskincare.com, 1 desertbluffs.com, 1 @@ -41035,6 +40654,7 @@ desvan.tk, 1 deswaffelaars.tk, 1 desy.tk, 1 desyatnichenko.ml, 1 +desygner.com, 1 desynced.rocks, 1 det-te.ch, 1 detailedimage.com, 1 @@ -41076,7 +40696,6 @@ detrimental.tk, 1 detroit-english.de, 1 detroit.gov, 1 detroitfastest.org, 1 -detroitjockcity.com, 1 detroitlocksmiths.net, 1 detroitnews.tk, 1 detroitzoo.org, 1 @@ -41086,7 +40705,6 @@ detski.center, 1 detskie-avto-kresla.tk, 1 detskysad.com, 1 detuinmuze.nl, 1 -detulado.com, 1 detusmascotas.com, 1 detweedekans.tk, 1 detyamobuv.tk, 1 @@ -41185,7 +40803,7 @@ devflop.fr, 1 devgo.ca, 1 devh.de, 1 devh.net, 1 -devhjz.com, 0 +devhjz.com, 1 deviant.email, 1 deviante.com, 1 deviation.tk, 1 @@ -41259,6 +40877,7 @@ devs-from.asia, 1 devs.men, 1 devs4.com, 1 devsectools.com, 1 +devsjournal.com, 1 devskyport.com, 1 devslash.net, 1 devsrvr.ru, 1 @@ -41467,7 +41086,6 @@ diablos-obon.tk, 1 diabolic.chat, 1 diabolique.pt, 1 diadiemdangsong.com, 1 -diadoc.ru, 1 diadora-media.hr, 1 diadorafitness.es, 1 diadorafitness.it, 1 @@ -41585,7 +41203,6 @@ dice.tokyo, 1 dicelab-rhul.org, 1 dicelab.co.uk, 1 dicemer.com, 1 -dicerna.com, 0 dicesites.com, 1 dicgaming.net, 1 dichvuchuyentien247.com, 1 @@ -41652,7 +41269,7 @@ didier-equipereussite.com, 1 didierfle-decibel.fr, 1 didierfle-latelier.fr, 1 didierfle.com, 1 -didierghez.com, 1 +didierghez.com, 0 didierlaumen.be, 1 didigotoffer.com, 1 didiwinata.com, 1 @@ -41729,7 +41346,6 @@ dieselndust.com, 1 dieselor.bg, 1 dieselor.com, 1 diesicheremail.de, 1 -diesignloods.nl, 1 dieslowhtx.com, 1 diesse.nl, 0 diet-hack.bg, 1 @@ -41738,10 +41354,8 @@ dieta-vita.com, 1 dietandexercises.tk, 1 dietaryguidelines.gov, 1 dietbrand.eu, 1 -dieter-datenschutz.de, 1 dieter.one, 1 dieterglas.de, 1 -dietergreven.de, 0 dietfordiabetics.tk, 1 dietherapie.tirol, 1 diethood.com, 1 @@ -41770,7 +41384,6 @@ differentgirleveryday.ml, 1 differenziare.it, 1 difficulty.ga, 1 diffnow.com, 1 -difko.co.uk, 1 diflucangeneric.ml, 1 diflucanonline.tk, 1 diflucanpill.ga, 1 @@ -41840,6 +41453,7 @@ digino.xyz, 1 digiparse.com, 1 digipartindex.ch, 1 digipassos.com, 1 +digipeak.org, 1 digipitch.com, 1 digipolis.gent, 1 digipost.no, 1 @@ -41909,6 +41523,7 @@ digitalcitizen.life, 1 digitalcoffeepodcast.com, 1 digitalcomponents.de, 1 digitalcompudev.biz, 1 +digitalcompudev.com, 1 digitalcourage.de, 1 digitalcraftmarketing.co.uk, 1 digitalcrisis.com, 1 @@ -42138,7 +41753,6 @@ dimosoftware.fr, 1 dimseklubben.dk, 1 dimspith.com, 1 dinamikarosta.ml, 1 -dinamixdigital.com, 1 dinamofilms.cl, 1 dinarys.com, 1 dincemlakmerkez.ga, 1 @@ -42201,7 +41815,6 @@ dipling.de, 1 diplom-ru.tk, 1 diplomatcruises.co.uk, 1 diplomatiegabon.ga, 1 -diplomsshop.online, 1 dipnot.tv, 1 dipro.id, 1 dipsytroller.com, 1 @@ -42240,7 +41853,6 @@ directories.cf, 1 directorioempresarial.com.co, 1 directoriomedico.com.co, 1 directorios.tk, 1 -directoriostelefonicos.com, 1 directorioweb.co, 1 directorioz.com, 1 directorwebseo.tk, 1 @@ -42373,7 +41985,6 @@ discountpokale.at, 1 discountpokale.de, 1 discountpowertx.com, 1 discountravel.tk, 1 -discounttablepads.com, 1 discover-mercure.com, 1 discover-shaken.com, 1 discoverapp.com, 1 @@ -42391,7 +42002,6 @@ discoveringdocker.com, 1 discoverkeesler.com, 1 discoverkeesler.marketing, 1 discoverlutruwita.com, 1 -discovermarbellahomes.com, 1 discovermodus.com, 1 discovernavajo.com, 1 discoverradiance.com, 1 @@ -42421,7 +42031,6 @@ disfigured.tk, 1 disgruntledcode.com, 1 disguise.cf, 1 dishcrawl.com, 0 -dishonorablespeechinpolitics.com, 1 dishwashermagic.tk, 1 dishwasherrepair-austin.com, 1 disidencia.tk, 1 @@ -42511,7 +42120,6 @@ dispensarygta.com, 1 displayrd.com, 1 displaysandholders.com, 1 disposable.link, 1 -disposalqa.com, 1 dispur.nic.in, 1 dispute.cn, 1 disroot.org, 1 @@ -42941,7 +42549,6 @@ dlcwilson.com, 1 dlde.ru, 1 dleet.com, 1 dleger.space, 1 -dlepavilion.com, 1 dler.at, 1 dlevans.com, 1 dlf.exchange, 1 @@ -42968,7 +42575,6 @@ dlttrading.com, 1 dluxelab.com, 1 dlv-registry.com, 1 dlv-registry.net, 1 -dlv-registry.org, 1 dlyabega.tk, 1 dlyaribalki.tk, 1 dlyatepla.ml, 1 @@ -43027,7 +42633,6 @@ dmdata.jp, 1 dmdc.mil, 1 dmdd.org.uk, 1 dmdiamonds.tk, 1 -dmdpayroll.com, 1 dme.net, 1 dme.web.id, 1 dmehub.com, 1 @@ -43281,10 +42886,10 @@ doctaforum-test.com, 1 docteur-delorme.fr, 1 doctoblog.fr, 1 doctor-locks.co.uk, 1 -doctor360.com.au, 1 doctorbini.com, 1 doctorcalefon.com, 1 doctordabbah.com, 1 +doctordangond.com, 1 doctorebonie.com, 1 doctorfox.co.uk, 1 doctoriko.tk, 1 @@ -43369,7 +42974,6 @@ doener-curator.com, 1 doenets.lk, 1 doenjoylife.com, 1 doeprojects.com, 1 -doeren.com, 1 doerz.com, 1 doesburg-comp.nl, 1 doesinfotech.com, 1 @@ -43388,7 +42992,7 @@ dogaicincal.com, 1 dogalsoyamumu.com, 1 dogan.ch, 0 doganoglu.net, 1 -dogcat.vn, 0 +dogcat.vn, 1 dogchina.com, 1 dogcratereview.info, 1 dogday.tk, 1 @@ -43423,7 +43027,6 @@ dogma2000.tk, 1 dogmagic.tk, 1 dogmap.jp, 1 dogmazic.net, 1 -dogoday.com, 1 dogodki.today, 1 dogofwar.tk, 1 dogoo.com, 1 @@ -43436,6 +43039,7 @@ dogsite.tk, 1 dogsnaturallymagazine.com, 1 dogsnow.com, 1 dogsport.org, 1 +dogtoetreads.com, 1 dogtowneastpowell.com, 1 dogtrack.tk, 1 dogtrainingnaples.com, 1 @@ -43505,7 +43109,6 @@ dolg.ml, 1 dolg.tk, 1 dolgopolova.ga, 1 dolgorukovo.cf, 1 -doli.se, 1 dolice.net, 1 dolinathome.com, 1 dolkfm.tk, 1 @@ -43561,14 +43164,12 @@ domain-comparison.com, 1 domain-ermittlung.de, 1 domain-skachat.cf, 1 domain-speicher.com, 0 -domain-speicher.de, 0 domain-swiss.ch, 1 domain.ch, 1 domaine-aigoual-cevennes.com, 1 domaine-de-garbelle.com, 1 domaine-de-vermoise.fr, 1 domainedemanville.fr, 1 -domainedemiolan.ch, 0 domainevanina.fr, 1 domainexpress.de, 0 domainforfree.gq, 1 @@ -43581,7 +43182,6 @@ domainoo.com, 0 domainoo.fr, 1 domainops.gov, 1 domainproactive.com, 1 -domainregistry.ie, 1 domainresidential.com.au, 1 domains-hoarden-ist-ein-ernstes-problem-suchen-sie-sich-hilfe.jetzt, 1 domains.google.com, 1 @@ -43781,7 +43381,7 @@ donnacha.blog, 1 donnachie.net, 1 donnahay.com.au, 1 donnapepe.tk, 1 -donner-reuschel.de, 1 +donner-reuschel.de, 0 donnerhollenconstruction.com, 1 donnerwetter.tk, 1 donngle.com, 1 @@ -43910,7 +43510,6 @@ dorier-digiplace.com, 1 dorisdeluxe.com, 1 dorizonline.tk, 1 dorkface.tk, 1 -dorksideoftheforce.com, 1 dormi.hu, 1 dormilaine.fr, 1 dorminyeremenyjatek.hu, 1 @@ -43997,7 +43596,6 @@ dotgov.gov, 1 dothaneagle.com, 1 dotheevolution.tk, 1 dothegangnamstyle.tk, 1 -dothesecurity.com, 1 dotjesper.com, 1 dotjesper.dk, 1 dotjesper.net, 1 @@ -44130,7 +43728,6 @@ download-image.ga, 1 download-knigi.gq, 1 download-lagu-mp3.com, 1 downloadabc.cf, 1 -downloadapk.co.id, 1 downloadapkpokemongo.ga, 1 downloadapkpure.tk, 1 downloadasik.com, 1 @@ -44139,7 +43736,6 @@ downloadfestival.co.uk, 1 downloadfiles.cf, 1 downloadforum.ml, 1 downloadforum.tk, 1 -downloadhindimovie.com, 1 downloadhindimovie.net, 1 downloadhindimovies.net, 1 downloadmoremousepad.ml, 1 @@ -44205,7 +43801,6 @@ dpc-pca.org, 1 dpc-software.de, 1 dpc.ae, 1 dpcp.fr, 1 -dpcs.xyz, 1 dpd.com.pl, 1 dpecuador.com, 1 dpereira.net, 1 @@ -44240,7 +43835,6 @@ dpucarriersma.gov, 1 dpwsweeps.co.uk, 1 dqempresas.es, 1 dqfilesonline.com, 1 -dr-aldebert-orthopaedie.com, 1 dr-amar.tk, 1 dr-beyer.de, 1 dr-dedet.com, 1 @@ -44257,7 +43851,6 @@ dr-mgeorgieva.com, 1 dr-nope.de, 1 dr-nosrat.tk, 1 dr-notemann.de, 1 -dr-nystroem.de, 1 dr-schlamminger.de, 1 dr-schuessler.de, 1 dr-vlasak.cz, 1 @@ -44315,7 +43908,6 @@ dragoncave.me, 1 dragoncityhack.tips, 1 dragonclean.gr, 1 dragonclicker.ml, 1 -dragondekomodo.com, 1 dragonesymazmorras.tk, 1 dragonfly.co.uk, 0 dragonflycms.cf, 1 @@ -44337,7 +43929,6 @@ dragonscale.tk, 1 dragonsgate.ml, 1 dragonshare.tk, 1 dragonsorcerers.tk, 1 -dragonsrestcabins.com, 1 dragonsunited.at, 1 dragonsunited.be, 1 dragonsunited.ch, 1 @@ -44366,7 +43957,6 @@ drakia.com, 1 drakiada.tk, 1 drakkarbilbao.com, 1 draknet.eu, 1 -dralexisdmd.com, 1 draliabadi.com, 0 draljarallah.com, 1 dralucilavolasco.com.br, 1 @@ -44379,7 +43969,6 @@ dramaqueer.ch, 1 dramaslayer.ga, 1 dramatherapie.tk, 1 dramaticpeople.com, 1 -drambikarathi.com, 1 dramyalderman.com, 1 dranderle.com, 1 drandrewarnold.com, 1 @@ -44395,7 +43984,6 @@ draper.wtf, 1 draperutah.gov, 1 dras.hu, 1 drastik.cz, 1 -drasuzanalessa.com.br, 1 drasyl.org, 0 drata.com, 1 drathaisdentista.com.br, 1 @@ -44599,7 +44187,6 @@ drifter.tk, 1 driftingruby.com, 1 driftkikker.tk, 1 driftsjournal.dk, 1 -drighes.com, 1 drikaartesanato.com, 1 drikuansvarligt.dk, 1 drill.st, 1 @@ -44711,9 +44298,9 @@ drjosebarrera.com, 1 drjulianneil.com, 1 drjungspine.com, 1 drk-blutspende.de, 1 -drkai.com.tw, 1 drkashany.ir, 1 drkazim.com, 1 +drkbri.ru, 1 drkhsh.at, 1 drksachsen.de, 1 drleoplasticsurgery.com, 1 @@ -44729,7 +44316,6 @@ drminev.com, 1 drms.us, 1 drmtransit.com, 1 drmvl.org, 1 -drnataliejones.com, 1 drnatura.fr, 1 drnjewels.com, 1 drobina.top, 1 @@ -44913,7 +44499,6 @@ dryskin.gq, 1 dryskin.ml, 1 dryskin.tk, 1 dryusdan.space, 1 -drywall.com.co, 1 drywallresponse.gov, 1 dryzgov.tk, 1 drzhnn.com, 1 @@ -44943,12 +44528,12 @@ dscharrer.com, 1 dschwarzachtaler.de, 1 dscjobs.org, 1 dscsigncert.com, 1 -dsdlove.com, 1 dsdomains.com, 1 dsds-ltd.com, 0 dse-assessments.co.uk, 0 dse.com.bd, 1 dsebastien.net, 1 +dsebd.org, 1 dsecure.me, 1 dseg.org, 1 dsektionen.se, 0 @@ -44965,10 +44550,10 @@ dsgvo-analyse.de, 1 dsgvo.name, 1 dsh.io, 1 dshield.org, 1 -dsic.vn, 1 dsimonitor.online, 1 dsiteam.in, 1 dsjbvba.be, 1 +dskbank.bg, 1 dskrecords.tk, 1 dslz.tk, 1 dsm5.com, 1 @@ -45157,7 +44742,6 @@ duesee.org, 1 duesseldorf.tk, 1 duesseldorferheineburschenschaft.tk, 1 duesterhus.eu, 1 -duet.nl, 1 duewestsc.gov, 1 duffau.net, 1 duffdignity.tk, 1 @@ -45201,6 +44785,7 @@ dukes-london.com, 1 dukes.ca, 1 dukhanstore.com, 1 dukin.tk, 1 +dukkanacmak.com, 1 dukun.de, 1 dulanic.com, 1 dulce-reverie.ro, 1 @@ -45331,7 +44916,6 @@ duriemas.com, 1 duroterm.ro, 1 durtk.com, 1 durvalpereira.com.br, 0 -durvensolutions.com, 1 durys.be, 1 dusablemuseum.org, 1 dushu.cat, 1 @@ -45458,7 +45042,6 @@ dweb.link, 1 dweilorkest-frederikshaven.tk, 1 dwgeneralcontractors.com, 1 dwgf.xyz, 1 -dwhightmolina.com, 1 dwienzek.de, 1 dwightd.com, 1 dwightgunning.com, 1 @@ -45471,7 +45054,6 @@ dworzak.ch, 1 dwservice.net, 1 dwt-inc.com, 1 dwt-onderwijsencoaching.nl, 1 -dwtm.ch, 1 dwtonline.com, 0 dww.hu, 1 dwwt.eu, 1 @@ -45494,7 +45076,7 @@ dxsigner.com, 1 dxzl.org, 1 dxzsj.cn, 1 dy.express, 1 -dy.me, 1 +dy.me, 0 dy1d.com, 1 dyachenko.ml, 1 dyarakotijobs.com, 1 @@ -45604,7 +45186,6 @@ dyregrave.dk, 1 dyremyhr.no, 1 dyrenesverden.no, 1 dyreplassen.no, 1 -dyrkar.com, 1 dyrkar.se, 1 dysautonomia-postsyndrome.com, 1 dyscalculia-blog.com, 1 @@ -45655,7 +45236,6 @@ dzyabchenko.com, 0 dzyszla.pl, 1 e-account.by, 1 e-alink.com, 1 -e-andorra.eu, 1 e-antikvar.tk, 1 e-arteria.pl, 1 e-bags.tk, 1 @@ -45730,7 +45310,6 @@ e-lambre.com, 1 e-lamp.tk, 1 e-launch.nl, 1 e-learningbs.com, 1 -e-lectride.com, 1 e-lexia.com, 1 e-lifetechnology.com, 1 e-loshadka.tk, 1 @@ -45739,7 +45318,6 @@ e-mak.eu, 1 e-massage.tk, 1 e-matras.ua, 1 e-medicines.tk, 1 -e-medycyna.net, 1 e-mieszkania.org.pl, 1 e-migration.ch, 0 e-nail.tk, 1 @@ -46105,7 +45683,7 @@ easy-feedback.de, 0 easy-katka.ga, 1 easy-pornvideos.com, 1 easy-rpg.org, 1 -easy2bathe.co.uk, 0 +easy2bathe.co.uk, 1 easy4ssl.com, 1 easyaddress.io, 1 easyadsnbanners.tk, 0 @@ -46160,6 +45738,7 @@ easypaymentnow.com, 1 easypayments.pro, 1 easypets.fr, 0 easypost.com, 1 +easypricebook.com, 1 easypv.ch, 1 easyqr.codes, 0 easyradio.gq, 1 @@ -46310,7 +45889,6 @@ ebookpdf.com, 1 ebooks-pdf.cf, 1 ebooks4all.tk, 1 ebooks4gate.tk, 1 -ebooksa.com, 1 ebooksbag.com, 1 ebooksgratis.tk, 1 ebooksgratuits.org, 1 @@ -46321,7 +45899,6 @@ ebop.ch, 1 eboxgroup.tk, 1 eboxtenders.com, 1 ebpc.com.au, 1 -ebpgateway.com, 1 ebrahimhadimarket.com, 1 ebrdbusinessguide.com, 1 ebrea.ch, 1 @@ -46415,7 +45992,6 @@ echtcache.ga, 1 echtebbq.nl, 1 echternach-immobilien.de, 1 echtes-hutzelbrot.de, 1 -ecigfind.com, 1 ecirtam.net, 0 eciso.io, 1 ecity.hu, 1 @@ -46454,7 +46030,6 @@ eco69.com, 1 eco69.eu, 1 eco69.pl, 1 ecobalispa.com, 1 -ecobin.nl, 1 ecobunker.co.uk, 1 ecobunkerusa.com, 1 ecocanada.jobs, 1 @@ -46514,6 +46089,7 @@ ecometalsrl.com, 1 ecomgigs.com, 1 ecomia.dk, 1 ecommerce-bikinsistem.tk, 1 +ecommerce-optimizer.com, 1 ecommercedb.com, 1 ecommercenews.asia, 1 ecommercenews.co.nz, 1 @@ -46526,7 +46102,6 @@ ecomycie.com, 1 econativa.pt, 1 econfia.cf, 1 econmarketingdigital.com, 1 -economarketing.ca, 1 economia.cl, 1 economias.pt, 1 economic-sanctions.com, 1 @@ -46540,7 +46115,6 @@ economies.ch, 0 economixportal.tk, 1 economycarrentalscyprus.com, 1 economydiva.com, 1 -economyguardian.com, 1 economyroofingco.com, 1 econsorzio.com, 1 econstitution.bg, 1 @@ -46594,7 +46168,6 @@ ecpc.org, 1 ecpic.gov, 1 ecpl.ru, 1 ecr-test-partnapp.azurewebsites.net, 1 -ecrandouble.ch, 0 ecredits-dev-app-backoffice01.azurewebsites.net, 1 ecredits-dev-app-partner01.azurewebsites.net, 1 ecrehabandwellness.com, 1 @@ -46628,7 +46201,6 @@ ed-medications.ml, 1 ed-studios.tk, 1 ed.gs, 1 ed394jed.fr, 1 -eda-ah.com, 1 eda.cooking, 1 eda.gov, 1 eda72.com, 1 @@ -46668,7 +46240,6 @@ edelvivesdigital.com, 1 edelvivesdigitalplus.com, 1 edelweiskapel.tk, 1 edelweiss-pinzolo.com, 1 -edelweiss-service.ru, 1 edelweissalternatives.com, 1 eden-project-insight.tk, 1 eden.bz, 1 @@ -46758,7 +46329,6 @@ edited.nl, 1 edited.pl, 1 edithlouw.tk, 1 edithouse.dk, 1 -edition-bambou.com, 0 edition-sonblom.de, 0 editions-campanile.fr, 1 editionsnoiretrouge.com, 1 @@ -46766,15 +46336,12 @@ editionsz.com, 1 editorakanope.com.br, 1 editorialexpress.com, 1 editorialnew.com, 1 -editorinleaf.com, 1 editorsguild.com, 1 editspace.tk, 1 editus.it, 1 edje.com, 1 edjo.us, 1 edl.com.ph, 1 -edlib.is, 1 -edlib.pics, 1 edlinger.at, 1 edlinger.mobi, 1 edman007.com, 1 @@ -46838,7 +46405,6 @@ edubase.link, 1 edubase.net, 1 edubirdie.com, 1 edublognews.tk, 1 -educa.ch, 1 educa2.es, 1 educabis.tk, 1 educacionit.com, 1 @@ -46930,7 +46496,6 @@ eduson.pl, 1 eduspot.co.uk, 1 edusson.com, 1 edusuite.at, 1 -edutech.group, 1 edutour.ml, 1 edutrum.com, 1 eduxon.in, 1 @@ -46947,7 +46512,6 @@ edvision.ga, 1 edvmesstec.de, 1 edward-tagle.tk, 1 edwardbrowninvestment.tk, 1 -edwardcastrillon.com, 1 edwarddekker.nl, 1 edwardkong.top, 1 edwards.me.uk, 1 @@ -47055,7 +46619,6 @@ effdocs.com, 1 effe.ch, 0 effecotto.it, 1 effective-altruist.com, 1 -effectivecoffee.com, 1 effectivecommunication.tk, 1 effectiveconsulting.ca, 1 effectivepapers.com, 1 @@ -47080,7 +46643,7 @@ effmio.de, 1 effortlesshr.com, 1 effortlesshr.net, 1 effra.pl, 1 -efi.com, 1 +efi.com, 0 eficsolar.com, 1 efiglobal.com, 1 efiledcsuperiorcourt.gov, 1 @@ -47112,7 +46675,6 @@ efterfest.tk, 1 eftotoekspertizbalikesir.com, 1 efutbol.tk, 1 eg-dev.net, 1 -eg-localisation.com, 1 eg22.com, 1 eg7.co.jp, 1 eg7.jp, 1 @@ -47206,14 +46768,12 @@ egrojsoft.info, 1 egrouen.net, 1 egroupware.org, 1 egrow.io, 1 -egrp365.ru, 1 egt-bg.com, 1 egt-digital.com, 1 egt.ee, 0 egvilparks.gov, 1 egw-ceramica.de, 1 egy-boy.tk, 1 -egyhometex.com, 1 egypt-tourism.ga, 1 egypt-tours.tk, 1 egypt-turism.ru, 1 @@ -47243,6 +46803,7 @@ eheliche-disziplin.schule, 1 eheya.net, 1 ehipaa.com, 1 ehlers-net.de, 1 +ehlersdanlos.dk, 1 ehlersdanlos.tk, 1 ehliyetsinavsorulari.org, 1 ehmsen.nu, 1 @@ -47500,7 +47061,6 @@ elaon.de, 0 elar.tk, 1 elarcoreu.com, 0 elariannews.ml, 1 -elars.de, 1 elartedelaguerra.tk, 1 elartedelapaz.org, 1 elarvee.xyz, 1 @@ -47669,6 +47229,7 @@ electrodomesticos.tk, 1 electrodomesticosmiro.com, 1 electroforum.tk, 1 electrofreakz.tk, 1 +electrogenic.co.uk, 1 electrohelp.ga, 1 electrolandia.tk, 1 electrolivefest.spb.ru, 1 @@ -47794,7 +47355,6 @@ elementalsoftware.org, 1 elementarewatson.it, 1 elementarium.cf, 1 elementarium.ga, 1 -elementarty.com, 1 elementarywave.com, 1 elementblend.com, 1 elementbookings.com, 1 @@ -47864,7 +47424,6 @@ eleusis-zur-verschwiegenheit.de, 1 elev8fashion.ca, 1 elevacionesrama.com, 1 elevanhairdressing.co.uk, 1 -elevateandprosper.com, 1 elevatewebdesigns.com, 1 elevationcreative.net, 1 elevationplumbingandheating.com, 1 @@ -47925,7 +47484,6 @@ eliaustvarjaspomine.si, 1 eliav.tk, 1 elibidore.ml, 1 elicdn.com, 1 -elicom-online.com, 1 elie.net, 1 elielaloum.com, 1 elifelabs.com, 1 @@ -47989,7 +47547,6 @@ elite-porno.ru, 1 elite-tools.tk, 1 elite-units.tk, 1 elite.memorial, 1 -elite12.de, 1 elitebasementsohio.com, 1 elitebike.com.co, 1 elitecleaningservices.com.cy, 1 @@ -48029,7 +47586,6 @@ elixir.bzh, 1 elixirfactory.io, 1 elizabethcitync.gov, 1 elizabethgreenfield.com, 1 -elizabethmacdonaldbooks.com, 1 elizabethrominski.com, 1 elizabethtaderera.me, 1 elizabethtown-ny.gov, 1 @@ -48038,7 +47594,6 @@ elizaminami.com.br, 1 eljay.cc, 1 eljef.me, 1 elk.moe, 1 -elka-holzwerke.de, 1 elka-piter.ga, 1 elkampeuzo-musique.tk, 1 elkarizan.com, 1 @@ -48111,7 +47666,6 @@ elmerboroughnj.gov, 1 elmermx.ch, 1 elmeson.tk, 1 elmion.cloud, 1 -elmo.ee, 1 elmolar.tk, 1 elmolist.tk, 1 elmoro.mx, 1 @@ -48160,7 +47714,6 @@ elpincho.tk, 1 elpitazo.net, 1 elplugins.xyz, 1 elpo.net, 1 -elpoderdelespiritu.org, 1 elposconflicto.org, 1 elpreciosostud.com, 1 elprincipevegeta.tk, 1 @@ -48176,7 +47729,6 @@ elrealsw.com, 1 elrebollar.tk, 1 elrenook.gov, 1 elreportero.tk, 1 -elreserva.com, 1 elri.blog, 1 elrincondelotaku.tk, 1 elrinconderovica.com, 1 @@ -48184,6 +47736,7 @@ elron.ee, 0 elrubio.tk, 1 elsadonaire.tk, 1 elsas.tk, 1 +elsassdestination.fr, 0 elsbouslanostraaficio.tk, 1 elsector7.tk, 1 elsemanariodesalamanca.tk, 1 @@ -48236,6 +47789,7 @@ elvisvrconnect.co.uk, 1 elvonet.hr, 1 elvorti.bg, 1 elvorti.com, 1 +elvtr.com, 0 elwave.org, 1 elweronete.tk, 1 elwix.com, 1 @@ -48263,7 +47817,6 @@ email24.cf, 1 email4u.at, 1 emailable.com, 1 emailablev.com, 1 -emailadressen.nl, 1 emailalaperformance.fr, 1 emailalias.nl, 1 emailbusters.tk, 1 @@ -48327,7 +47880,6 @@ emboque.tk, 1 embouts-et-bouchons.fr, 1 embox.net, 1 embracecontext.com, 1 -embraceni.org, 1 embracer.com, 1 embracethedarkness.co.uk, 1 embracezine.tk, 1 @@ -48339,7 +47891,6 @@ emby.live, 1 emccglobal.org, 1 emceemanic.tk, 1 emcentrix-com-site-mvc.azurewebsites.net, 1 -emchatnetwork.com, 1 emcloud.io, 1 emcspotlight.com, 1 emdadkhodrokaraj.ir, 1 @@ -48365,7 +47916,6 @@ emenshop.ml, 1 emenshop.tk, 1 emeralda.tk, 1 emeraldcbdshop.com, 0 -emeraldcityswagger.com, 1 emeraldcoastrideshare.com, 1 emeraldcoasturgentcare.com, 1 emeraldheights.tk, 1 @@ -48385,8 +47935,6 @@ emersonreview.tk, 1 emersya.com, 1 emex.ro, 1 emffren.com.tr, 1 -emfwk.com, 1 -emgadvisors.com, 1 emi.im, 1 emielraaijmakers.nl, 1 emigrantes.tk, 1 @@ -48463,7 +48011,6 @@ emmajayne.tk, 1 emmalegalnurse.com, 1 emmaliddell.com, 0 emmanuelle-et-julien.ch, 1 -emmanuellecerat.ca, 1 emmanuelorocker.com, 1 emmaowl.com, 1 emmastarr.net, 1 @@ -48537,7 +48084,6 @@ empirelevel.eu, 1 empireliverfoundation.org, 1 empirestatejazzcafe.com, 1 empiria.site, 1 -emplealis.com, 1 emplifi.io, 1 emploi-collectivites.fr, 0 emploi-international.net, 1 @@ -48585,7 +48131,6 @@ emprendeconchrisfx.com, 1 emprendedoresdesevilla.es, 1 emprendimientoweb.co, 1 emprendimientoyformacion.com, 1 -empresa1.com.br, 1 empresa365.com, 1 empresautil.tk, 1 emprestimodedinheiro.com, 1 @@ -48659,7 +48204,6 @@ enactor.co, 1 enactus.org, 1 enactusteesside.org, 1 enagramm.com, 1 -enakari.com, 1 enalean.com, 1 enam.gov.in, 1 enamae.net, 1 @@ -48706,7 +48250,6 @@ encryptedconnection.net, 1 encryptionweb.tk, 1 encryptmy.site, 1 encryptmycard.com, 1 -encryptmysite.net, 1 encryptographs.com, 1 encuentra-todo.tk, 1 encuentra.tk, 1 @@ -48774,21 +48317,10 @@ enecivilela.com, 1 enefit.com, 1 enefit.ee, 1 enefitconnect.ee, 1 -enefitgreen.com, 1 enefitgreen.ee, 1 -enefitgreen.eu, 1 -enefitgreen.fi, 1 enefitgreen.lt, 1 enefitgreen.lv, 1 -enefitgreen.pl, 1 -enefitgreen.se, 1 enefitvolt.com, 1 -enefitvolt.ee, 1 -enefitvolt.eu, 1 -enefitvolt.fi, 1 -enefitvolt.lv, 1 -enefitvolt.pl, 1 -enefitvolt.se, 1 enefix.eu, 1 eneko.com, 1 enekogarrido.com, 0 @@ -48797,7 +48329,6 @@ enelgreenpower.com, 1 enemybase.tk, 1 enemyofman.com, 1 enemyterritory.tk, 1 -enequilibreflocoach.fr, 1 energaia.de, 1 energetic.cc, 1 energetica.ga, 1 @@ -48840,7 +48371,6 @@ energycrewing.com, 1 energydrinkblog.de, 1 energyefficientservices.com, 1 energyelephant.com, 1 -energyflows.ie, 1 energyforum.tk, 1 energygenie.com.au, 1 energygroup.gq, 1 @@ -48915,7 +48445,7 @@ engie-laadpalen.nl, 1 engima.nl, 1 engineer-kobe.ga, 1 engineer-route.com, 1 -engineer.org.my, 1 +engineer.org.my, 0 engineeringclicks.com, 1 engineeringidea.ga, 1 engineertaplin.co.uk, 1 @@ -48958,7 +48488,6 @@ englishfamilyzone.tk, 1 englishll.com, 1 englishlol.com, 1 englishouse.tk, 1 -englishphonopass.com, 1 englishprovence.com, 1 englishschoolforkids.com.ua, 1 englishteacheredu.org, 1 @@ -49031,6 +48560,7 @@ enmowe.tech, 1 ennd.com, 1 enno.mom, 0 ennori.jp, 1 +ennova.com, 0 enoahinc.com, 1 enodais.gr, 1 enoenergy.com, 1 @@ -49090,7 +48620,6 @@ ensons.de, 1 ensonyan.com, 1 enstep.ru, 1 enstroga.at, 1 -enstructo.net, 1 ensured.com, 1 ensured.nl, 1 ensurtec.com, 1 @@ -49115,7 +48644,6 @@ enterprise-hr.com, 1 enterprisecloudservices.inc, 1 enterprisenetworksecurity.net, 1 enterpriseoregon.gov, 1 -enterprisesupercenter.net, 1 enterpriset.cf, 1 enterprisey.enterprises, 1 entersoftsecurity.com, 1 @@ -49268,11 +48796,10 @@ eosagonline.ru, 1 eoscryptocurrency.com, 1 eosguru.ru, 1 eosinofilos.com, 1 -eoskoch.com, 1 eosol.de, 1 eosol.net, 1 eosol.services, 1 -eotvosoh.hu, 1 +eotvosoh.hu, 0 eov2.com, 1 ep-cortex.com, 1 ep-plus.jp, 1 @@ -49306,7 +48833,6 @@ epic.org, 1 epica.tk, 1 epicapos.cz, 1 epicawesomemods.com, 1 -epiccraft-mc.de, 1 epicdesign1.tk, 1 epicdesign2.tk, 1 epicdowney.com, 1 @@ -49355,7 +48881,6 @@ epitelial.com, 1 epitesti.ro, 1 epitesz.co, 1 epiteugma.com, 1 -epitome.games, 1 epizentrum.work, 1 epizentrum.works, 1 epl.ee, 1 @@ -49407,7 +48932,6 @@ eprosto.cf, 1 eprzybornik.pl, 1 epsamsg.com, 1 epsi.io, 1 -epsilonhomebasedqualitycare.com, 1 epsilontel.com, 1 epsmil.it, 1 epsomnhpolice.gov, 1 @@ -49448,7 +48972,9 @@ equinetherapy.ca, 1 equinox.io, 1 equinoxe.de, 1 equip.cz, 1 +equipamentosparapostos.com.br, 1 equipandoloja.net.br, 1 +equipecarriere.ca, 1 equipedefrance.tv, 0 equipedefrente.tk, 1 equipeferramentas.com.br, 1 @@ -49490,7 +49016,6 @@ erasure.tk, 1 erasyou.com, 1 erate.fi, 1 eraterm.com, 1 -erath.fr, 0 eravurnet.tk, 1 erb.org, 1 erboristeria.milano.it, 1 @@ -49544,7 +49069,6 @@ ericairwin.com, 1 ericccheng.com, 1 ericdiao.com, 1 ericdobson.com, 1 -ericflor.com.br, 1 ericfm.tk, 1 ericfo.cf, 1 ericfra.nz, 1 @@ -49774,7 +49298,6 @@ esball.in, 0 esball.online, 1 esball888.net, 1 esbuilders.co.nz, 0 -esburgos.info, 1 esc-romania.tk, 1 esc-turkey.tk, 1 esc18.net, 1 @@ -49783,7 +49306,7 @@ esc9.net, 1 escae.ml, 1 escael.org, 1 escalando.tk, 1 -escale-communication.bzh, 1 +escale-communication.bzh, 0 escale33bienetre.fr, 1 escalesensorielle.com, 1 escambiacountyal.gov, 1 @@ -49841,7 +49364,6 @@ escrocratie.tk, 1 escrowalliance.com, 1 escspain.tk, 1 escuelabiblica.com, 1 -escuelacaninalatejera.es, 1 escueladego.tk, 1 escueladelsabor.com, 1 escueladeministerioytecnologia.com, 1 @@ -49904,7 +49426,6 @@ esleme.com, 1 eslgrammar.org, 1 eslightinghire.co.uk, 1 eslint.org, 0 -eslove.jp, 1 eslteacheredu.org, 1 eslutt.cc, 1 esm.run, 1 @@ -49987,14 +49508,11 @@ espoonkumi.fi, 0 esport-agency.fr, 1 esport-brande.dk, 1 esporters.it, 1 -esporters.today, 1 esportsbattles.ga, 1 espower.com.sg, 1 -espressodokter.nl, 1 espressonews.gr, 1 espressoservicesplus.com.au, 1 esprihealth.com, 1 -espriler.com, 1 espub.org, 1 esq, 1 esquelario.tk, 1 @@ -50013,7 +49531,6 @@ essay-writing-topics-fce.tk, 1 essayads.com, 1 essaybrand.com, 1 essaychat.com, 1 -essaychecker.com, 1 essaycoupons.com, 1 essaydirectory.com, 0 essayforsale.net, 1 @@ -50025,7 +49542,6 @@ essaylib.com, 1 essaymaker.gq, 1 essaynews.com, 1 essaypro.net, 1 -essays.me, 1 essayscam.org, 1 essayservices.org, 1 essayshark.com, 1 @@ -50041,7 +49557,6 @@ essentialinteriors.ga, 1 essentialliving.co.uk, 1 essentialoils.co.za, 1 essentialoils.nl, 1 -essentialoilsimports.com, 1 essentialsource.net, 1 essentiapura.com, 1 essentiate.com, 1 @@ -50095,6 +49610,7 @@ estebanborges.com, 1 estebanoria.net, 1 estedafah.com, 1 esteladigital.com, 1 +estelarix.com, 1 estellaequipment.com, 1 estenio.com.mx, 1 esteniomexico.com, 1 @@ -50174,7 +49690,6 @@ esystems.tk, 1 eszkola.pl, 1 et-inf.de, 1 et.al, 1 -et.gd, 1 et420nrw.tk, 1 etablissement.com, 1 etaes.eu, 1 @@ -50190,13 +49705,10 @@ etath.com, 1 etaxigraz.com, 1 etccooperative.org, 0 etch.co, 1 -etch44.com, 1 etcivil.com, 1 etctop.tk, 1 etdcampus.com, 1 -etdonline.co.za, 1 etdp.co.za, 1 -etduvindemoselle.fr, 1 etech-solution.com, 1 etech-solution.net, 1 etech-solutions.com, 1 @@ -50320,7 +49832,6 @@ etos.tk, 1 etowahwaterga.gov, 1 etrades.tk, 1 etre-belle.tk, 1 -etre-soi.ch, 0 etre-vivant.fr, 0 etrecosmeticderm.com, 1 etresmant.es, 1 @@ -50329,7 +49840,7 @@ ets-etos.azurewebsites.net, 1 ets-software.de, 1 etsduova.dedyn.io, 1 etselquemenges.cat, 1 -etsmarconi.be, 1 +etsmarconi.be, 0 etspuka.de, 1 etsradio.org, 1 etsu.edu, 1 @@ -50376,7 +49887,6 @@ eucustody.com, 1 eucybernet.eu, 0 eudiakok.hu, 1 eudore.org, 1 -euexia.fr, 1 eufair.com, 1 eugenegamelan.org, 1 eugenekay.com, 0 @@ -50651,7 +50161,6 @@ evbox.com, 1 evdenevenakliyatankara.name.tr, 1 evdenevenakliyatistanbul.gen.tr, 1 evdeneyapilir.com, 1 -eve-care.com, 1 eve-online-com.ru, 1 eve-ua.com, 1 eve.tax, 1 @@ -50757,7 +50266,6 @@ everifile.com, 1 everify.gov, 1 everisland.com, 1 everitoken.io, 1 -everlastnetworks.com.au, 0 everling.lu, 1 everlong.org, 1 everly.market, 1 @@ -50770,7 +50278,6 @@ everready.tk, 1 everride.com, 1 everseo.tk, 1 eversightwealth.com, 1 -everstrike.io, 1 evertonarentwe.com, 1 evertradeelectronics.com, 1 evertz.com, 1 @@ -50780,6 +50287,7 @@ everwinter.tk, 1 every-day-life.com, 0 everyarti.st, 1 everycorneroftheworld.cf, 1 +everycorneroftheworld.de, 1 everycorneroftheworld.ml, 1 everycorneroftheworld.tk, 1 everyday.eu.org, 1 @@ -50831,9 +50339,7 @@ evga.com, 1 evhoeft.com, 1 eviction.cf, 1 evidecor.com.br, 1 -evidencebased.net, 1 evidenceusa.com.br, 1 -evidenciamidiasdigitais.com.br, 1 evidencija.ba, 1 evies.tk, 1 evil-empire.tk, 1 @@ -50868,7 +50374,6 @@ evl.one, 1 evlilikilan.com, 1 evlqa1sp1tzb05zo-reoo0vhj9a1t5pousfudnkg.com, 0 evntage.com, 1 -evobas.com, 1 evobox.store, 1 evocate.com.au, 1 evoco.vc, 1 @@ -51014,7 +50519,7 @@ exarcheia.com, 1 exarcheia.link, 1 exarcheia.online, 1 exarcheia.ru, 1 -exarius.org, 0 +exarius.org, 1 exashop.tn, 1 exatmiseis.net, 0 excaliburmatrix.tk, 1 @@ -51227,7 +50732,6 @@ expertly.com, 1 expertmarketer.ro, 1 expertmarktrg.com, 1 expertofficefitouts.com.au, 1 -expertoseninversiones.com, 1 expertowears.com, 1 expertpaintersvt.com, 1 expertpanel.gc.ca, 1 @@ -51242,7 +50746,6 @@ expireddomains.net, 1 expis.tk, 1 expiscor.solutions, 1 explane.org, 1 -explicate.org, 1 explode.tk, 1 explodie.org, 1 exploflex.com.br, 1 @@ -51275,7 +50778,6 @@ exploristics.com, 1 explorium.tk, 1 explosion-cs.tk, 1 explosionstereo.tk, 1 -expo-larionov.org, 1 expo58.tk, 1 expoavanza.com, 1 expobeds.com, 1 @@ -51392,7 +50894,7 @@ extienso.com, 1 extinctionrebellion.de, 1 extirosli.ga, 1 extmatrix.com, 0 -extrabits.pt, 0 +extrabits.pt, 1 extrabusiness.tk, 1 extract.me, 1 extracting.tk, 1 @@ -51422,7 +50924,6 @@ extremelawsers.ga, 1 extremelawsest.ga, 1 extremeleadprogram.com, 1 extremelycorporate.ca, 0 -extrememanual.net, 1 extrememusclepump.com, 1 extremepeptides.com, 1 extremeprojects.tk, 1 @@ -51431,7 +50932,6 @@ extremesports.tk, 1 extremetreeandlandscape.com, 1 extremetunedcars.tk, 1 extremfrank.tk, 1 -extremovirtual.com, 1 extrolife.ml, 1 extromail.de, 1 extstore.com, 1 @@ -51492,7 +50992,6 @@ eyetelligence.nl, 1 eyetooth.ga, 1 eyfari.com, 1 eyktasarim.tk, 1 -eylea.us, 1 eylog.co.uk, 1 eylulsohbet.net, 1 eynio.com, 1 @@ -51672,7 +51171,7 @@ fabiankoeppen.com, 1 fabianni.tk, 1 fabickcat.com, 1 fabien-eigenmann.ch, 1 -fabien-hebuterne.fr, 1 +fabien-hebuterne.fr, 0 fabienbaker.com, 1 fabienne-roux.org, 1 fabil.id, 1 @@ -51716,7 +51215,6 @@ fabulouseventsmiami.com, 1 fabulousfarmgirl.com, 1 fabulouslyyouthfulskin.com, 1 fabulouslyyouthfulskineyeserum.com, 1 -faburocks.com, 1 fabuye.cf, 1 fabuye.ga, 1 fabuye.gq, 1 @@ -51751,14 +51249,12 @@ facebookenterprise.com, 1 facebookmail.com, 1 facebookrecruiting.com, 1 faceboom.tk, 1 -facebydrh.com, 1 facebylouise.co.uk, 1 facedaily.tk, 1 facedeplook.tk, 1 faceegypt.tk, 1 faceitsalon.com, 1 facekhande.tk, 1 -facekungfu.com, 0 facelimousin.fr, 1 facemashclone.com, 1 facemaze.io, 1 @@ -51770,7 +51266,6 @@ facescertification.com, 1 facesdr.com, 1 faceside.com, 1 facesnf.com, 1 -faceup.dk, 1 facevietpro.tk, 1 facevitalityers.ga, 1 fach-journalist.de, 1 @@ -51940,7 +51435,6 @@ fairmonttamarak.cf, 1 fairmonttamarak.ga, 1 fairmonttamarak.ml, 1 fairmountfireco.gov, 1 -fairouzacademy.org, 1 fairplanner.net, 1 fairplay-trading.com, 1 fairplay.im, 1 @@ -51989,7 +51483,6 @@ fakeapple.nl, 1 fakebusters.club, 1 fakecheck.com, 1 faked.org, 1 -fakedisk.com, 1 fakeemergency.com, 1 fakeframes.ga, 1 fakeframesers.ga, 1 @@ -52017,7 +51510,6 @@ falcema.com, 1 falchion.tk, 1 falck.dk, 1 falcn.io, 1 -falcona.io, 1 falconcrest-lippert.com, 1 falconerny.gov, 1 falconfrag.com, 1 @@ -52051,6 +51543,7 @@ fallenspirits.co.uk, 1 fallfishtenkara.com, 0 falling.se, 1 fallingbrick.co.uk, 1 +fallofthecitadel.com, 1 fallonarrocho.tk, 1 fallout-craft.ru, 1 fallout-tattoo.de, 1 @@ -52173,7 +51666,6 @@ fanera.tk, 1 fanescu.ro, 1 faneuil.com, 1 fanfareokselaar.tk, 1 -fanfareunion.ch, 0 fanfiction.tk, 1 fanflix.co, 1 fang-den-sommer.de, 1 @@ -52186,7 +51678,6 @@ fangs.ink, 1 fangshu.com, 1 fanidrakopoulou.tk, 1 fanjingbo.com, 1 -fanjoe.be, 1 fanmerchstore.com, 1 fanniemaeloans.tk, 1 fanning.tk, 1 @@ -52204,7 +51695,6 @@ fansport.space, 1 fansta.jp, 1 fanstuff.ru, 1 fantacast.it, 1 -fantasea.pl, 1 fantasiatravel.hr, 1 fantasmma.tk, 1 fantasticcleaners.com.au, 1 @@ -52237,14 +51727,12 @@ fantasymina.de, 1 fantasypartyhire.com.au, 1 fantasypartyrental.com, 1 fantasyprojections.com, 1 -fantasyrooms.com, 1 fantasyspectrum.com, 1 fantasysports.tk, 1 fantasysportsnews.org, 1 fantgames.com, 1 fantinisfantasy.cf, 1 fantinishop.com, 1 -fantom.foundation, 1 fantraxhq.com, 1 fanty-online.com, 0 fanyue123.tk, 1 @@ -52338,7 +51826,6 @@ farmakon.tk, 1 farmasimahaganesha.ac.id, 1 farmaspeed.it, 1 farmauna.com, 1 -farmaweb.be, 1 farmbureauinsurance-mi.com, 1 farmer-miniaturen.tk, 1 farmerfairness.gov, 1 @@ -52357,7 +51844,6 @@ farmvilleva.gov, 1 farnboroughairshow.com, 1 faro-car-hire.co.uk, 1 faro.com, 1 -farodeluz.ca, 1 farodistribuidora.com.br, 1 faroes.net, 1 faroes.org, 1 @@ -52379,7 +51865,6 @@ fart.cafe, 1 fartoclose.tk, 1 fartypants.com, 1 farukcesur.com.tr, 1 -farumbedandbreakfast.dk, 1 faryaz.tk, 1 fasab-portcenter.se, 1 fasad.eu, 1 @@ -52571,7 +52056,6 @@ fatassbooty.com, 1 fatcat.tk, 1 fate-srd.com, 0 fatecdevday.com.br, 1 -fateitalia.it, 1 fatemaalhabsi.com, 1 fates.online, 1 fatetx.gov, 1 @@ -52579,7 +52063,6 @@ fatfueled.com, 1 fatherhood.gov, 1 fatidique.com, 1 fatig.com, 1 -fatiguefree.com, 1 fatiguesyndrome.com, 1 fatihingemisi.com, 1 fatimamoldes.com.br, 1 @@ -52633,7 +52116,6 @@ favourperfect.com.au, 1 favro.com, 1 favrotest.com, 1 faw-club.cf, 1 -faw.gg, 1 fawong.com, 1 fawter.online, 1 fawx.news, 1 @@ -52885,7 +52367,6 @@ feedkovacs.hu, 1 feedmail.org, 1 feedough.com, 1 feedstringer.com, 1 -feedthebot.com, 1 feedthefood.com, 1 feedthefuture.gov, 1 feedthegreek.tk, 1 @@ -52921,6 +52402,7 @@ feestgids.nl, 1 feetek.net, 1 feetnesclub.tk, 1 feetpa.ws, 1 +feezlinkz.com.ng, 1 feezmodo.com, 1 fef.moe, 1 fefacaram.com.br, 1 @@ -52959,7 +52441,6 @@ fejo.dk, 1 fekepp.net, 1 fekir.info, 1 felcas.com.co, 1 -feld.design, 1 feld.saarland, 1 feldbogenclub-hamburg.de, 1 feldgut.de, 1 @@ -53056,11 +52537,8 @@ fencingmarters.ga, 1 fencingmartest.ga, 1 feng.si, 1 feng18.vip, 0 -feng28.vip, 0 -feng58.vip, 0 feng68.vip, 0 feng88.vip, 0 -feng98.vip, 0 fengchuiyudaqu.ml, 1 fenghuangcheng.tk, 1 fengrui.me, 0 @@ -53160,6 +52638,7 @@ fernandosuarez.cf, 1 fernatura.tk, 1 ferngas.de, 1 fernheim.com.py, 1 +fernhowe.co.uk, 0 fernland.com.au, 1 fernvenue.com, 1 fernweh.tk, 1 @@ -53259,7 +52738,6 @@ fettings.com, 1 feudalisten.de, 1 feudaltactics.com, 1 feuerhuhn.de, 1 -feuerloescher-arten.de, 1 feuerloescher-test.de, 1 feuerwehr-dachaufsetzer.de, 1 feuerwehr-e-learning.de, 1 @@ -53514,7 +52992,6 @@ fh-jituan.com, 1 fh-wechat.com, 1 fh-x.de, 1 fh-zh.com, 1 -fh14.com, 1 fh169.cc, 1 fh6lfwyn.com, 1 fh70.com, 0 @@ -53576,7 +53053,7 @@ fianna.tk, 1 fianoromano.news, 1 fiasgo.dk, 1 fiataldivat.hu, 1 -fiber.mk, 1 +fibank.bg, 1 fiberoptikz.tk, 1 fiberxl.com, 1 fibery.io, 1 @@ -53607,7 +53084,6 @@ fidanza.eu, 1 fiddle.to, 1 fiddlesaw.com, 1 fiddlestickstoys.com.au, 1 -fidecorp.com, 1 fidelapp.com, 1 fidelis-it.ch, 1 fidelis-it.net, 1 @@ -53681,7 +53157,6 @@ fightape.gq, 1 fightape.ml, 1 fighter-planes.tk, 1 fighting-turtle.tk, 1 -fightinggobbler.com, 1 fightingshit.tk, 1 fightsupplies.co.uk, 1 figl.net, 1 @@ -53713,7 +53188,6 @@ fikong.com, 1 fikrinet.tk, 1 fikriwildannugraha.com, 1 fiksem-it.nl, 1 -fikst.com, 1 fil-tec-rixen.com, 1 fil.fi, 0 filamentia.nl, 1 @@ -53914,7 +53388,6 @@ finanzen-weblog.de, 1 finanzierung-sofortzusage.de, 1 finanztime.com, 1 finanzwende-recherche.de, 1 -finapi.io, 1 finaster.com.br, 1 finax.eu, 1 finbio.cf, 1 @@ -53958,7 +53431,6 @@ findings.co, 1 findingtheuniverse.com, 1 findingturkeyers.ga, 1 finditez.com, 1 -findjeen.com, 1 findlayohio.gov, 1 findlimitsers.ga, 1 findlocalproduce.co.uk, 1 @@ -54148,7 +53620,6 @@ fireservicerota.co.uk, 1 fireshellsecurity.team, 1 firesofheaven.org, 1 firesolutionsinc.com, 1 -firesprite.com, 1 firestart.tk, 1 firestarter.fi, 1 firestickhacks.com, 1 @@ -54288,7 +53759,6 @@ fishermansbend.apartments, 1 fishermansbendcorporation.com.au, 1 fishermansbendtownhouses.com.au, 1 fishersin.gov, 1 -fishexport.eu, 1 fishfive.top, 1 fishgen.no, 1 fishingworld.tk, 1 @@ -54752,6 +54222,7 @@ flexworkhero.de, 1 flfl.de, 1 flgaming.gov, 1 flhealthcharts.gov, 1 +fliacuello.com.ar, 1 flibanserina.com, 1 flicerdowneh.cf, 1 flickcritter.com, 1 @@ -54943,7 +54414,6 @@ floridafieros.org, 1 floridafx.gov, 1 floridahealthcareconnections.gov, 1 floridaimigracao.com, 1 -floridaledtruck.com, 1 floridalegion.org, 1 floridaplasticsurgery.com, 1 floridapowermanagement.com, 1 @@ -55017,7 +54487,6 @@ flowgo.tk, 1 flowhcm.com, 1 flowheater.net, 1 flowhopper.com, 1 -flowhub.com, 1 flowinformer.com, 1 flowingdata.com, 1 flowinity.com, 1 @@ -55036,6 +54505,7 @@ flowreplicator.com, 1 flowscale.com, 1 flowstars.tk, 1 flowstateyoga.com.au, 1 +flowstudios.com, 1 flowtex.tk, 1 floydcountyga.gov, 1 floydcova.gov, 1 @@ -55162,7 +54632,6 @@ flythecopter.tk, 1 flytoadventures.com, 1 flytrap.in, 1 flyupture.com, 1 -flywareagle.com, 1 flywind.ml, 1 flyxll.com, 1 flyzold.com, 1 @@ -55180,7 +54649,6 @@ fmbilder.se, 1 fmbonline.com, 1 fmc.gov, 1 fmc.hk, 1 -fmclarity.com, 0 fmcs.gov, 1 fmcsa.fr, 1 fmfp.eu, 1 @@ -55193,7 +54661,6 @@ fmlife.tk, 1 fmm-creative.com, 1 fmn.nl, 1 fmo.ca, 0 -fmodoux.biz, 0 fmorales.com, 0 fmorales.com.ni, 0 fmpilot2.com, 1 @@ -55234,7 +54701,6 @@ foair.me, 0 foairbus.fr, 0 foairbussas.fr, 0 foamfortress.tk, 1 -foamma.com, 1 foard.biz, 1 foard.us, 1 fob-china-moscow.ru, 1 @@ -55300,8 +54766,7 @@ folf.codes, 1 foliencenter24.com, 1 folife.nl, 1 folio.no, 1 -foliumfinance.com, 1 -foljeton.dk, 1 +foljeton.dk, 0 folk.as, 1 folk.tk, 1 folkdance.tk, 1 @@ -55503,7 +54968,6 @@ foodsaversgent.be, 1 foodsedona.ga, 1 foodseurope.com, 1 foodshuffle.ga, 1 -foodsided.com, 1 foodsignature.ga, 1 foodsilk.ga, 1 foodsleuth.ga, 1 @@ -55680,7 +55144,6 @@ forex.ee, 1 forexbrokerinspect.com, 1 forexchef.de, 1 forexcity.cf, 1 -forexclubfree.com, 1 forexcomreview.co, 1 forexee.com, 1 forexexchange.tk, 1 @@ -55813,7 +55276,6 @@ forsat.ga, 1 forsbenin.org, 1 forschbach-janssen.de, 1 forsi.xyz, 0 -forskolen.dk, 1 forskolin.gq, 1 forstbetrieb-hennecke.de, 1 forstprodukte.de, 1 @@ -55863,8 +55325,6 @@ fortress.sk, 1 fortresslinux.com, 1 fortresslinux.nl, 1 fortresslinux.org, 1 -fortressofsolitude.co.za, 1 -fortressone.net, 1 fortricks.in, 1 fortuna-apotheke-lahnstein.de, 1 fortuna-loessnitz.de, 1 @@ -55941,7 +55401,6 @@ forvisualdesign.com, 0 forward-fly-fishing.ch, 0 forward-proxy.email, 1 forward.lc, 1 -forwardadvantage.com, 1 forwardemail.net, 1 forwardfever.tk, 1 forwardfinancingest.ga, 1 @@ -56055,6 +55514,7 @@ fougereettralala.fr, 1 fougner.co, 1 foulabook.com, 1 found.com, 1 +found.website, 1 foundationassure.com, 1 foundationdevices.com, 1 foundationmaintenance.com, 1 @@ -56142,9 +55602,7 @@ foxquill.com, 0 foxscribbler.com, 1 foxstreetcomms.co.za, 0 foxstyle.gq, 1 -foxtonsframes.com, 1 foxtransportables.com.au, 1 -foxtravelnews.com, 1 foxtrials.com, 1 foxtrotcharlie.ovh, 1 foxtrotfm.tk, 1 @@ -56159,7 +55617,6 @@ foyale.io, 1 foylelegal.com, 1 fozzie.co.uk, 1 fozzie.space, 1 -fpaci.org, 1 fpalzira.es, 1 fpasca.com, 1 fpc.gov, 1 @@ -56256,7 +55713,7 @@ framago.de, 1 framakey.org, 1 framalab.org, 1 framalang.org, 1 -framalibre.org, 1 +framalibre.org, 0 framalistes.org, 1 framandroid.org, 1 framanews.org, 1 @@ -56365,7 +55822,6 @@ francovital.com, 1 francoz.me, 1 francs-tireurs.tk, 1 frand.tk, 1 -frandash.com, 1 frandor.co.uk, 1 frandroid.com, 1 frandymvp.tk, 1 @@ -56442,7 +55898,6 @@ franz-vatter.de, 1 franz.beer, 1 franzen.tk, 1 franziska-pascal.de, 1 -franziska-schreck.de, 1 franziskaherbert.de, 1 franzknoll.de, 1 franzoni.eu, 1 @@ -56544,7 +55999,6 @@ frebib.me, 1 frebib.net, 1 freckles.bg, 1 fred-dresken.nl, 1 -fred-latrace.com, 1 fred26.fr, 1 fredbarboo.cf, 1 fredbarboo.ga, 1 @@ -56619,7 +56073,6 @@ freebegames.tk, 1 freebetoffers.co.uk, 1 freebetonthegrandnational.com, 1 freebettingreviews.com, 1 -freebgmringtones.com, 1 freebiofuels.ga, 1 freebiofuelsers.ga, 1 freebirdairlines.com, 1 @@ -56633,7 +56086,6 @@ freebsd.la, 1 freebsdbrasil.com.br, 1 freebus.org, 1 freebusinessideas.net, 1 -freebuyertraffic.com, 1 freecam-sex.com, 1 freecam2cam.site, 1 freecatz.pe.kr, 1 @@ -56688,7 +56140,6 @@ freefincal.com, 1 freeflightstoitaly.ngo, 1 freefonts.ga, 1 freeform4u.de, 1 -freefridgeprogram.com.au, 1 freefuckvids.com, 1 freegame-mugen.jp, 1 freegutters.com, 1 @@ -56724,7 +56175,6 @@ freemanlogistics.com, 1 freemans.com, 1 freemanwealth.com, 0 freemason.pt, 1 -freemattandgrace.com, 1 freemazes.tk, 1 freemchosting.tk, 1 freeme.gq, 1 @@ -56791,13 +56241,11 @@ freesocialbookmarkingsites.tk, 1 freesoft-board.to, 1 freesoftlab.com, 1 freesolitaire.win, 1 -freesoul-deactivate-plugins.com, 1 freesourcestl.org, 1 freespace.info, 1 freespanlift.com, 1 freespeech.org, 1 freesports.ml, 1 -freesquare.net, 1 freesteam.net, 1 freesteam.org, 1 freestylemartialarts.tk, 1 @@ -56811,7 +56259,6 @@ freetext.org, 1 freethecape.org.za, 1 freethetv.ie, 1 freethinker.org, 1 -freethinkers.cafe, 1 freethinkers.org, 1 freethought.org, 1 freetimefun.tk, 1 @@ -56828,7 +56275,6 @@ freevstplugins.net, 1 freewarez.org, 1 freewaywarehouse.com, 1 freewebh0st.tk, 1 -freewerkt.nl, 1 freewoman.club, 1 freewoodfactory.com, 1 freexmovie.com, 1 @@ -56858,7 +56304,6 @@ freifunk-remscheid.de, 1 freight-broker.ru, 1 freight-news.ru, 1 freightcenter.com, 1 -freiheitjetzt.com, 1 freinetmiddenschool.gent, 1 freitas.org, 1 freitasm.com, 1 @@ -56976,7 +56421,6 @@ fried.tk, 1 friedberg2020.de, 1 friedbergdirectfx.ca, 1 friederes.lu, 1 -friederloch.de, 1 friedhelm-wolf.de, 1 friedli.info, 1 friedrich-foto-art.de, 1 @@ -57068,7 +56512,6 @@ fritteli.ch, 1 fritz-koehne-schule.de, 1 fritzbox-forum.tk, 1 friv-2018.ga, 1 -friv31games.com, 1 frizo.com, 1 frlcnews.com, 1 frlt.one, 1 @@ -57129,7 +56572,6 @@ frontendmentor.io, 1 fronterasblog.tk, 1 frontier.bet, 1 frontierbrasil.tk, 1 -frontierbundles.com, 1 frontierclimate.com, 0 frontiernav.net, 1 frontiernetworks.co.uk, 1 @@ -57143,7 +56585,6 @@ frontrouge.fr, 1 frontrunneragency.com, 1 froogo.co.uk, 1 frosinonetoday.it, 1 -frosoku.com, 1 frostedgame.xyz, 1 frostexpert.ru, 1 frostfire.tk, 1 @@ -57170,7 +56611,6 @@ frozencuisine.ga, 1 frozencuisineers.ga, 1 frozencuisineest.ga, 1 frozendurian.club, 1 -frozenfutures.com, 1 frozenpennies.com, 1 frp-roleplay.de, 1 frpg.gov, 1 @@ -57236,7 +56676,6 @@ fsapubs.gov, 0 fsavc.org.uk, 1 fsbn.eu, 1 fsbpaintrock.com, 1 -fsbturton.com, 1 fsch2009.com, 1 fsck.cz, 1 fsck.jp, 0 @@ -57257,7 +56696,6 @@ fsma.pl, 1 fsmi.in, 1 fsnb.com, 1 fspk.pro, 1 -fspk.shop, 1 fsps.ch, 1 fsrs.gov, 1 fsscms.com, 1 @@ -57497,7 +56935,6 @@ fumilink.com, 1 fumotousa.com, 1 fun-baby.ru, 1 fun-bounce.co.uk, 1 -fun-club-35.com, 1 fun-day.tk, 1 fun-life.com.tw, 0 fun-tasia.co.uk, 1 @@ -57534,7 +56971,6 @@ fundacjamatkiewy.pl, 1 fundaekhaya.co.za, 1 fundamentt.com, 1 fundayltd.com, 1 -fundays.nl, 1 fundedschools.ml, 1 fundelva.com, 1 fundex.id, 1 @@ -57562,6 +56998,7 @@ funerare24.ro, 1 funerariaalarcon.cl, 1 funfa.nl, 1 funfactorleeds.co.uk, 1 +funfacts.cz, 1 funfm.tk, 1 fungalforager.com, 1 fungame.eu, 1 @@ -57681,14 +57118,12 @@ funshemale.com, 1 funshirts.tk, 1 funsite.tk, 1 funsmsmailing.tk, 1 -funsochi.ru, 0 funsoup.tk, 1 funtastic-basketball.de, 1 funtastic.ie, 1 funtime-inflatables.co.uk, 1 funtime.com.ua, 1 funtime.kiev.ua, 1 -funtimesailing.com, 1 funtimesbouncycastles.co.uk, 1 funtimeusabiloxi.com, 1 funtimez.cf, 1 @@ -57749,7 +57184,6 @@ furniturefromthebarn.com, 1 furnitureproduction.tk, 1 furnituresolutions.tk, 1 furniturezoneboone.com, 1 -furniz.sk, 1 furnu.org, 1 furorcanario.tk, 1 furoretferrum.tk, 1 @@ -57877,7 +57311,6 @@ futurefund.gov.au, 1 futurefundapp.com, 1 futuregaming.io, 1 futuregrowthva.com, 1 -futurehack.io, 1 futureimmigration.net, 1 futurenda.com, 1 futurenewsforyou.com, 1 @@ -57896,7 +57329,6 @@ futurewithoutfear.org, 1 futurewithoutfear.us, 1 futureyouhealth.com, 1 futurezone.at, 1 -futuristacademy.io, 1 futuristicarchitectures.tk, 1 futuristicjobs.sk, 1 futurity.ml, 1 @@ -58050,7 +57482,6 @@ g1.ie, 1 g10e.ch, 1 g15ubezpieczenia.pl, 1 g1reeds.com, 1 -g1trans.com, 1 g2-inc.com, 1 g2fdistribuidora.com.br, 1 g2jp.uk, 1 @@ -58082,7 +57513,6 @@ g7usa.gov, 1 g82365.com, 1 g8energysolutions.co.uk, 1 g9297.co, 1 -g9397.com, 1 g9721.com, 0 g9728.co, 1 ga-2.it, 0 @@ -58099,6 +57529,7 @@ gabby.vn, 0 gabbyer.ga, 1 gabbyer.gq, 1 gabbyer.ml, 1 +gabe.download, 1 gabe.house, 1 gabe.pics, 1 gabe.watch, 1 @@ -58110,7 +57541,6 @@ gabethebabetv.com, 1 gabigold.net, 1 gabijazava.com, 1 gabinet-okulistyczny.tk, 1 -gabinetejuridicotecnologicojuandemeseguer.es, 1 gabiocs.com, 1 gabiz.tk, 1 gablermade.com, 1 @@ -58120,7 +57550,6 @@ gablesvets.co.uk, 1 gably.net, 1 gabnotes.org, 1 gabodesign.tk, 1 -gabonflash.com, 1 gaborg.hu, 1 gabraham.tk, 1 gabriel.to, 1 @@ -58185,13 +57614,11 @@ gadgetsgigabytesandgoodwill.com, 1 gadgetshome.ml, 1 gadgetslab.tk, 1 gadgettendency.com, 1 -gadgetter.biz, 1 gadingpromosindo.tk, 1 gadkiy-farm.tk, 1 gadsdensoefl.gov, 1 gadse.games, 1 gadzilla.tk, 1 -gae123.com, 1 gaeldst.dk, 1 gaelico.tk, 1 gaemsofyesterday.com, 1 @@ -58203,6 +57630,7 @@ gafachi.com, 1 gafan.cf, 1 gaff-rig.co.uk, 1 gaflooring.com, 1 +gafrecomex.com, 1 gag101.com, 1 gaganenterprises.in, 1 gagarin.ga, 1 @@ -58412,7 +57840,6 @@ gameboyarchive.com, 1 gamebrott.com, 1 gamecarddelivery.com, 1 gamecdn.com, 0 -gamechefpummarola.eu, 1 gameclimax.cf, 1 gameclimax.tk, 1 gameclue.jp, 1 @@ -58445,7 +57872,7 @@ gameimani.ga, 1 gameindustry.eu, 1 gameisbest.jp, 1 gamejobs.co, 1 -gamekaitori.jp, 1 +gamekaitori.jp, 0 gamekb.gq, 1 gamekeepers.cz, 1 gamekeybox.tk, 1 @@ -58472,7 +57899,6 @@ gamepunel.tk, 1 gamepunelita.cf, 1 gamepunelita.tk, 1 gamepuzzleinfo.tk, 1 -gamer-portal.com, 1 gamer-vip.com, 1 gameracinginfo.tk, 1 gamerankings.com, 1 @@ -58531,7 +57957,6 @@ gameshack.io, 1 gameship.ga, 1 gameshopsrbija.com, 1 gameshowchallenge.ie, 1 -gamesided.com, 1 gamesmagic.tk, 1 gamesone.tk, 1 gamespark.ga, 1 @@ -58544,7 +57969,6 @@ gamestand.net, 1 gamester.tv, 1 gamesunited.tk, 1 gamesweek.melbourne, 1 -gameswitchers.uk, 1 gametainment.net, 1 gametilt.com, 1 gametium.com, 1 @@ -58637,7 +58061,6 @@ gannett-cdn.com, 1 gannettinnovation.com, 1 ganodermatiendaonline.com, 1 gant.tk, 1 -gantt-chart.com, 1 ganyouxuan.com, 1 gao.rocks, 1 gao4.pw, 1 @@ -58712,6 +58135,7 @@ gardurialuminiuiasi.ro, 1 garethbowker.com, 1 garethbowker.uk, 1 garethkirk.com, 1 +garethkirkreviews.com, 1 garethrhugh.es, 1 garfieldairlines.tk, 1 garfieldcountyne.gov, 1 @@ -58790,6 +58214,7 @@ gaspard-ulliel.tk, 1 gasparesganga.com, 1 gasscc.id, 1 gassero.com, 0 +gasslerorourke.com, 0 gassouthkenticoqa.azurewebsites.net, 1 gassycat.be, 1 gassycat.co.uk, 1 @@ -58874,6 +58299,7 @@ gavingreer.com, 1 gavinnewsom.com, 1 gavins.stream, 1 gavintang.me, 1 +gavlix.se, 1 gavr.space, 1 gaw.sh, 1 gay-chat.it, 1 @@ -58917,6 +58343,7 @@ gazettengr.com, 1 gazi.edu.tr, 1 gazik.com.ua, 1 gazizov.tk, 1 +gazobeton-don.ru, 1 gazoneo.fr, 1 gazor.tk, 1 gazoz.ga, 1 @@ -58941,7 +58368,6 @@ gbk-host.de, 1 gbk-teamplan.de, 1 gbkom.de, 1 gbl.selfip.net, 0 -gbmwolverine.com, 1 gboys.net, 0 gbp.com.ph, 1 gbpayments.io, 1 @@ -58963,7 +58389,7 @@ gcabrasives.co.uk, 1 gcaresolutions.com, 1 gcb.com.my, 1 gcbit.dk, 1 -gcc-globalclimatechange.com, 0 +gcc-globalclimatechange.com, 1 gccfoodstuff.com, 0 gcdamp.gov, 1 gcfadvisors.com, 1 @@ -58973,7 +58399,6 @@ gchp.ie, 0 gchq.lol, 1 gchq.wtf, 1 gclegal.com.au, 1 -gclick.com.br, 1 gclpower.com, 1 gcode.space, 1 gcoded.de, 1 @@ -59021,7 +58446,6 @@ gdz.tv, 1 gdz4you.com, 1 ge1.me, 0 ge3k.net, 1 -gea-waldviertler.at, 1 geafworks.tk, 1 geaiai.com, 1 gealot.com, 1 @@ -59045,7 +58469,7 @@ gearev.net, 1 gearfinder.nl, 1 gearnews.tk, 1 gearset.com, 1 -gearsupply.com, 1 +gearsupply.com, 0 geaskb.nl, 0 geass.xyz, 1 geauxdns.com, 1 @@ -59056,7 +58480,6 @@ gebaeudeklima-schweiz.ch, 1 gebeliktakibim.com, 1 geben.digital, 1 gebiert.de, 1 -geblitzt.de, 1 gebn.co.uk, 1 gebn.uk, 1 geborgen-wachsen.de, 1 @@ -59097,7 +58520,6 @@ geekdocs.de, 0 geekdoit.com, 1 geekedin.ga, 1 geekelectronico.com, 1 -geekgao.cn, 0 geekgear.tk, 1 geekgirltech.com, 1 geekhelpline.com.au, 1 @@ -59147,7 +58569,6 @@ geertjanvanhest.nl, 1 geertswei.nl, 1 geestelijkgezondgent.be, 1 geesthof.de, 1 -gefeuert.de, 1 gefinances.com, 1 gefolge.org, 1 gegeco.ch, 0 @@ -59293,7 +58714,7 @@ generalautocheck.com, 1 generalcustomshop.com.br, 1 generali-investments-portal.cz, 1 generali-worldwide.com, 1 -generali.com.tr, 0 +generali.com.tr, 1 generalinsuranceagencies.com.au, 1 generalinsuranceservices.com, 1 generalliabilityinsure.com, 1 @@ -59370,7 +58791,6 @@ genevablogers.ga, 1 genevablogest.ga, 1 genevachauffeur.com, 1 genevacountyal.gov, 1 -geneve-naturisme.ch, 0 geneve.guide, 1 genevoise-entretien.ch, 0 genfaerd.dk, 1 @@ -59428,9 +58848,12 @@ genophore.com, 1 genoplot.com, 1 genossen.ru, 1 genossenwiese.ch, 1 +genotix.eu, 1 +genotix.nl, 1 genovatoday.it, 1 genoveve.de, 1 gensenwedding.jp, 1 +genshiken-itb.org, 1 gensicke.de, 1 gensleiten.de, 1 genslerapps.com, 1 @@ -59726,7 +59149,6 @@ gerritcodereview.com, 1 gers-authentique.com, 1 gerstbauer.tk, 1 gerstner.it, 1 -gertiessmalldogrescue.org, 1 gertjan-tamerus.tk, 1 gertrudeco.com, 1 gertrudentor.de, 1 @@ -59823,6 +59245,7 @@ getdeclutter.com, 1 getdinghy.com, 1 getdirectcredit.com, 1 getdishnow.tk, 1 +getdoc.com.br, 1 getdoges.tk, 1 getdownon.it, 1 getdumpsterdash.com, 1 @@ -59869,6 +59292,7 @@ getinfoleads.tk, 1 getinshape.today, 1 getinsuranceanywhere.com, 1 getinternet.gov, 1 +getintopcfile.com, 1 getintra.org, 1 getitpeople.com, 1 getjadedlocal.com, 1 @@ -59928,11 +59352,9 @@ getserm.com, 1 getserum.xyz, 1 getsession.org, 1 getsetbounce.co.uk, 1 -getshouse.com, 1 getsilknow.com, 1 getsimone.online, 1 getsmartlife.in, 1 -getsmartlook.com, 1 getsocreative.com, 1 getspaces.com, 1 getstark.co, 1 @@ -59967,7 +59389,6 @@ getwokegobroke.xyz, 1 getword.com, 1 getwork.tk, 1 getwsodo.com, 1 -getyeflask.com, 1 getyou.onl, 0 getyour.nz, 1 getyoureuro.tk, 1 @@ -60161,18 +59582,18 @@ ghprinting.net, 1 ghsix.com.br, 1 ghwconline.org, 1 ghyvelde.fr, 1 +gi-plant.shop, 1 giac.net, 1 giac.org, 1 giacomodebidda.com, 1 giacomopelagatti.it, 1 -giaimanhacai.com, 1 giakki.eu, 1 +gialai.gov.vn, 1 gialupa.tk, 1 giamcanhieuqua.vn, 1 giancarlomarino.com, 1 giangma.tk, 1 giannakis.tk, 1 -giannifoti.it, 1 gianproperties.com, 1 giant-panda.com, 1 giant-tortoise.com, 1 @@ -60274,7 +59695,6 @@ gigantino.net, 1 gigantism.com, 1 gigantron.com, 1 gigaone.pl, 1 -gigapc.be, 1 gigarange.org, 1 gigarange.xyz, 1 gigasoft.tk, 1 @@ -60297,7 +59717,6 @@ gigseekr.com, 1 gijonshiro.tk, 1 gikovatelojavirtual.com.br, 1 gil.gg, 1 -gil.re, 1 gilandrad.tk, 1 gilangcp.com, 1 gilbert-schmalriede.de, 1 @@ -60415,7 +59834,6 @@ girls-heaven.com, 1 girlsaloudcity.tk, 1 girlsbar-navi.jp, 1 girlschandigarh.in, 1 -girlsforum.com, 1 girlsfucked.com, 1 girlsgenerationgoods.com, 1 girlsgetpied.com, 1 @@ -60531,7 +59949,6 @@ givingnexus.org, 0 givingpledge.org, 1 givingtools.com, 1 givip.eu, 1 -givostore.com, 1 gix.net.pl, 1 gixtools.co.uk, 1 gixtools.com, 1 @@ -60584,7 +60001,6 @@ gl.search.yahoo.com, 0 glabiatoren-kst.de, 1 glacialexperience.is, 1 glaciercountymt.gov, 1 -glaciercreek.co, 1 glacierviewfire.gov, 1 glad.com, 1 gladala.tk, 1 @@ -60762,7 +60178,6 @@ global66.com, 1 globalacademicgroup.com, 1 globalaccountservice.com, 1 globalamend.com, 1 -globalassistenciatecnica.com.br, 1 globalautomation.com.co, 1 globalbix.com, 1 globalbridge-japan.com, 1 @@ -60835,7 +60250,6 @@ globalpolarbear.com, 1 globalproduction.ga, 1 globalprojetores.com.br, 1 globalradio.tk, 1 -globalrocksummit.com, 1 globalrussia.tk, 1 globalsecuritydatabase.com, 1 globalsecuritydatabase.io, 1 @@ -61112,7 +60526,6 @@ goatbot.xyz, 1 goathub.io, 1 goatlord.tk, 1 goatstore.ca, 1 -goaudits.com, 1 goavio.rest, 1 gobarrelroll.com, 1 gobeline.com, 1 @@ -61129,7 +60542,6 @@ gobytedesign.uk, 1 gocardless.com, 1 gocareserv.com, 1 gocct.com, 1 -gocher.me, 1 gociicii.com, 1 gockelsee.de, 1 gockhuatsuky.tk, 1 @@ -61170,7 +60582,6 @@ godoter.cn, 1 godoza.tk, 1 godrealms.com, 1 godrive.ga, 1 -godruoyi.com, 1 godsofhell.com, 1 godsofhell.de, 1 godsowncountry.tk, 1 @@ -61239,7 +60650,6 @@ gogleapis.com, 1 gogo.mn, 1 gogocarto.fr, 1 gogocharters.com, 1 -gogogirl.fun, 1 gogogirl.vip, 1 gogolino.tk, 1 gogomail.ga, 1 @@ -61266,11 +60676,9 @@ goingreen.com.au, 1 goiymua.com, 1 goizalde.tk, 1 gojoebean.com, 1 -gokartwiki.com, 0 gokazakhstan.com, 1 gokgids.nl, 1 gokhankesici.com, 1 -gokiebox.com, 1 gokmenguresci.com, 1 gokoururi.com, 1 goksu.in, 1 @@ -61284,10 +60692,9 @@ gold-bird.tk, 1 gold-diamondltd.tk, 1 gold-fm.ml, 1 gold9999.com, 1 -goldandgopher.com, 1 goldankauf1875.at, 1 goldband.tk, 1 -goldbar.com.hk, 0 +goldbar.com.hk, 1 goldbio.com, 1 goldbug.ga, 1 goldcard.cz, 1 @@ -61315,7 +60722,6 @@ goldendogs.tk, 1 goldeneggs.club, 1 goldeneyesantafe.com, 1 goldenfawz.com, 1 -goldengatesports.com, 1 goldenglow.fans, 1 goldenhillsoftware.com, 1 goldenhost.ca, 1 @@ -61324,7 +60730,6 @@ goldeninvestmentbarcelona.com, 1 goldenjoy.com, 1 goldenkeys.io, 1 goldenoaksgolfclub.com, 1 -goldenowl.ca, 1 goldenpi.com, 1 goldenplate.com.sg, 1 goldenravengifts.com, 1 @@ -61455,14 +60860,12 @@ goncharov.cf, 1 goncharov.ml, 1 goncharov.tk, 1 gondawa.com, 1 -gondelvaartdwarsgracht.nl, 1 gondola-parkinson.com, 0 gondon.tk, 1 gonebald.tk, 1 gonenli.com, 1 gonepal.com, 1 gonerogue.ml, 1 -gonerstudio.com, 0 gongik.info, 1 gongjianwei.com, 1 gongjuhao.com, 1 @@ -61517,7 +60920,6 @@ goodhopemedical.com, 1 goodhotel.co, 1 goodhuecountymn.gov, 1 goodiesnet.ca, 0 -goodiesoft.hu, 1 goodingcountyid.gov, 1 goodjobs.gov, 1 goodkino.ga, 1 @@ -61774,6 +61176,7 @@ gotravel.hu, 1 gotravel.us, 1 gotravelmexico.com.mx, 1 gotrek.com.au, 1 +gotreksperu.com, 1 gotrendier.com.co, 1 gotrendier.mx, 1 gotriage.tk, 1 @@ -61884,7 +61287,6 @@ gpolanco.com, 1 gpony.fr, 1 gppro.com, 0 gpremium.cl, 1 -gps-coordinates.net, 1 gps-fleettracking.ga, 1 gps-track-sys.info, 1 gps.com.br, 1 @@ -61977,7 +61379,6 @@ graf.re, 1 grafana.com, 1 grafcaps.com, 1 grafenberg.tk, 1 -graffiti-bloq.nl, 0 graffiti-street-art-ebook.tk, 1 graffitinetwerk.nl, 1 graffitiwall.tk, 1 @@ -62010,7 +61411,6 @@ grahambaker.ca, 1 grahamcarruthers.co.za, 1 grahamcluley.com, 0 grahamedgecombe.com, 1 -grahamfamilydentalwy.com, 1 grahamleeonline.com, 1 grahamsmith.tech, 1 grailians.com, 1 @@ -62090,7 +61490,7 @@ grandviewheights.gov, 1 grandwailea.com, 1 grandwill.com, 1 grandworldnghiduong.com, 0 -grandx86.pl, 0 +grandx86.pl, 1 granfort.es, 0 granfutbol.com, 1 grangecon.tk, 1 @@ -62184,7 +61584,6 @@ grassroots.org.nz, 1 grast.jp, 1 graszoden.tk, 1 gratelin.ga, 1 -graticule.life, 1 gratis-hosting.cf, 1 gratis.market, 1 gratis4u.tk, 1 @@ -62202,7 +61601,6 @@ grattan.co.uk, 1 grattecenne.com, 1 gratuitweb.tk, 1 graumeier.de, 1 -grauwasser-blog.de, 1 gravedad-zero.tk, 1 gravedigger.tk, 1 gravelshooters.com, 1 @@ -62242,7 +61640,6 @@ grayarrow.com, 1 graybroughton.com, 1 graycat.ml, 1 grayhatter.com, 1 -grayiron.io, 1 graymuzzlesociety.org, 1 grayowlworks.com, 1 grayphics.com, 1 @@ -62252,7 +61649,6 @@ grayson.sh, 1 graysonsmith.co.uk, 1 graysquare.com, 1 grayville-il.gov, 1 -grazetech.com, 1 grazhdanskij-advokat.tk, 1 grbrt.com, 1 grc.com, 0 @@ -62274,8 +61670,6 @@ greatdanemowers.com, 1 greatepier.tk, 1 greatergood.com, 0 greatergoods.com, 1 -greaterreadingyp.org, 1 -greaterswissmountaindogs.com, 1 greaterzion.com, 1 greatestcampsest.ga, 1 greatestwallsest.ga, 1 @@ -62334,7 +61728,6 @@ green-light.ml, 1 green-paradise.tk, 1 green-smart.com, 1 green-snake.com, 1 -green-techno.ru, 1 green-version.com, 1 green-wood.com, 1 green.com.do, 1 @@ -62421,7 +61814,6 @@ greenopeningsers.ga, 1 greenopeningsest.ga, 1 greenpal.jp, 1 greenpanda.de, 1 -greenpark.uz, 1 greenpartyofnewmilford.org, 1 greenpaws.ee, 1 greenpeace.community, 1 @@ -62475,7 +61867,7 @@ greer.ru, 1 greetabl.com, 1 greetingcdsers.ga, 1 greetingcdsest.ga, 1 -greffe-de-cheveux-turquie.com, 0 +greffe-de-cheveux-turquie.com, 1 greg.red, 1 gregbrimble.com, 1 gregdf.com, 1 @@ -62518,10 +61910,8 @@ grenfell.org.au, 1 grenfellinternetcentre.com.au, 1 grengine.ch, 1 grenlan.com, 1 -grenlandkiropraktor.no, 1 grenoblepartners.com, 1 grepable.com, 1 -grepmaste.rs, 0 grepular.com, 1 gresak.io, 0 gresik.info, 1 @@ -62529,7 +61919,6 @@ gresrewop.ca, 1 gresrewop.com, 1 greta-birkner.de, 1 greta-fischer-schule.de, 1 -gretaelectric.com, 1 gretathemes.com, 1 gretch.space, 1 gretchensbridalgallery.com, 1 @@ -62545,7 +61934,6 @@ greycrane.net, 1 greydesign.tk, 1 greyhackcentral.gq, 1 greyhash.se, 1 -greyhawkonline.com, 1 greyheads.cat, 1 greyline.tk, 1 greymatteroffline.tk, 1 @@ -62576,7 +61964,6 @@ gridgroup.com.tr, 1 gridironelitetraining.com, 1 gridlab.de, 1 gridly.nl, 1 -gridpack.org, 1 gridspace.ca, 1 gridtennis.net, 1 gridvis.cloud, 1 @@ -62612,7 +61999,6 @@ grillfocused.com, 1 grillidellostretto.tk, 1 grilllness.com, 1 grilltanksplus.com, 1 -grillteller42.de, 1 grimdarkterrain.com, 1 grimetoshinecleaners.co.uk, 1 grimm.cz, 1 @@ -62636,7 +62022,6 @@ gripencrossfit.cf, 1 gripencrossfit.gq, 1 gripnijmegen.rip, 1 gripopit.nl, 1 -grippingtheether.com, 1 gripvol.nl, 1 gripwenab.cf, 1 grishavirus.cf, 1 @@ -62701,7 +62086,6 @@ gropp.org, 1 grosirfashion.online, 1 gross.business, 1 grossberger-ge.org, 0 -grossbesteller.dm.de, 1 grosser.io, 1 grossiste-en-ligne.com, 1 grossiste-vanille.fr, 1 @@ -62946,7 +62330,6 @@ gsm-info.tk, 1 gsmbrick.com, 1 gsmkungen.com, 1 gsmmedia.tk, 1 -gsmnext.com, 0 gsmpreview.com, 1 gsmsale.nl, 1 gsmtool.tk, 1 @@ -63001,7 +62384,6 @@ gtsb.io, 1 gtsoftware.gr, 1 gttglobal.com, 1 gtupgrade.eu, 1 -gtxbbs.com, 1 gtxmail.de, 1 gtxthere.tk, 1 gtzq.com, 1 @@ -63106,7 +62488,6 @@ guhei.net, 1 guhenry3.tk, 1 guiabroker.com, 1 guiacg.com, 0 -guiadev.com, 1 guiaextra.com, 1 guiahotelera.com.co, 1 guialegal.co, 1 @@ -63133,7 +62514,7 @@ guidechecking.com, 1 guidedesventes.fr, 1 guidedogs.org.uk, 1 guidedselling.net, 1 -guidedsteps.com, 1 +guidedsteps.com, 0 guidegr.com, 1 guidehouseinsights.com, 1 guideline-pro.com, 1 @@ -63170,7 +62551,6 @@ guillemagullo.tk, 1 guillembosch.es, 1 guillen.tk, 1 guillouf.com, 1 -guiltyeats.com, 1 guiltyfox.ca, 1 guiltyfox.com, 1 guim.co.uk, 1 @@ -63225,7 +62605,6 @@ gumi.ca, 1 gummibande.noip.me, 0 gummientchen.net, 1 gumtree.ie, 1 -gun-room.com, 1 gunarchive.com, 1 gunauc.net, 1 gunbot.com, 1 @@ -63351,7 +62730,7 @@ guys-reviews.ml, 1 guysauto.com, 1 guysroulette.com, 1 guytarrant.co.uk, 1 -guythomasevans.co.uk, 1 +guythomasevans.co.uk, 0 guzdek.co, 1 guzelforum.tk, 1 guzelkadinlar.tk, 1 @@ -63389,6 +62768,7 @@ gw-uks-app-test-coreapi-02.azurewebsites.net, 1 gw.fi, 1 gw.lu, 1 gw2efficiency.com, 1 +gw2treasures.com, 1 gw66.cc, 0 gwandalancobras.com.au, 0 gwbet99.cc, 1 @@ -63745,7 +63125,6 @@ hagalaz-design.de, 1 hagbergmedia.se, 1 hagen-bauer.de, 0 hagenkleinert.de, 1 -haggeluring.su, 1 haggisofnorway.tk, 1 hagiati.gr, 1 hagix.tk, 1 @@ -63767,7 +63146,7 @@ haiduc.tk, 1 haifaworld.tk, 1 haifengz.com, 0 haigle.com, 1 -haileyuantoy.com, 1 +haileyuantoy.com, 0 hails.info, 1 hailstorm.nl, 1 hailstormproject.tk, 1 @@ -63855,7 +63234,6 @@ hakkasan.com, 1 hakkasannightclub.com, 1 hakon.lol, 1 haku.vn, 1 -hakufarm.vn, 1 hakugin.me, 1 hakurei.ga, 1 hakurei.win, 1 @@ -63887,7 +63265,6 @@ halfreal.tk, 1 halgap.ga, 1 haliava.tk, 1 halic.tk, 1 -halicinsaat.net, 1 halifaxboropdpa.gov, 1 halifaxma.gov, 1 halifaxmoneyman.com, 1 @@ -63934,7 +63311,6 @@ halocredit.pl, 0 halogen.city, 1 halogen.vip, 1 halogenos.org, 1 -halomark.com, 1 halongbaybackpackertour.com, 1 haloobaloo.com, 1 halopedia.org, 1 @@ -63983,7 +63359,6 @@ hamiltonzinelibrary.cf, 1 hamiltonzinelibrary.ga, 1 hamiltonzinelibrary.gq, 1 hamiltonzinelibrary.ml, 1 -hamishmb.com, 1 hamking.tk, 1 hamkorbank.uz, 1 hamletstudio.tk, 1 @@ -64063,7 +63438,6 @@ handhockeyest.ga, 1 handicap-job.com, 1 handicappingsportsers.ga, 1 handicappingsportsest.ga, 1 -handicaps-ensemble.org, 0 handicapzero.org, 1 handicraftsman.tk, 1 handicraftsmarble.com, 1 @@ -64148,6 +63522,7 @@ hannahbarrettyoga.com, 1 hannaljungberg.tk, 1 hannehovi.fi, 1 hannekroencke.com, 1 +hannes.paris, 1 hannit.de, 1 hannoluteijn.nl, 1 hannover-96.tk, 1 @@ -64162,7 +63537,6 @@ hansa-flex.com.ua, 1 hansa.org.ru, 1 hansahome.ddns.net, 1 hansanders.nl, 1 -hansashop.eu, 1 hansashop.fi, 1 hansbruis.tk, 1 hanschventures.com, 1 @@ -64664,14 +64038,13 @@ hautarztzentrum.ch, 1 hautehorlogerie.org, 1 hautemontagne.com, 1 hautescimesone.ch, 1 -hauteslatitudes.com, 1 +hauteslatitudes.com, 0 hautsache-friesoythe.de, 1 hautsdefrance.fr, 1 havaci.tk, 1 havaguncel.com, 1 havana-club.com, 1 havanaheritage.org, 1 -havarapor.com, 1 havarijna-sluzba-bratislava.sk, 1 havasuinsurance.com, 1 havasuopenhouse.com, 1 @@ -64690,7 +64063,6 @@ havellab.de, 1 havells.com, 1 haven-staging.cloud, 1 havencyber.com, 1 -havendirecthealth.com, 1 havenstar.com, 1 havenstudios.com, 1 haverford.com, 1 @@ -64830,7 +64202,6 @@ hcfoodpantry.org, 1 hcg24.com, 1 hcgallia.tk, 1 hcie.pl, 0 -hclsrilanka.com, 1 hclsw.at, 0 hclsw.ch, 0 hclsw.de, 0 @@ -65287,7 +64658,6 @@ healthyhours.tk, 1 healthyindiana.tk, 1 healthykansas.tk, 1 healthykitchen101.com, 1 -healthykitchen33.com, 0 healthymaine.tk, 1 healthymen.ml, 1 healthyminnesota.tk, 1 @@ -65345,7 +64715,7 @@ heartsucker.com, 0 hearttruth.gov, 1 heartview.com.br, 1 heartwoodart.com, 1 -heartwork.pl, 1 +heartwoodrefuge.org, 0 hearty.blog, 1 hearty.eu.org, 0 hearty.ga, 1 @@ -65429,7 +64799,6 @@ hectorfiorini.com.ar, 0 hectorlima.tk, 1 hedd.audio, 1 heddoun.com, 1 -hedefcini.com, 1 hedefhalk.com, 1 hedefkompresor.com, 1 hedenskrig.tk, 1 @@ -65465,7 +64834,7 @@ heeftmijnwebsitehttpsnodig.nl, 1 heeler.red, 1 heello.es, 1 heerenveenlokaal.nl, 1 -heesenyachts.com, 1 +heesenyachts.com, 0 heethealthcare.com, 1 hefengautoparts.com, 1 heficed.com, 1 @@ -65558,7 +64927,6 @@ heistheguy.com, 1 heitepriem.info, 1 heiwa-valve.co.jp, 1 hejazultra.org, 1 -hejsupport.se, 1 heka.ai, 1 hekat.sk, 1 hekate.com.mx, 1 @@ -65653,7 +65021,6 @@ hello-papaye.com, 1 hello-products.com, 1 helloacm.com, 1 helloafrica.ga, 1 -helloalpha.com, 1 helloappservices.com, 1 hellobarestore.com, 1 hellobee.com, 1 @@ -65679,7 +65046,6 @@ hellomouse.net, 1 hellomouse.tk, 1 hellomunnar.in, 1 hellomyword.tk, 1 -helloneu.com, 1 hellonews.cf, 1 hellonews.ga, 1 helloo.com.br, 1 @@ -65780,7 +65146,6 @@ hemaroids.tk, 1 hematoonkologia.pl, 1 hemdal.se, 0 hemdian.com, 1 -hemlibra.co.il, 1 hemmens.eu, 1 hemmersbach.com, 1 hemnet.se, 1 @@ -65840,7 +65205,6 @@ henrichaussade.fr, 1 henrico.gov, 1 henrieta-nagyova.tk, 1 henriettatownshipmi.gov, 1 -henrik-bondtofte.dk, 1 henrik-sachse.de, 1 henrikjosefsson.net, 1 henrikjuvonen.fi, 1 @@ -65913,7 +65277,6 @@ heratnews.tk, 1 herba-belgie.be, 1 herbacom.ro, 1 herbalcart.com, 1 -herbaldunyasi.com, 1 herbalhouse.tk, 1 herbalife.ru, 1 herbalifereport.tk, 1 @@ -65929,7 +65292,6 @@ herbiez.com, 1 herbigass.com, 1 herbisan.pl, 1 herbnal.com, 1 -herborisia.fr, 1 herbreathonglass.tk, 1 herbsociety.org, 1 herbsupplements.co.uk, 1 @@ -65940,7 +65302,6 @@ herculesca.gov, 1 herculex.fi, 1 herderradio.ml, 1 herdingcatshere.com, 1 -herdserv.de, 1 herdwilliam.ml, 1 herdwilliam.tk, 1 here.ml, 1 @@ -65958,7 +65319,6 @@ hereticmaniacs.tk, 1 hereticofficial.com, 1 hereticpreist.tk, 1 herez.fr, 1 -herf.top, 1 hergeandtintin.tk, 1 herila.ml, 1 heringer.tk, 1 @@ -66055,7 +65415,6 @@ hersmartchoice.com, 1 herthaloewen.tk, 1 hertie.de, 1 hertsbouncycastles.com, 1 -hertz.zone, 1 heru.tk, 1 herumixer.ga, 1 herus.net.pl, 1 @@ -66063,7 +65422,6 @@ hervegranger.fr, 1 hervia.com, 1 hervormdweeshuiszwolle.nl, 1 herwz.com, 1 -herx.top, 1 herychreality.cz, 1 herza.id, 1 herzberg.site, 1 @@ -66179,7 +65537,6 @@ heybritney.tk, 1 heybyrdie.com, 1 heydorff.duckdns.org, 1 heyfiesta.com, 1 -heyfringe.com, 1 heyghost.io, 1 heyitgirl.com, 1 heyitsfree.net, 1 @@ -66209,7 +65566,6 @@ hfsg-habicht.at, 1 hfvuejq.pro, 1 hfx405.de, 1 hg.eu, 1 -hg.gg, 1 hg.python.org, 1 hg0086.la, 0 hg71839.com, 1 @@ -66297,7 +65653,6 @@ hiddenmalta.net, 1 hiddenpalms.tk, 1 hiddenredknights.tk, 1 hiddenrefuge.eu.org, 1 -hiddenremote.com, 1 hiddens.tk, 1 hiddenvalley.com, 1 hiddout.com, 1 @@ -66440,7 +65795,7 @@ hiking-site.nl, 1 hikingmonthlyers.ga, 1 hikingmonthlyest.ga, 1 hikka.ru, 1 -hikyu.it, 1 +hikyu.it, 0 hilahdih.cz, 1 hilalnews.ga, 1 hilaolu.com, 1 @@ -66449,7 +65804,6 @@ hilaryhutler.com, 0 hilarymundial.tk, 1 hilbertwi.gov, 1 hilde.link, 1 -hildebrand.group, 1 hiledge.com, 1 hilelipc.com, 0 hilfe-bei-krebs-vechta.de, 1 @@ -66466,7 +65820,6 @@ hilllodgingcompany.com, 1 hillner.eu, 1 hillroadgarage.tk, 1 hills-selfstorage.co.uk, 1 -hillsandsaunders.co.uk, 1 hillsandsaunders.com, 1 hillsboroccpa.org, 1 hillsboroughchristian.org, 1 @@ -66579,7 +65932,6 @@ hirecitiesest.ga, 1 hirecto.io, 1 hireinsight.io, 1 hirel.gq, 1 -hirepro.in, 1 hireprofs.com, 1 hirerecruiters.io, 1 hireshield.com, 1 @@ -66590,10 +65942,8 @@ hirevue.com, 1 hirewiz.tk, 1 hirezzportal.com, 1 hiring-process.org, 1 -hiringlift.com, 1 hiringopps.com, 1 hiringprocess.careers, 1 -hiringrise.com, 1 hirisejanitorial.com, 0 hirobbie.com, 1 hiromi-dental.tokyo, 1 @@ -66614,7 +65964,7 @@ hiruthicsha.com, 1 his.com, 1 hisax.de, 1 hisbrucker.net, 1 -hiseplast.com.br, 1 +hiseplast.com.br, 0 hishirikka.com, 1 hisingensck.se, 1 hiskill.ru, 1 @@ -66785,7 +66135,7 @@ hkmap.co, 1 hkmap.com, 1 hkmap.live, 1 hkmap.net, 1 -hkmusz.cn, 0 +hkmusz.cn, 1 hkno.it, 1 hkoreatv.gq, 1 hkp-usa.com, 1 @@ -66882,6 +66232,7 @@ hobartok.gov, 1 hobbiesworld.tk, 1 hobby-drechselei.de, 1 hobby-lover.com, 1 +hobby4geek.com, 1 hobbybrauer.de, 1 hobbydo.cf, 1 hobbydo.ga, 1 @@ -67024,7 +66375,6 @@ holdinghandsbrazil.com, 1 holdmybeer.io, 0 holdmymeme.com, 1 holdperson.tk, 1 -holdport.com, 1 holebedeljek.hu, 1 holeboom.com, 1 holgapanama.tk, 1 @@ -67332,7 +66682,6 @@ homegeo.ga, 1 homegreenmark.com, 1 homegreens.eu, 1 homegrounds.co, 1 -homegrouporlando.com, 1 homegrowncannabisco.com, 1 homegun.ga, 1 homehealthbookshelf.co.nz, 1 @@ -67456,7 +66805,6 @@ homeunder.ga, 1 homeunion.tk, 1 homeview.ga, 1 homevisual.ga, 1 -homewarrantyreviews.com, 1 homewatt.co.uk, 1 homewebnews.tk, 1 homewidget.ga, 1 @@ -67500,7 +66848,6 @@ hondadigitalevent.com, 1 hondago-bikerental.jp, 1 hondainamerica.com, 1 hondaindiafoundation.org, 1 -hondajoyclub.com, 1 hondapartsnow.com, 1 hondapowerproducts.ph, 1 hondaracingindia.com, 1 @@ -67579,7 +66926,6 @@ hookahfoil.ru, 1 hookandloom.com, 1 hookbin.com, 1 hookedoncraftswaterford.ie, 1 -hookemheadlines.com, 1 hookercountyne.gov, 1 hookshotdesign.com, 1 hoolibit.com, 1 @@ -67590,7 +66936,6 @@ hoooc.com, 1 hoop.la, 1 hooperlabs.xyz, 1 hoopertechnicalsolutions.com, 1 -hooplessinseattle.com, 1 hooprelief.tk, 1 hoopweb.org, 1 hooray.beer, 1 @@ -67599,7 +66944,6 @@ hoorr.com, 1 hoos.cf, 1 hoosa.de, 1 hooshop.lt, 1 -hoosierstateofmind.com, 1 hootv.lt, 1 hootworld.net, 0 hoovism.com, 1 @@ -67724,7 +67068,6 @@ horstfuchs.tk, 1 horstmanshof.eu, 1 horstmanshof.nl, 1 hortencollection.com, 1 -horti-it.com, 0 hortico.rs, 1 horton-brasses.com, 1 horus.com.br, 1 @@ -67783,7 +67126,7 @@ host-stage.net, 1 host.ax, 1 host.com.tw, 1 host1oc.eu.org, 1 -host2100.xyz, 1 +host24.com.pk, 1 hostadvice.com, 1 hostalk.net, 1 hostalsanmarcos.tk, 1 @@ -67965,13 +67308,11 @@ hotelkeihan.co.jp, 1 hotellalucciola.net, 1 hotellamm.it, 1 hotellaserenella.it, 1 -hotello.io, 1 hotelmap.com, 1 hotelmariasas.it, 1 hotelmarinaadria.com, 1 hotelmonal.in, 1 hotelnagarkotparadise.tk, 1 -hotelneptundalmatien.com, 1 hotelplazataranto.com, 1 hotelponcowinatan.com, 1 hotelpromo.codes, 1 @@ -67984,13 +67325,11 @@ hotelsalzberg.ga, 1 hotelsalzberg.gq, 1 hotelsalzberg.ml, 1 hotelsantalibera.tk, 1 -hotelscatalog.ru, 1 hotelsfares.com, 1 hotelsinbuxton.com, 1 hotelsinformer.com, 1 hotelsingaporeairport.com, 1 hotelsinncoventry.com, 1 -hotelsolinebrela.com, 1 hotelsonline.tk, 1 hotelsrejber.cz, 1 hotelsrit.tk, 1 @@ -68038,7 +67377,6 @@ hotpornfilms.com, 1 hotporngirl.com, 1 hotporntubes.com, 1 hotpornvideos.tv, 1 -hotprintind.com.br, 1 hotproxy.gq, 1 hotpussypics.com, 1 hotpussytube.com, 1 @@ -68109,7 +67447,6 @@ housemates.uk.com, 1 housemouse.tk, 1 houseofaceonline.com, 1 houseofhipsters.com, 1 -houseofhouston.com, 1 houseofmusic.co.uk, 1 houseofpertijs.com, 1 houseofpheromones.com, 1 @@ -68122,7 +67459,6 @@ houseracko.com, 1 houseremodels.tk, 1 houseroxrecords.com, 1 housese.at, 1 -housesittingparaguay.com, 1 housesmartdecore.tk, 1 housesumo.com, 1 housetories.com, 1 @@ -68165,7 +67501,6 @@ how-to-write-a-book.ga, 1 how-to-write-a-book.gq, 1 how-to-write-a-book.ml, 1 how2dev.tools, 1 -how2recycle.info, 1 how2smart.com, 1 howa-n.net, 0 howandroidhelp.com, 1 @@ -68191,10 +67526,8 @@ howesky.com, 1 howgoodwasmysex.com, 1 howieisawesome.com, 1 howlers.tk, 1 -howlettmartin.com, 1 howlinhawk.tk, 1 howlonghaswilliambeenwaitingforhislicence.uk, 1 -howlongtobeatsteam.com, 1 howmanymilesfrom.com, 1 howmanypeoplearethereinthe.world, 1 howmanypeoplearethereintheworld.com, 0 @@ -68264,7 +67597,6 @@ hp-lexicon.org, 1 hp42.de, 1 hpac-portal.com, 1 hpage.com, 1 -hpbclinic.com, 1 hpbn.co, 1 hpc.mil, 1 hpccsystems.com, 0 @@ -68332,7 +67664,6 @@ hrjob.ml, 1 hrjob.tk, 1 hrk.aero, 1 hrka.cc, 0 -hrka.me, 0 hrkfamilylaw.com, 1 hrknuddel.de, 1 hrlab.de, 1 @@ -68690,7 +68021,6 @@ human-shinri.com, 1 humana-medicaresupplement.com, 1 humanamente.tk, 1 humanbeing.tk, 1 -humandesignstudios.com, 1 humanenrich.com, 1 humanesdemadrid.tk, 1 humanewolf.com, 1 @@ -68872,7 +68202,6 @@ hushbabysleep.com, 1 hushfile.it, 1 hushpuppiesobuv.ru, 1 husic.net, 0 -huskercorner.com, 1 husky-in-nood.tk, 1 huskyeye.de, 1 huskygifts.com, 1 @@ -69004,7 +68333,7 @@ hydronium.tk, 1 hydroposev.com, 1 hydrosaat.ch, 1 hydrosight.com, 1 -hydrosila.com, 1 +hydrosila.com, 0 hydroturbine.info, 0 hydrozen.io, 1 hydrozone.fr, 1 @@ -69120,7 +68449,6 @@ hyrin.tk, 1 hyrius.net, 1 hyrulekingdom.tk, 1 hys-te-ria.tk, 1 -hyscore.io, 1 hyser.com.ua, 1 hysh.jp, 1 hysh.net, 1 @@ -69200,7 +68528,6 @@ i0856.com, 0 i0day.com, 1 i10z.com, 1 i1430.com, 0 -i1place.com, 1 i24.host, 1 i2capmark.com, 1 i2education.com, 1 @@ -69259,7 +68586,6 @@ iain.tech, 1 iainsimms.co.uk, 1 iainsimms.com, 1 iainsimms.me, 1 -ialps.cn, 1 ialternatywne.pl, 1 iam.lc, 0 iam.soy, 1 @@ -69270,7 +68596,6 @@ iamanewme.com, 1 iambhatti.tk, 1 iamcloud.de, 1 iamconnected.eu, 1 -iamhansen.xyz, 1 iamhealthystore.com, 1 iaminashittymood.today, 1 iamjoshellis.com, 1 @@ -69303,7 +68628,6 @@ iane-ccs.com, 1 ianix.com, 1 ianklug.com, 1 iankmusic.com, 1 -ianloe.rocks, 1 ianmooreis.me, 1 ianmoriarty.com.au, 1 ians.lu, 1 @@ -69376,7 +68700,6 @@ ibizads.tk, 1 ibizaluxuryachts.com, 1 ibk.at, 1 iblackfriday.ro, 1 -ibliss.digital, 0 iblog.pk, 1 iblowdry.com, 1 iblsoft.com, 1 @@ -69596,13 +68919,13 @@ icusignature.com, 1 icustomboxes.com, 1 icy.aq, 1 icyapril.com, 1 -icycanada.com, 0 +icycanada.com, 1 icydestiny.com, 0 icyeurope.com, 1 icyhealth.com, 0 icyheroes.com, 1 icyrock.com, 1 -icytales.com, 0 +icytales.com, 1 icywhiz.com, 1 iczc.cz, 1 icze4r.co, 1 @@ -69650,7 +68973,6 @@ iddaatahmin11.com, 1 iddaatahminleri.com.tr, 1 iddconnect.com, 1 iddconnect.org, 1 -iddent.com.ua, 1 iddportugal.pt, 1 idea.ws, 1 ideadozz.hu, 1 @@ -69670,8 +68992,8 @@ idealbet.it, 1 idealbody.cf, 1 idealbody.gq, 1 idealcontabilidade.net, 0 +idealdedetizadorabh.com.br, 1 idealimobiliariabh.com.br, 1 -idealimplant.com, 0 idealize.ml, 1 idealmature.com, 1 idealmilf.com, 1 @@ -69680,6 +69002,7 @@ idealni-hypoteka.cz, 1 idealog.id, 1 idealresponse.co.uk, 1 idealsegurancaeletronica.com.br, 1 +idealserralheriabh.com.br, 1 idealtruss.com, 1 idealtruss.com.tw, 1 idealucedifilippi.it, 1 @@ -69790,9 +69113,8 @@ idraetsmusik.dk, 1 idratherbequilting.com, 1 idraulico-roma.it, 1 idraulico.roma.it, 1 -idream-solutions.co.uk, 1 +idream-solutions.co.uk, 0 idrissi.eu, 1 -idrix.com.ec, 1 idroot.us, 1 idropulsoredentale.shop, 1 idsafe.co.za, 1 @@ -70014,6 +69336,7 @@ igryalawar.tk, 1 igshop.ir, 1 igsmgmt.com, 1 igsoc.org, 1 +igt.com, 1 igualdaton.org, 1 iguanacruda.tk, 1 iguru.gr, 1 @@ -70024,7 +69347,6 @@ iha6.com, 1 ihacares.com, 1 ihackear.com, 1 ihacker.ai, 1 -ihacklabs.com, 0 ihakkitekin.com, 1 ihatereceipts.com, 1 ihatethissh.it, 1 @@ -70059,9 +69381,7 @@ ihre-pflege-sachsen.de, 1 ihrhost.com, 1 ihri.ca, 1 ihsangans.my.id, 1 -ihsolution.in, 1 ihwanburhan.com, 1 -ii-f.ws, 1 ii-vi.com, 1 ii.cx, 1 ii5197.co, 1 @@ -70082,7 +69402,6 @@ iiii.gq, 1 iiii.loan, 1 iiii.ml, 1 iiij.ml, 1 -iiinhoj.com, 1 iiit.pl, 1 iimarckus.org, 1 iinehp.com, 1 @@ -70124,8 +69443,6 @@ ijzerwarenhandel.nu, 1 ika.monster, 1 ikachalife.com, 1 ikall.com, 1 -ikall.net, 1 -ikall.org, 1 ikama.cz, 1 ikara.social, 1 ikari-san.tk, 1 @@ -70160,13 +69477,10 @@ ikkoku.de, 1 iklan-baris.gq, 1 iklan.tk, 1 iklanbaris.tk, 1 -iklipcollection.my.id, 1 ikmx.net, 1 -iknet.top, 1 iknowd.org, 1 iknowthatgirl.com, 1 ikoreg.nl, 1 -ikorekofi.com, 1 ikra24.in.ua, 1 ikrab.club, 1 iks.moe, 1 @@ -70175,14 +69489,12 @@ iksi.me, 1 iksworld.kr, 1 iktisatbank.com, 0 ikudo.top, 1 -ikulist.me, 1 ikumi.us, 1 ikutin.id, 1 ikvts.de, 1 ikwildjworden.com, 1 ikwileendomein.tk, 1 ikx.me, 1 -ikymbo.com, 1 ikzoekeengoedkopeauto.nl, 1 ikzoektim.nl, 1 il12thcourt.gov, 1 @@ -70284,7 +69596,7 @@ illsley.org, 1 illu.ee, 1 illubel.com, 1 illumed.net, 1 -illumepgh.com, 1 +illumepgh.com, 0 illuminated-security.com, 1 illuminatelife.tk, 1 illuminaten.tk, 1 @@ -70303,8 +69615,7 @@ illustrate.biz, 1 illuxat.com, 1 ilmaestro.net, 1 ilmainensanakirja.fi, 1 -ilmanifesto.it, 1 -ilmataat.ee, 1 +ilmanifesto.it, 0 ilmcorp.com, 1 ilmiogiardiniere.it, 1 ilmubahasainggris.com, 1 @@ -70440,7 +69751,6 @@ imbdagency.com, 1 imbianchino.roma.it, 1 imbit.tk, 1 imboom.tk, 1 -imbri.tech, 1 imbrian.org, 1 imbunatatiri-logan.tk, 1 imbushuo.net, 1 @@ -70481,6 +69791,7 @@ img.mg, 1 img.ovh, 1 img.ren, 1 imgaa.com, 1 +imgbb.com, 1 imgen.top, 1 imgencrypt.com, 1 imgg.es, 1 @@ -70507,6 +69818,7 @@ imitza.com, 0 imjo.in, 1 imjustcreative.com, 1 imkan.tours, 1 +imkero.net, 1 imkerverein-moenchswald.de, 1 imkindofabigdeal.com, 1 imksk.com, 1 @@ -70621,7 +69933,6 @@ imoner.ga, 1 imoneynet.com, 1 imorano.it, 1 imosthailand.com, 1 -imouto.my, 0 imouto.ru, 1 imouyang.com, 0 imoveisavenda.rio.br, 1 @@ -70770,7 +70081,6 @@ imunify360.com, 1 imusionforum.tk, 1 imwalking.de, 1 imy.rs, 0 -imychic.com, 1 imyjy.cn, 1 imzhu.com, 1 imzye.me, 1 @@ -70850,7 +70160,6 @@ inchidi.id, 1 incident.dk, 1 incidentresponsesolution.com, 1 incidentresponsesystem.com, 1 -incigma.com, 0 includesubdomains.preloaded.test, 1 includesubdomains2.preloaded.test, 1 inclusion.tn, 1 @@ -70915,7 +70224,6 @@ independenttribune.com, 1 independenza.tk, 1 independesk.com, 1 indevelopment.tk, 1 -indewolkenfestival.nl, 1 index-education.com, 1 index-education.net, 1 index-games.com, 1 @@ -70991,7 +70299,6 @@ indicodata.ai, 1 indicure.com, 1 indie.dog, 1 indiecat.tk, 1 -indiecongdr.it, 1 indieethos.com, 0 indiemovementers.ga, 1 indiemovementest.ga, 1 @@ -71067,7 +70374,6 @@ indumar.com, 1 indumentaria-arabe.tk, 1 indusap.com, 1 indusfastremit-us.com, 1 -indusfastremit.com, 1 indust.me, 1 industreiler.com.br, 1 industriafranchini.com, 1 @@ -71077,7 +70383,6 @@ industrialalpinism.tk, 1 industrialcalibration.co.uk, 1 industrialcomputers.com, 1 industrialcontainer.com, 1 -industrialengineering.info, 1 industrialgassprings.com, 1 industrialprecisionmfg.com, 1 industrilokal.com, 1 @@ -71144,7 +70449,6 @@ inffin-portal.de, 1 infhosting.com.au, 1 inficom.org, 1 infidel.org, 1 -infidels.info, 1 infidels.me, 1 infidels.org, 1 infidia.tk, 1 @@ -71448,8 +70752,6 @@ infraplushk.com, 1 infrarank.com, 1 infrarate.com, 1 infrareader.com, 1 -infrareal.com, 1 -infrareal.de, 1 infraredradiant.com, 1 infras.fr, 1 infrasend.com, 1 @@ -71545,7 +70847,6 @@ initiative20x20.org, 1 initq.net, 1 initramfs.io, 1 initrandom.com, 1 -initrd.net, 1 injerry.com, 1 injigo.com, 0 injurylawyers.com, 1 @@ -71593,6 +70894,7 @@ inlimiters.ga, 1 inlimitest.ga, 1 inline-online.tk, 1 inline-sport.cz, 1 +inlinea.ch, 1 inlineskates.tk, 1 inlink.ee, 1 inlink.ltd, 1 @@ -71627,6 +70929,7 @@ inmyhead.tk, 1 innainnaki.net, 1 innatocol.com, 1 inncoaching.nl, 1 +inner-change-mastery.com, 1 inner-vision.tk, 1 innerdarkside.tk, 1 innerfence.com, 1 @@ -71687,7 +70990,6 @@ innovativeideaz.org, 1 innovativetrials.com, 1 innovativeunderwriters.com, 1 innoventity.in, 1 -innoventures.cl, 1 innover.se, 1 innoviahome.com, 0 innovomuebles.com, 1 @@ -71728,7 +71030,6 @@ inpas.co.uk, 1 inpasa.com.br, 1 inpdp.tk, 1 inpector.de, 1 -inposia.com, 1 inpresso.pl, 1 inprode.com, 1 inprosy.com, 1 @@ -71801,7 +71102,6 @@ insiders.ga, 1 insiderx.com, 1 insidethefirewall.tk, 1 insidetheigloo.com, 1 -insidetheloudhouse.com, 1 insideview.com, 1 insighti.com, 1 insights.plus, 1 @@ -71856,6 +71156,7 @@ instagrabber.ru, 1 instagram-atom.appspot.com, 1 instagram.com, 0 instagramdeposu.com, 1 +instagrammernews.com, 1 instagramtweet.com, 1 instagraph.cn, 1 instahub.net, 1 @@ -71898,7 +71199,7 @@ instem.jp, 1 instics.com, 1 instinct-nature.fr, 1 instinctive-archery.de, 0 -institutadios.com, 1 +institutadios.com, 0 institutchroma.fr, 1 instituto18denoviembre.tk, 1 institutoclaro.org.br, 1 @@ -71961,7 +71262,6 @@ insyde.cloud, 1 insyde.com, 1 insydesw.com, 1 inszu.com, 0 -int-elektro.eu, 1 int-ext-design.fr, 1 int-refer.nhs.uk, 1 int64software.com, 1 @@ -72005,7 +71305,6 @@ integritydetail.com, 1 integrityfirstloans.com, 1 integrityglobal.com, 1 integrityhomecontractors.com, 1 -integrityingovernmentidaho.com, 1 integritykrakow.pl, 1 integrityline.com, 1 integritymedicalwaste.com, 1 @@ -72020,9 +71319,9 @@ intelalumni.org, 1 intelcapital.com, 1 intelekta.es, 1 intelhost.com.br, 1 +intelics.com.au, 1 intelius.cf, 1 intellar.com, 1 -intelldynamics.com, 1 intellect-ls.com, 1 intellecta.is, 1 intellective.us, 1 @@ -72040,7 +71339,6 @@ intelligentrics.com, 1 intelligentwaves.com, 1 intelligista.tk, 1 intelligizedigital.com, 1 -intelligo.ai, 1 intelligroup360.com, 1 intellihr.io, 1 intellimatica.se, 1 @@ -72243,6 +71541,7 @@ internetthreatcenter.com, 1 internetthreatscenter.com, 1 internettoday.ga, 1 internettradie.com.au, 0 +internetwealthresource.com, 1 internetzaim.tk, 1 internetzentrale.net, 1 internews24.com, 1 @@ -72315,7 +71614,7 @@ intosec.nl, 1 intotraffic.nl, 1 intouchgames.co.uk, 1 intoxicate.tk, 1 -intpb.com.au, 1 +intpb.com.au, 0 intpforum.com, 1 intr0.cf, 1 intr0.com, 1 @@ -72492,7 +71791,6 @@ invisiblejiujitsu.co.uk, 1 invisibles.ch, 0 invisionary.tech, 1 invisionary.tk, 1 -invisionretail.nl, 1 invisitone.com, 1 invitation-factory.tk, 1 invitationtrackerers.ga, 1 @@ -72586,7 +71884,7 @@ iosco.org, 1 iosecurity.co.za, 1 iosgeekblog.com, 1 iosjailbreakiphone.com, 0 -ioslo.net, 1 +ioslo.net, 0 iosme.ga, 1 iosolutions.cl, 1 iosprivacy.com, 1 @@ -72643,7 +71941,7 @@ ipaddress.my, 1 ipaddressreputation.com, 1 ipadizate.com, 1 ipadizate.es, 1 -ipadkaitori.jp, 1 +ipadkaitori.jp, 0 ipal.im, 1 ipal.name, 1 ipal.tel, 1 @@ -72684,7 +71982,7 @@ iphone6.ro, 1 iphonebatarya.net, 1 iphonechina.net, 0 iphoned.nl, 1 -iphonekaitori.tokyo, 1 +iphonekaitori.tokyo, 0 iphonemobile.ro, 1 iphonerepairbolton.co.uk, 1 iphonesoft.fr, 1 @@ -72702,7 +72000,6 @@ iplaycraft.ru, 1 iplayradio.net, 0 ipleak.net, 1 ipledgeonline.org, 0 -iplist.cc, 1 iplog.info, 0 iplookup.tk, 1 ipmatic.ga, 1 @@ -72931,7 +72228,6 @@ irmgard-woelfle.de, 1 irmgardkoch.com, 1 irmo.hr, 1 irmonline.tk, 1 -iroams.com, 1 irob.co.jp, 1 iroiroaruyo.net, 1 iroise.ch, 1 @@ -72980,7 +72276,6 @@ irrewilse.se, 1 irrigation.zone, 1 irscouponsers.ga, 1 irscouponsest.ga, 1 -irstaxforumsonline.com, 1 iruarts.ch, 1 iruca.co, 1 iruniruten.tk, 1 @@ -73026,7 +72321,6 @@ isabelcaviedes.com, 1 isabellahoopsentertainment.com, 1 isabellainlove.com, 1 isabellavandijk.nl, 1 -isabelle-delannoy.com, 1 isabelle-delpech.com, 0 isabellehogarth.co.uk, 1 isabellzaloof.ga, 1 @@ -73115,7 +72409,6 @@ iskanderbroere.nl, 1 iskaron.de, 1 iskaz.rs, 1 iskconbd.org, 1 -iskconnews.org, 0 iskconperth.com, 1 iskin.xyz, 0 iskkk.com, 1 @@ -73227,7 +72520,6 @@ isotope.gov, 1 isovideo.com, 1 isowebtech.com, 1 ispactivo.com, 1 -ispalestinefree.com, 1 ispanika.tk, 1 ispaniola.ga, 1 ispanskijshuanom.ru, 1 @@ -73260,7 +72552,6 @@ israelitas.tk, 1 israelitopbox.ga, 1 israelmesianico.tk, 1 israelnewswire.tk, 1 -israelpalestineconfederation.org, 1 israelpalestinenews.org, 1 israelportalk.cf, 1 israelportalk.ga, 1 @@ -73413,7 +72704,6 @@ italbavaro.com, 1 italdesign.it, 1 italentado.ml, 1 italia-facile.ru, 1 -italia-store.com, 1 italiaeconomy.it, 1 italiale.tk, 1 italian-shoes.tk, 1 @@ -73553,9 +72843,7 @@ itmindscape.com, 1 itmustbee.com, 1 itmx.cc, 0 itnet.com.ua, 1 -itninja.one, 1 itnota.com, 1 -itnow.ng, 1 itnsusa.com, 1 itoady.com, 1 itochan.jp, 1 @@ -73618,7 +72906,6 @@ itscalculator.com, 1 itscc.kr, 1 itsch-itsche.com, 1 itsdcdn.com, 1 -itsebeauty.com, 1 itsec.link, 1 itsecblog.de, 1 itsecboecker.de, 1 @@ -73637,7 +72924,6 @@ itsig-faq.de, 1 itsloution.tk, 1 itsm.tools, 1 itsmeaxel.ovh, 1 -itsmohitchahal.com, 1 itsmycode.com, 1 itsmyparty.ie, 1 itsnotnot.tk, 1 @@ -73670,7 +72956,6 @@ itt-shop.com, 1 itt-us.com, 1 ittgame.tk, 1 ittreservations.com, 1 -ittutorialpoint.com, 1 ittykins.com, 1 itunesgiftcard.in.th, 1 itur.co.il, 1 @@ -73703,15 +72988,13 @@ itzer.de, 1 itzine.ru, 1 itzkavin.tk, 1 itzlive.tk, 1 -itzrock.xyz, 1 iubuniversity.tk, 1 iurisnovagestion.es, 0 -iurisnow.com, 1 iusedtobelieve.com, 1 iuspenal.com, 1 iv-vr.com, 1 iv-well.com, 1 -iv.pl, 1 +iv.pl, 0 iv4kiso.com, 1 ivahbbiz.tk, 1 ivampiresp.com, 0 @@ -73738,7 +73021,6 @@ ivanovka.ga, 1 ivanovocity.tk, 1 ivanovolive.ru, 1 ivanpolchenko.com, 1 -ivansgroups.com, 1 ivantedesco.tk, 1 ivanwolf.ga, 1 ivanya.tk, 1 @@ -73839,7 +73121,6 @@ iww.org.nz, 1 ix.run, 1 ix8.ru, 0 ixiaqu.com, 0 -ixiatiao.com, 1 ixir.gen.tr, 1 ixit.cz, 1 ixn.com, 1 @@ -73873,7 +73154,6 @@ iyoumu.top, 1 iyspanel.com, 1 iyume.top, 1 iz8mbw.net, 1 -izaban.org, 1 izabava.tk, 1 izabel.tk, 1 izamulhakeem.tk, 1 @@ -73884,6 +73164,7 @@ izavel.com, 1 izb.se, 1 izbirateli.com, 1 izecubz.me, 1 +izemporium.com, 1 izi-agency.com, 1 izipik.gq, 1 izkustvo.com, 1 @@ -73969,10 +73250,9 @@ j70333.com, 0 j70444.com, 0 j70555.com, 0 j82365.com, 1 -j8jp.com, 1 -j9.ag, 1 +j8jp.com, 0 +j9.ag, 0 j9297.co, 1 -j9297.com, 0 j9507.com, 0 j9508.com, 0 j9514.com, 0 @@ -74116,7 +73396,6 @@ jacobi-server.de, 1 jacobian.org, 1 jacobjangles.com, 1 jacobo.tk, 1 -jacobs-implantate.at, 1 jacobsenarquitetura.com, 1 jacobsmeubels.nl, 1 jacobspctuneup.tk, 1 @@ -74145,7 +73424,6 @@ jadiercms.cf, 1 jadopado.com, 1 jadox.com, 1 jaduniv.cf, 1 -jadwalsimkeliling.info, 1 jae.su, 1 jae.zone, 1 jaeger.link, 1 @@ -74217,14 +73495,12 @@ jakereynolds.co, 1 jakeross.me, 1 jakerullman.com, 0 jakeslab.tech, 1 -jaketremper.com, 0 jakewales.com, 1 jakincode.army, 1 jako.tk, 1 jakob-server.tk, 1 jakobczyk.org, 1 jakobejitblokaci.cz, 1 -jakobhildebrand.com, 1 jakobhildebrand.de, 1 jakobkrigovsky.com, 1 jakobs.systems, 1 @@ -74259,7 +73535,6 @@ jamaat.hk, 1 jamaica.gq, 1 jamaicabeachtx.gov, 1 jamally.co.za, 1 -jamb.in, 1 jambapp.org, 1 jambb.nu, 1 jamberry.com.mx, 1 @@ -74643,7 +73918,6 @@ jayanthreddy.ml, 1 jayantkageri.in, 1 jaybeez.tk, 1 jaybrokers.com, 1 -jaycor.co.za, 1 jayf.de, 1 jayfreestone.com, 1 jayharkess.uk, 1 @@ -74716,6 +73990,7 @@ jbootsma.com, 1 jbradaric.me, 1 jbridal.com.au, 1 jbs-jardins.ch, 0 +jbs.com.br, 1 jbsinternational.com, 1 jbsoftware.ca, 1 jbspeakr.cc, 1 @@ -74894,7 +74169,6 @@ jedi-master.tk, 1 jedi-online.tk, 1 jedicouncil.tk, 1 jedilukmas.tk, 1 -jedipedia.net, 1 jedora.com, 0 jeek.jp, 0 jeemain.org, 1 @@ -74957,7 +74231,6 @@ jelena-karleusa.tk, 1 jelenkovic.rs, 1 jell.ie, 1 jellebo.dk, 1 -jellebuitenhuis.nl, 1 jelleluteijn.com, 1 jelleluteijn.eu, 1 jelleluteijn.net, 1 @@ -74981,7 +74254,6 @@ jelocalise.fr, 1 jem.gov, 1 jem.style, 1 jembatankarir.com, 1 -jemefaisdesamis.com, 1 jemezdravo.eu, 1 jemezsprings-nm.gov, 1 jemnezymy.com, 1 @@ -75033,7 +74305,6 @@ jennystella.net, 1 jennythebaker.com, 1 jeno.cf, 1 jenolson.net, 1 -jenprace.cz, 1 jens-prangenberg.de, 1 jens.hk, 1 jensdesmeyter.be, 1 @@ -75208,7 +74479,6 @@ jevel-mag.tk, 1 jevisite.ca, 1 jewadvert.ml, 1 jewaedv.de, 1 -jeweet.net, 1 jewelcaddesigns.com, 1 jewellerynet.com, 1 jewelleryoutlook.com, 1 @@ -75528,7 +74798,6 @@ jltcsecuritygroup.com, 1 jltctech.com, 1 jlulug.org, 1 jlwagner.net, 1 -jm-madeira.pt, 1 jm73umh.pw, 1 jm9.co, 1 jmanalansan.com, 1 @@ -75627,7 +74896,7 @@ jobanzeigen.de, 1 jobassadeurs.fr, 1 jobbkk.com, 1 jobbnorge.no, 1 -jobbsafari.no, 1 +jobbsafari.no, 0 jobbsafari.se, 1 jobcenter.tk, 1 jobcie.com, 1 @@ -75699,7 +74968,6 @@ jocuri-noi.tk, 1 jocurionline.eu, 1 jodaniels.photography, 1 jodaviesscountyil.gov, 1 -jodbush.com, 1 jodlajodla.si, 1 jodyboucher.com, 0 joe-st.de, 1 @@ -75802,7 +75070,6 @@ johnball.co, 1 johnbeerens.com, 1 johnbeil.com, 1 johnblackbourn.com, 1 -johnblackwell.net, 1 johnblotsky.tk, 1 johnbpodcast.com, 1 johncam.tk, 1 @@ -75887,7 +75154,6 @@ joinfear.tk, 1 joingy.com, 1 joingy.net, 1 joingy.org, 1 -joinhonor.com, 1 joinmobilizon.org, 1 joinpeertube.org, 1 jointheunseen.com, 1 @@ -75902,7 +75168,6 @@ jokedalderup.nl, 1 jokerme.com, 1 jokersro.tk, 1 jokertv.ovh, 1 -jokerxoth.cc, 1 jokesbykids.com, 1 jokewignand.nl, 1 joksara.tk, 1 @@ -76085,7 +75350,6 @@ jornadahypera.com.br, 1 jornalalerta.com.br, 1 jornalaquidf.com.br, 1 jornalero.tk, 1 -jorritstollman.com, 0 jorsev.com, 1 jos-verstappen-fan.tk, 1 josaa.nic.in, 1 @@ -76241,7 +75505,6 @@ joyfulhealthyeats.com, 1 joyinteractive.tk, 1 joyinverse.com, 1 joyjohnston.ca, 0 -joymaxiptv.co, 1 joymaxiptv.com, 1 joymepass.com, 1 joyouscare.co.uk, 1 @@ -76475,7 +75738,6 @@ judoprodeti.cz, 1 judosaintdenis.fr, 1 judybai.me, 1 judykatura.pl, 1 -juegosalcubo.es, 1 juegosycodigos.mx, 1 juejin.com, 1 juergaperu.tk, 1 @@ -76504,7 +75766,6 @@ juicycrones.org.uk, 1 juicydesigns.co.za, 1 juicyforum.com, 1 jujutsuoulu.fi, 1 -juk.life, 0 jukebox-manuals.tk, 1 jukkakivi.fi, 1 jukkakivimaki.fi, 1 @@ -76519,7 +75780,6 @@ julesfrans.be, 1 julesroovers.nl, 1 julia-clarete.tk, 1 julia-jones.org, 1 -julia-pink.org, 1 julia-spriggs.fr, 1 julia.school, 1 juliajuice.net, 1 @@ -76609,7 +75869,6 @@ jumpandjivechildrensparties.co.uk, 1 jumparoundbouncycastles.co.uk, 1 jumparty.co.uk, 1 jumpbuttonnorth.com, 1 -jumpcloud.com, 1 jumpeasy.com.au, 1 jumperke.be, 1 jumperweb.tk, 1 @@ -76814,13 +76073,10 @@ justsandro.tk, 1 justsellmycar.com, 1 justshare.tk, 1 justt-watch-now.xyz, 1 -justtalk.site, 1 justupdate.me, 1 -justwannalearn.com, 1 justweather.org, 1 justwikipedia.com, 1 justwizards.me, 1 -justyardsign.com, 1 justyy.com, 1 justzz.xyz, 1 juszczak.io, 1 @@ -76936,10 +76192,10 @@ k234234.com, 1 k258059.net, 1 k29.ee, 1 k2industrial.com, 1 -k2united.com, 1 k2velosi.com, 1 k36533.com, 1 k38.cc, 1 +k3a.me, 1 k3nny.fr, 1 k3t.net, 1 k4law.com, 1 @@ -77014,7 +76270,6 @@ k88306.com, 1 k88312.com, 0 k88313.com, 1 k88327.com, 1 -k885.co, 1 k886.co, 1 k88670.com, 0 k88672.com, 0 @@ -77064,12 +76319,12 @@ kabachok.tk, 1 kabal.tk, 1 kabardinka.ga, 1 kabardino-balkariya.ml, 1 -kabataan.ph, 1 kabel.cf, 1 kabel.ga, 1 kabel.gq, 1 kabel.ml, 1 kabeldiertje.nl, 1 +kabellegger.nl, 1 kabeltv.co.nz, 1 kabeuchi.com, 1 kabide.net, 1 @@ -77104,7 +76359,6 @@ kack.website, 1 kackyreloaded.com, 1 kacy-kisha.com, 1 kada.lk, 1 -kada.mobi, 1 kadalove.net, 1 kaddex.xyz, 1 kaddify.de, 1 @@ -77177,7 +76431,6 @@ kaibo.eu, 1 kaiche.com, 1 kaida-rybak.ru, 1 kaidoblogi.eu, 1 -kaifischer.tv, 1 kaigojj.com, 1 kaihipay.jp, 1 kaijo-physics-club.work, 1 @@ -77233,7 +76486,7 @@ kajirakuda.com, 1 kajlovo.cz, 1 kajzonnebeke.tk, 1 kak-pohudet-legko.ml, 1 -kaka.farm, 1 +kaka.farm, 0 kakabo.vn, 1 kakacon.nz, 1 kakan.ml, 1 @@ -77278,12 +76531,10 @@ kalamos-psychiatrie.be, 1 kalamos.tk, 1 kalamotownship-mi.gov, 1 kalapatec.id, 1 -kalashcards.com, 1 kalashnikov.ml, 1 kalaskvintetten.tk, 1 kalaspuffar.se, 1 kalastus.com, 1 -kalbarritudor.com.au, 1 kaldewei.com, 1 kaleidoscope.co.uk, 1 kalek.eu, 1 @@ -77438,7 +76689,6 @@ kandra.com.br, 1 kandrahechiceravudu.com, 1 kandrive.gov, 1 kanduit.live, 1 -kandwliquor.com, 1 kanecastles.com, 1 kanecountyhospitalut.gov, 1 kanecountyil.gov, 1 @@ -77504,7 +76754,6 @@ kanuvu.de, 1 kanvasbaski.tk, 1 kanz.jp, 1 kanzashi.com, 1 -kanzlei-sixt.de, 1 kanzshop.com, 1 kaohongshu.blog, 1 kaora.cz, 1 @@ -77582,8 +76831,6 @@ karatesamurai.tk, 1 karawane.tk, 1 karaz.ps, 1 karbox.de, 1 -kardac.com, 1 -kardashiandish.com, 1 kardia-bordeauxdoggen.tk, 1 kardize24.pl, 1 kardjali.bg, 1 @@ -77628,7 +76875,6 @@ karlin.run, 1 karlis-kavacis.id.lv, 1 karlis.tk, 1 karlislab.com, 1 -karlloch.de, 1 karlogavric.com, 1 karloluiten.nl, 1 karloskontana.tk, 1 @@ -77640,6 +76886,7 @@ karlson.gq, 1 karlswift.com, 0 karlzotter.com, 1 karmaassurance.ca, 1 +karmadee.com, 1 karmaflux.com, 1 karmaful.de, 1 karmagroup.com, 1 @@ -77706,9 +76953,6 @@ kasasaprotect.com, 1 kasaysayan.tk, 1 kasei.im, 1 kasettilamerit.fi, 1 -kaseware.com, 1 -kaseware.net, 1 -kaseware.us, 1 kashbet.net, 1 kashbontravels.com, 1 kashflowcoupon.co.uk, 1 @@ -78021,7 +77265,6 @@ kcnwallet.com, 1 kcnxp.com, 1 kcomi.com, 1 kcpredict.com, 1 -kcpromi.sk, 1 kcptun.com, 1 kcsconstructioncompany.com, 1 kcsh.men, 1 @@ -78117,8 +77360,6 @@ keepersecurity.com.au, 1 keepersecurity.eu, 1 keepersecurity.jp, 1 keepersecurity.us, 1 -keepingitheel.com, 1 -keepingitsimpleblog.com, 1 keepingtheplot.co.uk, 1 keepiteasy.eu, 1 keepitsecure24.com, 1 @@ -78174,7 +77415,6 @@ keisinger.name, 1 keitaro.io, 1 keith.pro, 1 keithazzopardi.tk, 1 -keithblakemorenoble.com, 1 keithcwood.com, 1 keithmcmillen.com, 1 keiths.ml, 1 @@ -78189,7 +77429,6 @@ keke-shop.ch, 1 kekku.li, 0 kekoskee.gov, 1 keks.loan, 1 -keksi.io, 1 kelamanproduction.tk, 1 kelamb.com, 1 kelantan.tk, 1 @@ -78200,7 +77439,6 @@ kelcotool.com, 1 keldan.fo, 1 kelder.tk, 1 kelderro.nl, 1 -kelgtermans-usedcars.be, 1 kelinda.tk, 1 kelio.io, 1 kelis.fr, 1 @@ -78251,12 +77489,7 @@ kelts.tk, 1 kelvinchung.tk, 1 kelvinfichter.com, 0 kelyan.fr, 1 -kelyon.com, 1 -kelyon.es, 1 -kelyon.eu, 1 kelyon.info, 1 -kelyon.it, 1 -kelyon.net, 1 kemahtx.gov, 1 kemanai.akita.jp, 1 kemand.com, 1 @@ -78286,7 +77519,6 @@ kemsamnhatban.ml, 1 kemsamnhatban.tk, 1 ken-electric.com.br, 1 ken.fm, 1 -kena-blok.xyz, 1 kenbillionsyuan.tk, 1 kenbonny.net, 0 kendall.productions, 1 @@ -78315,7 +77547,6 @@ kenners.org, 0 kennethaasan.no, 1 kennethandersen.com, 1 kennethlim.me, 1 -kenneths.org, 1 kennethsentillas.com, 1 kennewell.tk, 1 kennfixx.com, 1 @@ -78434,7 +77665,7 @@ keshav.cc, 1 keshavnet.com, 1 kesifasya.com, 1 kesinidulu.com, 1 -keskikorpimotorsport.fi, 0 +keskikorpimotorsport.fi, 1 keskkonnaamet.ee, 0 keskraamatukogu.ee, 1 kessa.com, 1 @@ -78442,6 +77673,7 @@ kesse.ru, 1 kessel-runners.com, 1 kesselrun.goip.de, 1 kesslerandsons.com, 1 +kesslerwine.com, 1 kesteren.org, 1 ketamine.co.uk, 1 ketamine.uk, 1 @@ -78457,7 +77689,6 @@ ketotadka.com, 1 kett.email, 1 kettererholmes.tk, 1 kettinggeleider.be, 1 -kettlebellkrusher.com, 0 kettlemetalbbq.com, 1 kettmail.com, 1 kettner.com, 1 @@ -78516,7 +77747,6 @@ kevinvanderperren.tk, 1 kevinvermassen.be, 1 kevyn.lu, 1 kewauneeco.gov, 1 -kewbee.co.nz, 1 kexingqing.com, 1 key-content.com, 1 key-tracker.de, 1 @@ -78558,13 +77788,14 @@ keys.fedoraproject.org, 1 keyscore.me, 1 keyscouts.com, 1 keyserver.sexy, 0 +keysigma.co.uk, 1 keysix.com, 1 keysmedspa.com, 1 keysofart.com, 1 keysso.net, 1 keystoimagination.com, 0 keystone-europe.com, 1 -keysy.com, 1 +keysy.com, 0 keytoenergy.com, 1 keytomyq.com, 1 keyua.org, 1 @@ -78586,7 +77817,6 @@ kf8954.com, 0 kf8955.com, 0 kf8956.com, 0 kf8957.com, 0 -kfanhub.com, 1 kfassessment.eu, 1 kfbl.cc, 1 kfc.bike, 1 @@ -78670,7 +77900,6 @@ khoasweb.tk, 1 khodromedic.com, 1 khojhealth.com, 1 khonaka.com, 1 -khord-kon.ir, 1 khorne.me, 1 khoteyev.tk, 1 khouloud.de, 1 @@ -78686,7 +77915,6 @@ khste-ceciliamoorsel.tk, 1 khudothiswanpark.vn, 1 khukhrain.tk, 1 khusal.tk, 1 -khushiandjoel.com, 1 khwezifinancialservices.co.za, 1 khwiki.com, 1 ki-management.ch, 1 @@ -78699,7 +77927,6 @@ kialo-edu.com, 1 kialo-pro.com, 1 kialo.com, 1 kiamehr.tk, 1 -kiana.no, 1 kiano.net, 0 kiapartsnow.com, 1 kiapps.ovh, 1 @@ -78781,7 +78008,6 @@ kidsontheyard.com, 1 kidspaper.nl, 1 kidsplace.tk, 1 kidsplanner.fr, 1 -kidsplay-plymouth.co.uk, 1 kidsplaybouncycastles.co.uk, 1 kidstraysers.ga, 1 kidstraysest.ga, 1 @@ -78835,7 +78061,7 @@ kik-textilien.sk, 1 kik.at, 1 kik.cz, 1 kik.de, 1 -kik.ee, 1 +kik.ee, 0 kik.es, 1 kik.eu, 1 kik.hr, 1 @@ -78861,7 +78087,6 @@ killallsudoers.cloud, 1 killaraapartments.com.au, 1 killarnee.org, 1 killborn.tk, 1 -killbot.org, 1 killdeer.com, 1 killedbynlp.com, 1 killeenhardware.co.uk, 1 @@ -79015,7 +78240,6 @@ kinetikos.com.au, 1 kinetiq.com, 1 kinfule.tk, 1 king-of-the-castles.com, 1 -king-shoot.tv, 1 kingandmcgaw.com, 1 kingant.net, 1 kinganywhere.eu, 1 @@ -79151,7 +78375,6 @@ kiplelive.com, 1 kippenbart.gq, 1 kipriakipita.gr, 1 kiprinform.com, 1 -kiprooks.com, 1 kiprotect.com, 1 kiprusoffsummers.tk, 1 kipwells32.com, 1 @@ -79186,7 +78409,6 @@ kirinas.com, 1 kirka.ga, 1 kirkae.com, 1 kirkforcongress.com, 1 -kirkforillinois.com, 1 kirkforsenate.com, 1 kirkify.com, 1 kirkintillochbc.co.uk, 1 @@ -79204,7 +78426,6 @@ kirrie.pe.kr, 1 kirs.is, 1 kirsch-gestaltung.de, 1 kirschbaum.cloud, 1 -kirschbaum.me, 1 kirsehir.tk, 1 kirsehirhaber.tk, 1 kirstenbos.ca, 1 @@ -79281,7 +78502,6 @@ kite-surfen.tk, 1 kiteboard-selbstbau.tk, 1 kitebowl.ru, 1 kitenation.com, 1 -kiteroas.com, 1 kiteschoolamsterdam.nl, 1 kiteschooledam.nl, 1 kiteschoolnoordwijk.nl, 1 @@ -79302,7 +78522,6 @@ kitspersonal.tk, 1 kitsplumbingandheating.com, 1 kitsquid.de, 1 kitsuna.eu, 1 -kitsunes.world, 1 kitta.tk, 1 kittatinny5.org, 1 kitten-advice-forum.cf, 1 @@ -79450,7 +78669,7 @@ klassika.cf, 1 klassika.tk, 1 klatschreime.de, 1 klaudialeszczynska.pl, 1 -klauke-enterprises.com, 1 +klauke-enterprises.com, 0 klaukegear.eu, 1 klaus-pforte.de, 1 klausapp.com, 0 @@ -79473,7 +78692,6 @@ klea.tk, 1 kleaning.by, 1 kleebauerhof.com, 1 kleen.tk, 1 -kleft.org, 1 kleidertauschpartys.de, 1 kleim.fr, 1 kleinblogje.nl, 0 @@ -79486,7 +78704,6 @@ kleineanfragen.de, 1 kleineserver.nl, 1 kleinestrandburg-heringsdorf.de, 0 kleinestrandburg-usedom.de, 0 -kleineviecherei.de, 0 kleinfein.co, 1 kleinhamilton.co.uk, 1 kleinhaneveld.tk, 1 @@ -79530,7 +78747,6 @@ klikarnia.pl, 1 kliki.tk, 1 klikket.dk, 0 kliklinks.tk, 1 -klikmanga.id, 1 klikmarket.tk, 1 klikweb.id, 1 klima.com, 1 @@ -79587,12 +78803,11 @@ kloop.kg, 1 klop.info, 1 klose.family, 1 klosko.net, 1 -klosterruine.de, 1 kloudstack.me, 0 klover-avantages.fr, 1 klover-cse.fr, 1 kloza.tk, 1 -kls-desk.com, 1 +kls-desk.com, 0 kls-platform.com, 1 klssn.com, 1 klu.io, 1 @@ -79648,6 +78863,7 @@ knapenzutendaal.tk, 1 knapp.noip.me, 1 knapp.pro, 1 knapp.servehttp.com, 1 +knarcraft.net, 1 knarkkorven.tk, 1 knarzkopf.de, 1 knashaug.com, 1 @@ -79708,10 +78924,8 @@ knop.info, 0 knorrnet.de, 1 knotenpunkt-nbg.de, 1 knottcountyky.gov, 1 -knovator.com, 1 know.cf, 1 know2protect.gov, 1 -knowarth.com, 1 knowbook.org, 1 knowdebt.org, 1 knowledge-base.info, 0 @@ -79777,7 +78991,6 @@ kobofarm.com, 1 koboldcraft.ch, 1 koboldmalade.fr, 1 kobovec.tk, 1 -kobox.org, 1 kobrin.tk, 1 kobtsev.tk, 1 kobudo49.fr, 1 @@ -79815,6 +79028,7 @@ kode.ch, 0 kodeholic.me, 1 kodes.com.tr, 1 kodexplorer.ml, 1 +kodifirestick.info, 1 kodify.net, 1 kodigo.me, 1 kodineuerleben.eu, 1 @@ -79835,9 +79049,7 @@ koelbli.ch, 1 koeldezomerdoor.nl, 1 koelnerkarneval.de, 1 koelnmafia.de, 1 -koelschs.de, 1 koenberkhout.nl, 1 -koendiender.nl, 1 koenig-pflueger.de, 1 koenigsbrunner-tafel.de, 1 koenleemans.nl, 1 @@ -79884,7 +79096,6 @@ koka-shop.de, 1 kokakiwi.net, 1 koketteriet.se, 1 kokk.loan, 1 -koko.news, 1 kokoiroworks.com, 1 kokomo.com.au, 1 kokomoislandfiji.com, 1 @@ -80121,6 +79332,7 @@ kooer.org, 1 koof.win, 1 kooibeds.com, 0 kooky.org, 1 +koolauwomenshealthcare.com, 1 koole.eu, 1 kooli.ee, 1 koolikatsed.ee, 1 @@ -80146,7 +79358,7 @@ koozal.de, 1 kopany.tk, 1 kopatych.tk, 1 kopeechka.ml, 1 -kopenenvergelijken.nl, 0 +koperry.com, 1 kopeyka.cf, 1 kopfgeld.tk, 1 kopfkrieg.org, 0 @@ -80209,10 +79421,8 @@ korfezemlak.com, 1 korhonen.cc, 1 korikart.com, 1 korikart.net, 1 -korixa.com, 1 korkortet.tk, 1 korkortonline.se, 1 -kormmi.ru, 1 korn-klan.tk, 1 korofilms.com, 1 koroleva.ml, 1 @@ -80281,7 +79491,6 @@ kostroma.gq, 1 kostroma.ml, 1 kostroma.tk, 1 kostube.tk, 1 -kosturk.ru, 1 kostya.ws, 1 kostyumi.tk, 1 kosupayoi.com, 1 @@ -80527,6 +79736,7 @@ kremi.org, 0 kreno.tech, 1 krenstetter.at, 1 kreolis.net, 1 +krepmarket.ru, 1 kresimir-blazevic.tk, 1 krestanskydarek.cz, 1 kretaforum.dk, 1 @@ -80575,7 +79785,6 @@ krishnakalisaha.com, 1 krishnendu.com, 1 krishnenduayur.org, 1 krishofer.com, 1 -krishouse.fr, 1 kriskonaturopathic.com, 1 kriskras99.nl, 1 krismurray.co.uk, 1 @@ -80711,9 +79920,9 @@ kryptosekken.no, 1 kryptux.xyz, 1 kryshodel.ml, 1 krystal-framework.ml, 1 +krystalrsimpson.com, 0 krytykawszystkiego.com, 1 krytykawszystkiego.pl, 1 -kryx.de, 1 krzeslaonline.pl, 1 ks-19.com, 1 ks-39.com, 1 @@ -80748,7 +79957,6 @@ ks2020.vip, 1 ks206.com, 1 ks208.com, 1 ks2235.com, 1 -ks2888.com, 1 ks298.com, 1 ks299.com, 1 ks299.net, 0 @@ -80814,7 +80022,6 @@ ks8862.com, 1 ks8883.com, 0 ks8886.com, 1 ks8915.com, 1 -ks9.app, 1 ks9122.com, 1 ks920.com, 0 ks960.com, 1 @@ -80976,6 +80183,7 @@ kuinin.tk, 1 kuisus.com, 1 kuitunenguthrie.tk, 1 kujalichildrenscentre.or.ke, 1 +kukaidh.com, 0 kukal.cz, 1 kukeri-karlovo.tk, 1 kuketz-blog.de, 1 @@ -81057,7 +80265,6 @@ kunstundkulturradioschoepfwerk.tk, 1 kunstundunrat.de, 1 kunugi-inc.com, 1 kunze-medien.de, 0 -kuon.me, 1 kuoruan.com, 1 kuotiva.com, 1 kup-sluzbu.cz, 1 @@ -81128,7 +80335,6 @@ kurrende.nrw, 0 kurs-dron.pl, 1 kurs-elektryka.pl, 1 kurs-fotowoltaika.pl, 1 -kurschies.de, 1 kurserne.dk, 1 kursk-otoplenie.ru, 1 kursk.cf, 1 @@ -81147,7 +80353,6 @@ kurtneuweiler.com, 1 kurtosys.com, 1 kurtschlatzer.com, 1 kurtschleinbeck.com, 1 -kurtseguros.com, 1 kurumsalseo.com.tr, 1 kurungkurawal.id, 1 kuruppa.xyz, 1 @@ -81193,7 +80398,6 @@ kutyamacskashop.hu, 1 kuudere.moe, 1 kuukkanen.net, 1 kuunlamaailm.ee, 1 -kuvings.com.tr, 1 kuwago.io, 1 kuwaitmegadeals.com, 1 kuwichitagastro.com, 1 @@ -81404,7 +80608,6 @@ l82365.com, 1 l8x.tech, 1 l9.fr, 1 l9297.co, 1 -l9297.com, 1 l9397.com, 1 l9721.com, 0 l9728.co, 1 @@ -81442,7 +80645,6 @@ laatjeniethackmaken.nl, 1 lab-advancedservicesportal.com, 1 lab-oborud.com, 1 lab-recherche-environnement.org, 1 -lab24.pl, 1 laba.ua, 1 labacanisima.tk, 1 labadusa.com, 1 @@ -81510,12 +80712,11 @@ labroma.tk, 1 labs-is.com, 1 labs.directory, 1 labs.lgbt, 1 -labs.ro, 1 labsector.com, 1 labsitserviss.lv, 1 labsys.xyz, 1 labtalleraudiovisual.tk, 1 -labtechsupplyco.com, 1 +labtechsupplyco.com, 0 labussola.site, 1 labworking.lt, 1 labworks.org, 1 @@ -81697,7 +80898,6 @@ lafayettewcwi.gov, 1 lafcoar.gov, 1 lafeemam.fr, 1 lafeepraline.fr, 1 -lafema.de, 1 lafermegourmande.fr, 1 laffer.tk, 1 laffgaff.com, 1 @@ -81719,7 +80919,6 @@ lag-fan.tk, 1 lag-gbr.gq, 1 lagaleria-ag.com, 1 lagalerieduchanvre.fr, 1 -lagavach.com, 1 lagencerie.fr, 1 lagendijk.org, 1 lagerauftrag.info, 1 @@ -81760,7 +80959,6 @@ lahabra.gov, 1 lahacker.net, 1 lahaine.org, 1 lahalte-buvette.fr, 1 -laharilais.fr, 1 lahermandad.tk, 1 lahirusblog.tk, 1 lahmer.ma, 1 @@ -81896,6 +81094,7 @@ lamboo.be, 1 lamborghi.ni, 1 lamchannang.com, 1 lamclam.site, 1 +lamcondaugia-khacdaugia.com, 1 lamconnect.com, 1 lamdav.com, 1 lameco.com, 1 @@ -81926,12 +81125,9 @@ lamparassevilla.com, 1 lampbooks.gq, 1 lampco.com, 1 lampeetlumiere.fr, 1 -lampegiganten.dk, 1 -lampen24.be, 1 lampenlicht.be, 1 lampenlicht.nl, 1 lampenundleuchten.de, 1 -lampenwelt.ch, 1 lamper-design.nl, 1 lampertheimer-zeitung.de, 1 lamplightvideo.com, 1 @@ -82082,7 +81278,7 @@ languagesandnumbers.com, 1 languageterminal.com, 1 langworth.com, 0 langzeit-reisen.com, 1 -langzijn.nl, 1 +langzijn.nl, 0 lanhhuyet510.tk, 1 lanhydrockap.co.uk, 1 lanispa.com, 1 @@ -82189,7 +81385,6 @@ laponder.online, 1 laponders.com, 1 laporantercepat.com, 1 laportedufutur.org, 1 -lapotagere.ch, 0 lapparente-aise.ch, 0 lappari.com, 1 lappersfort.tk, 1 @@ -82287,7 +81482,6 @@ lars.moi, 1 lars.software, 1 larsartmann.com, 1 larsberglund.tk, 1 -larsentoubro.com, 1 larsentransfer.com, 1 larser.tk, 1 larseriksson.es, 1 @@ -82344,7 +81538,6 @@ lasmesas.tk, 1 lasmoarquitectos.com, 1 lasmorfianapoletana.com, 1 lasofertas.tk, 1 -lasonindia.com, 1 lasourisglobe-trotteuse.tk, 1 laspalmerasdelnorte.tk, 1 laspeligrosas.tk, 1 @@ -82382,7 +81575,6 @@ lastlowtest.tk, 1 lastmile.ml, 1 lastminutehealthcare.com, 1 lastmohicans.tk, 1 -lastnighton.com, 1 lastorder.icu, 1 lastorderguild.tk, 1 lastorders.tk, 1 @@ -82590,7 +81782,6 @@ lavocedelviolino.it, 1 lavochka.tk, 1 lavoieducoeur.be, 1 lavoiepharmd.com, 1 -lavoixdelain.fr, 1 lavoixdesmigraineux.fr, 1 lavolte.net, 0 lavoniaga.gov, 1 @@ -82698,7 +81889,6 @@ laythetable.com, 1 layxw.com, 1 lazarus.es, 1 lazarusalliance.com, 1 -lazell.co.uk, 1 lazell.de, 1 lazell.uk, 1 lazer.cf, 1 @@ -82866,6 +82056,7 @@ ldgardenservices.co.uk, 1 ldiesel.ca, 1 ldjb.jp, 1 ldlcorrentes.com.br, 1 +ldlorangecountylocksmith.com, 0 ldm2468.com, 1 ldsvoicesoftherestoration.com, 1 ldtborovina.cz, 1 @@ -82931,7 +82122,6 @@ leadsformoney.tk, 1 leadsonline.com, 1 leadvales.com, 1 leaf-nail.com, 1 -leafandanchorco.ca, 1 leafandseed.co.uk, 1 leafans.tk, 0 leafbodhi.com, 1 @@ -82963,7 +82153,6 @@ leandromoreno.co, 1 leanheat.fi, 1 leanovent.cloud, 1 leanovent.de, 1 -leanplando.com, 1 leanrtech.com, 1 leansixsigmadefinition.com, 1 leaodarodesia.com.br, 1 @@ -82971,7 +82160,6 @@ leap-it.be, 0 leap-mission.com, 1 leapandjump.co.uk, 1 leapday.us, 1 -leaps.org, 1 leapworks.io, 1 leapxx.pro, 1 lear.com.br, 1 @@ -83079,7 +82267,6 @@ lebkuchen-schmidt.com, 1 leblanc.io, 0 leblancq.ca, 1 leblob.fr, 1 -leblogdumineur.fr, 1 lebonheurdesgens.com, 1 lebourgeo.is, 1 lebozec.org, 1 @@ -83117,8 +82304,9 @@ lecoinchocolat.com, 1 lecoindufeuhabitat.com, 1 leconnecteur-biarritz.fr, 1 lecourriercauchois.fr, 1 -lecrayondemarz.com, 1 +lecrayondemarz.com, 0 lecreative.tk, 1 +lecteurs.com, 0 lectormanga.top, 1 lecturaweb.tk, 1 lecul.site, 1 @@ -83232,7 +82420,6 @@ legadosindumentaria.com.ar, 1 legaillart.fr, 1 legal-aid.tk, 1 legal-eye.co.uk, 1 -legal.farm, 1 legalagenda.ga, 1 legalanchor.ga, 1 legalatlanta.com, 1 @@ -83425,7 +82612,6 @@ leisurecooker.co.uk, 1 leisurecooker.ie, 1 leisurevip.com, 1 leit.kr, 1 -leitz-cloud.com, 1 leiyinan.com, 1 lejardindesmesanges.fr, 1 lejlax.com, 1 @@ -83451,7 +82637,6 @@ lellyboi.ml, 1 lelo.com.pl, 1 lelubre.info, 1 lelulove.net, 1 -lelux.fi, 1 lelux.net, 1 lelux.site, 1 lem0n.eu.org, 1 @@ -83497,7 +82682,6 @@ lemzarcapital.com, 0 lena-klein.de, 1 lena-klein.eu, 1 lena-nitro.org, 1 -lenafonster.se, 1 lenagroben.de, 1 lenalio.fr, 1 lenamorino.net, 1 @@ -83665,7 +82849,6 @@ leprekon.tk, 1 lepressoir-info.org, 1 leps.fr, 1 lepsos.com, 0 -leptitbaltar.com, 1 leptotrichia.tk, 1 lepuyenvelay-tourisme.fr, 1 lequerceagriturismo.com, 1 @@ -83678,6 +82861,7 @@ lerika.tk, 1 lerks.blog, 1 lerku.com, 1 lernenamsee.ch, 1 +lernerspersonalinjury.ca, 0 lernorteuropa.com, 1 lernorteuropa.de, 1 lernorteuropa.eu, 1 @@ -83719,7 +82903,6 @@ lescomptoirsdepierrot.com, 1 lesconcours.tk, 1 lescoquetteriesdenais.fr, 1 lescouturesdisa.fr, 1 -lescrapdesfilles.fr, 1 lescrieursduweb.com, 1 lesdeuxfilles.be, 1 lesdouceursdeliyana.com, 1 @@ -83783,7 +82966,6 @@ letaman.tk, 1 letao18.com, 0 letchikleha.tk, 1 letdownloads.tk, 1 -letechgranby.com, 1 leteckedarky.cz, 1 letemps.ch, 1 letempsdujasmin.fr, 1 @@ -83830,7 +83012,6 @@ letsdoeit.com, 1 letsdothatagain.gq, 1 letsdothatagain.ml, 1 letsdothatagain.tk, 1 -letsearnit.com, 1 letselhulpservice.nl, 1 letsencrypt-for-cpanel.com, 1 letsflyinto.space, 1 @@ -83917,7 +83098,7 @@ levis.fun, 1 levis.name, 1 levischuck.com, 1 levisenlaw.com, 1 -levitate.ro, 1 +levitate.ro, 0 levitatingx.com, 1 levitation.tk, 1 levlagom.com, 1 @@ -84045,8 +83226,6 @@ lgp.go.th, 1 lgrs.com.au, 1 lgscripts.com.br, 1 lgsg.us, 1 -lgshop.cz, 1 -lgshop.sk, 1 lgstore.cz, 1 lgstore.sk, 1 lgsystem.cz, 1 @@ -84114,7 +83293,7 @@ lib.rs, 1 lib64.net, 1 libanswers.com, 1 libanswers.net, 1 -libapps.com, 1 +libapps.com, 0 libapps.net, 1 libart.so, 1 libauth.com, 1 @@ -84132,7 +83311,6 @@ libcrc.org, 1 libcrm.com, 1 libcrm.net, 1 libelle.nl, 1 -libellezomerweek.nl, 1 libellezomerweekexposanten.nl, 1 libelulaweb.tk, 1 liberad.fr, 1 @@ -84206,7 +83384,6 @@ librairiez.com, 1 librairiezbookstore.com, 1 libramedia.ru, 1 libranet.eu, 1 -libraproje.com, 1 libraries.vic.gov.au, 1 librarika.com, 1 librarium.tk, 1 @@ -84248,6 +83425,7 @@ librosantimateria.com, 1 librosdelasteroide.com, 1 librosdescargas.club, 1 librosgratisnet.tk, 1 +librosparareinventarse.es, 1 libruis.com, 0 libscpi.org, 1 libskia.so, 1 @@ -84291,7 +83469,6 @@ lichtjesavondkoedijk.nl, 1 lichtmetzger.de, 0 lichtplatformnsvv.nl, 1 lichtschatten.tk, 1 -lichtspot.de, 1 lichtsturm.net, 1 lichttechnik-tumler.com, 1 lichtval.tk, 1 @@ -84450,7 +83627,6 @@ liftagacademy.com, 1 liftedpixel.net, 1 liftie.info, 1 liftingchat.com, 1 -liftmode.com, 1 liftntake.com, 1 liftyourgame.com, 1 lig.ink, 0 @@ -84507,7 +83683,6 @@ lightningprotocol.finance, 1 lightnings.tk, 1 lightningseed.net, 1 lightningwirelabs.com, 1 -lighto.pk, 1 lightoflifehomoeopathyclinic.com, 1 lightography.com, 1 lightonelectrical.com.au, 1 @@ -84544,7 +83719,6 @@ lihuenjardin.com, 1 liikluslab.ee, 1 liisauusitaloarola.fi, 1 liivimeretuulepark.ee, 1 -liivioffshorepark.com, 1 lijana.rs, 1 lijero.co, 1 liji.ru, 1 @@ -84963,7 +84137,6 @@ linux-tips.us, 1 linux-vme.org, 1 linux.cn, 0 linux.conf.au, 1 -linux.farm, 1 linux.fi, 1 linux.im, 1 linux.pizza, 1 @@ -85135,7 +84308,7 @@ lister-kirchweg.de, 1 listerplace.co.uk, 1 listerventures.com, 0 listiclepal.com, 1 -listim.com, 1 +listim.com, 0 listinfinity.net, 1 listing.gq, 1 listisima.com, 1 @@ -85284,7 +84457,6 @@ litzenberger.ca, 1 liubliu.co.uk, 1 liud.im, 1 liudon.com, 1 -liudon.org, 1 liuhecai.com, 1 liujr.tk, 1 liujunyang.com, 0 @@ -85452,7 +84624,6 @@ livingtohearsix.com, 1 livingworduk.org, 1 livinkitchen.tk, 1 livive.com, 1 -livka.id, 1 livli.cz, 1 livli.pl, 1 livli.sk, 1 @@ -85491,7 +84662,7 @@ lizcheney.com, 1 lizeal.tk, 1 lizheng.de, 1 lizhi.io, 1 -lizhuan.cn, 0 +lizhuan.cn, 1 lizlew.is, 1 liznewton.com.au, 1 liztattoo.se, 1 @@ -85506,7 +84677,6 @@ lizzysdoggrooming.com, 1 lizzythepooch.com, 1 lj-creation.com, 1 ljason.cn, 1 -ljc.ro, 1 ljekarne-plantak.hr, 1 ljoonal.xyz, 1 ljpc-hosting.nl, 1 @@ -85539,7 +84709,6 @@ ll6729.co, 1 ll6729.com, 0 ll6957.co, 1 ll9297.co, 1 -ll9397.com, 1 ll9728.co, 1 llac.org, 1 llanelli-radio-club.tk, 1 @@ -85597,7 +84766,7 @@ lnoldan.com, 1 lnovus.ru, 0 lnsk.lt, 1 lnsolucoesfinanceiras.com.br, 1 -lntpower.com, 1 +lntpower.com, 0 lnxy.eu, 1 lnyltx.cn, 1 lnzphoto.com, 1 @@ -85632,7 +84801,6 @@ loavies.com, 1 lob-assets-staging.com, 1 lob-assets.com, 1 lob-staging.com, 1 -lobandsmash.com, 1 lobao.eti.br, 1 lobao.pro.br, 1 lobbes.nl, 1 @@ -85654,6 +84822,7 @@ loca-voiture.fr, 1 locabir.cf, 1 locadoraequiloc.com.br, 1 local-insight.com, 1 +local-shop.com, 1 local360.net, 1 localassocier.tk, 1 localbandz.com, 1 @@ -85792,13 +84961,13 @@ loco-concepts.nl, 1 loco-socials.nl, 1 loco.gg, 1 locomotionds.com, 1 -locomotionhub.com, 1 locomotiv.tk, 1 locomotive.ca, 1 locomotiveworks.co.uk, 1 locoroom.com, 1 locoserver.net, 1 locspec.com.au, 1 +locus-cell.com, 1 locus-dashboard.com, 1 locus.ml, 1 locus.tk, 1 @@ -85865,7 +85034,6 @@ logfile.at, 1 logfile.ch, 1 logfinish.com, 1 logfro.de, 1 -logfurnitureplace.com, 1 logheavenvt.com, 1 logic8.ml, 1 logical-invest.com, 1 @@ -85955,7 +85123,6 @@ lohmeyer.cc, 1 lohnsteuerhilfe-essen.de, 1 lohocla.org, 1 lohr.me, 1 -lohr.net, 1 loic-raymond.fr, 1 loiit.ga, 1 loire-en-bateau.fr, 1 @@ -85997,7 +85164,6 @@ lojaprojetoagua.com.br, 1 lojasmary.com.br, 1 lojasoulstyle.com.br, 1 lojasportmixonline.com.br, 1 -lojastec.com.br, 1 lojasvictoria.com.br, 1 lojasvirtuaisesites.com.br, 1 lojatema.com.br, 1 @@ -86013,7 +85179,6 @@ lojix.com, 0 lojj.pt, 1 lokace.eu, 1 lokan.id, 1 -loker.id, 1 lokinet.org, 1 lokjagruktafoundation.com, 1 lokomotivaplzen.cz, 1 @@ -86153,7 +85318,6 @@ lonelyworld.tk, 1 loneronin.tk, 1 lonerwolf.com, 0 lonesomecosmonaut.com, 1 -lonestarlandandcommercial.com, 1 lonestarpediatricdental.com, 1 lonestarrott.com, 1 lonewolftech.ga, 1 @@ -86305,6 +85469,7 @@ lordcaos.tk, 1 lorddominion.tk, 1 lordfutbol.tk, 1 lordgandalf.nl, 1 +lordgeorgeanson.com, 1 lordgrant.tk, 1 lordkrishna.tk, 1 lordlink.net, 1 @@ -86484,7 +85649,6 @@ lottozambia.com, 1 lotusbook247.com, 1 lotusdiving.net, 1 lotuselise.tk, 1 -lotushouse.yoga, 1 lotusweb.tk, 1 lotuswebsolutions.tk, 1 lotw.de, 1 @@ -86591,7 +85755,6 @@ loveismore.ru, 0 loveismore.sk, 0 loveismystyle.tk, 1 loveisourweapon.com, 1 -loveitclickitbuyit.com.au, 1 lovejms.com, 1 lovejoymethodist.org, 1 lovelandelec.com, 1 @@ -86613,7 +85776,6 @@ lovemanagementaccounts.co.uk, 1 lovemasjid.com, 1 lovememories.cf, 1 lovemen.cc, 1 -lovemesomegadgets.com, 1 lovemiku.info, 1 lovemoon.tk, 1 lovemybubbles.com, 1 @@ -86718,7 +85880,7 @@ lra-cloud.de, 1 lrbm.com, 1 lrc.cn, 1 lrcr.ch, 0 -lrdo.net, 1 +lrdo.net, 0 lrfix.com, 1 lriese.ch, 1 lrn.com, 1 @@ -86805,7 +85967,6 @@ luc-oberson.ch, 0 luc.li, 1 luca-app.de, 1 luca-steeb.com, 1 -lucacastelnuovo.nl, 1 lucaconrads.de, 1 lucade.ddns.net, 0 lucafontana.net, 1 @@ -86885,11 +86046,9 @@ luckybeantravel.com, 1 luckyblockland.fr, 1 luckycasino.se, 1 luckycastles.co.uk, 1 -luckycharms.com, 1 luckycloud.de, 1 luckydag.com, 1 luckydoglodge.net, 1 -luckyedward.com, 1 luckyemail.ml, 1 luckyfrog.hk, 1 luckymice.ml, 1 @@ -86934,7 +86093,6 @@ ludum-polus.xyz, 1 ludum.pl, 1 ludunwayoo.com, 1 ludwig.im, 1 -ludwiggrill.de, 1 ludwigjohnson.se, 1 ludwigpro.net, 1 ludwigsburger-brauhaus.de, 1 @@ -86963,7 +86121,7 @@ lugui.in, 1 lui.vn, 1 luijken-naturephotography.com, 1 luijten.it, 1 -luijten.net, 1 +luinonotizie.it, 1 luis-portfolio.es, 1 luis.ee, 1 luis.fi, 0 @@ -87010,7 +86168,6 @@ lukasldc.com, 1 lukasmatuska.cz, 0 lukasrod.cz, 1 lukasschauer.de, 1 -lukastesar.cz, 1 lukasunger.cz, 1 lukasunger.net, 1 lukasw.tk, 1 @@ -87021,7 +86178,6 @@ lukaszuk.pl, 1 lukaszwojcik.com, 1 lukaszwojcik.net, 1 lukatz.de, 1 -luke-hacks.com, 1 luke.id, 1 luke6887.me, 1 lukeandjesse.wedding, 1 @@ -87078,7 +86234,6 @@ lumindigital.com, 0 lumineled.se, 1 lumingze.eu.org, 1 luminia-informatique.fr, 1 -luminsmart.com, 1 lumitop.com, 1 lumixtar.com, 1 lummi-nsn.gov, 1 @@ -87178,7 +86333,7 @@ luotianyi.online, 1 luowu.cc, 1 luoxingyu.ml, 1 lupa.cz, 1 -lupakode.com, 1 +lupakode.com, 0 luparacoes.com.br, 1 lupecode.com, 1 lupinencyclopedia.com, 1 @@ -87187,14 +86342,12 @@ lupocattivoblog.com, 1 luppa.loan, 1 lupriflex.com, 1 luqsus.pl, 1 -luripump.se, 1 lurishop.com.br, 1 lurkmirror.ml, 1 lushclub.tk, 1 lushersolutions.com, 1 lushnikov-alex.ru, 1 lushnja.tk, 1 -lusignolo.com, 1 lusis.fr, 1 lusitom.com, 1 luso-livros.net, 1 @@ -87209,7 +86362,6 @@ lusteniny.cz, 1 lustgarten.org, 1 lustiger-kellner.de, 1 lustigetweets.at, 1 -lustin.fr, 1 lustrecloud.art, 1 lusynth.com, 0 lut.im, 1 @@ -87232,7 +86384,6 @@ luv-scent.com, 1 luv.asn.au, 1 luv2watchmycam.com, 1 luvare.com, 1 -luvbridal.com.au, 1 luvey.com, 1 luvmihome.com, 1 luvscent.com, 1 @@ -87246,7 +86397,6 @@ luxden.com, 1 luxe-in.gr, 1 luxe.digital, 1 luxebadkameraccessoires.nl, 1 -luxedition.ru, 0 luxegram.co, 1 luxehomecompany.com, 1 luxelyhome.com, 1 @@ -87295,6 +86445,7 @@ luxvacuos.net, 1 luxwatch.com, 1 luyckx.net, 1 luyungterd.com, 0 +luzfaltex.com, 1 luzi-type.ch, 1 luzica.tk, 1 lv.lk, 1 @@ -87312,7 +86463,6 @@ lvguitars.com, 1 lvkasz.us, 1 lvkaszus.pl, 1 lvlv.cf, 1 -lvmoo.com, 1 lvna.capital, 1 lvnacapital.com, 1 lwb.pt, 1 @@ -87344,7 +86494,6 @@ lyanaprintable.com, 1 lyap-lyandiya.ga, 1 lyax.be, 1 lycan.me, 1 -lycaonsec.com, 1 lyceum.lk, 1 lychankiet.name.vn, 0 lycly.me, 1 @@ -87419,13 +86568,13 @@ lyriksidan.ga, 1 lyrique.ch, 1 lys.ch, 0 lysander-hans.com, 1 -lysbed.com, 1 lyscnd.com, 1 lysel.net, 1 lysergion.com, 1 lysethcreation.com, 1 lyst.co.uk, 1 lyteclinic.com, 0 +lytkins.ru, 1 lyubov-sovmestimost.cf, 1 lyuda.tk, 1 lyukaacom.ru, 1 @@ -87436,7 +86585,6 @@ lyxel-staging.tk, 1 lz.lv, 1 lz.sb, 1 lz233.ac.cn, 1 -lz898.com, 1 lzcreation.com, 1 lzqii.cn, 1 lzwc.nl, 1 @@ -87477,7 +86625,6 @@ m.me, 1 m.sb, 1 m08.co, 1 m0t0k1ch1.com, 1 -m0v0.com, 1 m1-garand-rifle.com, 1 m132.eu, 1 m134.eu, 1 @@ -87485,7 +86632,6 @@ m1d1.black, 1 m1gun.tk, 1 m1hax.uk, 1 m23cal.eu, 1 -m24o.net, 1 m2designer.com.br, 1 m2dleadership.com, 1 m2epro.com, 1 @@ -87593,7 +86739,6 @@ macautocouture.ml, 1 macaw.de, 1 macaw.lt, 1 macaw.net, 1 -macaw.nl, 1 macaws.org, 1 macbach.com, 0 maccabi-dent.com, 1 @@ -87610,7 +86755,6 @@ macgeneral.de, 1 macgenius.com, 1 mach-it.com.ar, 1 mach-politik.ch, 1 -mach.com.ar, 1 macha.cloud, 1 machaaltricks.tk, 1 machbach.com, 1 @@ -87640,7 +86784,6 @@ machwasgeil.es, 1 macil.tech, 1 macinyasha.net, 1 macioszektv.eu, 1 -macji-raj.si, 1 mack-eng.com, 1 mack.im, 1 mack.space, 1 @@ -87689,7 +86832,6 @@ macstore.pe, 0 macupdate.com, 1 macvcure.com, 1 macvidcards.eu, 1 -mad-eye.com, 1 mad-in-love.com, 1 mad-rabbit.com, 1 mad.es, 1 @@ -87855,7 +86997,7 @@ mafiagames.tk, 1 mafiamohaa.tk, 1 mafiasi.de, 1 mafiatown.pl, 1 -mafondue.ch, 1 +mafondue.ch, 0 mafworld.com, 1 mafy.fi, 1 magaconnection.com, 1 @@ -88010,7 +87152,6 @@ magnesy-tanio.net, 1 magnesy.de, 1 magnesy.net.pl, 1 magnesy.priv.pl, 1 -magnet-search.com, 1 magnet.pub, 1 magnetar.com, 1 magnetgaming.com, 1 @@ -88209,7 +87350,6 @@ mailsac.com, 1 mailsend.ml, 1 mailstart.ga, 1 mailstation.de, 1 -mailster.pt, 1 mailsupport.cz, 1 mailtelligent.com, 1 mailtobiz.tk, 1 @@ -88285,6 +87425,7 @@ majavucic.com, 1 majaweb.cz, 1 majelisriyadhah.com, 1 majemedia.com, 1 +majesnix.org, 1 majestas.tk, 1 majestic-files.com, 1 majestic-rp.ru, 1 @@ -88523,7 +87664,6 @@ malwar.eu, 1 malware.watch, 1 malwareincidentresponse.com, 1 malwareinvestigator.gov, 1 -malwarekillers.com, 1 malwaretips.com, 1 malwarewise.com, 1 malworld.me, 1 @@ -88534,7 +87674,6 @@ mamacasinos.com, 1 mamacitaz.com, 1 mamacoolinar.bg, 1 mamadoma.com.ua, 1 -mamaearth.co.nz, 1 mamaisonsherby.ca, 1 mamamoet.ru, 1 maman-geek.com, 1 @@ -88573,6 +87712,7 @@ mamont.cloud, 1 mamontov.tk, 1 mamopracuj.pl, 1 mamoris-net.jp, 1 +mamospienas.lt, 1 mamot.fr, 1 mamradost.sk, 1 mamsds.com, 1 @@ -88668,12 +87808,10 @@ manfredi.io, 1 manfredimatteo.com, 1 manfredschafer.ch, 1 manfree.tk, 1 -manga-boku-no-hero.com, 1 manga-life.info, 1 manga-passion.de, 1 manga-republic.com, 1 manga1000.top, 1 -manga1001.in, 1 manga1001.top, 1 manga1001.xyz, 1 manga168.com, 1 @@ -88685,7 +87823,7 @@ mangaesp.tk, 1 mangafreak.tk, 1 mangagaga.tk, 1 mangahigh.com, 1 -mangajp.top, 1 +mangajp.top, 0 mangakita.net, 1 mangalove.top, 1 manganimefan.tk, 1 @@ -88908,7 +88046,7 @@ maorx.cn, 1 maoshuai.bid, 1 maoshuai.cc, 1 maoshuai.club, 1 -maoshuai.cn, 1 +maoshuai.cn, 0 maoshuai.co, 1 maoshuai.cx, 1 maoshuai.fun, 1 @@ -88976,7 +88114,7 @@ mar-eco.no, 1 mar.pt, 1 mara.paris, 1 marabook.fr, 1 -maraboutserieuxhonnete.com, 1 +maraboutserieuxhonnete.com, 0 marabunta.io, 1 maracarlinicourses.com, 1 maracit.tk, 1 @@ -89178,6 +88316,7 @@ mariejulien.com, 1 mariella-sun.net, 1 marielouise.tk, 1 mariemccaig.co.uk, 1 +mariemiramont.fr, 1 mariereichl.cz, 1 mariescountymo.gov, 1 marieskyler.net, 1 @@ -89287,7 +88426,6 @@ market.android.com, 1 marketadvisory.com.au, 0 marketbasket.tk, 1 marketcavalli.it, 1 -marketcrypto.id, 1 marketerprofesional.com, 0 marketespace.fr, 0 marketfeed.news, 1 @@ -89317,7 +88455,6 @@ marketingpalace.tk, 1 marketingstrategy.gq, 1 marketingtrendnews.com, 1 marketingtutor.net, 1 -marketingvirtuales.com, 1 marketingwelt-lipp.de, 1 marketingypublicidaddigital.com.mx, 1 marketio.ai, 1 @@ -89358,7 +88495,6 @@ markjansen.tk, 1 markkirkforillinois.com, 1 markkirkforsenate.com, 1 markkusilvennoinen.fi, 1 -marklauman.ca, 0 marklehane.com, 1 markllego.com, 1 markmet.fi, 1 @@ -89389,10 +88525,9 @@ marktgorman.com, 1 marktguru.at, 1 marktguru.de, 1 markthisforme.com, 1 -marktissink.nl, 1 +marktissink.nl, 0 markup-ua.com, 1 markus-blog.de, 1 -markus-dope.de, 1 markus-enzweiler.de, 1 markus-keppeler.de, 1 markus-musiker.de, 1 @@ -89474,7 +88609,6 @@ mars.navy, 1 marsafc.tk, 1 marsanvet.com, 1 marsatapp.com, 1 -marseillekiteclub.com, 1 marshaiargentina.com, 1 marshall-allman.tk, 1 marshallcoms.gov, 1 @@ -89637,7 +88771,6 @@ marycliffpress.com, 1 marycowanceramics.com, 1 maryeileen90.party, 1 maryeileenkelly.com, 1 -maryetmarc.fr, 1 maryhaze.net, 1 marykatrinaphotography.com, 1 marykirsch.net, 1 @@ -89678,7 +88811,6 @@ maschinensucher.de, 1 mascorazon.com, 1 mascotarios.org, 1 mascoteando.net, 1 -masculina.com.br, 1 masdemariette.com, 1 masdemexico.com, 1 masduta.co, 1 @@ -89755,12 +88887,12 @@ massagetherapyschoolsinformation.com, 1 massaggio.it, 1 massagik.ml, 1 massanews.com, 1 +massapothecary.com, 1 massauditor.gov, 1 massazh.cf, 1 massbank.eu, 1 massconsultores.com, 1 masse.org, 1 -massflix.com, 1 massfone.com, 1 masshost.tk, 1 masshpc.gov, 1 @@ -89910,7 +89042,6 @@ matematikkulubu.tk, 1 matematyka.wiki, 1 matemonsac.com, 0 mateoconlechuga.com, 1 -matepro.pl, 1 materasocial.live, 1 materassi.roma.it, 1 materassicatania.it, 1 @@ -89942,10 +89073,8 @@ math.hamburg, 1 mathalexservice.info, 1 mathavuzteknolojileri.com.tr, 1 mathdf.com, 1 -matheball.de, 1 mathebau.de, 1 mathebibel.de, 1 -mathechor.de, 1 mathematica.org, 1 mathematik.rocks, 1 matheo-schefczyk.de, 1 @@ -90188,7 +89317,6 @@ mauditeboisson.tk, 1 maudok.gov, 1 mauhalito.tk, 1 mauicharm.com, 1 -mauioceancenter.com, 1 mauldincookfence.com, 1 mauletsmallorca.tk, 1 maumovie.ml, 1 @@ -90502,7 +89630,7 @@ mc007.xyz, 1 mc2informatique.fr, 1 mc3dreal.de, 1 mc4free.cc, 1 -mc5zvezd.ru, 1 +mc5zvezd.ru, 0 mcagon.tk, 1 mcahm.eu.org, 1 mcalert.in, 1 @@ -90540,7 +89668,6 @@ mcdonalds.design, 1 mcdowellcountyncboe.gov, 1 mcdowellcountywv.gov, 1 mcdowellnews.com, 1 -mcdpromotion.ca, 1 mcdreamcity.com, 1 mcdsg.net, 1 mcduff.ga, 1 @@ -90695,13 +89822,10 @@ mdir.tk, 1 mditsa.de, 1 mdiv.pl, 1 mdjobsite.com, 1 -mdl.co.ua, 1 mdlayher.com, 1 mdleom.com, 1 mdma.net, 1 -mdmck10.xyz, 1 mdmed.clinic, 1 -mdmhukuk.com, 1 mdns.eu, 1 mdosch.de, 1 mdpp.com.br, 1 @@ -90739,7 +89863,6 @@ mealcast.ml, 1 mealpedant.com, 1 meals.lv, 1 mealsnmemories.in, 1 -mealz.com, 1 meamod.com, 0 meandmyemotions.org, 1 meanevo.com, 1 @@ -91223,6 +90346,7 @@ mediamora.nl, 1 medianbases.ga, 1 mediantechnologies.com, 1 mediaoffice.ae, 1 +mediapark.uz, 1 mediapart.fr, 1 mediapath.gr, 0 mediapost-publicite.fr, 1 @@ -91297,6 +90421,7 @@ medicareinfo.org, 1 medicaremarket.com, 1 medicaresupplement.com, 1 medicasa-gmbh.de, 1 +medicel.com, 1 medicenteritalia.it, 1 medichat.ml, 1 medicimaging.com, 1 @@ -91373,7 +90498,6 @@ medlineplus.gov, 1 medlink.pl, 1 medmark.com, 1 medmobil.ru, 1 -mednet-communities.net, 1 medo64.com, 1 medofis.com, 1 medorand.gov, 1 @@ -91510,7 +90634,6 @@ megajatek.hu, 1 megakoncert90.cz, 1 megalibportal.ga, 1 megalibrarygirl.ml, 1 -megalogi.ma, 1 megalogistic.ru, 1 megalol.tk, 1 megalonomia.ml, 1 @@ -91531,7 +90654,6 @@ megaparadise.ml, 1 megapari.com, 1 megapixel.cz, 1 megaplan.cz, 1 -megaplan.ru, 1 megaportal.ga, 1 megaportal.tk, 1 megaprofi.tk, 1 @@ -91792,7 +90914,6 @@ melvinsfrance.tk, 1 melvintemo.com, 1 melyssamonroy.com, 1 mema.recipes, 1 -memarbash.com, 1 memberbaz.ml, 1 memberclicks.net, 1 memberplushq.com, 1 @@ -91823,7 +90944,6 @@ memoirmedie.dk, 1 memolestas.tk, 1 memorablewords.org, 1 memoriaacademy.com, 1 -memoriadeunaciudadzccm2019.com, 1 memorial.com.tr, 1 memoriaseternizadas.com.br, 1 memories-factory.pt, 1 @@ -91872,7 +90992,6 @@ mengma.pub, 1 mengqingzhong.cn, 1 mengqingzhong.com, 1 mengqingzhong.com.cn, 1 -mengxin.life, 1 mengyibai.com, 1 menh.vn, 1 menhera.org, 0 @@ -92041,6 +91160,7 @@ mercercountyohio.gov, 1 mercercountypa.gov, 1 mercerisland.gov, 1 merchant-portal.co.kr, 1 +merchantsbankofindiana.com, 0 merchcity.com, 1 merchentpro.biz, 1 merchifyapp.com, 1 @@ -92061,7 +91181,6 @@ mercurysquad.tk, 1 mercyseverity.tk, 1 merelskleertjes.tk, 1 merenbach.com, 1 -merenita.com, 1 merenita.eu, 1 merenita.net, 1 merenita.nl, 1 @@ -92076,7 +91195,6 @@ meridianoshop.com.br, 1 meridiansteel.co.uk, 1 meridianstore.com.br, 1 merikserver.tk, 1 -merino.codes, 1 merionwest.com, 1 merisia.ca, 1 meritcb.eu, 1 @@ -92126,7 +91244,6 @@ mesaazpolice.gov, 1 mesabi.ga, 1 mesalancasterpa.gov, 1 mesappros.com, 1 -mesas-auxiliares.com, 1 mesasysillas.site, 1 mesbonnesrecettes.com, 1 mescadeaux.com, 1 @@ -92313,7 +91430,6 @@ metex.exchange, 1 metformin365.tk, 1 methamphetamine.co.uk, 1 method.com, 1 -methoddemo.com, 1 methode.com, 1 methodfactory.com, 1 methodist.com.tr, 1 @@ -92584,7 +91700,6 @@ miamicountyohioauditor.gov, 1 miamidadeclerk.gov, 1 miamifl.casa, 1 miamifl.homes, 1 -miamimosque.org, 1 mianbao.ga, 1 mianfei.us, 1 miankamran.tk, 1 @@ -92791,7 +91906,6 @@ microbird.club, 1 microblink.com, 1 microcert.cn, 1 microchains.network, 1 -microco.sm, 1 microcomploja.com.br, 1 microcosm.com, 1 microdata.es, 1 @@ -92816,7 +91930,6 @@ micronotfound.gq, 1 micropigmentacaobh.com.br, 1 micropigmentadordesucesso.com, 1 micropigpets.com, 1 -micropress.co.uk, 1 microsoft, 1 microsoftedgeinsider.com, 1 microtel2notch.tk, 1 @@ -92837,7 +91950,6 @@ midam.sk, 1 midamericapiering.com, 1 midasauctions.com, 1 midasbay-free.ml, 1 -midasjewellery.com.au, 0 midcarolinaregionalairport.com, 1 midcarolinaregionalairport.org, 1 middelstaedt.com, 1 @@ -93085,6 +92197,7 @@ mikeguy.co.uk, 1 mikehamburg.com, 1 mikeklidjian.com, 1 mikekreuzer.com, 1 +mikelawson.com, 1 mikelpradera.tk, 1 mikelundpainting.com, 1 mikemcgeephotography.com, 1 @@ -93143,6 +92256,7 @@ mikper.com, 1 mikrokosmos.tk, 1 mikropixel.de, 1 mikrotech.co.za, 1 +mikrothink.com, 1 mikrotike.tk, 1 mikrozajmy-na-kartu.cf, 1 miku-doujin.com, 1 @@ -93181,13 +92295,11 @@ milasescmagazin.tk, 1 milatlumaczenia.pl, 1 milavica.tk, 1 milavicca.tk, 1 -milbart.store, 1 milbournequine.co.uk, 1 milcahsmusings.com, 1 milchweg.com, 1 milcrofton.gov, 1 mildridesua.com, 1 -milehighmaniac.com, 1 milehighmedia.com, 1 mileme.com, 1 milenaria.es, 1 @@ -93245,7 +92357,6 @@ milkwoodrestaurant.com, 0 milkyperu.com, 1 milkypond.org, 1 milkywan.fr, 1 -mill.ml, 1 milladeo.tk, 1 millalex.com, 1 millant.ovh, 1 @@ -93419,7 +92530,6 @@ mine-craftlife.com, 1 mine-pixl.de, 1 mine260309.me, 0 minebbs.com, 1 -minebier.dk, 1 minebitcoin.tk, 1 minecity.fun, 1 minecraft-forum.eu, 1 @@ -93473,7 +92583,6 @@ minestory.cf, 1 minesweepergame.de, 1 minetracker.dk, 1 mineturtle.de, 1 -minewiki.net, 1 minez-nightswatch.com, 0 minf3-games.de, 1 minfin.gov.ua, 1 @@ -93573,7 +92682,6 @@ minnesota8.org, 1 minnesotacitymn.gov, 1 minnesotahealthcareconsortium.gov, 1 minnesotalakemn.gov, 1 -minnesotareadingcorps.org, 1 minnisites.com, 1 minnit.chat, 1 minnpost.com, 1 @@ -93627,7 +92735,6 @@ minungdomsbolig.dk, 1 minutashop.ru, 1 minuteflightdeals.com, 1 minutemanplumbingtulsa.com, 1 -minutemanpress.com, 1 minutepunchline.com, 1 minuterice.com, 1 minutocultural.com.br, 1 @@ -93720,7 +92827,6 @@ mirkomainardi.com, 1 mirkout.com, 1 mirkvartir.tk, 1 mirmax.ch, 1 -mirmeco.org, 1 mirnesnet.tk, 1 mirnews.ml, 1 mirobuvi.com.ua, 1 @@ -93825,7 +92931,6 @@ missmeydan.com, 1 misson.ovh, 1 missoula.gov, 1 missoulacountymt.gov, 1 -missoulian.com, 1 missouri-sky.tk, 1 missouriheatingcoolingadvice.com, 1 missoy.me, 1 @@ -93910,7 +93015,6 @@ mithgol.tk, 1 mithril.email, 1 mithypnoseweiter.de, 1 mitiad.gq, 1 -mitic.gov.py, 1 mitico.at, 1 miticobikes.com, 1 mitiendademunecas.com, 1 @@ -94004,6 +93108,7 @@ mixnix.tk, 1 mixnmojo.com, 1 mixom.net, 1 mixon.tk, 1 +mixpanel.com, 1 mixposure.com, 1 mixtafrica.com, 1 mixx.com.hk, 1 @@ -94078,7 +93183,6 @@ mkboynton.org, 1 mkcert.org, 1 mkchandler.com, 1 mkdevice.it, 1 -mkedziora.pl, 1 mkes.com, 1 mkey-solution.at, 1 mkey-solution.com, 1 @@ -94183,7 +93287,6 @@ mm5197.co, 1 mm6729.co, 1 mm6729.com, 0 mm6957.co, 1 -mm88game.com, 1 mm9297.co, 1 mm9397.com, 0 mm9721.com, 0 @@ -94282,7 +93385,6 @@ mnogoknighek.tk, 1 mnogosofta.tk, 1 mnogoznai.tk, 1 mnotrioesdp.ml, 1 -mnplay.xyz, 1 mnprairie.gov, 1 mnrloroli.tk, 1 mnrtechsolutions.com, 1 @@ -94472,14 +93574,13 @@ modav.org, 1 modax.ua, 1 modbom.com.tw, 1 modcombo.com, 1 -modcomedia.com, 1 modcover.com, 1 modd.com.au, 1 modded-minecraft-server-list.com, 1 moddedphones.com, 1 modderday.com, 1 modding-forum.com, 1 -modding-openmw.com, 1 +modding-openmw.com, 0 modding-welt.com, 1 moddingworld.tk, 1 moddiy.com, 1 @@ -94499,7 +93600,6 @@ modeldoll.tk, 1 modelearth.org, 1 modelfotografie.tk, 1 modeli.tk, 1 -modelist.com.ua, 1 modell-lq.net, 1 modellbahnshop.de, 1 modellismo.roma.it, 1 @@ -94815,7 +93915,6 @@ mon-trafic.com, 1 mon22.ch, 0 mona-dress.com, 1 monacannation.gov, 1 -monachatdeco.com, 0 monaco-automaten.de, 1 monaco-info.tk, 1 monacoexpress.tk, 1 @@ -94831,7 +93930,6 @@ monauralpress.com, 0 monays.ga, 1 monbebeautrement.fr, 1 monbedou.net, 1 -moncoach.ch, 0 monconcoursdgfip.fr, 1 mondayaftersunday.com, 1 mondaynightbrewing.com, 1 @@ -94895,7 +93993,6 @@ moneymania.tk, 1 moneymart.ca, 1 moneymet.ru, 1 moneymint.com, 1 -moneymorning.com, 1 moneyniti.com, 1 moneyonchain.com, 1 moneypark.ch, 1 @@ -94998,7 +94095,6 @@ monpc-pro.fr, 0 monplay.host, 1 monrabais.fr, 1 monrasp.ddns.net, 1 -monroe27.com, 1 monroecountymo.gov, 1 monroecountyny-opi.gov, 1 monroecountysheriff-ny.gov, 1 @@ -95043,7 +94139,6 @@ montanasky.tv, 1 montanatrouthunters.com, 1 montanawi.gov, 1 montanwerk.de, 1 -montarfotoaki.com, 1 montarosa.tk, 1 montas.io, 1 montcalmcountymi.gov, 1 @@ -95052,7 +94147,6 @@ montco.today, 1 montebelloca.gov, 1 montehermoso.tk, 1 montejomoving.com, 1 -montemanik.com, 0 montenativo.de, 0 montenegro-yacht.com, 1 monterey.gov, 1 @@ -95207,7 +94301,6 @@ moparcraft.com, 1 moparcraft.net, 1 moparcraft.org, 1 moparinsiders.com, 1 -moparisthe.best, 1 moparisthebest.com, 1 moparisthebest.net, 1 moparisthebest.org, 1 @@ -95266,7 +94359,6 @@ morecreativelife.com, 1 morediets.net, 1 moreeducation.tk, 1 morehertz.com, 1 -morehopefoundations.org.uk, 1 morellilaw.com, 1 moremindsbetter.com, 1 morenadacentral.tk, 1 @@ -95333,7 +94425,6 @@ moroccotodaynews.ga, 1 moroccounfiltered.com, 1 morocotacoin.news, 1 morogoro.tk, 1 -moromsmile.com, 1 morooi.cn, 1 morosystems.cloud, 1 morox.top, 1 @@ -95362,6 +94453,7 @@ morselife.org, 1 mortaltorment.tk, 1 mortazavifar.com, 1 mortebrume.eu, 1 +morten-harket.de, 1 mortengamstpedersen.tk, 1 mortezaafri.tk, 1 mortgagecalculator.biz, 1 @@ -95427,6 +94519,7 @@ mosscade.com, 1 mosselle.ro, 1 mosshi.be, 1 mossipanama.com, 1 +mossplants.ru, 1 mossylog.tk, 1 most.tk, 1 mostafabanaei.cf, 1 @@ -95595,7 +94688,6 @@ mountainchalet.blue, 1 mountaincitytx.gov, 1 mountaindiscovery.org, 1 mountaingrovemo.gov, 1 -mountainroadschool.org, 1 mountainsandmist.com, 1 mountainsmokes.com, 0 mountainspiritinn.com, 1 @@ -95740,7 +94832,7 @@ mp3gratuiti.com, 0 mp3musicfind.ga, 1 mp3noi.com, 1 mp3skull.cf, 1 -mp3sort.biz, 1 +mp3sort.biz, 0 mpa-pro.fr, 1 mpadegree.org, 1 mpak.tk, 1 @@ -95751,7 +94843,6 @@ mpcforum.pl, 1 mpcmsa.org, 1 mpdu.tk, 1 mpebrasil.tk, 1 -mpenten.com, 1 mpetroff.net, 1 mpfront.com, 1 mpg.gg, 1 @@ -95953,7 +95044,6 @@ mrzonk.cf, 1 ms-australia.de, 1 ms-ch.ch, 1 ms-fassmoebel.de, 1 -ms-gesellschaft.at, 1 ms-wissenschaft.de, 0 ms295.com, 0 ms67pta.org, 1 @@ -96016,7 +95106,6 @@ msnhdd.info, 1 msnr.net, 1 msoc.gent, 1 msoffice-inc.net, 1 -msoffice.fr, 1 msoida.me, 1 msoll.de, 1 msoll.eu, 1 @@ -96128,6 +95217,8 @@ mtltransport.com, 1 mtludlow.co.uk, 1 mtmedia.org, 1 mtn-media.de, 1 +mtnc.nl, 1 +mtncoi-coe.com, 1 mtnvalleyhospice.org, 1 mtnwebwiz.com, 1 mtoma.tk, 1 @@ -96169,6 +95260,7 @@ mu00.org, 1 mu105.cc, 1 mu3e.com, 1 mu3on.com, 1 +muabannhanh.com, 0 muac-innolab.eu, 1 muafakatmalaysia.ga, 1 muafakatmalaysia.gq, 1 @@ -96245,13 +95337,8 @@ muhibbulislam.tk, 1 muhiminulhasan.me, 1 muhlenbergtwppa.gov, 1 muhrielle.org, 1 -muhtesemsozler.com, 1 mui.com, 1 -mui.fitness, 1 -mui.kitchen, 1 -mui.news, 1 mui.pet, 1 -mui.today, 1 muii.com.br, 1 muilties.com, 1 muir.eu.org, 1 @@ -96441,6 +95528,7 @@ murasame.tech, 1 murashun.jp, 1 muratatifsayar.com.tr, 1 muratbekgi.com, 1 +muratboyla.com, 1 muratcileli.tk, 1 muratec.tw, 1 muratore-roma.it, 1 @@ -96672,7 +95760,6 @@ muurari.tk, 1 muusika.fun, 1 muusikoiden.net, 1 muv.co.uk, 1 -muwa-consulting.com, 1 muwatenraqamy.org, 1 muwi.tk, 1 muxetv.com, 1 @@ -96803,7 +95890,6 @@ my-demo.co, 1 my-digital.fr, 1 my-dns.co.il, 1 my-documentforce.com, 1 -my-ebook.es, 1 my-education.tk, 1 my-finance.tk, 1 my-force-user-content.com, 1 @@ -96811,7 +95897,6 @@ my-fuhui.com, 1 my-gps-tracker.co.uk, 1 my-health-homes.com, 1 my-host.ovh, 1 -my-housemanager.com, 1 my-how-to-draw.com, 1 my-hps.de, 1 my-ifms.com, 1 @@ -96821,7 +95906,6 @@ my-kirov.tk, 1 my-lightning-container.com, 1 my-lightning.com, 1 my-meal.nl, 1 -my-mediahome.ru, 1 my-meteo.net, 1 my-mobile-apps.com, 1 my-montenegro.tk, 1 @@ -96898,6 +95982,7 @@ myaquaterra.tk, 1 myareaf2a.com, 1 myarentcar.com, 1 myarticlelibrary.cf, 1 +myarticles.io, 1 myartsjournal.com, 1 myasb.club, 1 myathena.ai, 1 @@ -97058,7 +96143,6 @@ mydisabilitymatters.org.au, 1 mydisco.tk, 1 mydistance.tk, 1 mydlonline.be, 1 -mydmv.pro, 1 mydnshost.co.uk, 1 mydoc.fr, 1 mydocserve.com, 1 @@ -97095,7 +96179,6 @@ myelucidation.com, 1 myemailadd.net, 1 myemailsender.tk, 1 myeml.net, 1 -myempire.com.au, 1 myenemy.tk, 1 myenglish.tk, 1 myensolofts.com, 1 @@ -97122,6 +96205,7 @@ myfavmessage.cf, 1 myfavorite.com.tw, 1 myfdic.gov, 1 myfi24.ru, 1 +myfiladelfia.com, 1 myfile.gq, 1 myfinance.co.nz, 1 myfinverse.com, 1 @@ -97142,7 +96226,6 @@ myfloridarx.gov, 1 myformatconverter.com, 0 myfortdodge.com, 1 myforum.community, 1 -myfreemp3.blog, 1 myfreespiritpointscard.com, 1 myfrenchtattoo.fr, 1 myfsb.bank, 1 @@ -97188,7 +96271,6 @@ mygolod.com, 1 mygomel.tk, 1 mygov.scot, 1 mygreatjob.eu, 1 -mygreatjobs.de, 0 mygreatlakes.org, 1 mygreatwebsite.co.uk, 1 mygreencloset.com, 1 @@ -97307,7 +96389,6 @@ mylrd.xyz, 1 mylstrom.com, 1 myltfilm.tk, 1 myltivarka.ml, 1 -mymagazines.dk, 1 mymagic.ml, 1 mymagnifi.org, 1 mymailboxpro.cf, 1 @@ -97375,7 +96456,6 @@ mynewsfit.com, 1 mynewsinc.org, 1 mynext.events, 1 mynextmove.org, 1 -mynexuz.be, 1 mynic.my, 1 mynimo.com, 1 mynissan.ml, 1 @@ -97392,7 +96472,6 @@ myoctocat.com, 1 myoddlittleworld.com, 1 myodysi.com, 1 myofficeconnect.co.uk, 1 -myofficerenovation.com, 1 myokaloosa.gov, 1 myonline.store, 1 myonlinemovies.ga, 1 @@ -97414,7 +96493,6 @@ myowndisk.net, 1 myowntutor.co.uk, 1 mypaperdone.com, 1 mypaperwriter.com, 1 -myparadigm.com, 1 mypartnernews.com, 1 mypathologos.gr, 1 mypay.fr, 1 @@ -97425,7 +96503,6 @@ mypeople.co.in, 1 myperfecthome.ca, 1 myperks.in, 1 mypersonalpage.tk, 1 -mypet24.ch, 1 mypetcloud.com, 1 mypetitjob.fr, 1 mypetsvetsltd.co.uk, 1 @@ -97443,7 +96520,6 @@ mypivcard.com, 1 myplaceonline.com, 1 mypnu.net, 1 mypogljad.tk, 1 -mypoodleassassin.com, 1 mypornsnap.top, 1 myportal.ga, 1 myposters.tk, 1 @@ -97464,7 +96540,6 @@ mypsy.online, 1 mypsychicreadings.tk, 1 mypt3.com, 1 mypvhc.com, 1 -myqservices.com, 1 myraboats.tk, 1 myrandomtips.com, 1 myrants.org, 1 @@ -97475,7 +96550,6 @@ myreadingmanga.info, 1 myrealestateautomation.com, 1 myrealestatemate.com.au, 1 myred.net, 1 -myredfoxlabs.com, 1 myredserver.com, 1 myref.net, 1 myreferral.systems, 1 @@ -97603,7 +96677,6 @@ mysociallinks.org, 1 mysociety.ml, 1 mysockfactory.ch, 1 mysockfactory.com, 1 -mysoft.email, 1 mysoundtalks.com, 0 mysourceofhealth.com, 0 myspeedcash.com, 1 @@ -97656,7 +96729,6 @@ mysupplements.ga, 1 mysurfhostel.com, 0 myswabi.tk, 1 myswimmingclub.uk, 1 -myswissmailaddress.com, 0 myswitchelectric.com, 1 myswooop.de, 1 mytamarin.com, 1 @@ -97736,7 +96808,6 @@ mywebpanel.nl, 1 mywebpharmacy.tk, 1 mywebserver.ml, 1 myweightlosstips.tk, 1 -mywestondental.com, 1 mywifiext.net, 1 mywihomes.com, 1 mywikis.net, 1 @@ -97831,7 +96902,6 @@ n8solutions.net, 1 n8solutions.us, 1 n8ta.com, 1 n9297.co, 1 -n9397.com, 1 n95.news, 1 n95s.icu, 1 n95s.tech, 1 @@ -97839,7 +96909,6 @@ n9721.com, 0 n9728.co, 1 na-agency.com, 1 na-kipre.tk, 1 -na-n.xyz, 1 na-school.nl, 1 na.nl, 1 na1.nl, 1 @@ -98001,6 +97070,7 @@ nailspafinder.com, 1 naim.tk, 1 nairamine.org, 1 nairobibusinessreview.com, 1 +nairus.com.br, 1 nais.org, 1 najany.de, 1 najany.dk, 1 @@ -98047,6 +97117,7 @@ nakenmodell.tk, 1 nakib4tech.com, 1 nakim.cf, 1 nakin.tk, 1 +nakisa.com, 1 nakka.ch, 1 nakkati.tk, 1 nakliyat.name.tr, 1 @@ -98123,7 +97194,6 @@ namozagy.com, 1 namrs.net, 1 namsbaekur.is, 1 namskra.is, 1 -namu.games, 1 namu.la, 1 namu.live, 1 namu.moe, 1 @@ -98158,7 +97228,7 @@ nange.cn, 1 nangluongxanhbinhphuoc.com, 1 nangwizard.net, 1 nanhuimed.com, 1 -nanhuitop.com, 1 +nanhuitop.com, 0 naninossoftware.tk, 1 nanjie.com.tw, 1 nanjiyy.com, 1 @@ -98198,7 +97268,6 @@ nanotrasen.org, 0 nanovolt.nl, 1 nanowallet.io, 1 nansa.ch, 1 -nanshy.com, 1 nanubo.com, 1 nanubo.de, 1 nanwan.info, 1 @@ -98334,7 +97403,6 @@ nasecasomira.cz, 1 nasedluhy.cz, 1 naseehah.ga, 1 nasehyar.ir, 1 -naseong.kim, 1 nash-dom.tk, 1 nash-megagid.tk, 1 nash-server.tk, 1 @@ -98369,6 +97437,7 @@ nasosvdom.com, 1 nasosvdom.com.ua, 1 nasr.mobi, 1 nasrabady.tk, 1 +nasrsolar.com, 1 nasrullaganjnews.tk, 1 nassaucountyfl.gov, 1 nassautrafficny.gov, 1 @@ -98458,10 +97527,8 @@ nationalaustriabank.com, 1 nationalbank.gov, 1 nationalbankhelp.gov, 1 nationalbanknet.gov, 1 -nationalcashoffer.com, 1 nationalcybersecuritysociety.org, 1 nationalemployertraining.co.uk, 1 -nationalexpress.de, 1 nationaleyecenter.id, 1 nationalfleetparts.com, 1 nationalgangcenter.gov, 1 @@ -98473,7 +97540,6 @@ nationalmap.gov, 0 nationalmower.com, 1 nationalopera.ml, 1 nationalpriorities.org, 1 -nationalreentryresourcecenter.org, 1 nationalresourcedirectory.gov, 1 nationalservice.gov, 1 nationaltestingnetwork.com, 1 @@ -98546,7 +97612,6 @@ naturemeadows.in, 1 naturesbest.co.uk, 1 natureshealthandbody.com, 1 naturesupply.eu, 1 -naturevalley.com, 1 naturheilkunde-sabine-klein.de, 1 naturheilpraxis-grauer.de, 1 naturheilpraxis-oida.de, 1 @@ -98600,7 +97665,6 @@ navarrete.tk, 1 navasoft.com.tr, 1 naveengranites.com, 1 navegantesdelcosmos.ec, 1 -navegantesdosul.com.br, 1 navegarea.tk, 1 naveka.ga, 1 navenlle.com, 1 @@ -98634,7 +97698,7 @@ naxsnaps.co.uk, 1 nayanaas.com, 1 nayankasturi.eu.org, 1 nayapakistan.tk, 1 -nayatel.com, 0 +nayatel.com, 1 nayefalebrahim.com, 1 naymai.com, 1 nayna.tk, 1 @@ -98782,7 +97846,6 @@ nclea.gov, 1 nclf.net, 0 ncli-design.com, 1 ncloud.freeddns.org, 1 -ncloud.nl, 1 ncmc.me, 1 ncmedicaidplan.gov, 1 ncmedicaidplans.gov, 1 @@ -98982,7 +98045,6 @@ negoya-shokai.info, 1 negozimoda.it, 1 negoziointimo.com, 1 negr.gay, 1 -negr.link, 1 negr.tv, 1 negrete.tk, 1 negril.com, 0 @@ -99054,7 +98116,6 @@ nelegal-edition.tk, 1 nelflex.com.br, 1 nelhage.com, 1 nelili.com, 1 -neljaenergia.ee, 1 nella-project.org, 1 nellacms.org, 1 nellafw.org, 1 @@ -99112,6 +98173,7 @@ neneko.moe, 1 nenkin-kikin.jp, 1 neno.io, 1 neo-novarion.com, 1 +neo-wave.ro, 1 neo1.com, 1 neo2k.dk, 0 neo2shyalien.eu, 0 @@ -99119,7 +98181,6 @@ neo4j.com, 1 neobits.nl, 1 neoblindados.com.br, 1 neoblog.tk, 1 -neobridge.eu, 1 neobt.ro, 1 neocenter.org, 1 neochan.net, 1 @@ -99215,7 +98276,6 @@ neppglobal.top, 1 nepremicninar.com, 1 nepremicnine-lidl.si, 1 nepremicnine.click, 1 -nepremicnine.net, 1 neptun-rio.tk, 1 neptune.lol, 1 neptunosrefugio.tk, 1 @@ -99243,7 +98303,6 @@ nerdoftheherd.com, 1 nerdoutstudios.tv, 1 nerdpol.ch, 1 nerdpol.org, 1 -nerdrush.com, 1 nerds-gegen-stephan.de, 1 nerds.company, 0 nerdsin.space, 1 @@ -99345,6 +98404,7 @@ netco-privacy.de, 1 netco-solution.de, 1 netco-system.de, 1 netcoolusers.org, 1 +netcorecloud.com, 1 netcoresmartech.com, 1 netcost-security.fr, 1 netcrew.de, 1 @@ -99376,7 +98436,6 @@ netferie.dk, 1 netferie.no, 1 netfiles.de, 1 netfirmtextile.com, 1 -netflixlife.com, 1 netflowanalysissolution.com, 1 netflowanalysissolutions.com, 1 netflowcalculator.com, 1 @@ -99411,7 +98470,6 @@ netherite.gg, 1 netherlandstypography.nl, 1 netherlandsworldwide.nl, 1 nethernet.nl.eu.org, 0 -nethorizon.cn, 1 nethorizon.pl, 1 nethound.ga, 1 nethouse.se, 1 @@ -99513,10 +98571,9 @@ nettype.ca, 1 netube.org, 1 netunia.org, 1 netvizura.co.uk, 1 -netvlies.nl, 1 +netvlies.nl, 0 netvpn.ml, 1 netvpn.net, 1 -netwaf.com, 1 netwarc.eu, 1 netwarc.nl, 1 netwatch.me, 1 @@ -99625,7 +98682,6 @@ neuropharmacology.com, 1 neurophysiotherapy.ga, 1 neuropsychologisthouston.com, 1 neurosurgeryinmexico.com, 1 -neurotext.net, 1 neuroticosanonimos.tk, 1 neuroticpoets.com, 1 neurotransmitter.net, 1 @@ -99657,7 +98713,7 @@ neverland.link, 1 neverlandindonesia.com, 1 neverness.tk, 1 nevers.fr, 1 -neversayretired.in, 1 +neversayretired.in, 0 neverwasinparis.com, 1 nevi.nl, 1 nevim-co-varit.cz, 1 @@ -99708,7 +98764,6 @@ newbasemedia.us, 1 newberlinwi.gov, 1 newberrycounty.gov, 1 newberryfl.gov, 1 -newbieboss.com, 1 newbies.tk, 1 newbietech.cn, 0 newblogr.com, 1 @@ -99788,7 +98843,7 @@ newgarden.tk, 1 newgardenfarms.org, 1 newglarusvillagewi.gov, 1 newgle.xyz, 1 -newgrowbook.com, 1 +newgrowbook.com, 0 newguidance.ch, 0 newhamyoungbloods.co.uk, 1 newhavenshiami.gov, 1 @@ -99873,7 +98928,6 @@ news12elite.tk, 1 news17.tk, 1 news24rus.tk, 1 news29.tk, 1 -news47ell.com, 1 news53today.tk, 1 news54.tk, 1 news5cleveland.com, 1 @@ -99897,7 +98951,6 @@ newscenter.gr, 1 newscheck.tk, 1 newschool.ie, 1 newsclue.org, 1 -newscreak.com, 1 newscultural.tk, 1 newsdesk.social, 1 newsdiff.eu, 1 @@ -99937,6 +98990,7 @@ newslia.org, 1 newsliner.gq, 1 newslookup.com, 1 newsmacro.org, 1 +newsmangas.fr, 1 newsmotor.info, 1 newsmyth.org, 1 newsnfl.tk, 1 @@ -100118,7 +99172,6 @@ nezkakukec.si, 1 nezrouge-est-vaudois.ch, 1 nezsultan.tk, 1 nf-tel.com, 1 -nf4.net, 1 nf9q.com, 1 nfam.de, 1 nfb-ec.co.za, 1 @@ -100207,7 +99260,6 @@ ngsmedicare.com, 1 nguoimuahangmy.com, 1 nguonnha.vn, 1 nguru.net, 1 -ngutek.com, 1 nguyencucthanh.com, 1 nguyenduythiem.com, 1 nguyenfamily.tk, 1 @@ -100320,11 +99372,10 @@ nicava.com.mx, 1 nice-autosurf.com, 1 nice-germany.tk, 1 nice-links.tk, 1 -nice-pay.com, 1 nice-school.com.ua, 1 nice.ch, 1 -nice.com, 1 -niceactimize.com, 1 +nice.com, 0 +niceactimize.com, 0 niceb5y.net, 0 nicecockb.ro, 1 niceguyit.biz, 1 @@ -100361,7 +99412,6 @@ niciunde.ro, 1 nick-black.com, 1 nick-slowinski.de, 0 nick-stone.com, 1 -nickatnite.xyz, 1 nickcleans.co.uk, 1 nickcraver.com, 1 nickfoerster.io, 1 @@ -100404,12 +99454,12 @@ nickwasused.ga, 1 nickwasused.gq, 1 nickwasused.ml, 1 nickwasused.tk, 1 +nickwatton.com, 0 nickyfoxx.net, 1 nicn.me, 1 nico.st, 1 nicochinese.com, 1 nicoforconi.it, 1 -nicofy.com, 0 nicogrosser.de, 0 nicoknibbe.nl, 1 nicokroon.nl, 1 @@ -100441,7 +99491,6 @@ nicolaw.uk, 1 nicole-richie.info, 1 nicolebracy.com, 1 nicoleisaacs.com, 1 -nicolelaby.com, 1 nicolemathew.com, 1 nicoleta-prestescu.tk, 1 nicolettajennings.com, 1 @@ -100672,7 +99721,6 @@ nimbl.nz, 1 nimble.com.br, 1 nimblefins.co.uk, 1 nimbo.com.au, 1 -nimbo.net, 1 nimbus-link.co.uk, 1 nimbus-net.tk, 1 nimbuslink.co.uk, 1 @@ -100718,7 +99766,6 @@ ningunlugarestalejos.com, 1 ningwei.net, 1 niniko.tk, 1 ninja-corner.tk, 1 -ninjacomputing.com, 1 ninjahub.net, 1 ninjamagic.tk, 1 ninjaseo.es, 1 @@ -100828,7 +99875,7 @@ nixcore.gq, 1 nixcp.com, 1 nixie.fashion, 1 nixonlibrary.gov, 1 -nixor.ee, 1 +nixor.ee, 0 nixorigin.one, 1 nixpare.com, 1 nixplus.tk, 1 @@ -101018,7 +100065,6 @@ nobleproducts.biz, 1 noblesmart.com, 1 nobletary.com, 1 noblogs.org, 1 -nobly.de, 1 nobori.cloud, 1 nobori.ltd, 1 nobori.me, 1 @@ -101053,7 +100099,6 @@ nocturnos.tk, 1 nocturnus.tk, 1 noctys.com, 1 nocyclopedia.tk, 1 -nod.lv, 1 nodde.cf, 1 nodecdn.net, 1 nodecore.mine.nu, 1 @@ -101100,7 +100145,6 @@ nogre.com, 1 nogyogyaszat.eu, 1 nohatenj.gov, 1 nohats.ca, 1 -nohm.eu, 1 nohomeinsurance.com, 1 nohttps.org, 1 nohungerfoodbank.org, 1 @@ -101131,7 +100175,6 @@ nokarateinthepit.com, 1 nokchon.tk, 1 nokia.la, 1 noknow.ovh, 1 -nokobike.com, 1 nokono.com, 1 nokoshop.fr, 1 noktadedektor.com, 1 @@ -101173,9 +100216,9 @@ nomasfraudecolorado.gov, 1 nomaspicaduras.com, 1 nomaster.cc, 1 nomee6.xyz, 1 -nomenclator.org, 1 nomerel.com, 1 nomerodekors-esport.no, 1 +nomerodekors.no, 0 nomesbiblicos.com, 1 nomial.co.uk, 1 nomifensine.com, 1 @@ -101211,7 +100254,6 @@ noob-box.net, 1 noob-rp.ru, 1 nooben.com, 1 noobit.org, 1 -noobnoggin.com, 1 noobow.me, 1 noobs-in-action.com, 1 noobsrus.co.uk, 1 @@ -101322,6 +100364,7 @@ noriel.ro, 1 norikazumatsuno.tk, 1 noripon.blog, 1 noriskit.nl, 1 +noritakechina.com, 1 norlink.ca, 1 normaculta.com.br, 1 normahairstudio.it, 1 @@ -101366,7 +100409,7 @@ northbannockfire.gov, 1 northbayvillage-fl.gov, 1 northbengaltourism.com, 1 northboot.xyz, 0 -northbranch-md.com, 1 +northbranch-md.com, 0 northbranfordct.gov, 1 northbranfordpdct.gov, 1 northbrisbaneapartments.com.au, 1 @@ -101514,7 +100557,6 @@ not4me.tk, 1 nota-web.com, 1 nota.moe, 1 nota.place, 1 -notablepeeps.com, 1 notabug.eu, 1 notabug.org, 1 notacooldomain.com, 1 @@ -101532,7 +100574,6 @@ notarisdecatalunya.org, 1 notariusz-bialystok.com, 1 notariuszprzybylowicz.pl, 1 notariuszsych.pl, 1 -notarkrauss.de, 1 notary-tx.com, 1 notary24.ru, 1 notarypublic.co.nz, 1 @@ -101611,7 +100652,6 @@ notomalayan.tk, 1 notonprem.com, 1 notora.tech, 1 notoriousdev.com, 1 -notrated.net, 1 notre-planete.info, 1 notrefuse.tk, 1 notrero13.com, 1 @@ -101716,7 +100756,6 @@ novinykraje.cz, 1 novip.tk, 1 noviyan.com, 1 novobi.com, 1 -novobudowa.pl, 1 novocarrobr.com.br, 1 novodiegomaia.com.br, 1 novogimn.tk, 1 @@ -101820,7 +100859,6 @@ npmcdn.com, 1 npomirt.ru, 1 npontu.com, 1 npowerbusinesssolutions.com, 1 -nppaper.be, 1 nprb.org, 1 npregion.org, 1 npsas.org, 1 @@ -102043,7 +101081,6 @@ nul20.nl, 1 null-d.com, 1 null-life.com, 0 nullbit.tk, 1 -nullbyte.es, 1 nulldev.org, 1 nulle-part.org, 1 nulledme.ga, 1 @@ -102062,7 +101099,7 @@ nulltime.net, 1 nullvoid.me, 1 nullxsec.net, 1 nully.xyz, 1 -nulo.ar, 1 +nulo.ar, 0 nulo.in, 1 nuls.io, 1 nulsc.biz, 1 @@ -102285,7 +101322,6 @@ nya.autos, 1 nya.chat, 1 nya.codes, 1 nya.one, 1 -nya.pictures, 1 nya.show, 1 nya.work, 1 nyaan.net, 1 @@ -102306,7 +101342,6 @@ nyanor.cloud, 1 nyansparkle.com, 1 nyantec.com, 1 nyap.org, 1 -nyaspeed.com, 1 nyatane.com, 1 nyau.me, 1 nyauth.com, 1 @@ -102319,7 +101354,7 @@ nycestateest.ga, 1 nycgastroenterologists.com, 1 nych.com, 1 nycoyote.org, 1 -nycpac.net, 1 +nycpac.net, 0 nycstyleboutique.com, 1 nycu.moe, 1 nydig.com, 0 @@ -102381,7 +101416,7 @@ nzbstars.com, 1 nzcasinohex.com, 1 nzcorp.dk, 1 nzdata.org, 1 -nzelaweb.com, 0 +nzelaweb.com, 1 nzguns.co.nz, 1 nzhistory.govt.nz, 1 nzia.tk, 1 @@ -102438,7 +101473,7 @@ o2.tn, 1 o2design.tk, 1 o2fitnes.ru, 1 o2solutions.ae, 1 -o2ss.com, 1 +o2ss.com, 0 o3.ua, 1 o36533.com, 1 o365info.com, 1 @@ -102456,7 +101491,6 @@ o6i.de, 1 o7.nz, 1 o82365.com, 1 o9297.co, 1 -o9397.com, 1 o9728.co, 1 o9solutions.com, 1 oaaa.org, 1 @@ -102467,6 +101501,7 @@ oakbarnvets.com, 1 oakbarnwellness.com, 1 oakbottle.com, 1 oakcreekwi.gov, 1 +oakdale.org, 0 oakdaleca.gov, 1 oakdalemn.gov, 1 oaken.duckdns.org, 1 @@ -102571,7 +101606,6 @@ objetodestaque.com.br, 1 obl.ong, 1 oblak.host, 1 oblak.studio, 1 -oblik.press, 1 oblikdom.pro, 0 oblinvest.org, 1 oblitsov.ru, 1 @@ -102636,7 +101670,6 @@ ocalaflwomenshealth.com, 1 ocalapd.gov, 1 ocalhukuk.com, 1 ocapiarquitetura.com.br, 1 -ocardapiovirtual.com.br, 1 ocarm.org, 1 ocarupo.com, 0 ocasio.es, 1 @@ -102663,7 +101696,6 @@ occupationaltherapylicense.org, 1 occupations.org.ru, 1 occupy4elephants.tk, 1 occupybakersfield.tk, 1 -occupymedia.org, 1 occupynightlife.com, 1 occuspace.io, 1 ocd2016.com, 1 @@ -102714,7 +101746,6 @@ ocf.io, 1 ocfelections.gov, 1 ocg-card.com, 1 ochaken.cf, 1 -ocharun.com, 1 ochatoosenbei.tk, 1 ochemindessens.com, 1 ochioneta.es, 1 @@ -102832,7 +101863,7 @@ oddscasino.top, 1 oddsmoneyers.ga, 1 oddsnet.com, 1 oddsseeker.com, 1 -oddtime.net, 1 +oddtime.net, 0 oddtoes.com, 1 ode.red, 0 odedigitale.marketing, 1 @@ -102890,7 +101921,6 @@ odyso.org, 1 odyssee-animation.tk, 1 odyssey44.com, 1 odysseyofthemind.eu, 1 -odzyskiwanie-danych-z-dysku.pl, 1 odzyskiwanie.biz, 1 odzywianie.info.pl, 1 oe-it.ru, 1 @@ -102907,7 +101937,6 @@ oeko-bundesfreiwilligendienst-sh.de, 1 oeko-bundesfreiwilligendienst.de, 1 oeko-jahr-jubilaeum.de, 1 oeko-jahr.de, 1 -oekokiste-ingolstadt.de, 1 oelbilder-oelmalerei.de, 1 oelsner.net, 1 oemdealsers.ga, 1 @@ -102920,7 +101949,6 @@ oenolab-vidalies.com, 1 oermen.com, 1 oertle.tk, 1 oessi.eu, 1 -oesterbaron.nl, 1 oettig.de, 1 oetzies-quiz.com, 0 of-sound-mind.com, 1 @@ -102980,6 +102008,7 @@ officecode.co.uk, 1 officedivvy.co, 1 officedivvy.com, 1 officedivvy.company, 1 +officeefficient.de, 1 officeface.cf, 1 officeforstudents.org.uk, 1 officefundays.co.uk, 1 @@ -103028,6 +102057,7 @@ oficomercr.com, 0 ofileo.fr, 1 ofina.on.ca, 1 ofis.tk, 1 +ofisas.cloud, 1 ofisas.site, 1 ofisescort.ga, 1 ofisescort.tk, 1 @@ -103143,6 +102173,7 @@ oi-wiki.org, 1 oiahe.org.uk, 1 oiaposta.com, 1 oidrava.tk, 1 +oiepoie.nl, 0 oikontroloi.tk, 1 oikosweb.com, 1 oil-heaters.tk, 1 @@ -103323,7 +102354,6 @@ oldiesradio.tk, 1 oldinnpub.tk, 1 oldita.ru, 1 oldliverpoolrailways.tk, 1 -oldnorthbanter.com, 1 oldonyosafaris.com, 1 oldpc.com.ua, 1 oldriver.tk, 1 @@ -103442,7 +102472,6 @@ olivlabs.com, 1 oljyakatemia.fi, 1 olk9mo.com, 1 olkywade.com, 1 -oll.dj, 1 ollerom.com, 1 ollerom.nl, 1 ollie.io, 1 @@ -103490,7 +102519,6 @@ olyfed.com, 1 olygazoo.com, 1 olymp-arts.world, 1 olympe-transport.fr, 1 -olymperfitness.com, 1 olympia-blerick.tk, 1 olympia-londerzeel.tk, 1 olympiads.ca, 1 @@ -103527,7 +102555,6 @@ omarsamarah.tk, 1 omarsuniagamusic.ga, 1 omart.org, 1 omarzunic.com, 1 -omastore.om, 1 omatoimi.fi, 1 omatulevaisuus.fi, 1 omaweetraad.nl, 1 @@ -103601,7 +102628,6 @@ omnibot.tv, 1 omnicourt.jp, 1 omnidiecasting.com, 1 omnidigital.ae, 1 -omnidigital.us, 1 omniflora.shop, 1 omnifotoside.tk, 1 omnifurgone.it, 1 @@ -103726,7 +102752,6 @@ onebreadcrumb.com, 1 onebreadcrumb.com.au, 1 onecarsource.com, 1 onecharge.biz, 1 -onechicagocenter.com, 1 onechoice.co.nz, 1 onechronos.com, 1 oneclick.accountant, 1 @@ -103769,7 +102794,6 @@ onehost.blue, 1 onehost.kz, 0 oneidacityny.gov, 1 oneidacountywi.gov, 1 -oneidentity.me, 1 oneigroup.net, 1 oneindex.tk, 1 oneiroi.co.uk, 1 @@ -104043,7 +103067,7 @@ onlineth.com, 1 onlinetravelmoney.co.uk, 1 onlinevardenafil.gq, 1 onlineveilingmeester.nl, 1 -onlineverdict.com, 0 +onlineverdict.com, 1 onlineverdienen.tk, 1 onlinevergidanismani.com, 1 onlineviewers.tk, 1 @@ -104167,7 +103191,6 @@ onyxcts.com, 1 onyxgen.duckdns.org, 1 onzelievevrouw-veldegem.tk, 1 onzerelaties.net, 1 -oo.ps, 1 oo5197.co, 1 oo6729.co, 1 oo6729.com, 1 @@ -104212,7 +103235,6 @@ op3racional.eu, 1 opacity.au, 1 opaco.tk, 1 opadaily.com, 1 -opago-pay.com, 1 opale-concept.com, 1 opalesurfcasting.net, 1 opalhunter.at, 1 @@ -104344,7 +103366,6 @@ opennet.fund, 1 opennippon.com, 1 opennippon.ru, 1 openpictures.ch, 1 -openpolicing.org, 1 openpowerfoundation.org, 1 openproject.com, 1 openproton.cf, 1 @@ -104541,9 +103562,8 @@ optigear.nl, 1 optik-sehstern.de, 1 optik-tamara.de, 1 optik-trosdorff.de, 1 -optiker-gilde.de, 1 optikflow.com, 1 -optikoscolombia.com, 0 +optikoscolombia.com, 1 optilan.tk, 1 optimakers.pl, 1 optimale.co.uk, 1 @@ -104562,7 +103582,6 @@ optimist.bg, 1 optimization-online.org, 1 optimizationanalyticsest.ga, 1 optimize-jpg.com, 1 -optimizedbyalex.com, 1 optimizedlabs.co.uk, 1 optimizedlabs.info, 1 optimizedlabs.net, 1 @@ -104594,6 +103613,7 @@ optionskredit.net, 1 optionskredit.org, 1 optionsloop.com, 1 optique-morice.com, 1 +optirank.co, 1 optisell.ga, 1 optiwebopz.com, 1 optmos.at, 1 @@ -104627,7 +103647,6 @@ oqrqtn7ynmgc7qrgwd-ubhdvfiymfbjrh5ethdti8.com, 0 oquedizabiblia.com.br, 1 oqwebdesign.com, 1 orablanket.co.nz, 1 -oracaodocredo.com.br, 1 oracle-support.nl, 1 oracleclown.com, 1 oracolo.tk, 1 @@ -104822,7 +103841,6 @@ orientalcuisine.tk, 1 orientalgadgets.tk, 1 orientaltrends.com.br, 1 orientate.com.mx, 1 -orientelectronic.net, 1 orientir.tk, 1 oriflamesamara.tk, 1 oriflameszepsegkozpont.hu, 1 @@ -104868,7 +103886,6 @@ orionfcu.com, 1 orionfinancialservices.com, 1 oriongames.eu, 1 orionlab.com.br, 1 -orionleasing.com, 1 orionrisk.com, 1 oris.edu.ee, 1 oriveda.ch, 1 @@ -104888,11 +103905,9 @@ orlando-marijuana-doctor.com, 1 orlandobalbas.com, 1 orlandojetcharter.com, 1 orlandooutdoor.com, 1 -orlandopmf.com, 1 orlandopooltech.com, 1 orlandoprojects.com, 1 orlandorentavilla.com, 1 -orlanic.com, 1 orleansiowa.gov, 1 orleika.io, 1 orleika.ml, 1 @@ -104960,7 +103975,6 @@ ortopertutti.it, 1 ortto.com, 0 oruggt.is, 1 orum.in, 1 -orviboperu.com.pe, 1 orwell.tk, 1 oryva.com, 1 oryxlabs.com, 1 @@ -105220,7 +104234,6 @@ otsu.beer, 1 ott-tv.org, 1 ottawatribe.gov, 1 ottens.tk, 1 -otterly.me, 1 otterpops.tk, 1 ottertailcounty.gov, 1 ottertailcountymn.gov, 1 @@ -105250,7 +104263,6 @@ ouestfrance-auto.pro, 1 ouezzan.tk, 1 ouglor.com, 1 oui-mais-toscope.info, 1 -ouibyyoplait.com, 1 ouin.land, 1 oujj.link, 1 oukasou.moe, 1 @@ -105385,7 +104397,6 @@ output.com, 1 outrider.ai, 1 outshinesolutions.nl, 1 outsideconnections.com, 1 -outsiders.paris, 0 outsidershairboutique.com, 1 outsize.tk, 1 outsourcify.net, 1 @@ -105468,7 +104479,6 @@ overthegate.tk, 1 overtoncountytn.gov, 1 overtunes.tk, 1 overture.london, 1 -overwall.org, 1 overwatchss.club, 1 overzicht.pro, 1 overzicht.ws, 1 @@ -105529,7 +104539,6 @@ owlnull.me, 1 owlscrap.ru, 1 owlvilleers.ga, 1 ownagepranks.com, 1 -ownasite.com.ng, 1 ownc.at, 1 owncloud.ch, 1 owncloud.com, 1 @@ -105590,6 +104599,7 @@ oxt.co, 1 oxwebdevelopment.com.au, 1 oxxoshop.com, 0 oxydac.com, 1 +oxydrate.com, 1 oxygames.tk, 1 oxygenated.cf, 1 oxygenforchennai.com, 1 @@ -105699,7 +104709,6 @@ p10.ru, 0 p1984.nl, 0 p1cn.com, 1 p1group.com, 1 -p1hsinc.com, 1 p1ratrulezzz.me, 1 p22.co, 1 p2enews.com, 1 @@ -105711,7 +104720,6 @@ p30mororgar.ir, 1 p333aa.com, 1 p333b.net, 1 p333e.net, 1 -p333hhh.com, 0 p333j.net, 0 p36533.com, 1 p3medicalinc.com, 1 @@ -106106,7 +105114,6 @@ palermotoday.it, 1 paless-aless.by, 1 palessit.com, 1 palestra.roma.it, 1 -palestraspimentel.com, 1 paletdecor.com.ua, 1 palette26.com, 1 paletten.tk, 1 @@ -106115,7 +105122,6 @@ paliucuiciucci.tk, 1 palladium46.com, 1 palladiumprivate.com, 1 pallavibhattdesigns.com, 1 -pallavihautecouture.com, 1 palletflow.com, 1 palletsprojects.com, 0 pallhed.se, 1 @@ -106200,7 +105206,6 @@ panascais.site, 1 panascais.tech, 1 panascais.us, 1 panascais.zone, 1 -panasonic.com.au, 1 panasproducciones.com, 1 panaxis.biz, 1 panaxis.ch, 1 @@ -106293,7 +105298,6 @@ pano.ie, 1 panoramacambios.com, 1 panoramahillhotel.com, 1 panoramaphoto.cf, 1 -panoramaresidence-moesern.at, 1 panoramica.tk, 1 panoramique.tk, 1 panoramiquesorganya.tk, 1 @@ -106316,7 +105320,7 @@ panskeet.xyz, 1 pansys.de, 1 panszelescik.pl, 1 pantagraph.com, 1 -pantai.com.my, 1 +pantai.com.my, 0 pantallanotebook.cl, 1 pantallasyescenarios.com, 0 pantas.com, 1 @@ -106457,11 +105461,11 @@ paralegaledu.org, 1 paraleli.ge, 1 parallel-creative.co.uk, 1 parallel-worlds.tk, 1 -parallelpython.com, 1 paralleum.cz, 1 paraluman.be, 1 paralysis.ga, 1 paramapa.com.py, 1 +paramarq.com, 1 paramascotas.vip, 1 paramithicy.azurewebsites.net, 1 paramithicy.com, 1 @@ -106527,7 +105531,6 @@ paremedical.au, 1 paremvasi.net, 1 parentelement.com, 1 parenthood.guide, 1 -parentingalpha.com, 0 parentingplaydough.tk, 1 parentinterview.com, 1 parentpayments.com.au, 1 @@ -106601,7 +105604,6 @@ parishoftheholycross.org, 1 parishome.jp, 1 parismalleg.com, 1 parisportif.tv, 1 -parisprovincedemenagements.fr, 1 parissportifs.com, 1 pariu.online, 0 parizhanka.tk, 1 @@ -106625,6 +105627,7 @@ parkcountysheriff-wy.gov, 1 parked-domain.net, 1 parkeer.nl, 1 parkeerserviceboxtel.nl, 1 +parkefficient.de, 1 parken-duesseldorfflughafen.de, 1 parken-flughafenamsterdam.de, 1 parken-flughafenbremen.de, 1 @@ -106673,7 +105676,6 @@ parkerenweeze-airport.nl, 1 parkerforum.cf, 1 parkerforum.tk, 1 parkers.cf, 1 -parkers.co.uk, 1 parkers.ga, 1 parkers.gq, 1 parkers.ml, 1 @@ -106711,6 +105713,7 @@ parkos.com, 1 parkos.de, 1 parkos.it, 1 parkos.nl, 1 +parkplus.in.ua, 0 parkr.io, 0 parkrangeredu.org, 1 parkrunstats.servehttp.com, 1 @@ -106759,7 +105762,6 @@ parquettista.milano.it, 1 parquettista.roma.it, 1 parquettisti.roma.it, 1 parratennis.com.au, 1 -parrocchiadianguillaraveneta.it, 1 parrocchiadimeana.tk, 1 parrocchiamontevecchia.it, 1 parroquiacorazondemaria.tk, 1 @@ -106767,7 +105769,6 @@ parroquiadesanlesmes.tk, 1 parrotbook.cf, 1 parry.org, 1 pars.work, 1 -parsahosseinpour.com, 1 parsdev.com, 0 parsec.app, 1 parsemail.org, 1 @@ -106871,10 +105872,8 @@ parys.org, 1 pasabahcemagazalari.com, 1 pasadena.gov, 1 pasadenapooch.org, 1 -pasalt.com, 1 pasarella.eu, 1 pascal-bourhis.com, 1 -pascal-koelsch.de, 1 pascal-ua.tk, 1 pascal-wittmann.de, 1 pascalchristen.ch, 1 @@ -106907,7 +105906,6 @@ passa.org, 1 passabook.com, 1 passau-webdesign.com, 1 passbolt.com, 1 -passbypointer.com, 1 passedport.eu, 1 passedport.net, 1 passedport.org, 1 @@ -106987,14 +105985,12 @@ pasteleriaparaperrosygatos.mx, 1 pastelpixels.studio, 1 pasternok.org, 1 pasteros.io, 1 -pastes.io, 1 pastetot.com, 1 pasteworks.com, 1 pasticceria.milano.it, 1 pasticcerialorenzetti.com, 1 pasticceriaveneziana.ga, 1 pastillased.gq, 1 -pastimeproject.com, 1 pastinfluences.com.au, 1 pastorbelgagroenendael.com.br, 1 pastorcanadense.com.br, 1 @@ -107027,7 +106023,7 @@ patchassociates.com, 1 patchduty.com, 1 patchli.fr, 1 patchofabsence.com, 1 -patchstack.com, 1 +patchstack.com, 0 patchyvideo.com, 1 patdorf.com, 1 patechmasters.com, 1 @@ -107036,7 +106032,6 @@ patelheaters.com, 1 patent-motorowodny.pl, 1 patent-sternika.pl, 1 patentados.com, 1 -patentfamily.de, 1 patentmanufaktur.video, 1 patentpanelers.ga, 1 patentpanelest.ga, 1 @@ -107045,7 +106040,6 @@ patentverwag.com, 1 paterno-gaming.com, 1 patersonpdnj.gov, 1 patguzmanconstruction.com, 1 -pathagoras.com, 1 pathfinderbank.com, 1 pathfindergeo.com, 1 pathofexile2.com, 1 @@ -107054,7 +106048,6 @@ pathologie-dna.nl, 1 pathsaversers.ga, 1 pathsaversest.ga, 1 pathsha.re, 1 -pathwaylibrary.org, 1 pathwayscenterforgrief.org, 1 pathwayscenterforgriefandloss.org, 1 pathwaysthroughgrief.org, 1 @@ -107221,7 +106214,6 @@ pauly-stahlhandel.com, 1 pauly-stahlhandel.de, 1 paulzen.me, 1 pausado.com, 1 -pausesapanca.com, 1 pausewhenagitated.com, 1 pautadiaria.com, 1 pavajebucovina.ro, 1 @@ -107324,7 +106316,6 @@ paycardtech.com, 1 paycentre.com, 1 paycore.com, 1 paycore.io, 1 -payctest.com, 1 paydepot.com, 1 paydigital.pt, 1 paydoor9.com, 1 @@ -107350,6 +106341,7 @@ paylocal.net, 0 payme.io, 1 payme.uz, 1 payment-express.net, 1 +payment-network.com, 0 payment.vet, 1 paymentaccuracy.gov, 1 paymentjs.com, 1 @@ -107470,7 +106462,7 @@ pccc.co.za, 1 pccdal.gov, 1 pccegoa.org, 1 pccomc.tk, 1 -pcdekegel.nl, 0 +pcdekegel.nl, 1 pcdocjim.com, 1 pcdomain.com, 1 pcdroid.ga, 1 @@ -107515,6 +106507,7 @@ pcnetinc.com, 1 pcnewsoft.tk, 1 pcnotdienst-oldenburg-rastede.de, 1 pcpao.gov, 1 +pcpasokh.ir, 1 pcpirates.tk, 1 pcplaza.tk, 1 pcprkolo.pl, 1 @@ -107548,7 +106541,6 @@ pctonic.net, 1 pctravel.ca, 1 pctronicks.tk, 1 pctrouble.net, 1 -pculiar.com, 1 pcunddruckerservice.de, 1 pcunderground.com.ar, 1 pcvalueservices.com.au, 1 @@ -107629,13 +106621,13 @@ peaksalesrecruiting.com, 1 peakseoservices.co.uk, 1 peaksloth.com, 1 peaksports.com, 1 +peaksupport.io, 1 peakvets.co.uk, 1 peamotocenter.com.br, 1 peanutbutter.com, 1 peanutpay.de, 1 peanutproductionsnyc.com, 1 pearbloom.com, 1 -pearcom.co.uk, 1 pearlcohen.com, 1 pearle.nl, 1 pearljamargentina.tk, 1 @@ -107768,7 +106760,6 @@ peew.de, 1 peewee-design.tk, 1 pefile.tk, 1 pefisa.com.br, 1 -pefricea.com, 1 pegas-studio.net, 1 pegasnet.tk, 1 pegdown.org, 1 @@ -107801,7 +106792,6 @@ pelicanottertailmn.gov, 1 pelicans.tk, 1 peliculaonline.tk, 1 peliculaslatino.tk, 1 -pelikan.xyz, 1 pelikone.fi, 1 pelinca.nl, 1 pelis-online.net, 1 @@ -107831,7 +106821,6 @@ pembinewi.gov, 1 pemborongbangunan.id, 1 pembrokenc.gov, 1 pemdas.xyz, 1 -pemedia.de, 1 pemerintahkota.com, 1 pemez.com, 1 pems.gov.au, 1 @@ -107839,7 +106828,6 @@ pen-sec.de, 1 pen15art.tk, 1 pena-party.tk, 1 pena600.tk, 1 -penair.com.au, 1 penatizavarise.com, 1 penaugustin.com, 1 penbrookpa.gov, 1 @@ -107852,6 +106840,7 @@ pendidikan.co.id, 1 pendletoncountyky.gov, 1 pendletoncountywv.gov, 1 pendriveapps.com, 1 +pendrivelinux.com, 1 penedo.tk, 1 penelopia.pl, 1 penes.cf, 1 @@ -107930,7 +106919,6 @@ pensiune-doina.ro, 1 pensiunea-maria.tk, 1 pensiunea-paco.ro, 1 pensiunealido.ro, 1 -penslabyrinth.com, 1 pentacodes.com, 0 pentagon-area.tk, 1 pentagonix.com.br, 1 @@ -108039,6 +107027,7 @@ percydutton.co.uk, 1 percymagic.tk, 1 perd.re, 1 perdanabagus.tk, 1 +perdele-draperii.ro, 1 perdita-capelli.tk, 1 perdolyathlendr.tk, 1 perecraft.com, 1 @@ -108086,7 +107075,6 @@ perfectme.tk, 1 perfectosidiotaspunk.tk, 1 perfectplrarticles.ga, 1 perfectpussypics.com, 1 -perfectscook.com, 1 perfectsize.pl, 1 perfectsnap.co.uk, 1 perfectsoft.tk, 1 @@ -108108,7 +107096,6 @@ performancerunningsolutions.com, 1 performances-supervision.fr, 1 performancetillagebolt.com, 1 performancetransmission.net, 1 -performansguru.com, 1 performing-art-schools.com, 1 performingdreams.tk, 1 performiptv.com, 1 @@ -108155,7 +107142,6 @@ permaditya.my.id, 1 permajackofstlouis.com, 1 permajackstlouis.com, 1 permak.tk, 1 -permalife.shop, 0 permanence-juridique.com, 0 permanencejuridique-ge.ch, 0 permanencejuridique.com, 0 @@ -108228,7 +107214,6 @@ personal-scrum.eu, 1 personalaccidentsers.ga, 1 personalaccidentsest.ga, 1 personalfunctionaldata.net, 1 -personalgifts.biz, 1 personalhydroponics.com, 1 personalidadmagnetica.com, 1 personaliseyourwine.com.au, 1 @@ -108252,7 +107237,6 @@ persondatakonsulenterne.dk, 1 personetics.com, 1 personlookup.com.au, 1 personnedisparue.fr, 1 -persoonlijkeblog.nl, 0 perspective-daily.de, 1 perspective.com.tr, 0 perspectives-de-voyage.com, 1 @@ -108337,7 +107321,6 @@ pet-tekk.co.uk, 1 peta.tk, 1 petabits.de, 1 petabundant.ga, 1 -petadopcje.pl, 1 petal-ms.gov, 1 petalkr.com, 1 petalsoft.tk, 1 @@ -108350,7 +107333,6 @@ petbooking.it, 1 petbrowser.ga, 1 petburial.cf, 1 petcareonline.com, 1 -petcareproject.com, 1 petcharte.ga, 1 petclassy.ga, 1 petclient.ga, 1 @@ -108374,7 +107356,7 @@ peter-zhu.ca, 1 peter.org.ua, 1 peterackermans.tk, 1 peterandjoelle.co.uk, 1 -peterarcherbeyondvision.com, 1 +peterarcherbeyondvision.com, 0 peterbarrett.ca, 1 peterbischof.at, 1 peterborgapps.com, 1 @@ -108449,7 +107431,6 @@ petitmaison.net, 1 petitnuagephotographie.be, 1 petitsfrenchies.com, 1 petitsfreresdespauvres.fr, 1 -petitsouffle.fr, 1 petitu.mx, 1 petjoy.co.za, 1 petkiss.ga, 1 @@ -108457,7 +107438,6 @@ petknight.ga, 1 petless.ga, 1 petlife.od.ua, 1 petlife.vet, 1 -petlindo.com, 1 petlittle.ga, 1 petmall.bg, 1 petmatchmaker.org, 1 @@ -108535,7 +107515,6 @@ petutility.tk, 1 petvisual.ga, 1 petwall.info, 1 petyolo.org, 1 -petzplus.net, 1 peuf.shop, 1 peukert.cc, 1 peupledefrance.fr, 1 @@ -108636,7 +107615,6 @@ pgp.network, 1 pgp.org.au, 1 pgpaintanddesign.com, 1 pgpmail.cc, 1 -pgprosupplies.com, 1 pgregg.com, 1 pgsec.cz, 1 pgsec.eu, 1 @@ -108657,7 +107635,6 @@ ph4nt0m.ddns.net, 0 ph89.de, 1 pha.one, 1 pha.pub, 1 -phaedranyx.co.uk, 1 phagyo.com, 1 phannuoc.net, 1 phantasia.tk, 1 @@ -108746,6 +107723,7 @@ phil-phillies.com, 1 phil.red, 1 phil.to, 1 phil.tw, 1 +philadelphia.com.mx, 1 philanima.com, 1 philarmonic-abaza.tk, 1 philasd.org, 1 @@ -108898,7 +107876,6 @@ phosagro.biz, 0 phosagro.com, 0 phosagro.ru, 0 phosforum.ga, 1 -photiplans.fr, 1 photistic.org, 1 photo-blowup.com, 0 photo-booth.ro, 1 @@ -108910,7 +107887,6 @@ photo-news.tk, 1 photo-on-event.de, 1 photo-paysage.com, 1 photo-travel.tk, 1 -photo602.com, 1 photoartelle.com, 1 photobank.ml, 1 photobc.photos, 1 @@ -109249,7 +108225,6 @@ pierreyvesdick.fr, 1 piersmana.com, 1 pierson.tk, 1 pierstone.com, 1 -piesel-piepser.de, 1 pietbrakman.tk, 1 pietechsf.com, 0 pieter-verweij.nl, 1 @@ -109338,7 +108313,6 @@ pilotcareercenter.com, 1 pilotgrowth.com, 1 pilotinterviews.com, 1 pilotknobmo.gov, 1 -pilotpov.com, 1 pilotproject.tk, 1 pilotshop.com, 1 pilsen.fun, 1 @@ -109428,6 +108402,7 @@ pinheirobittencourt.com.br, 1 pinigseu.xyz, 1 pinimg.com, 1 pininfarina.it, 1 +pink-check.school, 1 pink-panther.tk, 1 pink.nl, 1 pinkapple.com, 1 @@ -109529,6 +108504,7 @@ pinyonpass.net, 1 pinyonpass.org, 1 pioneer-car.eu, 1 pioneer-rus.ru, 1 +pioneer.eu, 1 pioneerbible.org, 1 pionierboat.cf, 1 pionierboat.ga, 1 @@ -109612,7 +108588,6 @@ pishgamiran.tk, 1 pisitsolutions.com, 1 pisk.loan, 1 piskenfuerwehr.de, 1 -pisosvitrificados.cl, 1 pisquettes.fr, 1 pissblau.com, 1 pissflaps.co.uk, 1 @@ -109645,7 +108620,6 @@ pitius.tk, 1 pitman.tk, 1 pitomec.tk, 1 pitot-rs.org, 1 -pitou-minou.ca, 1 pitrick.tk, 1 pitrivertribe.gov, 1 pitshift.click, 1 @@ -109687,7 +108661,6 @@ pix-geeks.com, 1 pix5.de, 1 pixalatio.tk, 1 pixbaton.jp, 1 -pixca.mx, 1 pixe2019.org, 1 pixel-history.tk, 1 pixel-ninjas.de, 1 @@ -109719,7 +108692,6 @@ pixelpeeper.com, 1 pixelplex.io, 1 pixelrain.info, 1 pixelsbanking.com, 1 -pixelshealth.com, 1 pixelsketch.co.uk, 1 pixelsquared.us, 1 pixelstamp.net, 1 @@ -109815,7 +108787,6 @@ pkov.cz, 1 pkq5.com, 1 pkrank.com, 1 pkservice.tk, 1 -pkshs.my, 1 pkspskov.tk, 1 pkvgames.expert, 1 pkvgamesqq.asia, 1 @@ -109931,7 +108902,6 @@ planetonline.tk, 1 planetpayment.com, 1 planetpowershell.com, 1 planetradio.tk, 1 -planetreinvention.com, 1 planetromeo.com, 1 planetromeofoundation.org, 1 planetscale.com, 1 @@ -109972,7 +108942,6 @@ planriean.com, 1 planrow.com, 1 plansaude.med.br, 1 planshetnik.tk, 1 -plansight.com, 1 plant-gift.jp, 1 plantarportugal.org, 1 plantarum.com.br, 1 @@ -109983,7 +108952,7 @@ plantepakken.dk, 1 plantes.ch, 1 plantezcheznous.com, 1 planther.nl, 1 -plantidentification.co, 1 +plantidentification.co, 0 plantinum-cbd.com, 1 plantmojomagic.com, 1 plantprosperous.com, 1 @@ -110024,12 +108993,10 @@ plasticsurgeon.ga, 1 plasticsurgerynola.com, 1 plasticsurgerypartyers.ga, 1 plasticsurgerypartyest.ga, 1 -plasticsurgeryservices.com, 1 plasticwindows.tk, 1 plastiform.nl, 1 plastischechirurgie-linz.at, 1 plastokna.tk, 1 -plastoplex.com, 1 plastovelehatko.cz, 1 plataformaslms.com, 1 platanakia.tk, 1 @@ -110310,7 +109277,6 @@ plus1s.site, 1 plusbeauty.tw, 1 plusbot.tk, 1 plusfitness.com.au, 1 -plusgrandevilledefrance.com, 1 plushev.tk, 1 pluslink.co.jp, 1 plusnet.de, 0 @@ -110327,7 +109293,6 @@ pluvo.site, 1 pluxml.org, 1 plyind.com, 1 plymouthboroughpa.gov, 1 -plymouthbouncycastles.co.uk, 1 plymouthbus.co.uk, 1 plymouthcountyiowa.gov, 1 plymouthct.gov, 1 @@ -110374,6 +109339,8 @@ pmcc.net, 1 pmccrystal.com, 1 pmconsulting.es, 1 pmcorganometallix.com, 1 +pmcorp.com, 1 +pmcorp.mx, 1 pmcouvrie.com, 1 pmctcg.com, 1 pmctire.com, 0 @@ -110391,6 +109358,7 @@ pmi.edu, 1 pmi.gov, 1 pmiandulive.com, 1 pmibags.com, 1 +pmicorp.in, 1 pmk.ddns.net, 0 pml4t.net, 1 pmnaish.co.uk, 1 @@ -110613,7 +109581,6 @@ podrozwmilczeniu.pl, 1 podshrink.de, 1 podvenec.tk, 1 podycust.co.uk, 1 -podyumguzellik.com, 1 poed.com.au, 1 poed.net.au, 1 poeditor.com, 1 @@ -110651,7 +109618,6 @@ pogotowie-komputerowe.tk, 1 pogotowiekomputeroweolsztyn.pl, 1 pogrebeniq-sofia.com, 1 pogrebisky.net, 1 -pohatta.com, 1 pohlmann.io, 1 pohoron.ru, 1 poimel.ga, 1 @@ -110695,6 +109661,7 @@ poisoncolombia.tk, 1 poisonget-rid-ofac.tk, 1 poitiers-ttacc-86.eu.org, 1 pojer.me, 1 +pojoksosmed.com, 1 pokagontownshipmi.gov, 1 pokalsocial.de, 1 poke.blue, 1 @@ -110863,7 +109830,6 @@ politicalscore101.com, 1 politicaprivacidade.com, 1 politiciancompare.com, 1 politicnation.com, 1 -politicobuzz.com, 1 politicsandnews.cf, 1 politicsandnews.ga, 1 politicsandnews.ml, 1 @@ -110920,7 +109886,6 @@ polsonlawfirm.com, 1 polspam.pl, 1 poltavawave.com.ua, 1 poltax.com.pl, 1 -poltreppen.de, 1 poltsamaa.edu.ee, 1 poltsamaalasteaed.edu.ee, 1 poly-daitron.jp, 1 @@ -111004,7 +109969,6 @@ ponxel.com, 1 pony-cl.co.jp, 1 pony.tf, 1 ponyar.net, 1 -ponychan.net, 1 ponycyclepals.co.uk, 1 ponydesignclub.nl, 1 ponyfoo.com, 1 @@ -111029,7 +109993,6 @@ poolsafety.gov, 1 poolsonline.tk, 1 poolspa.es, 1 pooltools.net, 1 -poolvilla-margarita.net, 1 poon.io, 1 poopa.loan, 1 poopjournal.rocks, 1 @@ -111042,7 +110005,6 @@ pop-culture.tk, 1 pop-myworld.com, 1 pop.dk, 1 pop.xxx, 1 -pop3.jp, 0 pop3.support, 1 popadvertisementers.ga, 1 popadvertisementest.ga, 1 @@ -111408,6 +110370,7 @@ postblue.info, 1 postbox.life, 1 postcardpayment.com, 1 postcards.tk, 1 +postcode.nl, 1 postcodeswag.co.uk, 1 postcodeswag.com, 1 postcodeswag.uk, 1 @@ -111581,6 +110544,7 @@ powercv.ro, 1 poweredbyiris.nl, 1 powerentertainment.tv, 1 powerfifty.com, 1 +powerfiler.com, 1 powerforpeople.tk, 1 powerfortunes.com, 1 powerfulcom.net, 1 @@ -111634,7 +110598,6 @@ powersergusercontent.com, 1 powersergwiring.com, 1 powersergwiringconsultants.com, 1 powershaper.io, 1 -powershelleando.com.ar, 1 powershellmagic.com, 1 powersolusa.com, 1 powersport.lt, 1 @@ -111677,7 +110640,6 @@ pp6729.co, 1 pp6729.com, 1 pp6957.co, 1 pp9297.co, 1 -pp9397.com, 0 pp9721.com, 0 pp9728.co, 1 ppam.de, 1 @@ -111792,7 +110754,6 @@ praktiker.hu, 1 praktikum.tk, 1 praladofuturo.blog, 1 praleria.com, 1 -pramuwaskito.org, 1 prana-coachings.ch, 1 prana-me.com, 1 pranabesh.com, 1 @@ -111805,7 +110766,6 @@ pranita.sk, 1 prankawards.ga, 1 pranksearch.ml, 1 prankstercompany.com, 1 -pranktimes.com, 1 prashantcafe.tk, 1 prasinoscomputers.ml, 1 prasos.fi, 1 @@ -111877,7 +110837,6 @@ precedenceum.com, 1 precept.uk.com, 1 preci0.com, 1 preciadictos.tk, 1 -precincttv.com, 1 preciofishbone.com, 1 preciofishbone.de, 1 preciofishbone.dk, 1 @@ -111896,7 +110855,7 @@ precisiondentalnyc.com, 1 precisiondentistrynj.com, 1 precisiondigital-llc.com, 1 precisionicerinks.com, 1 -precisionlender.com, 0 +precisionlender.com, 1 precisionmachineservice.com, 1 precisionpdr.tech, 1 precisionsportsonline.com, 1 @@ -112009,7 +110968,6 @@ premiumshop24.de, 1 premiumsmile.ru, 1 premiumturkey.ml, 1 premiumusedautoparts.com, 1 -premiumweb.co.id, 1 premiumwebdesign.it, 1 premkumar.net, 1 premsarswat.me, 1 @@ -112193,7 +111151,6 @@ pricefx.com, 1 pricefx.eu, 1 pricegg.com, 1 pricegg.ru, 1 -priceholic.com, 1 priceless-jewelry.com, 1 pricelesspics.tk, 1 pricelistforbxmodules.ga, 1 @@ -112271,7 +111228,6 @@ primekinoshita.com, 1 primelogistics.cf, 0 primemotive.com, 0 primemotive.com.au, 1 -primeone.global, 1 primeops.co, 1 primeprime.cf, 1 primeratx.gov, 1 @@ -112281,7 +111237,6 @@ primesense.com.br, 1 primesensecosmeticos.com.br, 1 primetechpa.com, 1 primetics.co.uk, 0 -primetouchimprovements.com, 1 primeview.com, 1 primglaz.ru, 1 primisbank.com, 1 @@ -112389,8 +111344,6 @@ priorityelectric-moorpark.com, 1 priorityelectric-newburypark.com, 1 priorityelectric-simivalley.com, 1 priorityelectric.biz, 1 -priorityelectric.info, 1 -priorityelectric.mobi, 1 priorityelectric.net, 1 priorityessays.com, 1 priorityfakes.com, 1 @@ -112675,7 +111628,6 @@ productupdates.org, 1 produform.it, 1 produits-dantan.com, 1 produkt.cf, 1 -produkttest-online.com, 1 produra.nl, 1 produtosdeacademia.com, 1 prodwa.re, 1 @@ -112699,7 +111651,6 @@ profbioresearch.ga, 1 profboecker.eu, 1 profchristophergoh.com.sg, 1 profection.biz, 1 -profeinnova.online, 1 profession.email, 1 professionalbeautyshop.it, 1 professionalblog.tk, 1 @@ -112731,7 +111682,6 @@ profile.tf, 1 profilepk.com, 1 profiles.google.com, 1 profilesw.com, 1 -profiletree.com, 1 profilewatcher.ga, 1 profilib.com, 1 profilib.net, 1 @@ -112780,7 +111730,6 @@ progamersquad.com, 1 progaudio.be, 1 progea.com, 1 progenda.be, 1 -progeon.nl, 1 proger.ga, 1 proger.ml, 1 progeste.pt, 1 @@ -112795,7 +111744,6 @@ proglib.io, 1 prognoshealth.com, 0 prognozis.cf, 1 progolfjourney.com, 1 -progolfnow.com, 1 progon.cf, 1 progonsoftware.com, 1 prograce.info, 1 @@ -112870,7 +111818,6 @@ projectbuild.tk, 1 projectcares.tk, 1 projectcolonisation.tk, 1 projectemail.co, 1 -projectempower.org, 1 projectfreehosting.ga, 1 projectgazaabindo.com, 1 projecthelius.com, 1 @@ -113053,7 +112000,7 @@ propertysales-almeria.com, 1 propertyselling.ga, 1 propertysex.com, 1 propertyupdate.com.au, 1 -propertyworkshop.com, 0 +propertyworkshop.com, 1 propfirmdiscount.com, 1 prophetdesign.ch, 1 prophitt.me, 1 @@ -113108,7 +112055,6 @@ prosperontheweb.com, 1 prosperstack.com, 1 prosperus.ru, 1 prospo.co, 1 -prosport.md, 1 prosportovani.cz, 1 prospreads.com, 1 prostaglandina.com, 1 @@ -113274,7 +112220,6 @@ proxaccess.com, 1 proximity.ga, 1 proximityradio.fr, 1 proximo.tk, 1 -proximoconcurso.com.br, 1 proxirealtime.com, 1 proxmox-airsonic.tk, 1 proxy-bay.biz, 1 @@ -113331,7 +112276,7 @@ prushka.ml, 1 prushka.tk, 1 pruve.it, 1 prvnirodinna.cz, 1 -prwebconsulting.com, 1 +prwebconsulting.com, 0 prwid.gov, 1 pry.co, 1 pryan.org, 1 @@ -113383,7 +112328,6 @@ psb4ukr.net, 1 psb4ukr.org, 1 psblog.fr, 1 psc-elsene.be, 1 -psc.gov.ws, 1 pschierl.com, 1 pscp.tv, 1 pscr.gov, 1 @@ -113488,7 +112432,6 @@ pstrozniak.com, 1 pstrykmyk.eu, 1 pstutorials.tk, 1 psu.je, 1 -psucompare.com, 1 psv-herford-badminton.de, 1 psw-consulting.de, 1 psw-group.de, 1 @@ -113552,7 +112495,7 @@ psychotechnique.com, 1 psychotechnique.lu, 1 psychotechniquetest.fr, 1 psychotel.tk, 1 -psychoterapia-skuteczna.pl, 0 +psychoterapia-skuteczna.pl, 1 psychotest.gq, 1 psychotestprep.com, 1 psychotherapie-ahlmeyer.de, 1 @@ -113560,7 +112503,6 @@ psychotherapie-kp.de, 0 psychotherapie-leipzig.eu, 1 psychotherapie-lichterfelde.berlin, 1 psychotherapie1220wien.at, 0 -psychotherapy-vienna.com, 1 psychotiq.tk, 1 psychotropical.com, 1 psychpsyo.com, 1 @@ -113729,7 +112671,6 @@ puffyan.us, 1 pugachev.ml, 1 puggan.se, 1 pugilares.com.pl, 1 -pugovka72.ru, 1 pugstime.com, 1 puhe.se, 1 puhudefu.de, 1 @@ -113764,7 +112705,6 @@ pulpitsupplypreachers.com, 1 pulpproject.org, 1 pulsadanvoucher.tk, 1 pulsagolden.tk, 1 -pulsaojk.com, 1 pulsedive.com, 1 pulsenetwork.com, 1 pulser.stream, 1 @@ -113870,7 +112810,6 @@ purely.domains, 1 purelymail.com, 1 purelypestcontrol.com, 1 puremosquito.com, 1 -purenhd.com, 1 purenvi.ca, 0 purepestandlawn.com, 1 puresanitization.com, 1 @@ -113937,7 +112876,6 @@ purupuru.school, 1 puryearlaw.com, 1 pusatinkubatorbayi.com, 0 puschkin.ga, 1 -pusehusetkattehotell.no, 1 pusehusetmalvik.no, 1 puset.tk, 1 push-free.com, 1 @@ -113989,7 +112927,6 @@ putty.org, 1 puttymonos.club, 1 puttymonos.work, 1 putzigdesign.de, 1 -puur-memorie.nl, 1 puur.gent, 1 puurgent.be, 1 puxlit.net, 1 @@ -114094,6 +113031,7 @@ pygos.space, 1 pyhello.world, 1 pyjiaoyi.cc, 1 pyjy.org, 0 +pylad.se, 1 pylon.bot, 1 pymescentro.net, 1 pymestari.com, 1 @@ -114112,7 +113050,6 @@ pyro.works, 1 pyroballpcbs.com, 1 pyrofestival-vermoise.fr, 1 pyromaniac.tk, 1 -pyrosoftinc.com, 1 pyrotechnologie.de, 1 pyspace.org, 1 pythia.nz, 1 @@ -114253,7 +113190,6 @@ qfinds.io, 1 qfjvv7f.xyz, 1 qform.ru, 1 qfurs.ru, 1 -qga.com.au, 1 qgblog.org, 0 qgushi.com, 1 qhost.cf, 1 @@ -114302,6 +113238,7 @@ qitabbs.com, 0 qitano.com, 1 qitarabutrans.com, 1 qiu.moe, 0 +qiu006.com, 1 qiuwenbaike.cn, 1 qivonline.pt, 1 qiwi.be, 1 @@ -114377,7 +113314,6 @@ qq6729.com, 0 qq6957.co, 1 qq885.com, 1 qq9297.co, 1 -qq9397.com, 0 qq9728.co, 1 qqiao.me, 1 qqmingzi.cc, 0 @@ -114423,7 +113359,6 @@ qt.ax, 1 qt.to, 1 qtacairsoft.com, 1 qtmd.org, 1 -qtmsheep.com, 1 qtn.net, 1 qto.cloud, 1 qto.co, 1 @@ -114692,7 +113627,6 @@ quic.stream, 1 quicareer.com, 1 quichante.com, 1 quiche-quic.cf, 1 -quichost.com, 1 quick-and-easy.tk, 1 quick-seo.tk, 1 quickassortments.com, 1 @@ -114727,7 +113661,6 @@ quickyshare.com, 1 quicomo.it, 1 quidax.com, 1 quieoltre.it, 1 -quiero.news, 1 quieroserbombero.org, 1 quieroserdoula.com, 1 quieroserdoula.es, 1 @@ -114831,6 +113764,7 @@ quotesnsayings.net, 1 quotesofgta.tk, 1 quotev.com, 1 quotidiani.net, 1 +quotidianodiragusa.it, 1 quovadisaustria.com, 1 quoviz.com, 1 qupom.com.br, 1 @@ -114965,7 +113899,6 @@ rabattkoll.se, 1 rabatz.tk, 1 rabbisacks.org, 1 rabbit.finance, 1 -rabbit.org, 1 rabbitcallcenter.com, 1 rabbitcare.ae, 1 rabbitcare.com, 1 @@ -114997,12 +113930,10 @@ rabynska.eu, 1 racaliz.tk, 1 racamera.com, 1 racasdecachorro.org, 1 -racco.com.br, 1 raccoltadifferenziata.it, 1 raccoltarifiuti.com, 1 raccoltarifiuti.milano.it, 1 raccoon.io, 1 -racdek.com, 1 racedrop.tk, 1 racelandky.gov, 1 racemanager.io, 1 @@ -115038,7 +113969,6 @@ rad2share.com, 1 rada-group.eu, 1 radaar.io, 1 radar.sx, 1 -radaravia.ru, 1 radarband.tk, 1 radarbanyumas.co.id, 1 radarbogor.id, 1 @@ -115163,7 +114093,6 @@ radioelectronic.tk, 1 radioenam.tk, 1 radioenergia.tk, 1 radioesferico.tk, 1 -radioevolucion.es, 1 radioexito.tk, 1 radiofmimagen.net, 1 radiofred.tk, 1 @@ -115287,11 +114216,9 @@ radlina.com, 1 radnas.com, 1 radnickapartija.tk, 1 radnicki-nis.tk, 1 -radnoc.com, 1 radogear.com, 1 radoman.ga, 1 radon.tk, 1 -radon.vip, 1 radopsec.com, 1 radopsec.net, 1 radopsec.org, 1 @@ -115368,7 +114295,6 @@ raidensnakesden.com, 1 raidensnakesden.net, 1 raidentawork.lt, 1 raiderhacks.com, 1 -raidkeeper.com, 1 raidstone.net, 1 raidstone.rocks, 1 raiffeisen-kosovo.com, 0 @@ -115489,6 +114415,7 @@ rakennuspeli.com, 1 rakeshkaryana.com, 1 raketa.travel, 1 raketaholst.com.ua, 1 +raketaro.de, 1 raketenwolke.de, 1 rakett.org, 0 rakibzashup.ml, 1 @@ -115579,8 +114506,10 @@ ramtechmodular.com, 1 ramusa.org, 1 ramydent.no, 1 ramynetwork.tk, 1 +ramzinex.com, 1 ran-drunken.tk, 1 ran-ran.top, 1 +ran-sama.ddns.net, 1 rana.realestate, 1 rana.shop, 1 ranasinha.com, 1 @@ -115641,9 +114570,9 @@ rangde.org, 1 range.co, 1 rangeforce.com, 1 rangeforce.eu, 1 -rangercollege.edu, 1 rangerfiles.tk, 1 rangersloyalsite.tk, 1 +rangersofbelgium.be, 1 rangeweb.ga, 1 ranginkamonkadeh.ir, 1 rangsmo.se, 0 @@ -115671,6 +114600,7 @@ rankya.com, 1 rannamoisaaiasalong.ee, 1 rannseier.org, 1 ranos.org, 1 +ransomspares.co.uk, 1 ranson.com.au, 1 ransonwv.gov, 1 rantalaholcomb.tk, 1 @@ -115709,7 +114639,6 @@ rapidguide.tk, 1 rapidlegal.com, 1 rapidminer.com, 0 rapidoo.com.br, 1 -rapidrise.digital, 1 rapidscale.net, 1 rapidseo.net, 1 rapidshit.net, 1 @@ -115734,7 +114663,6 @@ raqoo.jp, 1 raquelmolinacases.tk, 1 rar.moe, 1 raranga.net.nz, 1 -rarbg2020.org, 1 rarbgmirrored.org, 1 rarbgproxied.org, 1 rarbgproxy.com, 1 @@ -115867,6 +114795,7 @@ ravenrockrp.com, 1 ravenstonejeweler.com, 1 raventechnology.es, 1 ravenx.me, 1 +ravescout.club, 1 raveseguros.com, 1 ravesteijn.nl, 1 ravhaaglanden.org, 1 @@ -115912,7 +114841,6 @@ raydius.de, 1 rayfalling.com, 1 rayhillforsupremecourt.com, 1 rayiris.com, 1 -rayj.me, 1 rayj.org, 1 raykitchenware.com, 1 raylo.com, 1 @@ -115926,7 +114854,6 @@ raymundo.doctor, 1 raynbo.ai, 1 raynis.net, 1 raynoonanwindows.ie, 1 -raynos.co.jp, 1 rayonbricolage.com, 1 rayonnage-stockage.fr, 1 raysbarreto.tk, 1 @@ -115940,9 +114867,6 @@ raytonne.com, 1 rayusradiology.com, 1 raywardapparel.com, 1 raywisdom.tk, 1 -raywjohnson.com, 1 -raywjohnson.info, 1 -raywjohnson.me, 1 rayworks.de, 1 razakhanimazhab.tk, 1 razalabs.com, 1 @@ -116000,7 +114924,6 @@ rbsinternational.com, 1 rbt.rs, 1 rbt.sx, 1 rbtvshitstorm.de, 1 -rbuddenhagen.com, 1 rbunews.tk, 1 rburchell.com, 0 rbx.com, 1 @@ -116076,7 +114999,6 @@ rdfmapped.com, 1 rdforum.org, 1 rdfproject.it, 1 rdfz.tech, 1 -rdh.asia, 1 rdienclosures.com, 1 rdimedical.com, 1 rdkf.de, 1 @@ -116132,7 +115054,6 @@ reachhead.com, 1 reachley.net, 1 reachout-ghana.com, 1 reachout2.nl, 1 -reachpersonalgrowth.com, 1 reachrss.com, 1 reachum.com, 1 reachwithed.com, 1 @@ -116144,6 +115065,7 @@ reactheme.com, 1 reactionindex.com, 1 reactive-load.com, 1 reactive-press.com, 1 +reactive.com.ru, 1 reactivedrop.com, 1 reactivemarkets.com, 1 reactor-family.tk, 1 @@ -116202,7 +115124,6 @@ reakcjonista.tk, 1 reaksi.id, 1 real-it.nl, 1 real-linux.tk, 1 -real-neo.me, 1 real-site.tk, 1 real-srebrenica-genocide.cf, 1 real-srebrenica-genocide.ga, 1 @@ -116287,7 +115208,6 @@ reallight.ge, 1 reallinux.tk, 1 reallivingcc.com, 1 reallovetab.ga, 1 -really-simple-plugins.com, 1 really-simple-ssl.com, 1 reallyangryaboutchipshops.com, 1 reallybadidea.tk, 1 @@ -116437,6 +115357,7 @@ recipex.ru, 1 recipeyak.com, 1 recipito.tk, 1 reciple.kz, 1 +recitoners.net, 1 reckers-griesbach.com, 1 recklessly.ga, 1 reckner.com, 1 @@ -116458,7 +115379,6 @@ recollective.com, 1 recolor.ml, 1 recomendador.cl, 1 recommend.pro, 1 -recommended.reviews, 1 recommends.ml, 1 recompiled.org, 0 recon-networks.com, 1 @@ -116536,7 +115456,6 @@ red-panda.be, 1 red-planet.tk, 1 red-t-shirt.ru, 1 red-train.de, 1 -red-trigger.net, 1 red-wine.tk, 1 red031000.com, 1 red1it.net, 1 @@ -116547,7 +115466,6 @@ redactibio.com, 1 redactieco.nl, 1 redarx.com, 1 redballoonsecurity.com, 1 -redbaronpoolsupplies.com.au, 1 redbeardplumbing.net, 1 redcabbage.tk, 1 redcanary.co, 1 @@ -116666,7 +115584,6 @@ redlionhockwold.com, 1 redloeki.tk, 1 redmadrobot.ru, 1 redmarker.ai, 1 -redmas.com.co, 1 redmejoracontinua.com, 1 redmondoregon.gov, 1 redmore.me, 1 @@ -116697,7 +115614,6 @@ redsequence.com, 1 redshank-largeformat.co.uk, 1 redshell.pw, 1 redshiftcybersecurity.co.za, 1 -redshirtsalwaysdie.com, 1 redshoeswalking.net, 1 redshop.uk, 1 redsicom.com, 1 @@ -116815,7 +115731,7 @@ reflectionsonthebay.org.au, 1 reflecton.io, 1 reflectoring.io, 1 refletindosaude.com.br, 1 -reflets-de-france.fr, 1 +reflets-de-france.fr, 0 reflets.info, 1 reflexions.co, 1 reflexionspain.tk, 1 @@ -117234,7 +116150,7 @@ reminded.tk, 1 remington-europe.com, 1 remirampin.com, 1 remissan.com, 1 -remissionclinic.com, 1 +remissionclinic.com, 0 remitano.com, 1 remix64.com, 1 remiz.org, 1 @@ -117273,7 +116189,6 @@ remora.tk, 1 remorse.ga, 1 remote-health.net, 1 remoteassistants.io, 1 -remotebudget.com, 1 remotedesktop.corp.google.com, 1 remoteoffice.ga, 1 remoteok.com, 1 @@ -117365,7 +116280,6 @@ rennes-lindy-hop.com, 1 rennes-pilates.com, 1 rennes-reggaeton.com, 1 rennes-rock-6-temps.com, 1 -rennes-rock.com, 1 rennes-salsa-portoricaine.com, 1 rennes-salsa.com, 1 rennes-tango.com, 1 @@ -117460,7 +116374,6 @@ repalriley38.com, 1 repaper.org, 1 reparacionesdecalefones.com, 1 reparacioneslocativas.com.co, 1 -reparacionmovilescartagena.com, 1 reparacionmovilesmurcia.com, 1 repararimac.eu, 1 repararipad.eu, 1 @@ -117472,7 +116385,6 @@ reparatiecrm.nl, 1 reparatieferestre.md, 1 reparation-traceur.com, 1 reparaturcafe-pfullendorf.de, 1 -reparizy.com, 1 reparo.pe, 0 repat.de, 1 repauto.com.ua, 1 @@ -117559,7 +116471,6 @@ reroboto.net, 1 reroboto.org, 1 reroboto.social, 1 reroll.tv, 1 -rerumu.co.uk, 1 rerumu.com, 1 resalerental.com, 1 resanebartar.tk, 1 @@ -117883,7 +116794,6 @@ revenue-playbook.com, 1 revenuegeeks.com, 1 revenuegrid.com, 1 reverce.com, 1 -reverenceglobal.com, 1 reveriecaps.com.br, 1 revers.tk, 1 reverse1999.wiki, 1 @@ -117924,6 +116834,7 @@ revis-online.cf, 1 revis-online.gq, 1 revis-online.ml, 1 revis-online.tk, 1 +revisi.id, 1 revisione.it, 1 revisionmedia.pl, 1 revisionnotes.xyz, 1 @@ -117991,7 +116902,6 @@ rewawatch.tk, 1 rewebsitepro.com, 1 rewirenewsgroup.com, 1 rewolucja1905.pl, 1 -rewrite3.com, 1 rewriteguru.com, 1 rewritertools.com, 1 rex.red, 1 @@ -118106,7 +117016,6 @@ rhode-island-sexcams.com, 1 rhodeislandhealth.tk, 1 rhodes.ml, 1 rhodesianridgeback.com.br, 1 -rhodesign.com.br, 1 rhodos.fr, 1 rhona.cl, 1 rhost.nl, 1 @@ -118151,7 +117060,6 @@ rib-ims.de, 1 rib-leipzig.com, 1 riba-lov.ga, 1 ribafs.tk, 1 -ribapo.com, 1 ribar.com, 1 ribblu.com, 1 ribccs.com, 1 @@ -118266,7 +117174,7 @@ ricky.photos, 1 rickyips.tk, 1 rickyromero.com, 1 rickysgames.tk, 1 -rico-brase.de, 0 +rico-brase.de, 1 rico-j.de, 1 rico.ovh, 1 ricobaldegger.ch, 1 @@ -118315,6 +117223,7 @@ rietveldacademie.nl, 1 riffable.com, 1 riffnation.tk, 1 riffreporter.de, 0 +riflajelemn.ro, 1 rift.pictures, 1 rifugioselvabella.tk, 1 rigabeerbike.com, 1 @@ -118338,7 +117247,6 @@ rightnetworks.com, 1 rightreview.co.uk, 1 rights.ninja, 1 rightschool.cf, 1 -rightship.com, 1 rightsizingcalculator.com, 1 rightsolutionplumbing.com.au, 1 rightstartcapital.com, 1 @@ -118412,7 +117320,6 @@ ringneckparakeets.com, 1 ringofglory.ga, 1 ringofglory.gq, 1 ringover.com, 1 -ringtoones.com, 1 rinka.moe, 1 rinkhill.com, 1 rinko-mama.com, 1 @@ -118455,7 +117362,6 @@ ripp-it.com, 1 ripper.store, 1 ripplecraft.cn, 1 ripplemarkeg.com, 0 -ripplematch.com, 1 ripplenews.club, 1 ripplenews.co, 1 ripplenews.io, 1 @@ -118481,7 +117387,6 @@ riscoscommunity.org, 1 riscoshardware.tk, 1 riscure.com, 1 rise-technologies.com, 1 -rise.africa, 1 rise.com, 1 rise.global, 1 rise.md, 1 @@ -118645,7 +117550,6 @@ rkkerkjoppe.nl, 1 rkmedia.no, 1 rkmns.edu.in, 1 rknews.tk, 1 -rkowalewski.de, 1 rkstudio.com, 1 rl3.de, 1 rlahaise.nl, 0 @@ -118662,6 +117566,7 @@ rlove.org, 1 rm-it.de, 1 rm2brothers.cc, 1 rmb.li, 1 +rmbnsw.org.au, 1 rmbs.de, 1 rmbs.org, 1 rmcbs.de, 1 @@ -118876,7 +117781,6 @@ roboto.social, 1 robots-ju.ch, 1 robotsaspiradores.com, 1 robotsbigdata.com, 1 -robotstxt.com, 1 robottip.com, 1 robowars.ga, 1 robpol86.com, 1 @@ -119002,7 +117906,6 @@ rocktape.com, 1 rocktonil.gov, 1 rocktontownshipil.gov, 1 rockvilledentalarts.com, 1 -rockvocalconsulting.com, 1 rockworldteam.tk, 1 rockyford-co.gov, 1 rockymountaininsurancecenter.com, 1 @@ -119048,8 +117951,6 @@ rodrigoarayaaliaga.com, 1 rodrigoarriaran.com, 1 rodrigocarvalho.blog.br, 1 rodrigodematos.tk, 1 -rodriguezsanchezabogados.es, 1 -rody-design.com, 1 roeckx.be, 1 roed.gg, 1 roeden.dk, 1 @@ -119079,7 +117980,7 @@ rogaineforwomen.ga, 1 rogard.fr, 0 rogarden.ro, 1 roge.pw, 1 -rogeiro.net, 0 +rogeiro.net, 1 rogell.tk, 1 rogerdat.ovh, 1 rogerdeflor.tk, 1 @@ -119128,7 +118029,6 @@ roidsstore.com, 1 rointe.online, 1 roishopper.com, 1 roisu.org, 0 -roiwebmarketing.com, 0 rojavainformationcenter.com, 1 rojiblancos.tk, 1 rojotv.tk, 1 @@ -119140,7 +118040,6 @@ rokettube.tk, 1 rokki.ch, 0 rokm.co.uk, 1 roko-foto.de, 1 -rokort.dk, 1 rokudenashi.de, 1 rokuk.org, 1 rolamar.com.br, 1 @@ -119154,7 +118053,7 @@ rolandozarate.tk, 1 rolandszabo.com, 1 rolandvanipenburg.com, 1 rolc.org.sg, 1 -roldeco.nl, 1 +roldeco.nl, 0 rolecontj.com, 1 roleplayhome.com, 1 roligh.cf, 1 @@ -119179,7 +118078,6 @@ rollinsdogtraining.com, 1 rollinspass.org, 1 rollthedice.tk, 1 rollthepay.com, 1 -rolnikowie.pl, 1 rolotrans.cf, 1 rolotrans.ga, 1 rolotrans.gq, 1 @@ -119264,7 +118162,7 @@ ronaldleite.tk, 1 ronaldvanassen.nl, 1 ronan.cf, 1 ronanrbr.com, 1 -ronasit.com, 0 +ronasit.com, 1 ronbongamis.com, 1 ronc.ru, 1 roncoutilities.com, 1 @@ -119391,7 +118289,6 @@ rosabellas.co.uk, 1 rosabrasiv.ga, 1 rosacosmos.tn, 1 rosaflorbijoux.com.br, 1 -rosakkreditatsiya-forum.ru, 1 rosalinda.cl, 1 rosalindturner.co.uk, 1 rosalopezcortes.tk, 1 @@ -119468,7 +118365,6 @@ rosscountyohiocasa.gov, 1 rosscountyohiocourts.gov, 1 rosset.me, 1 rosset.net, 1 -rossfrance.com, 1 rossia.ga, 1 rossignoli.it, 1 rossiyskaja.cf, 1 @@ -119565,7 +118461,7 @@ roundcube.mayfirst.org, 0 roundgarden.nl, 1 roundrock-locksmith.com, 1 roundtablekzn.co.za, 1 -roundtoprealestate.com, 1 +roundtoprealestate.com, 0 roushins.net, 0 roussillon-informatique.fr, 1 roussos.cc, 1 @@ -119629,10 +118525,16 @@ royal-knights.tk, 1 royal-life.tk, 1 royal-rangers.de, 1 royal.io, 1 +royal71.com, 0 royal813.com, 1 +royal84.com, 0 +royal869.com, 0 royal876.com, 1 royal88.com, 1 -royal929.com, 1 +royal880.com, 0 +royal8822.com, 0 +royal896.com, 0 +royal929.com, 0 royal939.com, 1 royalasianescorts.co.uk, 1 royalaubar.com, 1 @@ -119739,7 +118641,6 @@ rr6729.co, 1 rr6729.com, 0 rr6957.co, 1 rr9297.co, 1 -rr9397.com, 0 rr9721.com, 1 rr9728.co, 1 rrailto.com, 1 @@ -119752,7 +118653,6 @@ rrbt.net, 1 rrbts.com, 1 rrdesignsuisse.com, 0 rrdtool.com, 1 -rrg-partner.ch, 0 rritv.com, 1 rrke.cc, 0 rrmac.ml, 1 @@ -119777,7 +118677,6 @@ rsauget.fr, 1 rsb.net, 1 rsblake.com, 1 rsblake.net, 1 -rsblvd.com, 1 rsc-cronenberg.de, 1 rsc.wiki, 1 rschooltoday.com, 1 @@ -119837,7 +118736,6 @@ rtate.se, 1 rtc-israel.com, 1 rtcyber.com, 1 rtd.uk, 0 -rtd.uk.com, 0 rtde.life, 1 rtde.live, 1 rtde.me, 1 @@ -119918,7 +118816,6 @@ rubberchicken.net, 1 rubberduckit.com, 1 rubberlegscastles.co.uk, 1 rubbermaidoutlet.com, 0 -rubbingtherock.com, 1 rubbix.net, 1 rubblebenoni.co.za, 1 rubbleedenvale.co.za, 1 @@ -119946,7 +118843,6 @@ rubenshuis.be, 1 rubenslikkarchive.com, 1 rubensteinphotography.com, 1 rubensvrouwen.tk, 1 -rubenwardy.com, 1 ruber.cf, 1 rubia.ca, 1 rubiales.tk, 1 @@ -119968,7 +118864,6 @@ rubonnek.com, 1 rubooks.gq, 1 rubreklama.tk, 1 ruby-auf-schienen.de, 1 -rubycanyonenv.com, 1 rubyfactory.io, 1 rubymaybetranslations.com, 1 rubymediagroup.com, 1 @@ -120109,7 +119004,6 @@ rumreader.com, 1 rumtaste.com, 1 rumus.co.id, 1 rumusbilangan.com, 1 -rumusrumus.com, 1 rumussoal.com, 1 run-it-direct.co.uk, 1 run.vn, 1 @@ -120206,7 +119100,7 @@ rush49.com, 1 rushashkyfond.com, 1 rushbmedia.com, 1 rushcountykansas.gov, 1 -rushmix.com, 1 +rushmix.com, 0 rushmyessay.gq, 1 rushpoppershop.co.uk, 1 rushriverwi.gov, 1 @@ -120273,7 +119167,6 @@ russinfo.net, 1 russisch.tk, 1 russograffix.tk, 1 russpuss.ru, 1 -russt.me, 1 rust.cf, 1 rust.mn, 1 rust.pm, 1 @@ -120356,7 +119249,6 @@ rw.search.yahoo.com, 0 rw2.de, 1 rwalch.at, 1 rway.pro, 1 -rwbstuff.com, 1 rwgamernl.ml, 1 rwhapdentalservicesreport.net, 1 rwky.net, 1 @@ -120367,7 +119259,6 @@ rwx.ovh, 1 rwx.work, 1 rx-base.nl, 1 rx-diet.com, 1 -rx-safety.com, 1 rxbn.de, 1 rxbusiness.com, 1 rxcarbon.com, 1 @@ -120443,9 +119334,8 @@ ryois.me, 1 ryois.net, 1 ryona.agency, 1 rys.pw, 1 -rythgs.co, 0 rythm.es, 1 -ryu-ga-gotoku-audition.com, 0 +ryu-ga-gotoku-audition.com, 1 ryu22e.org, 1 ryuanerin.kr, 1 ryuukei-nf.tk, 1 @@ -120475,7 +119365,6 @@ s-mall.com.sg, 1 s-n-unso.com, 1 s-on.li, 1 s-pegasus.com, 1 -s-pira.games, 1 s-pro.io, 1 s-s-paint.com, 1 s-sisters.ru, 1 @@ -120554,7 +119443,6 @@ s92.io, 1 s92.me, 1 s9297.co, 1 s95.de, 1 -s9721.com, 1 s9728.co, 1 s9h.cn, 0 sa-blog.net, 1 @@ -120599,10 +119487,10 @@ saber-nyan.com, 1 sabesprev.com.br, 1 sabghijewelers.com, 1 sabharwallawfirm.ca, 1 +sabhindimai.net, 1 sabians.tk, 1 sabiasque.pt, 1 sabine-forschbach.de, 1 -sabinearendt.de, 1 sabineforschbach.de, 1 sablanout.com, 1 sable.gq, 1 @@ -120743,7 +119631,6 @@ safegas.com.ua, 1 safegold.ca, 1 safegroup.pl, 1 safeguardace.com, 1 -safeguardcommerce.com, 1 safeguardhosting.ca, 1 safehero.com, 1 safeheron.com, 1 @@ -120751,11 +119638,11 @@ safeheron.vip, 1 safehouse.zone, 1 safehousepestcontrol.au, 1 safeinfra.nl, 1 -safejourney.education, 1 safekidney.com.tw, 1 safeme.ga, 1 safeme.gq, 1 safemt.gov, 1 +safenetwork.it, 1 safensoundstoragegroton.com, 1 safeo.fr, 1 safeocs.gov, 1 @@ -120808,7 +119695,6 @@ safewatchsecurity.ie, 1 safewayins.com, 1 safewayinsurance.com, 1 safewaysecurityscreens.com.au, 1 -safewaywaterproofing.com, 1 safex.org, 1 saffron.com, 1 safijourney.com, 1 @@ -120938,7 +119824,6 @@ saintisidorecyo.com, 1 saintjamestheapostle.org, 1 saintjosephschurch.net, 1 saintleochurch.net, 1 -saintlouisehouse.org, 1 saintlouisfence.com, 1 saintmarkchurch.net, 1 saintmaryna.com, 1 @@ -120989,6 +119874,7 @@ saiwebtv.com, 1 sajabesaya.tk, 1 sajbersove.rs, 1 sajdowski.de, 0 +sajjadrezaei.fit, 1 sajjadzaidi.com, 1 sajt-vizitka-nedorogo.ru, 1 sajter.ga, 1 @@ -121073,7 +119959,6 @@ salernotoday.it, 1 salery.ga, 1 sales-experience.nl, 1 sales-respect.nl, 1 -salesandwants.co.uk, 1 salesdesign.vn, 1 salesdivisie.nl, 1 salesdock.be, 1 @@ -121112,7 +119997,6 @@ salins-les-bains.com, 1 salisburylehighpa.gov, 1 salisburyreds.co.uk, 1 salisucre.fr, 1 -salkield.uk, 1 salland1.nl, 1 salle-quali.fr, 0 salledebainmontreal.gq, 1 @@ -121143,7 +120027,6 @@ salon-hinata.biz, 1 salon-largo.com, 1 salon-legato.com, 1 salon-minipli.de, 1 -salon-stil-leben.de, 1 salon-svadbi.tk, 1 salon-yuan.jp, 0 salon.io, 0 @@ -121158,12 +120041,10 @@ salonkaufmann.it, 1 salonmarjon.nl, 1 salonni.tk, 1 salonsantebienetre.ch, 0 -salonsuites.com, 1 salrosadohimalaia.com, 1 salsa-straubing.de, 1 salsa.berlin, 1 salserocafe.com, 0 -salt-documentary.blog, 1 salt-travel.cf, 1 salt.fish, 1 saltandlight.sg, 1 @@ -121213,7 +120094,6 @@ salvaalocombia.com, 1 salvadoralevin.tk, 1 salvadorcorriols.tk, 1 salvadorinfantil.tk, 1 -salvageforgood.org, 1 salvalartesicilia.it, 1 salvameblog.tk, 1 salverainha.org, 1 @@ -121316,8 +120196,6 @@ samozdraw.ga, 1 sampaguide.com, 1 sampath.lk, 1 sampatjewelers.com, 1 -sampercleaningservices.com, 1 -sampertechnologyservices.com, 1 sample-site.click, 1 samplefashion.nl, 1 sampsoncountync.gov, 1 @@ -121325,22 +120203,20 @@ sampurna.shop, 1 samroelants.com, 1 sams.wtf, 1 samsatcorner.com, 1 -samsatkeliling.info, 1 samscollection.in, 1 samsebe.ml, 1 samsebe.tk, 1 samsepi0l.ovh, 1 samshouseofspaghetti.net, 1 -samskaar.in, 1 samson-td.com, 1 samson.org.au, 1 +samsreseller.com, 1 samstudios.tk, 1 samsunghalfmarathon.com, 1 samtalen.nl, 1 samudranesia.id, 1 samuel-brown.com, 1 samuel-philipp.de, 1 -samuelaigbe.com, 1 samuelbeckett.tk, 1 samuelbramley.com, 1 samuelharmon.com, 1 @@ -121424,7 +120300,6 @@ sandairephotography.com, 1 sandbox.i.ng, 1 sandbox.mydigipass.com, 0 sandelduggal.com, 1 -sander.sh, 1 sanderdesign.tk, 1 sanderdorigo.nl, 1 sanderkoenders.eu, 1 @@ -121442,7 +120317,6 @@ sandiegotown.com, 1 sandipmukherjee.tk, 1 sandiuno.ml, 1 sandle.uk, 1 -sandle.xyz, 1 sandlerpartners.com, 1 sandmanintel.com, 1 sandmarc.cz, 1 @@ -121626,7 +120500,6 @@ santibanezdetera.tk, 1 santibz.es, 1 santillana.com, 1 santimb.photos, 1 -santing.net, 1 santippolito-borgo.tk, 1 santjoandevilassar.tk, 1 santmark.eu, 1 @@ -121728,7 +120601,7 @@ sarahwellington.com, 1 sarahwikeley.co.uk, 1 saraleebread.com, 0 saranamayyappa.tk, 1 -sarand.ch, 1 +sarand.ch, 0 saraskins.space, 1 sarasotadentistry.com, 1 sarasotaroboticurology.com, 1 @@ -121823,7 +120696,6 @@ saskiadhont.be, 1 saskialund.de, 1 sasrobotics.xyz, 1 sasroli.tk, 1 -sasse9662.net, 1 sassyporkchop.com, 1 sastamalandemarit.fi, 1 sastd.com, 1 @@ -121887,7 +120759,6 @@ sattaresult.in, 1 sattaresult.net, 1 sattaresult.net.in, 1 saturday.kiwi, 1 -saturdayblitz.com, 1 saturdayenterprises.ga, 1 saturn-test.network, 1 saturne.tk, 1 @@ -121947,6 +120818,7 @@ savbus.com, 1 savbus.net, 1 savbus.ws, 1 savchenko.net, 1 +savconventioncenter.com, 1 savcurv.com, 1 save-me-aachen.de, 1 save-me-aachen.eu, 1 @@ -121961,7 +120833,6 @@ savejonasquinn.tk, 1 savemyexams.co.uk, 1 savemylicence.co.uk, 1 saveolga.tk, 1 -saveonattractions.com, 1 saveoney.ca, 1 saveora.com, 1 saveora.shop, 1 @@ -121985,17 +120856,15 @@ saveyourinternet.eu, 1 savicki.co.uk, 1 savicki.cz, 1 savicki.sk, 1 -saviezvousque.net, 1 savilleassessment.com, 1 savin.ga, 1 -savin.in, 1 savinggoliath.com, 1 savingmoses.org, 1 savingsbondwizard.gov, 1 savingsoftheyear.com, 1 savingtails.org, 1 savitar.guide, 1 -saviynt.com, 0 +saviynt.com, 1 savoir.ga, 1 savonlinnatrujillo.tk, 1 savonsuuntaporaus.fi, 1 @@ -122022,7 +120891,6 @@ sawiday.se, 1 sawikowscy.eu, 1 sawikowscy.pl, 1 sawpa.gov, 1 -sawyerroofing.com, 1 saxeandthecity.com, 1 saxifrageleather.com, 1 saxis.dk, 1 @@ -122096,7 +120964,6 @@ sberanalytics.ru, 1 sberbank.ch, 1 sbercity.ru, 1 sbercontactmonitoring.ru, 1 -sberlogistics.ru, 1 sbermobile.ru, 1 sberna-fotofast.cz, 1 sbestimes.com, 1 @@ -122110,7 +120977,6 @@ sbir.gov, 0 sbirwot.xyz, 1 sbl250.com, 1 sbli.com, 1 -sblogistica.ru, 1 sbm.cloud, 1 sbm.org.tr, 1 sbmenedzsment.hu, 1 @@ -122142,7 +121008,6 @@ sc2labs.com, 1 sc2pte.eu, 1 sc5.jp, 1 scaarus.com, 1 -scadalliance.org, 1 scadanews.net, 1 scaffalature.roma.it, 1 scaffoldhiremidrand.co.za, 1 @@ -122216,7 +121081,6 @@ scardracs.blog, 1 scarecrow-cn.com, 1 scaricamusica.tk, 1 scarinex.tk, 1 -scarletandgame.com, 1 scarsviewchrysler.com, 1 scaryghost.tk, 1 scatdhhs.gov, 1 @@ -122250,7 +121114,7 @@ scenicbyways.info, 1 scentiche.com, 1 scepticism.com, 1 scers.gov, 1 -scevity.com, 1 +scevity.com, 0 scfpensante.ca, 1 scfssp.it, 1 sch44r0n.de, 1 @@ -122328,7 +121192,6 @@ schinkelplatz.com, 1 schipholwatch.nl, 1 schipholwatch.org, 1 schippendale.de, 1 -schippers-it.nl, 1 schiriportal.ch, 1 schirmer.io, 1 schittscreek.shop, 1 @@ -122355,6 +121218,7 @@ schlossberg-hotel-wernigerode.de, 1 schlossfuchs.de, 1 schlouk-map.com, 1 schluderns.org, 1 +schluesseldienst-hannover24.de, 1 schluesseldienst-haymov.de, 1 schluesseldienstzentrum.de, 1 schmaeh-coaching.ch, 1 @@ -122390,7 +121254,6 @@ schnuckenhof-wesseloh.de, 1 schnyder-werbung.ch, 0 schody-rozycki.pl, 1 schoenstatt-fathers.link, 1 -schoenstatt-fathers.us, 1 schoenstatt.link, 1 schoepski.de, 1 schoffelcountry.com, 1 @@ -122468,6 +121331,8 @@ schoolshow.nl, 1 schoolsonice.nl, 1 schooltransport.com.au, 1 schooluniform.com.au, 1 +schoonheidssalon-annelies-santpoort.nl, 1 +schoonheidssalon-annelies-velserbroek.nl, 1 schoonheym.com, 1 schoonheym.nl, 1 schoop.me, 1 @@ -122487,7 +121352,6 @@ schrauger.net, 1 schrauger.org, 1 schrauger.run, 1 schraugerrun.com, 1 -schreck-thomas.de, 1 schreibers.ca, 1 schreilechner.tk, 1 schreinerei-jahreis.de, 1 @@ -122559,7 +121423,6 @@ schwarzes-muenchen.de, 1 schwarztrade.cz, 1 schwarzwaelder-schinken-verband.de, 1 schwarzwald-flirt.de, 1 -schwedenkiosk.de, 1 schwedischezahnaerztin.com, 1 schwedischezahnaerztin.de, 1 schweingehabt.expert, 1 @@ -122588,7 +121451,6 @@ scicollege.org.sg, 1 scicomm.xyz, 1 science-questions.org, 1 science-texts.de, 1 -science.co.il, 1 science.gov, 1 science360.gov, 1 science4fun.info, 1 @@ -122602,7 +121464,6 @@ scienceminnesota.com, 1 sciencemonster.co.uk, 1 sciencenews.gq, 1 scienceofpeople.com, 0 -sciencephilanthropyalliance.org, 0 sciencequality.tk, 1 sciences-world.com, 1 scienceschool.ml, 1 @@ -122648,14 +121509,12 @@ sclsnglssttldwn.com, 1 sclub7esp.tk, 1 scm-2017.org, 1 scmestetic.pl, 1 -scmhandling.com, 1 scms.com.my, 1 scn9a.com, 1 scnow.com, 1 scoaladewebsiteuri.ro, 1 scoebg.org, 1 scoffable.com, 1 -scohetal.de, 1 scola.id, 1 scolacdn.com, 1 scolago.com, 1 @@ -122819,7 +121678,6 @@ screeningxchange.com, 1 screenmachine.com, 1 screenpublisher.com, 1 screenrant.com, 1 -screensizemap.com, 1 screentimelabs.com, 1 screenwalker.de, 1 screenwriter.tk, 1 @@ -122905,7 +121763,6 @@ sdarot.tw, 1 sdbehavioralhealth.gov, 1 sdcapp.in, 1 sdcardrecovery.de, 1 -sdea.ca, 1 sdebitati.it, 1 sdesam.ru, 1 sdeu.fr, 1 @@ -122954,7 +121811,6 @@ se2.com, 1 sea-airinternational.tk, 1 sea-godzilla.com, 1 sea.zapto.org, 1 -seabehind.me, 0 seabooty.com, 1 seaborn.top, 0 seachef.it, 1 @@ -122964,7 +121820,6 @@ seaelba.com, 1 seagulls-luebeck.de, 1 seahaweb.org, 1 seaif.org, 1 -seajacks.com, 1 seal-tite.eu, 1 sealandair.fr, 1 sealart.pl, 1 @@ -123072,7 +121927,6 @@ seavision.eu, 1 seavision.fr, 1 seavision.it, 1 seavision.ru, 1 -seb-mgl.de, 1 seb.surf, 1 seb8iaan.com, 1 sebald.com, 1 @@ -123223,7 +122077,6 @@ secumailer.com, 1 secumailer.nl, 1 secundity.com, 1 secundity.nl, 1 -secunit.org, 1 secunm.org, 1 securai.de, 1 secure-automotive-cloud.com, 1 @@ -123266,7 +122119,7 @@ securerepository.net, 1 securesense.nl, 1 securesite.pro, 1 securesiteaccess.com, 1 -securesuite.co.uk, 1 +securesuite.co.uk, 0 securesystems.de, 1 securetalks.com.br, 1 securetown.top, 0 @@ -123335,7 +122188,6 @@ secvuln.info, 1 secwall.me, 1 secwatch.nl, 1 secweb.org, 1 -secwise.nl, 0 secyourity.se, 1 seda.wa.edu.au, 1 sedico.mx, 1 @@ -123411,6 +122263,7 @@ segmentify.com, 1 segmentnext.com, 1 segnalabullo.it, 1 segnidisegni.eu, 1 +segnoadv.com, 1 segpay.com, 1 segulink.com, 1 segurancaresidencialbh.com.br, 1 @@ -123432,7 +122285,7 @@ segv.fi, 1 sehat-solusi-makmur.com, 1 sehatpoin.com, 1 sehatyab.com, 1 -sehd.top, 1 +sehd.top, 0 sehersirin.com, 1 seheyah.me, 1 sei-yu.net, 1 @@ -123505,6 +122358,7 @@ selco-himejiminami.com, 1 selcukluhali.com.tr, 1 selcuksportr.com, 1 selcusters.nl, 1 +seldadogancan.com, 1 selea.design, 1 selebrita.ml, 1 selectables.tk, 1 @@ -123554,7 +122408,6 @@ selfpublishingformula.com, 1 selfrealize.ga, 1 selfretire.cf, 1 selfserverx.com, 0 -selfstorageindia.com, 1 selftech.tk, 1 selfycheck.it, 1 selimcerkezi.tk, 1 @@ -123637,11 +122490,11 @@ seminarioabdtic.com.br, 1 seminariruum.ee, 1 seminarraum-isny.de, 1 seminolecountyoklahoma.gov, 1 -seminolenetworks.net, 1 seminovostoyota.com.br, 1 semiotical.com, 0 semiotika.tk, 1 semira.tk, 1 +semirben.de, 1 semiread.com, 1 semiretire.ga, 1 semiweb.ca, 1 @@ -123709,6 +122562,7 @@ sendpulse.com, 1 sendsonar.com, 1 sendthisfile.com, 1 sendtrix.nl, 1 +sendy.land, 1 sendzik.eu, 1 senecailpd.gov, 1 senergiya.tk, 1 @@ -123751,19 +122605,18 @@ senseilabs.com, 1 senselabs.it, 1 sensepixel.com, 1 sensepost.com, 1 -senshot.com, 1 senshudo.tv, 1 sensibleita.tk, 1 sensiblelanecounty.tk, 1 sensiblepcsupport.co.uk, 1 sensibus.com, 1 -sensical.net, 1 +sensical.net, 0 sensoft-int.com, 1 sensoft-int.net, 1 sensoft-int.org, 1 sensor-dream.ru, 0 sensoria.com.br, 1 -sensorshop.ir, 1 +sensorshop.ir, 0 sensorsoft-waterontharder.nl, 1 sensorville.com.br, 1 sensoscientific.com, 1 @@ -123823,7 +122676,6 @@ seo-srbija.rs, 1 seo-tools4u.com, 1 seo-url.tk, 1 seo-website.ru, 1 -seo.co, 1 seo.consulting, 1 seo.domains, 1 seo.london, 1 @@ -123834,7 +122686,6 @@ seoankara.name.tr, 1 seoapi.com, 1 seoarchive.org, 1 seoargentina.com.ar, 1 -seobay.in, 1 seoblogs.cf, 1 seobook2015.cf, 1 seobook2015.ga, 1 @@ -123960,7 +122811,6 @@ septodont.ch, 1 septodont.com.br, 1 septodont.com.ru, 1 septodont.in, 1 -septodont.nl, 1 septodontchina.com, 1 septonol.tk, 1 septs.blog, 1 @@ -124039,7 +122889,6 @@ serguzim.me, 1 serhan.in, 1 serial-kinder.tk, 1 serial2000.tk, 1 -serialas.ru, 1 serializacion.mx, 1 serialize.gq, 1 serialkey.info, 1 @@ -124116,6 +122965,7 @@ serverbit.it, 1 serverco.com, 1 serverd.de, 1 serverdechile.tk, 1 +serverdensity.io, 1 serverdragon.site, 1 serverexpose.com, 1 serverfix.net, 1 @@ -124303,7 +123153,6 @@ severac.org, 1 severesexfilms.com, 1 severine-trousselard.com, 1 severing.cf, 1 -sevgitesisat.net, 0 seviercountyar.gov, 1 seviercountyassessor-ar.gov, 1 sevilinux.es, 1 @@ -124334,12 +123183,8 @@ sex5.com, 1 sexaki.com, 1 sexandthecitty.tk, 1 sexarab.live, 1 -sexastr.club, 1 -sexastr.com, 1 sexawynet.cam, 1 -sexblag.club, 1 sexcamsbay.com, 1 -sexchita.club, 1 sexdocka.nu, 1 sexedquickies.com, 1 sexedrescue.com, 1 @@ -124350,12 +123195,8 @@ sexgirlfriend.com, 1 sexgood.com.ua, 1 sexhab.guru, 1 sexin.nl, 1 -sexivanovo.com, 1 sexkazan.love, 1 -sexkras.club, 1 sexkrd.love, 1 -sexkursk.club, 1 -sexlipetsk.club, 1 sexminister.tk, 1 sexmobil.de, 1 sexnorilsk.love, 1 @@ -124366,19 +123207,8 @@ sexoclicker.com, 1 sexoclicker.net, 1 sexoclicker.org, 1 sexocomgravidas.com, 1 -sexohab.guru, 1 -sexohm.club, 1 -sexohm.love, 1 sexokiev.love, 1 -sexokolomna.com, 1 -sexokrasnogorsk.com, 1 -sexokrsk.com, 1 -sexokursk.com, 1 -sexolipetsk.com, 1 sexologist.cf, 1 -sexolviv.com, 1 -sexonorilsk.club, 1 -sexonr.com, 1 sexonwax.com, 0 sexorzn.xyz, 1 sexosintabues30.com, 1 @@ -124393,11 +123223,10 @@ sexpdf.com, 1 sexpression.com.br, 1 sexshopfacil.com.br, 1 sexshopnet.com.br, 1 -sexsmolensk.club, 1 -sexspb.love, 1 sexswing.com, 0 sextacy.tk, 1 sextapegermany.com, 1 +sextoysproductstore.com, 1 sextreffendeutschland.com, 1 sextubespot.com, 1 sextw.net, 1 @@ -124406,14 +123235,12 @@ sexufa.red, 1 sexvideochat.it, 1 sexvideos.tel, 1 sexvirtualspace.com, 1 -sexvl.club, 1 sexworkrights.com, 1 sexxyangie.com, 1 sexy-mom.org, 1 sexy-periscope.ml, 1 sexy-store.nl, 1 sexyanne.net, 1 -sexyar.vip, 1 sexybuttpics.com, 1 sexyfotosvandep.nl, 1 sexyjanahot.com, 1 @@ -124680,7 +123507,6 @@ shanikofireor.gov, 1 shanju.tk, 1 shankangke.com, 1 shanli.tk, 1 -shanoviyam.in, 1 shanprop.co.za, 1 shansen-online.de, 1 shansing.cn, 1 @@ -124953,8 +123779,6 @@ sherpa.blog, 1 sherpnortheast.com, 1 sherrikelley.com, 1 sherut.net, 1 -sherwen.uk, 1 -sherwen.us, 1 shesherownceo.com, 1 shespeakssport.co.za, 1 shethbox.com, 1 @@ -125049,6 +123873,7 @@ shinice.net, 1 shining.gifts, 1 shiningservices.ie, 1 shiningstarlogistics.com, 1 +shinju.moe, 0 shinkamigoto.tv, 1 shinko-osaka.jp, 1 shinnecock-nsn.gov, 1 @@ -125078,7 +123903,6 @@ shipeurousa.com, 1 shipgoldchandler.com, 1 shipheart.tech, 1 shipitsmarter.com, 1 -shipkirana.com, 1 shiplapandshells.com, 1 shipmile.com, 1 shipmondo.com, 1 @@ -125094,7 +123918,6 @@ shippingyourworld.com, 1 shipshewana.gov, 1 shiptek.co, 1 shiptest.net, 1 -shiptor.ru, 1 shiptron.com, 1 shipzero-frontend-staging.azurewebsites.net, 1 shiqi.ca, 1 @@ -125239,7 +124062,6 @@ shopalike.nl, 1 shopalike.pl, 1 shopalike.se, 1 shopalike.sk, 1 -shopandworld.net, 1 shopapi.cz, 1 shoparbonne.co.uk, 1 shopatkei.com, 1 @@ -125258,7 +124080,6 @@ shopcoupons.sg, 1 shopcrocs.in, 0 shopdiy.com, 1 shopee6.com, 0 -shopessenciais.com.br, 1 shopexo.in, 1 shopfazz.com, 1 shopfinale.com, 1 @@ -125334,7 +124155,6 @@ shoppingcreativity.ga, 1 shoppingcrunch.ga, 1 shoppingcrystal.ga, 1 shoppingcupid.ga, 1 -shoppingdascapinhas.com.br, 1 shoppingdepot.ga, 1 shoppingdesigning.ga, 1 shoppingdish.ga, 1 @@ -125560,7 +124380,6 @@ showroom.co.uk, 1 showroom.uk, 1 showroom113.ru, 1 showslot.com, 1 -showsnob.com, 1 showsonar.com, 1 shoyuf.top, 1 shpfy-manager.com, 1 @@ -125759,6 +124578,7 @@ sidewalkcleaningchicago.com, 1 sidewalkpressurewashingchicago.com, 1 sidhbalibaba.com, 1 sidi-smotri.ru, 1 +sidingsmedia.com, 1 sidiprojects.us, 1 sidirokastro.ga, 1 sidium.de, 1 @@ -125868,7 +124688,6 @@ signaldp.com, 0 signalmaps.co.uk, 1 signature.in.th, 1 signature365.com, 1 -signaturechannel.com, 1 signaturedallas.com, 1 signatureplants.co.nz, 1 signatureplasticsurgery.net, 1 @@ -125940,11 +124759,7 @@ silberkiste.com, 1 silbox.ch, 1 sildenafilcitrate.cf, 1 sildenafilcitrate100mg.ga, 1 -sildenafilmtab.com, 1 -sildenafilvpill.com, 1 -silensoclinic.com, 1 silent-clean.de, 1 -silent-yachts.com, 1 silent.quest, 1 silent.se, 1 silentartifact.org, 1 @@ -125976,7 +124791,6 @@ silkon.net, 1 silkproducts.tk, 1 sillasdegamer.es, 1 sillisalaatti.fi, 1 -sillyli.com, 0 sillysnapz.co.uk, 1 silo.org.br, 1 siloportem.eu, 1 @@ -125996,7 +124810,6 @@ silverbowflyshop.com, 1 silverbox.ga, 1 silverdroid.gq, 1 silverfalcon.me, 1 -silvergate.com, 1 silvergatebank.com, 1 silvergatebank.net, 1 silvergoldbull.at, 1 @@ -126153,7 +124966,6 @@ simkin.tk, 1 simkova-reality.cz, 1 simlog.tk, 1 simmerle.com, 1 -simmtronic.com, 1 simoesgoulart.com.br, 1 simon-agozzino.fr, 1 simon-kosmrl-diplomski.xyz, 1 @@ -126179,7 +124991,6 @@ simonkjellberg.se, 1 simonmaddox.com, 1 simonmanuel.com, 0 simonoener.com, 1 -simonparrillaorlando.com, 1 simonreich.de, 1 simonreynoldsfavesunfaves.cf, 1 simonschmitt.ch, 1 @@ -126253,7 +125064,6 @@ simpleprojects.net, 1 simplereport.gov, 1 simplerezo.com, 1 simplerses.com, 1 -simplerv.xyz, 1 simples.vet, 1 simplesellatl.com, 1 simplesend.io, 1 @@ -126279,7 +125089,6 @@ simplifylivelove.com, 1 simplio3d.com, 1 simplix.info, 1 simplixos.org, 1 -simplosoft.co.uk, 1 simplr.ai, 1 simplrflex.com, 1 simplus.id, 1 @@ -126302,7 +125111,7 @@ simplyfixit.co.uk, 1 simplyfranciscan.org, 1 simplygood.work, 1 simplyhelen.de, 1 -simplyirfan.com, 1 +simplyirfan.com, 0 simplyjet.tk, 1 simplymaidsaz.com, 1 simplymeatsmoking.com, 1 @@ -126680,13 +125489,12 @@ situsbandarq.ml, 1 situsbandarq.tk, 1 sitypro.com, 1 sitz.ch, 1 -sitzungsdienst.net, 1 +sitzungsdienst.net, 0 siulam-wingchun.org, 1 siusto.com, 1 sivaexports.in, 1 sivaru.tk, 1 sivizius.eu, 1 -sivutoimisto.fi, 1 sivyerge.com, 1 siw64.com, 1 siwa.cf, 1 @@ -126771,6 +125579,7 @@ skarox.eu, 1 skarox.net, 1 skarox.ru, 1 skat.dk, 1 +skate.fr, 1 skatefilms.tv, 1 skateparkmontbriz.tk, 1 skaterangels.tk, 1 @@ -126779,7 +125588,6 @@ skatesins.ch, 1 skatesliide.tk, 1 skateswagger.com, 1 skatingchina.com, 1 -skatn.de, 1 skatrey.com, 1 skattebo.no, 1 skatteforvaltningen.dk, 1 @@ -126820,7 +125628,6 @@ skhire.co.uk, 1 skhoop.cz, 1 skhosting.eu, 1 skhron.com.ua, 1 -skhuf.net, 1 ski-outdoor-shop.de, 1 ski-planet.com, 1 skibbereencomhaltas.tk, 1 @@ -126975,8 +125782,10 @@ skoskav.org, 1 skotobaza.tk, 1 skotstvo.tk, 1 skovbosburgerblog.dk, 1 +skovik-sandbox.com, 1 skovik.com, 1 skpark.cf, 1 +skpk.de, 1 skpracta.info, 1 skpracta.tk, 1 skprhome.i234.me, 1 @@ -127072,7 +125881,6 @@ skyguru.tk, 1 skyhigh-mizell.tk, 1 skyhook.earth, 1 skyhooks.tk, 1 -skyhyve.com, 1 skyhyve.com.au, 1 skyhyve.xyz, 1 skyint.io, 1 @@ -127095,15 +125903,12 @@ skylinehouse.ca, 1 skylinertech.com, 1 skylineservers.com, 1 skylocker.net, 1 -skyloisirs.ch, 0 skyltmax.se, 1 -skymagdaily.com, 1 skymail.de, 1 skymass.xyz, 1 skyminds.net, 1 skymkmk.com, 1 skymonk.tk, 1 -skyn.ai, 1 skynet-research.us, 0 skynet233.ch, 0 skynet800.goip.de, 1 @@ -127159,8 +125964,6 @@ skytiger.ga, 1 skytown.ga, 1 skytterlogg.no, 1 skytterloggen.no, 1 -skyvault.io, 1 -skyviewtowers.com, 1 skywalkersa.ga, 1 skywatch.com, 1 skywindowsnj.com, 1 @@ -127198,12 +126001,10 @@ slamhope.gq, 1 slamix.nl, 1 slamtradingcards.com.au, 1 slan.fr, 1 -slangbellor.com, 1 slaninka.eu, 1 slanterns.net, 1 slapen17.nl, 1 slaps.be, 1 -slapthesign.com, 1 slash64.co.uk, 1 slash64.uk, 1 slashbits.no, 1 @@ -127227,7 +126028,6 @@ slaughterhouse.fr, 1 slava.ml, 1 slavasoloviev.com, 1 slavasveta.info, 1 -slavblog.ru, 1 slaveykov.bg, 1 slavic401k.com, 1 slavira.ru, 1 @@ -127248,7 +126048,6 @@ sld08.com, 1 sldev.ovh, 1 sldlcdn.com, 1 sldonline.org, 1 -sleddogclub.com, 1 sledgeroofing.com, 1 sledwyoming.com, 1 sleekfellow.com, 1 @@ -127260,7 +126059,6 @@ sleepcouncil.org.uk, 1 sleepet.tw, 1 sleepig.com, 1 sleepily.tk, 1 -sleepingbaghub.com, 0 sleepingmattressreview.com, 1 sleepmap.de, 1 sleepo.ga, 1 @@ -127290,7 +126088,6 @@ sli.do, 1 slicehousefranchise.com, 1 sliceone.com, 1 slicklines.co.uk, 1 -slicss.com, 1 slidebatch.com, 1 slidefiftyfamily.tk, 1 slidemembers.com, 1 @@ -127592,10 +126389,8 @@ smartlocksmith.com, 1 smartlogreturns.com, 0 smartlogstock.com, 0 smartlogtower.com, 1 -smartlook.cz, 1 smartlooks.es, 1 smartmachine.com, 1 -smartmail.io, 1 smartmail24.de, 1 smartme.pl, 1 smartmeal.ru, 1 @@ -127663,11 +126458,10 @@ smash-gg.club, 1 smashbros-chile.tk, 1 smashbylaney.com, 1 smashcooper.tk, 1 -smashingconf.com, 1 +smashingconf.com, 0 smashingmagazine.com, 1 smashnl.tk, 1 smashno.ru, 1 -smatwebdesign.com, 0 smavesto.de, 1 smb-analytics.pw, 1 smb.wiki, 1 @@ -127847,7 +126641,6 @@ smsinger.com, 0 smsk.email, 1 smskeywords.co.uk, 1 smskmail.com, 1 -smsprivacy.org, 1 smstec.ru, 1 smstoreoficial.com.br, 1 smszone.tk, 1 @@ -127967,7 +126760,6 @@ sniep.net, 1 sniffing.gq, 1 sniffnfetch.com, 1 sniffy.ee, 1 -snight.co, 1 snip.software, 1 snipdrive.com, 1 sniper.sh, 1 @@ -127991,6 +126783,7 @@ snooker.tk, 1 snoot.club, 1 snorerx.com, 1 snoringtreatment.tk, 1 +snorkelaroundtheworld.com, 1 snortfroken.net, 1 snoska.ga, 1 snote.io, 1 @@ -128068,7 +126861,6 @@ soap-teco.com, 1 soapex.com, 1 soapsspoilers.com, 1 soar-npc.org, 1 -soaringtoglory.com, 1 soat.fr, 0 soatplus.com, 1 soax.com, 0 @@ -128088,7 +126880,6 @@ sobuj.me, 1 soc.net, 1 soc247.cloud, 1 socal-babes.com, 1 -socbayuc.com, 1 socblock.com, 1 soccer4live.com, 1 soccerking-store.com, 1 @@ -128159,7 +126950,6 @@ socialnous.co, 1 socialpa.ws, 1 socialplace.net, 1 socialproject.ml, 1 -socialprotection.gov.bd, 1 socials.gq, 1 socialsecurity.gov, 0 socialstrata.com, 1 @@ -128186,7 +126976,6 @@ sociedadsostenible.tk, 1 societatis.fr, 1 societe-chablaisienne-de-revetements.com, 1 societe-chablaisienne-de-revetements.fr, 1 -societemaraval.com, 1 societyawards.com, 1 societyofbur-q-ua.tk, 1 societyparty.ga, 1 @@ -128276,7 +127065,6 @@ soft-office.tk, 1 soft-resets.com, 1 soft-search-system.tk, 1 soft.taipei, 1 -soft3arbi.com, 1 soft41.ru, 1 soft4led.com, 1 softandbouncy.co.uk, 1 @@ -128401,7 +127189,6 @@ solanaroyale.com, 0 solandsimonasphalt.com, 1 solanocounty.gov, 1 solanowonen.nl, 1 -solar-electric-propulsion.pl, 1 solarace.tk, 1 solaradventures.icu, 1 solarafrica.com, 1 @@ -128430,7 +127217,6 @@ solarplan-berlin.de, 1 solarrights.org, 1 solarscan.com, 1 solarseason.ga, 1 -solarstats.net, 1 solarstrom.net, 1 solartek.cf, 1 solartek.ga, 1 @@ -128559,8 +127345,8 @@ solsea.io, 1 solsi.ga, 1 solsombra-abdl.com, 1 solsticecam.com, 1 +soltanastore.com, 1 solucion.gq, 1 -solucionesihd.com, 1 solucionesmk.online, 1 solucionupsperu.com, 1 solunet.com.ar, 1 @@ -128813,6 +127599,7 @@ sorcix.com, 1 sorellecollection.com.au, 1 sorellinteriors.com, 1 soren.xyz, 1 +sorenstudios.com, 1 sorex.photo, 1 sorin.cc, 1 sorincocorada.ro, 1 @@ -128886,7 +127673,6 @@ soste.fi, 0 sosteric.si, 1 sosuchki.com, 1 sosyalat.com, 1 -sosyalevin.com, 1 sosyalpro.com.tr, 1 sosz.org, 1 sota.sh, 1 @@ -128940,7 +127726,6 @@ soulshow.tk, 1 soulsinner.tk, 1 soulsteer.com, 0 soulwinning.tk, 1 -souly.cc, 1 soulyfunerals.co.nz, 1 soulyi.io, 1 soumen.tk, 1 @@ -129004,7 +127789,6 @@ soungui.com, 1 soungui.net, 1 soupbuahtaza.id, 1 sour.is, 1 -sourabhvourabh.com, 1 souravbhor.gq, 1 souravbhor.ml, 1 source-clan.tk, 1 @@ -129051,7 +127835,6 @@ southernlights.club, 1 southernlights.gq, 1 southernlights.ml, 1 southernlights.site, 1 -southernlights.world, 1 southernmost.us, 1 southernsecurity.org, 1 southernsurgicalga.com, 1 @@ -129141,7 +127924,6 @@ sowndfinancial.com, 1 sowsmallgarden.com, 1 sowtarabiya.com, 1 soybase.org, 1 -soychef.today, 1 soychile.cl, 1 soycomocomo.es, 1 soydoula.com, 1 @@ -129162,7 +127944,6 @@ soziale.email, 1 sozialismus.tk, 1 sozialistische-gruppe.de, 1 sozialy.com, 1 -sozole.eu, 1 sozon.ca, 1 sp-az.com, 1 sp-codes.de, 1 @@ -129170,7 +127951,6 @@ sp-consulting.ch, 1 sp-dh.com, 1 sp-gg.com, 1 sp-magic.de, 1 -sp-moebel.net, 1 sp-pn.com, 1 sp-sites.com.au, 1 sp.rw, 1 @@ -129228,7 +128008,6 @@ spaceunique.de, 1 spaceunique.eu, 1 spacinov.com, 1 spacivox.com, 1 -spackmanimages.com, 1 spackova.cz, 1 spacomic.com, 1 spaconnection.com, 1 @@ -129244,7 +128023,6 @@ spainemotions.com, 1 spaink.net, 1 spainpol.es, 1 spajk.cz, 1 -spalding-labs.com, 1 spalnobelyo.com, 1 spaltron.net, 1 spamasaurus.com, 1 @@ -129299,7 +128077,6 @@ sparanoidstatus.com, 1 sparatryggt.se, 1 spare.no, 1 spare.se, 1 -sparebusiness.com, 1 sparendirekt.at, 1 spargrancanaria.es, 1 sparkandglass.com, 1 @@ -129336,7 +128113,6 @@ spartacuslife.com, 1 spartaermelo.nl, 1 spartamet.tk, 1 spartan300.tk, 1 -spartanavenue.com, 1 spartanis.tk, 1 sparvagn.tk, 1 sparx.dog, 1 @@ -129365,7 +128141,6 @@ spbgorod.ru, 1 spbot.ml, 1 spc-ag.ch, 1 spcconnect.com, 1 -spclinic.pt, 1 spcollege.edu, 1 spconsult.com.br, 1 spctech.click, 1 @@ -129406,7 +128181,7 @@ specialcounsel.com, 1 speciale.cf, 1 specialeffect.tk, 1 specialelectronics.tk, 1 -specialist.srv.br, 1 +specialist.srv.br, 0 specialistskin.com.sg, 1 specialized-hosting.eu, 1 specialnoise.tk, 1 @@ -129421,7 +128196,7 @@ specialworld.ml, 1 speciauxquebec.com, 1 speciesism.com, 1 specificenergy.com, 1 -speciosapro.com, 1 +speciosapro.com, 0 speckle.systems, 1 speckrot.ru, 1 specks.tk, 1 @@ -129490,7 +128265,6 @@ speets.ca, 1 spegeltankar.tk, 1 speich.net, 1 spek.tech, 1 -spekit.com, 1 spelaspelautomater.ga, 1 speleo-explo.fr, 1 speleo.live, 1 @@ -129537,7 +128311,6 @@ sphereblur.com, 1 spherejoias.com.br, 1 sphericalmagic.com, 1 sphericalvision.cz, 1 -sphido.org, 0 spholdings.us, 1 sphynx-cats.com, 1 sphynxboyz.com.au, 1 @@ -129632,7 +128405,6 @@ spireat.it, 1 spirella-shop.ch, 1 spirent.com, 1 spirit-hunters-germany.de, 1 -spirit1019.com, 1 spirit55555.dk, 1 spiritbionic.ro, 1 spiritdesigns.tk, 1 @@ -129712,7 +128484,6 @@ spookbook.net, 1 spookquest.com, 1 spooks.ga, 1 spookyinternet.com, 1 -spoonnspice.com, 1 spoorcam.nl, 1 sporadesnews.gr, 1 sporenvanslavernijutrecht.nl, 1 @@ -129819,7 +128590,6 @@ sportwettenbonus.de, 1 sportwettenschweiz.net, 1 sportygirlsjewels.ga, 1 sportztalk.com, 1 -sporyayinevi.com, 1 spot-cleaner.tk, 1 spot-pro.jp, 1 spotifycodes.com, 1 @@ -129900,6 +128670,7 @@ springdalewi.gov, 1 springerundpartner.de, 1 springfieldbricks.com, 0 springfieldchartertownship.gov, 1 +springfieldneurological.com, 1 springfieldsd.gov, 1 springfieldvt.gov, 1 springgrillhouse.com, 1 @@ -130040,7 +128811,6 @@ squaresolutions.com, 1 squarestagingexternal.com, 1 squareup.com, 1 squareupsandbox.com, 1 -squattra.com, 1 squeakie.club, 1 squeaksscalesandtails.com, 1 squeaky.services, 1 @@ -130088,7 +128858,6 @@ sreenadh.in, 1 sremodelingnyc.com, 1 srfloki.com, 1 srhdesign.co.uk, 1 -srherald.com, 1 sri.com.pa, 0 sridevi.ru, 1 srife.net, 1 @@ -130297,7 +129066,6 @@ stablelib.com, 1 stablina.tk, 1 stacabinetdepot.com, 1 stacisezeptat.cz, 1 -stackblogging.com, 1 stackery.io, 1 stackhub.cc, 1 stacklasvegas.com, 1 @@ -130501,7 +129269,6 @@ standheizung-shop.de, 1 standiluminaciones.com, 1 standingbear.tk, 1 standoffarena.com, 1 -standoffdrop.com, 1 standoffdrop.ru, 1 standsearch.cf, 1 standupcomedy.cf, 1 @@ -130614,6 +129381,7 @@ staroch.name, 1 starorusing.com, 0 starover.tk, 1 starpeak.org, 1 +starphonefix.com, 1 starpoles.com, 1 starprime.ch, 1 starprime.de, 1 @@ -130718,7 +129486,6 @@ starvizyon.com, 1 starwarschronology.com, 1 starwatches.eu, 1 starx.ink, 1 -starzfilm.com, 1 stasia.ml, 1 stasiniewicz.com, 1 stass.eu, 1 @@ -130763,7 +129530,6 @@ stationary-traveller.eu, 1 stationaryengines.tk, 1 stationcharlie.co.za, 1 stationmedia.tk, 1 -stationstuinenbarendrecht.nl, 1 statistician-online.com, 0 statistik-seminare.de, 1 statistikian.com, 1 @@ -130809,7 +129575,6 @@ stayinbusiness.nl, 1 staylovely.tk, 1 stayme.cz, 1 stayokay.com, 1 -staytokei.com, 1 stazi.tk, 1 stb-schefczyk.com, 1 stb-schefczyk.de, 1 @@ -130972,7 +129737,6 @@ steinibox.de, 1 steinmassl.org, 1 steinmetz.cloud, 1 stekelenburg.me, 1 -steklein.de, 1 stelem.com, 1 stelfox.net, 1 stelga.ca, 1 @@ -131017,7 +129781,6 @@ stemcellclinic.tech, 1 stemcellclinic.vip, 1 stemcellclinic.world, 1 stemcellsscotland.co.uk, 1 -stemcellstherapynyc.com, 1 stemderbomen.tk, 1 stemgirls.co.za, 1 stemklank.tk, 1 @@ -131037,6 +129800,7 @@ step2web-cms.info, 1 stepanvanek.cz, 1 stepanyansurgical.com, 1 steparovi.cz, 1 +stepbrobd.com, 1 steph.ninja, 0 steph3n.me, 1 stephan-matthiesen.de, 1 @@ -131166,7 +129930,6 @@ stevensautotopsandupholstery.com, 1 stevenscountymn.gov, 1 stevenshame.com, 1 stevenski.com, 0 -stevenson.io, 1 stevensonal.gov, 1 stevenspoint.gov, 1 steventress.com, 1 @@ -131179,7 +129942,6 @@ steveoswald.tk, 1 stevepacheco.com, 1 stevereedmp.co.uk, 1 stevesbriefmovierecommendations.com, 1 -steveshauntedyard.com, 1 stevezheng.cf, 1 stevezheng.tk, 1 stevezone.in, 1 @@ -131386,7 +130148,6 @@ stnl.de, 0 stntrading.eu, 1 sto-garant.nl, 1 sto.ne, 1 -stock-ai.com, 1 stock-analysis-on.net, 1 stockageprive.net, 1 stockanalysis.com, 1 @@ -131398,7 +130159,6 @@ stockholm.ga, 1 stockholm.se, 1 stockholmpride.org, 1 stockhuntertrading.com, 1 -stockideas.club, 1 stockilluminati.com, 1 stockmarkettoday.news, 1 stockmeta.jp, 1 @@ -131476,7 +130236,6 @@ stonefusion.org.uk, 1 stonegatewealth.com, 0 stonegray.ca, 1 stonehammerhead.org, 1 -stonehillpace.com, 1 stonehurstcap.com, 1 stonemain.eu, 1 stonemanbrasil.com.br, 1 @@ -131511,7 +130270,6 @@ stoomtreinreizen.nl, 1 stoomtreinreizen.org, 1 stop-acouphenes.ch, 1 stop-activ.ga, 1 -stop-bankrotstvu.ru, 1 stop-microsoft.org, 1 stop-nikotin.tk, 1 stop-russia.tk, 1 @@ -131609,7 +130367,6 @@ stormestudios.tk, 1 stormfest.tk, 1 stormhub.ml, 1 stormi.io, 1 -stormininnorman.com, 1 stormlab.tk, 1 stormrider.tk, 1 stormwatcher.org, 1 @@ -131687,7 +130444,6 @@ strakertranslations.com, 1 strakh.tk, 1 strakonak.cz, 1 stralau.kicks-ass.net, 1 -stralenpoedercoaten.nl, 1 stralingsonzin.com, 1 strana-snov.tk, 1 strana.ga, 1 @@ -131887,7 +130643,6 @@ strijkshop.be, 1 strikeone.io, 1 strikeout.ga, 1 strikers.cf, 1 -strikers.futbol, 1 strikevectorex.com, 1 strikezonesalessystems.com, 1 strings.cf, 1 @@ -131895,7 +130650,6 @@ stripe.com, 1 stripe.network, 1 stripecdn.com, 1 striped.horse, 1 -striperite.com, 1 stripped-anarchy.xyz, 1 strippersinthehoodxxx.com, 1 striptizer.tk, 1 @@ -131956,7 +130710,6 @@ stropek.eu, 1 strophicmusic.com, 1 stropkova.eu, 1 strosebelmar.com, 1 -stroseoflima.com, 1 strotmann.de, 1 strousberg.net, 1 stroy-klg.ru, 1 @@ -132010,12 +130763,10 @@ stuartmorris.name, 1 stuartmorris.tel, 1 stuartmoving.com, 1 stuartparsons.com, 1 -stuartwilsonhair.co.uk, 1 stubbings.de, 0 stubbingsmail.de, 1 stubbmail.de, 1 stubentiga.de, 1 -stuc-groep.nl, 1 stuccokingsfl.com, 1 stuckateur-bruno.de, 0 stucki-bagger.ch, 1 @@ -132070,7 +130821,6 @@ studio-n.pl, 1 studio-np.ru, 1 studio-one.ru, 1 studio-satellite.com, 1 -studio1213.us, 1 studio32.tk, 1 studio4101.ga, 1 studio413.net, 1 @@ -132111,6 +130861,7 @@ studiolupotti.it, 1 studiomarcella.com, 1 studiomenfis.com, 1 studionowystyl.pl, 1 +studiopanamaitalia.com, 1 studiopirrate.com, 1 studioriehl.com, 1 studioshiftup.net, 1 @@ -132181,7 +130932,6 @@ stumpblog.com, 1 stunnel.org, 1 stunner.watch, 1 stunning-dresses.com, 1 -stunningafricandresses.com, 1 stunningautos.com, 1 stunningbikecotours.com, 1 stunninggdansk.com, 1 @@ -132395,7 +131145,6 @@ sudanindependent.net, 1 sudaraka.org, 0 suddenlysavvy.com, 1 sudeleycastle.co.uk, 1 -sudmotor-occasions.be, 1 sudo.li, 1 sudo.ws, 1 sudoash.com, 1 @@ -132480,7 +131229,6 @@ sujoydhar.in, 1 sukamusik.tk, 1 suke3.jp, 1 suki.moe, 1 -sukirastore.com, 1 sukiu.net, 1 sukker-oaxaca.com, 1 sukoyakapp.com, 1 @@ -132562,7 +131310,6 @@ summerfieldtwpmonroemi.gov, 1 summerjam.de, 1 summermc.cc, 1 summermovies.nyc, 1 -summerslandingwr.com, 1 summerstylessalon.com, 1 summing.ga, 1 summit-humanpotential.com, 1 @@ -132606,7 +131353,6 @@ sunbit.com, 1 sunblind.tk, 1 sunbnice.com, 1 sunburstdata.com, 1 -sunbury.xyz, 1 sunby.jp, 1 sunby.org, 1 suncanary.tk, 1 @@ -132658,6 +131404,7 @@ sunhaoxiang.net, 1 sunhills23.ru, 1 sunho.net.tw, 1 suniru.com, 0 +sunjaydhama.com, 1 sunjiutuo.com, 1 sunjob.tk, 1 sunkar.tk, 1 @@ -132678,7 +131425,6 @@ sunnynetworks.net, 1 sunnyoxygen.xyz, 1 sunnyside-jazzclub.com, 1 sunnysideinc.ca, 1 -sunnysin.net, 1 sunnyssingh.tk, 1 sunnyx3m.com, 1 sunokuran.tk, 1 @@ -132789,7 +131535,7 @@ super60.org, 1 super60plus.de, 1 superaficionados.com, 1 superalem.org, 1 -superb.games, 1 +superb.games, 0 superb.net, 1 superbart.nl, 1 superbaskirskij-med.tk, 1 @@ -132821,7 +131567,6 @@ supercorp.cf, 1 supercours.net, 1 superdaddy.club, 1 superdeals.cf, 1 -superdevtools.com, 1 superdolly.cf, 1 superdolly.ga, 1 superdolly.gq, 1 @@ -132894,7 +131639,6 @@ supernaturalbrand.com, 1 supernaut.info, 1 supernogi.ga, 1 supernovicebaker.com, 1 -superops.ai, 1 superpaczka24.pl, 1 superpase.com, 1 superpi.noip.me, 1 @@ -132902,7 +131646,6 @@ superpollo.com.ec, 1 superpowerexperts.com, 1 superraclette.fr, 1 supersahnetorten.de, 1 -supersandro.de, 1 superseguros.gob.do, 1 superservers.ml, 1 supershrooms.nl, 1 @@ -132914,7 +131657,6 @@ supersocial.net, 1 supersole.net, 0 supersolenoid.tk, 1 supersonicsoft.com, 1 -superspeller.ng, 1 superstargossip.com, 1 superstarhost.tk, 1 superstart.tk, 1 @@ -132946,6 +131688,7 @@ supholsterycleaningsydney.com.au, 1 supioka.com, 1 suplementasi.com, 1 suplery.com, 1 +suplindex.com, 1 suplments.co.uk, 1 suplments.com, 1 suplments.de, 1 @@ -132992,7 +131735,6 @@ supraelco.com, 1 suprax365.tk, 1 suprem.biz, 0 suprem.ch, 0 -supremaa.com, 1 supremacrypt.com, 1 supreme-council.me, 1 supreme-court.tk, 1 @@ -133011,7 +131753,7 @@ suravi.in.net, 1 suraya.online, 1 sure-it.de, 1 surebets.bet, 1 -surecloud.com, 1 +surecloud.com, 0 surefit-oms.com, 1 surefleet.com.au, 1 surelyhired.com, 1 @@ -133022,7 +131764,6 @@ surf1969.tk, 1 surfacespots.ga, 1 surfandturfroofing.com, 1 surfenergy.tk, 1 -surfinglisbon.com, 1 surfkath.de, 1 surflessonslisbon.com, 1 surfnetkids.com, 1 @@ -133160,7 +131901,7 @@ suwanneecountyfl.gov, 1 suwanya.cn, 1 suwcountyfl.gov, 1 suwebcreativa.com, 1 -suyati.com, 1 +suyati.com, 0 suzannejauchius.com, 1 suzansalem.nl, 1 suzdalgrad.cf, 1 @@ -133199,6 +131940,7 @@ svantner.sk, 1 svarka22.ml, 1 svarka24.com.ua, 1 svarka26.gq, 1 +svarmax.com.ua, 1 svarovani.tk, 1 svatba.cf, 1 svatba.ml, 1 @@ -133210,7 +131952,6 @@ svc-sitec.com.mx, 1 svc-sitec.org, 1 svc-studioslive-api-dev.azurewebsites.net, 1 svc-tools.ru, 1 -svc.bike, 1 svc1.xyz, 1 svdb.co, 0 sve-hosting.nl, 1 @@ -133301,6 +132042,7 @@ svse.global, 1 svseglobal.com, 1 svsewerut.gov, 1 svswebmarketing.com, 1 +svtemplemn.org, 1 svtl.ch, 1 svtr.de, 1 svtv.org, 1 @@ -133492,6 +132234,7 @@ swiss-watch.com.ua, 1 swissaquashop.ch, 1 swissbearfoodservices.com, 1 swissbit.com, 1 +swissborg.com, 1 swisscannabis.club, 1 swisschat.tk, 1 swissdomaintrustee.ch, 1 @@ -133552,7 +132295,6 @@ swparegionalcad.gov, 1 swpat.org, 1 swprowood.com, 1 swqa.hu, 1 -swrelay.net, 1 swretail.ga, 1 swtp-p-appsrv-coordination-backend-businessservices1.azurewebsites.net, 1 swtp-p-appsrv-donorevaluation-api-businessservices1.azurewebsites.net, 1 @@ -133745,6 +132487,7 @@ sys-admin.fr, 1 sys-stat.de, 1 sys-state.de, 1 sys-tm.com, 1 +sys.as, 1 sys001-homenet.duckdns.org, 1 sysadmin.pm, 1 sysadmin.xyz, 0 @@ -133763,7 +132506,6 @@ sysconautomation.com, 1 syscoon.com, 1 sysctl.se, 1 syscurve.com, 1 -sysdams.com, 1 sysdb.io, 1 syselg.com, 1 sysert.tv, 0 @@ -134059,6 +132801,7 @@ taborsky.cz, 1 tabpanelwidget.com, 1 tabrizbiology.tk, 1 tabserectilecheap.com, 1 +tabtap.shop, 1 tabular.tools, 1 tabulartools.com, 1 taburetka.ua, 1 @@ -134086,7 +132829,6 @@ tactical.zone, 1 tacticalavocado.com, 1 tacticalsquare.com, 0 tacticalvote.co.uk, 1 -tacticalwebmedia.com, 1 tactile.love, 1 tactportal.com, 1 tactus.nl, 1 @@ -134094,7 +132836,6 @@ tad.ua, 1 tadaaam.studio, 1 tadabase.io, 1 tadalafil-tablets.tk, 1 -tadalafilbtab.com, 1 tadalafilindia.gq, 1 taddiestales.com, 1 tadj-mahalat.com, 0 @@ -134199,7 +132940,7 @@ taipei2025.com, 1 taipei2038.com, 1 taishon.nagoya, 1 taitlinstudio.com, 1 -taittowers.com, 1 +taittowers.com, 0 taiwan-kitchen.com, 1 taiwanbible.com.tw, 1 taiwanhotspring.net, 1 @@ -134255,7 +132996,6 @@ takepicturesleavefootprints.com, 1 takeshi.cz, 1 takestars.tk, 1 takethatspainfanclub.tk, 1 -takeyourpic.co.uk, 1 takezo.tk, 1 takhfifeirani.ir, 1 taki.sh, 1 @@ -134289,7 +133029,6 @@ talakacaruli.tk, 1 talalaok.gov, 1 talcualdigital.com, 1 taldia.es, 1 -taleatherworks.com, 1 taleblooplastic.ir, 1 talendipank.ee, 1 talengo.com, 1 @@ -134310,10 +133049,10 @@ talentplatform.ca, 1 talentplatform.com, 1 talentplatform.eu, 1 talentplatform.us, 1 +talentsplit.com, 1 talentstimuleren.nl, 1 talentuar.com, 1 talentwall.io, 1 -taler-systems.com, 1 taler.net, 1 talerakademiet.dk, 1 talesbazaar.com, 1 @@ -134333,7 +133072,6 @@ talkeducation.com, 1 talkgadget.google.com, 1 talki.tk, 1 talkinators.tk, 1 -talking12.com, 1 talkingbittersweet.com, 1 talkingmoose.net, 0 talkingtodrake.tk, 1 @@ -134461,7 +133199,6 @@ tandemexhibits.com, 1 tandempartnerships.com, 0 tandemtransport.ca, 1 tandhoutdoors.com, 1 -tandtroomtransformations.ca, 1 tandzorg.link, 1 taneytownmd.gov, 1 tangai.tk, 1 @@ -134544,7 +133281,6 @@ tao-energie.tk, 1 taoaworld.com, 1 taoburee.com, 0 taodung.com, 1 -taogames.net, 1 taoismus.eu, 1 taolu.tv, 1 taolu168.com, 1 @@ -134565,7 +133301,6 @@ tapestries.tk, 1 tapestryjournal.com, 1 tapesvip.xyz, 1 tapetenresonanz.de, 1 -tapisdemarche.com, 1 taplemon.at, 1 taplemon.com, 1 tapmat.com, 1 @@ -134796,7 +133531,7 @@ tax-brain.net, 1 tax-guard.com, 1 taxandor.com, 1 taxassist.co.uk, 1 -taxationweb.co.uk, 0 +taxationweb.co.uk, 1 taxboard.gov.au, 1 taxborn.com, 0 taxdispute.win, 1 @@ -134818,7 +133553,6 @@ taxi-puck.pl, 1 taxi-tienen.com, 1 taxi-zakaz.ml, 1 taxi24.ml, 1 -taxi2opo.com, 0 taxi7.be, 1 taxibiz.ga, 1 taxicollectif.ch, 0 @@ -134886,6 +133620,7 @@ tbatr.tk, 1 tbbank.gov.tm, 0 tbcinteriorismo.com, 1 tbcloud.site, 0 +tbebkom.com, 1 tbejos.com, 1 tbfocus.com, 1 tbi.equipment, 1 @@ -134900,6 +133635,7 @@ tbkwatch.org.za, 1 tbld.gov, 1 tblflip.de, 1 tblnk.de, 1 +tbonejs.org, 1 tbox.net, 1 tbpchan.cz, 1 tbq-s.com, 1 @@ -135036,6 +133772,7 @@ teachbase.ru, 1 teachbiz.net, 1 teacher.org, 1 teachercall.kr, 1 +teachermommylife.com, 1 teachernewsbd.com, 1 teacherph.com, 1 teacherph.net, 0 @@ -135096,14 +133833,6 @@ teamawesome.ga, 1 teamb.nl, 1 teambalinge.tk, 1 teambanzai.tk, 1 -teambeam.at, 0 -teambeam.ch, 0 -teambeam.com, 0 -teambeam.de, 0 -teambeam.es, 0 -teambeam.eu, 0 -teambeam.fr, 0 -teambeam.it, 0 teambeam.ru, 0 teambee.tk, 1 teambim.eu, 1 @@ -135241,6 +133970,7 @@ tease.email, 1 teasenetwork.com, 1 teaser-trailer.com, 1 teasers.ga, 1 +teaterbristol.se, 1 teatrarium.com, 1 teatrebarcelona.com, 1 teatroutopia.tk, 1 @@ -135270,6 +134000,7 @@ tecart-system.de, 0 tecart.de, 1 tecartcrm.de, 1 tecatebeerusa.com, 1 +tecdoor.pt, 1 tece.com, 1 tece.de, 1 tecfix.com, 1 @@ -135310,9 +134041,7 @@ techask.it, 1 techassist.io, 0 techatt.com, 1 techava.ru, 1 -techbayleaf.com, 1 techbelife.com, 1 -techbin.org, 1 techbizidea.com, 1 techbmc.com, 1 techbrawl.org, 1 @@ -135475,7 +134204,6 @@ technologydesigning.ga, 1 technologydigital.tk, 1 technologyecho.ga, 1 technologyecho.tk, 1 -technologyhound.org, 1 technologyinformation.tk, 1 technologyintergrity.ga, 1 technologyjust.ga, 1 @@ -135566,7 +134294,6 @@ techsecrets.tk, 1 techsee.me, 1 techserve.ml, 1 techsharetx.gov, 1 -techshielding.com, 1 techshift.eu, 1 techshift.nl, 1 techshift.se, 1 @@ -135596,7 +134323,6 @@ techvel.pl, 1 techview.link, 1 techviewforum.com, 1 techvigil.org, 1 -techvillian.com, 1 techvision.tk, 1 techvoice.tk, 1 techwalker.cf, 1 @@ -135658,7 +134384,6 @@ tecnyal.com, 1 tecob.com, 1 tecon.co.at, 1 tecorrs.tk, 1 -tecoz.store, 1 tecparsnet.ir, 1 tecpartnership.com, 1 tecra.com, 1 @@ -135684,7 +134409,6 @@ teddybearsnextadventure.com, 1 teddykatz.com, 1 teddyss.com, 0 teddywayne.com, 1 -tederomero.com, 1 tedhardy.com, 1 tedirgin.tk, 1 tedroche.com, 1 @@ -135788,7 +134512,6 @@ teknikaldomain.me, 1 tekniksnack.se, 1 teknisetdemarit.fi, 1 tekniskakustik.se, 1 -tekno-dream.com, 1 teknodaim.com, 1 teknoforums.com, 1 teknogeek.id, 1 @@ -135800,6 +134523,7 @@ teknorix.com, 1 teknosa.com, 0 teknotiq.com, 1 teknow.tk, 1 +teknoweek.com, 0 teko.se, 1 tekpon.com, 1 tekshrek.com, 0 @@ -135821,7 +134545,6 @@ telco.si, 1 telcodb.net, 1 telcu.com, 1 teldak.pt, 1 -teldoop.my.id, 1 tele-alarme.ch, 1 tele-assistance.ch, 0 tele-points.net, 1 @@ -135885,8 +134608,6 @@ teleogistic.net, 1 telephonedirectories.us, 1 telephoni-cdma.tk, 1 telepilote-academy.fr, 1 -telepizza.com, 1 -telepizza.es, 1 telepok.com, 1 telepons.com, 1 teleport.com.br, 1 @@ -135976,6 +134697,7 @@ temogroup.com, 1 temogroup.org, 1 temogroupe.com, 1 temoinfidele.fr, 1 +temoinfo.com, 1 temonews.com, 1 temonews.org, 1 temp-lars.army, 1 @@ -136033,7 +134755,7 @@ tendanceaumasculin.fr, 1 tendanceouest.com, 1 tendaqu.com, 1 tende.roma.it, 1 -tendergrupp.ru, 0 +tendergrupp.ru, 1 tenderned.nl, 1 tenderstem.co.uk, 1 tenderstem.ie, 1 @@ -136084,6 +134806,7 @@ tenshoku-hanashi.com, 1 tenshokudo.com, 1 tenshokufair.jp, 1 tent.io, 1 +tenta.com, 1 tentacle.monster, 1 tentacle.net, 1 tentacletank.com, 1 @@ -136217,7 +134940,6 @@ terramineira.com.br, 1 terraneesens.fr, 1 terranimo.re, 1 terranovadesignbuild.com, 1 -terrapinstationmd.com, 1 terraquercus.tk, 1 terrariatr.tk, 1 terrarium.tk, 1 @@ -136281,7 +135003,6 @@ tesseract.wiki, 1 tesseractinitiative.org, 1 tessierashpool.de, 1 tessla.org, 1 -test-coz.online, 1 test-deployment.xyz, 1 test-eligibilite-isolation.com, 1 test-iq.gq, 1 @@ -136359,7 +135080,6 @@ testscript.ml, 1 testservice.nl, 1 testsitefortask.xyz, 1 testsity.tk, 1 -testsnelcovid.nl, 1 testspsicotecnicos.org, 1 testsweb.ml, 1 testthis.cf, 1 @@ -136410,7 +135130,7 @@ tewarilab.co.uk, 1 tewhare-iti.co.nz, 1 tewkesburyyoga.com, 1 tex-izol.ru, 1 -texaport.co.uk, 1 +texaport.co.uk, 0 texarkanatexas.gov, 1 texarkanatherapycenter.com, 1 texasbluesalley.com, 1 @@ -136446,7 +135166,6 @@ texicopolicenm.gov, 1 texier.mx, 1 texkey.com, 1 texkings.com, 1 -texnogu.ru, 1 texnoguru.tk, 1 texnolog.tk, 1 texnotroniks.tk, 1 @@ -136677,7 +135396,6 @@ the-metropolitans.tk, 1 the-muddy-trophy-team.tk, 1 the-mudmen.tk, 1 the-naked.com, 1 -the-nash-education-program.com, 1 the-opposites.tk, 1 the-pcca.org, 1 the-pressoffice.com, 1 @@ -136749,7 +135467,6 @@ thearchimag.tk, 1 thearizonatribune.com, 1 thearkfamily.org, 1 thearmchairtrader.com, 0 -thearmypainter.com, 0 theasianshooters.com, 1 theastrocoach.com, 1 theataraxia.tk, 1 @@ -136781,17 +135498,16 @@ thebakery2go.de, 1 thebalancedsystem.org, 1 thebannerstore.com, 1 thebarclay.org, 1 -thebarkofhinkle.com, 1 thebarrens.nu, 1 thebasementdefender.com, 1 thebasementdefender.net, 1 thebasicstudio.com, 1 thebathroomexchange.ga, 1 -thebcm.co.uk, 1 thebeatyard.nl, 1 thebeaulife.co, 1 thebeautyqueen.tk, 1 thebedfordcitizen.org, 1 +thebeeyard.org, 1 thebeginningviolinist.com, 1 thebenefitcalculator.com, 1 thebengalinews.tk, 1 @@ -136827,6 +135543,7 @@ theblankenshipfirm.com, 1 theblink.com, 1 theblisters.tk, 1 theblock.co, 1 +theblog.cn, 1 theblogstarter.com, 1 theblondeabroad.com, 0 theblue.tk, 1 @@ -136889,7 +135606,6 @@ thecameradivision.com, 1 thecanadarace.com, 1 thecandidforum.com, 1 thecandystore.tk, 1 -thecanuckway.com, 1 thecardcloset.com, 1 thecarolingconnection.com, 1 thecarpenters.tk, 1 @@ -136908,6 +135624,7 @@ thecfef.org, 1 thechaikinreport.com, 1 thechallenge.fit, 1 thechandigarhcity.com, 1 +thechargertimes.com, 1 thechatlinenumbers.com, 1 thechauffeur-international.com, 1 thechavs.xyz, 1 @@ -137019,7 +135736,6 @@ thedefiled.tk, 1 thedelaunay.com, 1 thedemocraticstrategist.org, 1 thedermdetective.com, 1 -thedesk.net, 1 thedev.id, 1 thedevastatedrealm.tk, 1 thedevilsbrigade.com, 1 @@ -137108,7 +135824,6 @@ thefasthire.org, 1 thefastmode.com, 1 thefatduck.co.uk, 1 thefatlosspuzzle.com, 0 -thefbstalker.com, 1 theferrarista.com, 0 thefibreapp.com, 1 thefieldservicecompany.nl, 1 @@ -137156,11 +135871,9 @@ thefussyeater.ie, 1 thefuturetech.ga, 1 thegab.in, 1 thegadget.tk, 1 -thegadgetflow.com, 1 thegallery-restaurant.co.uk, 1 thegamecave.co.uk, 1 thegamecollector.tk, 1 -thegamesroom.tv, 1 thegantars.tk, 1 thegasshop.co.uk, 1 thegasshop.uk, 1 @@ -137248,7 +135961,6 @@ thehomebarista.com, 1 thehomemademasks.com, 1 thehomeofthefuture.com, 1 thehoney.ga, 1 -thehoneyfactory.de, 0 thehonorguard.org, 1 thehookup.be, 1 thehopefuture.com, 1 @@ -137264,10 +135976,8 @@ thehumancondition.com, 1 thehumanizer.tk, 1 thehumanjoint.com, 1 thehumorist.tk, 1 -thehuskyhaul.com, 1 theideaskitchen.com.au, 1 theidiotboard.com, 1 -theig.co, 1 theimagefile.com, 1 theimaginationagency.com, 1 theinboxpros.com, 1 @@ -137288,7 +135998,6 @@ theinventory.com, 1 theinvisibleman.tk, 1 theipkeeper.co.uk, 1 theislandtime.com, 1 -theislandwellness.com, 1 theissen.io, 1 theitaliantimes.it, 1 theitsage.com, 0 @@ -137317,7 +136026,7 @@ thekitchngic.com, 1 thekitsunesden.com, 1 thekittivibe.com, 1 thekliniquehotdeal.com, 1 -theknightrider.com, 0 +theknightrider.com, 1 theknittingnetwork.co.uk, 1 theknockout.tk, 1 theknowitguy.com, 1 @@ -137428,7 +136137,6 @@ themiddle.co, 1 themiddlewoman.com.au, 1 themify.me, 1 themify.org, 1 -themightykeypad.com, 1 themigraineinstitute.com, 1 themilanlife.com, 1 themilfmovies.com, 1 @@ -137465,7 +136173,6 @@ thenation.tk, 1 thenational.academy, 1 thenaturalpath.co.nz, 1 theneatgadgets.com, 1 -thenerdic.com, 1 thenest.se, 1 thenetw.org, 1 thenew3rs.org, 1 @@ -137499,7 +136206,6 @@ theo546.cloud, 1 theo546.fr, 1 theo546.ovh, 1 theoakageexperiment.com, 1 -theoaksatlanier.com, 1 theoasis.co.nz, 1 theobg.co, 1 theobromos.fr, 0 @@ -137507,7 +136213,6 @@ theoc4ever.tk, 1 theocharis.org, 1 theocjournal.tk, 1 theocoffee.com, 0 -theocourt.com, 1 theocracy.tk, 1 theocratic.cf, 1 theocratic.tk, 1 @@ -137527,12 +136232,10 @@ theoldschoolgamevault.com, 1 theolodewijk.nl, 1 theologique.ch, 1 theome.ga, 1 -theomegagroup.co.uk, 1 theonegroup.co.uk, 0 theonethaimassage.de, 1 theonikage.tk, 1 theonion.com, 1 -theonlinecentre.com, 1 theonyxzone.com, 1 theoosmetalart.nl, 1 theopaczek.com, 1 @@ -137547,7 +136250,6 @@ theoriginalcandid.com, 1 theoriginalmarkz.com, 1 theoriginalworkshop.com, 1 theorioncorrelation.com, 1 -theorlandocriminaldefense.com, 1 theory-test-online.co.uk, 1 theory.org, 1 theoryofmind.tk, 1 @@ -137749,7 +136451,6 @@ thesatriantoshow.tk, 1 thesaturdaypaper.com.au, 1 thescienceofdeduction.tk, 1 thescientists.nl, 1 -thescriptinc.com, 1 thescriptzone.tk, 1 theseal.tk, 1 thesearch.com.tw, 1 @@ -137809,14 +136510,12 @@ thesocialmediacentral.com, 1 thesomepeople.org, 1 thesoundproofwindows.co.uk, 1 thesoundstageatstrangeland.com, 1 -thesouthern.com, 1 thespacegame.tk, 1 thespanishcollection.com, 1 thespiritfm.tk, 1 thespoiler.co.il, 1 thesponsorshipguy.com, 0 thesportsroom.tv, 1 -thesslstore.in, 1 thestandards.tk, 1 thestatementjewelry.com, 1 thestationatwillowgrove.com, 1 @@ -137868,7 +136567,6 @@ thethreepercent.marketing, 1 thethymevortex.zapto.org, 1 thetinylife.com, 1 thetinymom.com, 1 -thetipo.rocks, 1 thetipo01.tk, 1 thetogbox.cf, 1 thetomharling.com, 1 @@ -137941,7 +136639,6 @@ thevolte.com, 1 thevoya.ga, 0 thewagesroom.co.uk, 1 thewalkerz.tk, 1 -thewalkingdeadfrance.org, 1 thewallet.today, 1 thewarehousefellowship.org, 1 thewatchdog.com.br, 1 @@ -137966,7 +136663,6 @@ thewhitedog9487.xyz, 1 thewhitehorses.tk, 1 thewhiterabbit.space, 1 thewhitneypaige.com, 1 -thewhizkids.be, 1 thewickedclan.tk, 1 thewiki.kr, 1 thewindow.com, 1 @@ -137981,7 +136677,7 @@ thewish.tk, 1 thewolseley.com, 1 thewombatsict.com.au, 1 thewomen.tk, 1 -thewomensbusinesscenter.com, 1 +thewomensbusinesscenter.com, 0 thewoodkid.com.au, 1 thewoodlandsviplimousine.com, 1 thewoods.earth, 1 @@ -138015,7 +136711,6 @@ theyarnhookup.com, 0 theycallmesnail.tk, 1 theyear199x.org, 1 theyearinpictures.co.uk, 1 -theyellow.fish, 1 theyosh.nl, 1 theysocial.tk, 1 thezillersathenshotel.com, 1 @@ -138079,7 +136774,6 @@ thingswithleaves.co.uk, 1 think-ai.eu, 1 think-positive-watches.de, 1 think.law, 1 -thinkaheadcomix.com, 1 thinkbigdobig.tk, 1 thinkbot.de, 1 thinkbrands.co.uk, 1 @@ -138103,7 +136797,6 @@ thinkingfaith.org, 1 thinkingliberty.com, 1 thinkingnull.com, 0 thinkingplanet.net, 1 -thinkinitalian.com, 1 thinkittech.com, 1 thinkmaking.org, 1 thinkmarketing.ca, 1 @@ -138130,7 +136823,6 @@ thiscloudiscrap.com, 0 thisdayinhockey.tk, 1 thisdot.site, 1 thisfreelife.gov, 1 -thishousedoesnotexist.org, 1 thisis.id, 1 thisisacompletetest.ga, 1 thisisarecording.com, 1 @@ -138195,7 +136887,6 @@ thomaspic.com, 1 thomaspluschris.com, 1 thomasrichter.de, 1 thomass.tk, 1 -thomasstevensmusic.com, 0 thomastestor.tk, 1 thomastimepieces.com.au, 1 thomastonmaine.gov, 1 @@ -138695,7 +137386,7 @@ tiltedscalescollective.org, 1 tiltedwindmillcrafts.com, 1 tiltedwindmillpress.com, 1 tilvids.com, 1 -tilyexpress.ug, 1 +tilyexpress.ug, 0 tilysthings.com, 1 tim-demisch.com, 1 tim-demisch.de, 1 @@ -138749,7 +137440,6 @@ timecarrot.tk, 1 timecheck.tk, 1 timedin.net, 1 timefor.tk, 1 -timeforcoffe.eu, 1 timeglass.de, 1 timelapsetv.tk, 1 timeless-photostudio.com, 1 @@ -139081,7 +137771,6 @@ tkhsurgery.com, 1 tki.jp, 1 tkiely.net, 1 tkirch.de, 1 -tklist.us, 1 tklm.pl, 1 tkmr-gyouseishosi.com, 1 tkn.me, 1 @@ -139109,6 +137798,7 @@ tlercher.de, 1 tlicycling.com, 1 tlingitandhaida.gov, 1 tljcw.com, 1 +tlmedia.online, 1 tlmicorp.com, 1 tln.lib.ee, 1 tlo.xyz, 1 @@ -139170,7 +137860,6 @@ tmi-produkter.se, 1 tmin.cf, 1 tmirz.ml, 1 tmj4.com, 1 -tmlc.eu.org, 1 tmm.cx, 1 tmmapps.com, 1 tmobilethuis.nl.eu.org, 1 @@ -139183,7 +137872,6 @@ tmredondela.tk, 1 tmryan.co.uk, 1 tmshea.com, 1 tmstats.fr, 1 -tmtopup.com, 0 tn-bb.com, 1 tn0.club, 1 tnb-plattform.de, 1 @@ -139219,7 +137907,6 @@ to.cm, 1 to.gt, 1 to.md, 1 to4ka.md, 0 -toabr.de, 1 toachina.com, 1 toad.ga, 1 toade.com, 1 @@ -139321,7 +138008,6 @@ todayfinancial.news, 1 todayhap.net, 1 todayjobs.pk, 0 todaylearn.tk, 1 -todaymagazine.net, 1 todaymeow.com, 1 todayprice.ga, 1 todaysbestinsurance.com, 1 @@ -139346,7 +138032,7 @@ tododescarga.tk, 1 todoescaperooms.com, 1 todoescine.com, 1 todofadingsuns.tk, 1 -todofiesta.com.ar, 0 +todofiesta.com.ar, 1 todohealth.com, 1 todoinfo.tk, 1 todoist.com, 1 @@ -139397,7 +138083,6 @@ toileobscure.fr, 1 toilet-guru.com, 1 toimitaax.fi, 1 toipa.org, 1 -toiture-78.fr, 1 tojeit.cz, 1 tojevune.cz, 1 tok4.com, 1 @@ -139430,6 +138115,7 @@ tokkee.org, 1 tokky.be, 1 tokky.eu, 1 tokky.fr, 1 +tokoangga.com, 1 tokobelibeli.com, 1 tokobungaasryflorist.com, 1 tokobungadilampung.com, 1 @@ -139462,7 +138148,6 @@ toledo.tk, 1 toledoclassifieds.net, 1 toledoescorts.net, 1 toledohydraulic.com, 1 -toledotrainday.org, 1 tolerance-zero.tk, 1 toleressea.fr, 1 toles-sur-mesure.fr, 1 @@ -139538,7 +138223,7 @@ tomcat.ml, 1 tomchen.org, 1 tomco-corporation.tk, 1 tomcort.com, 1 -tomd.ai, 0 +tomd.ai, 1 tomdapice.com, 1 tomdougiamas.com, 1 tomdudfield.com, 1 @@ -139555,7 +138240,6 @@ tomharling.uk, 1 tomi.ai, 1 tomi.cc, 1 tomica.me, 1 -tomica.net, 1 tomik.cloud, 1 tomik.fun, 1 tomikoyco.com, 1 @@ -139624,7 +138308,6 @@ tomthorogood.co.uk, 1 tomthorogood.net, 1 tomthorogood.uk, 1 tomticket.com, 1 -tomtully.net, 1 tomudding.nl, 1 tomvanlaer.be, 1 tomvannoppen.tk, 1 @@ -139888,7 +138571,6 @@ topfivepercent.co.uk, 1 topfood.club, 1 topfreeporn.com, 1 topgallant.gq, 1 -topgameth.com, 1 topgevelbekleding.nl, 1 topgod.com, 1 topgrading.com, 1 @@ -139896,14 +138578,13 @@ topgshop.ru, 1 tophat.studio, 1 tophatpuffin.com, 0 tophighnorldiet.gq, 1 -tophomeappliancerepair.com, 1 tophr.kz, 1 topicalnet.de, 1 topicdesk.com, 1 topicit.net, 1 topicpoint.tk, 1 topicpulse.tk, 1 -topicv.com, 1 +topicv.com, 0 topideipodarkov.ru, 1 topitalianscientists.org, 1 topjean.com, 1 @@ -139912,7 +138593,6 @@ topjobs.ch, 1 topknot.gq, 1 topkorea.ml, 1 topktv.com, 1 -toplevel.mx, 1 toplevel.nl, 1 topline.com.sa, 1 toplink.co.il, 1 @@ -139955,7 +138635,6 @@ toponlinemarketing.tk, 1 topophile.net, 1 topoptics.com.ua, 1 topotom.tk, 1 -toppercan.es, 1 topporn.me, 1 topppinfo.com, 1 topprice.ua, 1 @@ -140056,7 +138735,6 @@ toriko-official.ml, 1 torino.fi, 1 torinotoday.it, 1 torisamaahirusama.com, 1 -tork.news, 1 torkel.se, 1 torlock.com, 1 torlock2.com, 1 @@ -140109,7 +138787,6 @@ torrentfunk.com, 1 torrentfunk2.com, 1 torrentgalaxy.mx, 1 torrentgalaxy.su, 1 -torrentgalaxy.to, 1 torrenttop100.net, 1 torrentz2.al, 1 torrero.tk, 1 @@ -140264,6 +138941,7 @@ touhouwiki.net, 1 toujour.top, 1 toulis.net, 1 toulouscope.fr, 1 +toulouselautrec.com.br, 1 toumeitech.com, 1 toupcreative.com, 1 touquet-volley.com, 1 @@ -140294,7 +138972,6 @@ tournaments.tk, 1 tournation.info, 1 touroogle.com, 1 tours-in-petersburg.tk, 1 -tours.co.th, 1 toursaindia.com, 1 toursandtransfers.it, 0 tourshopfresno.com, 1 @@ -140684,7 +139361,6 @@ tracetracker.com, 1 tracetracker.no, 1 traceur-france.fr, 1 traceyjsvorusphd.com, 1 -trachtenwolf.de, 1 tracinglineage.com, 1 tracinsurance.com, 1 track.plus, 1 @@ -140765,7 +139441,7 @@ tradeview.eu, 1 tradewithestonia.com, 0 tradezlist.tk, 1 tradgardsmart.eu, 1 -tradgardsmart.se, 1 +tradgardsmart.se, 0 tradie.com, 1 tradik.com, 1 tradinews.com, 1 @@ -140908,7 +139584,6 @@ tranceparadise.tk, 1 tranceptortechnology.com, 1 trandanhland.com, 1 trangcongnghe.com, 1 -trangell.com, 1 tranhlavender.com, 1 tranhmonalisa.vn, 1 tranhvenus.com, 1 @@ -140935,7 +139610,6 @@ transco.com.tr, 1 transcoalition.net, 1 transcontrol.com.ua, 1 transcricentro.pt, 1 -transcriptionwave.com, 1 transdev.blog, 1 transdevbus.co.uk, 1 transdyne.com, 1 @@ -140968,7 +139642,6 @@ transgendergedenkdag.nl, 1 transgenderinfo.nl, 1 transgendernetwerk.nl, 1 transgendernetwerk.org, 1 -transglobaltravel.com, 1 transglobelogistiques.com, 1 transharder.com, 1 transhumanism.co.uk, 1 @@ -141003,7 +139676,6 @@ translink.com.au, 1 translit-net.tk, 1 translit.ga, 1 translit.ru, 1 -transliterature.org, 1 transmarttouring.com, 1 transmitit.pl, 1 transmitrecordings.com, 1 @@ -141067,7 +139739,6 @@ trashpanda.website, 1 trashwagon.club, 1 trashy-gypsy.com, 1 trashylingerie.ga, 1 -trask.no, 1 traslocare.roma.it, 1 traslocatore.roma.it, 1 traslochi-trasporti-facchinaggio.it, 1 @@ -141127,7 +139798,6 @@ travelbiz.ga, 1 travelbiz.gq, 1 travelbuddiesperu.com, 1 travelbunny.ga, 1 -travelbyprice.com, 1 travelcellar.ga, 1 travelcenter.tk, 1 travelchannel.ml, 1 @@ -141293,7 +139963,6 @@ trawox.com, 1 traws.cymru, 1 traxpayroll.com, 1 traxstage.com, 1 -tray.io, 0 trayinc.com, 1 trayport.com, 1 traza.cl, 1 @@ -141304,6 +139973,7 @@ trbanka.com, 1 trblwlf.net, 1 trcollaborative.com, 1 trcont.com, 1 +trdepoist.net, 1 treaslockbox.gov, 1 treasureboxgreetings.com, 1 treasurechina.com, 1 @@ -141351,7 +140021,6 @@ treinonline.tk, 1 treintijden.com, 1 trek-planet.ru, 1 trekamdienstag.de, 1 -trekfriend.com, 1 trekintel.com, 1 trekkertrek.tk, 1 trekkertrekharpel.tk, 1 @@ -141400,7 +140069,7 @@ trendtesettur.com, 0 trendware.de, 1 trendycrowds.com, 1 trendydips.com, 1 -trendyolgo.com, 1 +trendyolgo.com, 0 trendzilla.ga, 1 treningo.rs, 1 trenorario.it, 1 @@ -141420,7 +140089,6 @@ tresoro.at, 1 tresoro.de, 1 trespedia.com, 1 tresredatores.tk, 1 -tressallure.com, 1 tresscabelos.com.br, 1 tretail.net, 1 tretinoin.gq, 1 @@ -141470,7 +140138,7 @@ tribe.rs, 1 tribeca-it.com, 1 tribecalawsuitloans.com, 1 tribefanaticsunited.tk, 1 -tribesbeekeepersassociation.com, 1 +tribesbeekeepersassociation.com, 0 tribesofneurot.tk, 1 tribetokes.com, 1 tribetrails.com, 1 @@ -141522,7 +140190,6 @@ trifence.eu, 1 trifence.net, 1 trifence.org, 1 trifiro.it, 1 -trigardon-rg.de, 1 trigate.io, 1 triggeredpaintz.com, 1 triggertraders.com, 1 @@ -141572,8 +140239,6 @@ trinitatiskirche-leipzig.de, 1 trinity.fr.eu.org, 1 trinity.one, 1 trinitycore.org, 1 -trinitycorporateservices.com, 1 -trinityny.org, 1 trinityradioandvideo.org, 1 trinitysurfaces.com, 1 trinitywernersville.org, 1 @@ -141614,7 +140279,6 @@ tripozo.com, 1 tripp.xyz, 1 trippati.com, 1 tripport.com.do, 1 -tripsided.com, 1 tripspoint.com, 1 triptravels.tk, 1 tripwire.io, 1 @@ -141629,7 +140293,6 @@ tristanfarkas.one, 1 tristatechess.com, 1 trit.pro, 1 tritium.cf, 1 -tritiumdisposal.com, 1 tritoncc.com, 1 triumc.org, 1 triumph-duesseldorf.com, 1 @@ -141703,7 +140366,6 @@ tronnews.me, 1 tronnews.news, 1 tronnews.world, 1 tronnews.xyz, 1 -tronxh.me, 1 troomcafe.com, 1 troonnorthgolf.com, 0 troopaid.info, 1 @@ -141969,14 +140631,12 @@ trusthub.com, 1 trustmymail.org, 1 trustnet.co.il, 0 trustology.io, 1 -trustpixel.com, 1 trustpoint.one, 1 trustreview.tk, 1 trustserv.de, 1 trustswiftly.com, 1 trustvox.com.br, 1 trustycloud.net, 1 -trustzone.com, 1 truten.tk, 1 truth.com, 1 truth.tk, 1 @@ -142072,7 +140732,6 @@ tsc.gov, 1 tsc.tax, 1 tscampus.online, 1 tschuermans.be, 0 -tscinsurance.com, 1 tsedryk.ca, 1 tseng.dedyn.io, 1 tsentrobuv.tk, 1 @@ -142081,6 +140740,7 @@ tsfempleos.com, 1 tsg0o0.com, 1 tsgbcs.org, 1 tsgbit.net, 1 +tshirai.work, 1 tshirtgenerator.ga, 1 tshirtmemoryquilts.com, 1 tshirtscapetown.com, 1 @@ -142237,7 +140897,6 @@ tubul.net, 1 tubuscador.tk, 1 tucarora.tk, 1 tucarroycasa.com, 1 -tucepihotelalga.com, 1 tucidi.net, 1 tuck2000.com, 1 tuckerobserver.com, 1 @@ -142342,7 +141001,6 @@ tuna.be, 1 tunad.io, 1 tunbiya.com, 1 tuncelimezaryapimi.com.tr, 1 -tunda.it, 1 tunder.tk, 1 tundermadar.hu, 1 tundrawear.ru, 1 @@ -142699,7 +141357,6 @@ tvsheerenhoek.nl, 1 tvsscs.com, 1 tvtj.ml, 1 tvtsvod.com, 1 -tvvlconnect.nl, 1 tvzahist.com.ua, 1 tw-louis.com, 0 tw.edu.pl, 1 @@ -142719,7 +141376,6 @@ twdtulelo.hu, 1 tweakers.com.au, 1 tweakers.net, 1 tweakersbadge.nl, 1 -tweaking4all.com, 1 tweaktown.com, 1 tweaktownforum.com, 1 tweaky.tk, 1 @@ -142743,7 +141399,6 @@ twem.ddns.net, 1 twerk.tk, 1 twfund.com, 1 twfwd.email, 1 -twiddlebugdesigns.com, 1 twidy.jp, 0 twidy.uk, 1 twig.sg, 0 @@ -142984,7 +141639,6 @@ tyuning-avto.tk, 1 tyva.gq, 1 tyva.ml, 1 tyva.tk, 1 -tz.mn, 1 tz9.co, 1 tzchz.pp.ua, 1 tzdn.gq, 1 @@ -143138,7 +141792,6 @@ uborcare.com, 1 uborka-812.ru, 1 uborka-kvartir-moskva.gq, 1 uborka-snega.ga, 1 -ubr.ua, 1 ubun.kr, 1 ubun.net, 1 ubuntu-es.org, 1 @@ -143185,7 +141838,6 @@ ucmultrasuoni.it, 1 ucngame.com, 1 ucnprod.fr, 1 ucphotography.net.au, 1 -ucplusdansk.dk, 1 ucppe.org, 1 ucraft.ai, 1 ucrdatatool.gov, 1 @@ -143278,7 +141930,6 @@ ugolovnyj-advokat.cf, 1 ugolsibiri.ru, 1 ugrod.ru, 1 ugsonline.tk, 1 -ugtdigiteldocumentos.es, 1 uguragdas.com.tr, 1 ugurkorkmazyurek.com, 1 ugurnakliyat.com.tr, 1 @@ -143309,13 +141960,12 @@ uiberlay.cz, 1 uicchy.com, 1 uid0.pl, 1 uidrafter.com, 1 -uiharu.top, 0 +uiharu.top, 1 uinst.tk, 1 uinvest.ml, 1 uinvest.tk, 1 uiop.link, 1 uirysa.pl, 1 -uisd.net, 1 uitdeoudekoektrommel.com, 1 uiterwijk.org, 1 uitgeverij-deviant.nl, 1 @@ -143555,8 +142205,6 @@ unausa.com.br, 1 unautreregard.tk, 1 unaware.tk, 1 unbanked.com, 1 -unbankman.com, 1 -unbankmanyourself.com, 1 unbelievableplaces.de, 1 unbelievaboat.com, 1 unblock-zh.org, 1 @@ -143569,7 +142217,6 @@ unblockit.bet, 1 unblockit.bio, 1 unblockit.blue, 1 unblockit.cat, 1 -unblockit.ch, 1 unblockit.click, 1 unblockit.ink, 1 unblockit.ist, 1 @@ -143602,7 +142249,6 @@ uncuteyes.tk, 1 uncuttype.wtf, 1 undangan-digital.com, 1 undawns.tk, 1 -undeadwalking.com, 1 undecidable.de, 1 undegasesc.net, 1 undelightfully.tk, 1 @@ -143646,7 +142292,6 @@ une-bonne-nouvelle.fr, 1 une-femme-dhonneur.tk, 1 uneaimages.com, 1 unece-deta.eu, 1 -unej.ac.id, 1 unej.org, 1 uneltemasini.ro, 1 unemployment.ga, 1 @@ -143665,7 +142310,6 @@ unfallrechtler.de, 1 unfamousrecords.tk, 1 unfathomable.blue, 1 unfc.nl, 1 -unferno.tech, 1 unfixed-soul.tk, 1 unfollow.today, 1 unfriend.tk, 1 @@ -143730,6 +142374,7 @@ unicycle.show, 1 unidadvirtual.com, 1 unidata.ca, 1 unideb.hu, 1 +unidet.eu, 1 unieducar.org.br, 1 uniekglas.nl, 1 uniex.ch, 1 @@ -143798,6 +142443,7 @@ unique-news.tk, 1 unique-punk.tk, 1 unique-urls.tk, 1 uniquedollz.tk, 1 +uniqueexpression-coaching.de, 1 uniquehardware.ca, 1 uniquehardware.net, 1 uniquemode.nl, 1 @@ -143811,7 +142457,6 @@ unis-pour-la-planete.com, 1 unis-pour-le-climat.com, 1 uniselectweb.com, 1 uniserve.com, 1 -unisnu.ac.id, 1 unison-d.com, 1 unisontech.org, 1 unisplendour.com, 1 @@ -143908,14 +142553,12 @@ universe.wtf, 1 universehistory.net, 1 universehk.tk, 1 universeinform.com, 1 -universeit.mx, 1 universellafredsdanser.se, 1 universellesleben.tk, 1 universemasterplan.com, 1 universen.tk, 1 universereligion.com, 1 universevision.com, 1 -universidadean.edu.co, 1 universidadperu.com, 1 universitapopolaredeglistudidimilano.wiki, 1 universiteplatformu.com, 1 @@ -144050,7 +142693,6 @@ unstable.fun, 1 unstable.network, 1 unstable.systems, 1 unstablewormhole.ltd, 1 -unstamps.org, 1 unstockd.org, 1 unstoppable.money, 1 unstoppabledomains.com, 1 @@ -144064,7 +142706,7 @@ unternehmensberater-website.de, 1 unternehmensbewertung.pro, 1 unternehmerrat-hagen.de, 1 unternimmteam.de, 1 -untethereddog.com, 1 +untethereddog.com, 0 unti.me, 1 unti.tk, 1 untidybits.com, 1 @@ -144258,7 +142900,6 @@ upwardcreative.com, 1 upwardflourish.com, 1 upwardtraining.co.uk, 1 upwork.com, 1 -upyourfinances.com, 0 uq1k.com, 1 uqschool.com, 1 uquid.com, 1 @@ -144312,7 +142953,6 @@ urbanfoodmarket.nl, 1 urbanfun.ga, 1 urbangaming.tk, 1 urbangardening.ga, 1 -urbanguerillas.de, 1 urbangymfirenze.com, 1 urbanhost.tk, 1 urbanhotbed.eu, 1 @@ -144425,7 +143065,6 @@ urology.wiki, 1 urologyoklahoma.com, 1 urologyspecialistspc.com, 1 urologywi.com, 1 -uromeeme.com, 1 uronlinestreams.ga, 1 uroute.co, 1 urown.net, 1 @@ -144446,7 +143085,6 @@ uruslugi.tk, 1 urvastekool.edu.ee, 1 us-10.cc, 1 us-10.com, 1 -us-accountant.com, 1 us-films.com, 1 us-igloopreview.com, 1 us-immigration.com, 1 @@ -144477,7 +143115,6 @@ usadba.net.ru, 1 usadf.gov, 1 usadirectory.tk, 1 usaestaonline.com, 1 -usafootball.com, 1 usage.be, 1 usagi-ku.ga, 1 usagm.gov, 1 @@ -144700,7 +143337,6 @@ utleg.gov, 1 utloperadora.com.br, 1 utodyg.ga, 1 utonia.ch, 1 -utopia-ecosystem.com, 1 utopiahsa.com, 1 utopialgb.org.uk, 1 utopian-institute.tk, 1 @@ -144733,7 +143369,6 @@ uu6729.com, 0 uu6957.co, 1 uu9297.co, 1 uu939.com, 1 -uu9397.com, 0 uu9721.com, 0 uu9728.co, 1 uubb.top, 1 @@ -144943,7 +143578,6 @@ vacuumsupplystore.com, 1 vadang.net, 1 vadeainterior.com, 1 vademekum.com, 1 -vader.news, 1 vaderochvind.se, 1 vaderqkcloud.ddns.net, 1 vadiar-angola.tk, 1 @@ -145066,7 +143700,6 @@ valiantprep.org, 1 valid.com, 1 validation.link, 1 validatis.com, 1 -validator.nu, 1 validbot.com, 1 validius.fi, 1 validius.net, 1 @@ -145181,6 +143814,7 @@ vamziyuan.com, 1 van-assen.com, 1 van-brandevoort.tk, 1 van-der-straeten.be, 1 +van.ddns.net, 1 van11y.net, 1 vanadrighem.eu, 1 vanafhier.nl, 1 @@ -145211,7 +143845,6 @@ vande-walle.eu, 1 vandegriftplasticsurgery.com, 1 vandemeent.eu, 1 vandenbergfss.com, 1 -vandenbroeck-usedcars.be, 1 vandenbroekwi.gov, 1 vandeput.be, 1 vander-bugenne.fr, 1 @@ -145250,8 +143883,8 @@ vangest.com, 1 vangest.pt, 1 vangoghcoaching.nl, 1 vanguards.tk, 1 -vanhaos.com, 1 vanhatten.com, 1 +vanheede.com, 1 vanhelsing.ml, 1 vanhelsing.tk, 1 vanherle-dakdichting.be, 1 @@ -145305,13 +143938,13 @@ vanwunnik.com, 1 vanya.click, 1 vanyavpn.com, 1 vaoig.gov, 1 -vap.llc, 0 vapebhd.com, 1 vapebuddy.ch, 1 vapeclub.co.uk, 1 vapecom-shop.com, 1 vapecraftinc.com, 0 vapecrunch.com, 1 +vapehousebh.com, 1 vapeking.co.za, 1 vapensiero.co.uk, 1 vapesense.co.uk, 1 @@ -145330,7 +143963,6 @@ vapotank.com, 1 vapoteuse.fr, 1 vapourtown.com, 1 vapteke.ru, 1 -vaptkidsight.azurewebsites.net, 1 var.cc, 1 varaani.tk, 1 varalaval.com, 1 @@ -145381,7 +144013,6 @@ vasaivirarnews.com, 1 vasankari.fi, 1 vasanth.org, 0 vasaprilezitost.eu, 1 -vascomm.co.id, 0 vasconcellos.casa, 1 vascularlaser.com.br, 1 vase-dovolena.cz, 1 @@ -145446,7 +144077,7 @@ vault.spdns.eu, 1 vault12.com, 1 vault12.io, 1 vault182.xyz, 1 -vault81.de, 0 +vault81.de, 1 vaultdoma.in, 1 vaultlabs1226.com, 1 vaultproject.io, 0 @@ -145470,7 +144101,6 @@ vba.rest, 1 vbanu.com.ua, 1 vbelgorode.tk, 1 vbetcn.com, 1 -vbhelp.org, 1 vbl.co.th, 1 vbql.me, 1 vbsoft.cz, 1 @@ -145536,7 +144166,6 @@ vdslux.eu, 1 vdstc.com, 1 vdw-instruments.com, 1 vdw.ovh, 1 -vdwaart.synology.me, 1 vdzwan.net, 1 ve-1xbet.com, 1 ve.search.yahoo.com, 0 @@ -145630,7 +144259,6 @@ vehicletransportservices.co, 1 veidiheimar.is, 1 veii.de, 1 veikkosimpanen.fi, 1 -veil-framework.com, 1 veilofsecurity.com, 1 veincenterbrintonlake.com, 1 veintidos.com.ar, 1 @@ -145851,7 +144479,6 @@ verf.nu, 1 verfassungsklage.at, 1 verge-solutions.com, 1 verge.capital, 1 -vergeaccessories.com, 1 vergehealth.com, 1 vergelijksimonly.nl, 1 vergelijkwitgoed.nl, 1 @@ -146024,7 +144651,6 @@ verygoodmarketing.nl, 1 verygoodwebsite.ca, 1 veryhome.com.pe, 1 verymelon.de, 1 -verymetal.nl, 1 verymetal.site, 1 veryssl.com, 1 veryswing.com, 1 @@ -146140,7 +144766,6 @@ vg-resource.com, 1 vgatest.nl, 1 vgbf.tk, 1 vgchat.us, 1 -vgcheat.com, 1 vgerak.com, 1 vglist.co, 1 vgopilot.azurewebsites.net, 1 @@ -146164,7 +144789,6 @@ viacheslavpleshkov.com, 1 viadennis.nl, 1 viaelegancestore.com.br, 1 viaeth.io, 1 -viafinance.cz, 0 viafoura.com, 1 viaggioincoppia.com, 1 viaggivistos.com.br, 1 @@ -146285,7 +144909,6 @@ victorrodriguez.ml, 1 victorunix.com, 1 victory.radio, 1 victoryalliance.us, 1 -victorybellrings.com, 1 victorychurch.org.tw, 1 victoryoutreach.org, 1 victrays.com, 1 @@ -146295,7 +144918,6 @@ vicyu.com, 1 vidaliala.gov, 1 vidanuevaparaelmundo.net, 1 vidanuevaparaelmundo.org, 1 -vidanuevaparaelmundo.plus, 1 vidaparalela.tk, 1 vidapositiva.tk, 1 vidarity.com, 1 @@ -146358,7 +144980,6 @@ videoskazka.tk, 1 videospericos.tk, 1 videosporno.life, 1 videosporno.org, 1 -videostop.asia, 1 videot.tk, 1 videotehnika.tk, 1 videoueberwachung-set.de, 1 @@ -146385,7 +145006,6 @@ vidrop.me, 1 vidtekno.com, 1 vidulo.com, 1 vidyamonk.com, 1 -vieclam24h.vn, 1 viedecelibataire.fr, 1 viega.at, 1 viega.be, 1 @@ -146477,7 +145097,6 @@ vigilo.cf, 1 vigilo.ga, 1 vigl.biz, 1 vigliano.com, 1 -viglobal.com, 1 vigneshkumar.com, 1 vignobles-querre.com, 1 vignoblesdeletat.ch, 1 @@ -146536,6 +145155,7 @@ viktorchinkonsung.nl, 1 viktorchinkonsung.online, 1 viktorchinkonsung.site, 1 viktoria-goo.com, 1 +viktoria-stube.de, 1 viktorovi.cz, 1 viktorprevaric.eu, 1 viku.fi, 1 @@ -146587,7 +145207,6 @@ villafrancis.org.sg, 1 villagebridalbyomnibus.com, 1 villagecardshop.co.uk, 1 villagecenterpediatrics.com, 1 -villagecinemas.com.au, 1 villagemagazines.co.uk, 1 villagenscamuria.it, 1 villageofalbionny.gov, 1 @@ -146678,7 +145297,6 @@ villaumbrales.tk, 1 villavaltava.fi, 1 villaville.com, 1 villawirz.it, 1 -ville-aime.fr, 1 ville-ideale.fr, 1 ville-vif.fr, 1 villehardouin.fr, 1 @@ -146779,7 +145397,7 @@ vinilosdecorativos.net, 1 vinistas.com, 1 vinit.tk, 1 vinnellarabia.com, 1 -vinner.com.au, 1 +vinner.com.au, 0 vinnie.gq, 1 vinny.tk, 1 vinnyvidivici.com, 1 @@ -146858,7 +145476,6 @@ vipcan.com, 1 vipdirektolog.ru, 0 vipenvia.com.br, 1 viper-drones.com, 1 -viper-drones.shop, 1 vipertechnology.com.br, 1 vipesball.me, 1 vipesball.net, 1 @@ -146881,7 +145498,7 @@ vipmdh.com.ua, 1 vipmercedes.by, 1 viporiflame.tk, 1 vippclub.be, 1 -viprsolutions.com, 0 +viprsolutions.com, 1 vipsauna.gq, 1 vipsexvault.com, 1 vipshop.ga, 1 @@ -146918,6 +145535,7 @@ viralvids.gq, 1 viraly.me, 1 viran-khodro.tk, 1 virazh58.tk, 1 +virbex.com, 1 vircloud.net, 1 virga.pp.ua, 1 virgi.tk, 1 @@ -146990,7 +145608,6 @@ virtualsanity.com, 1 virtualscoutschool.com, 1 virtualsex.ga, 1 virtualshell.ml, 1 -virtualspeech.com, 1 virtualtabletop.io, 1 virtualvaults.com, 0 virtualx.de, 1 @@ -147063,8 +145680,7 @@ visioncraftinc.com, 1 visiondetails.ru, 1 visiondigitalpe.com, 1 visiondigitalsog.com, 1 -visiondrivers.com, 1 -visionduweb.fr, 1 +visiondrivers.com, 0 visioned.net, 1 visioneducation.tk, 1 visionexpress.com, 1 @@ -147156,7 +145772,6 @@ vista.gov, 1 vistaalegre.com, 1 vistaalmar.es, 1 vistacampus.gov, 1 -vistadreams.org, 1 vistamatic.eu, 1 vistapaket.com.ua, 1 vistapoquei.com.br, 1 @@ -147189,7 +145804,6 @@ vita-transmr.de, 1 vitaalcheck.nl, 1 vitaalfitcoaching.nl, 1 vitabrillanti.com, 0 -vitacellbiologics.com, 1 vitaclinicliverpool.co.uk, 1 vitacore.ru, 1 vitaerotaksi.ru, 1 @@ -147247,7 +145861,6 @@ vitavista.io, 1 vitay.pl, 1 viteleaf.com, 1 viteoscrm.ch, 0 -viteragro.com.br, 1 viterbio.com, 1 viterboonair.tk, 1 viteuneexcuse.io, 1 @@ -147277,6 +145890,7 @@ vittoriaconseil.com, 1 vitucho.tk, 1 vitus-meppen.de, 1 viv.fi, 1 +viva.ro, 1 viva.ua, 1 viva2000.com, 1 vivablogger.com, 1 @@ -147291,6 +145905,7 @@ vivaiocolombo.com, 1 vivalacloud.ru, 1 vivalajack.de, 1 vivaldi.club, 1 +vivaldi.com, 1 vivaldi.net, 1 vivaleisure.com.au, 1 vivaleisure.group, 1 @@ -147327,7 +145942,7 @@ viveportal.com, 1 viveras.ch, 1 viveremediglia.tk, 1 viverse.com, 1 -viverstp.net, 0 +viverstp.net, 1 vivesaludableconomnilife.com, 1 vivetoluca.com, 1 vivezlaromate.com, 1 @@ -147361,7 +145976,6 @@ vivy.com, 1 viwsec.com.br, 1 vixlum.com, 1 vixonline.com.br, 1 -vixra.org, 1 vixrapedia.org, 1 viyf.org, 1 viyoga.co, 1 @@ -147445,7 +146059,6 @@ vladimirchernyshov.ml, 1 vladimirkarpets.tk, 1 vladimirovka.ml, 1 vladimirpenev.tk, 1 -vladimirwrites.com, 1 vladivostok-city.tk, 1 vladivostok.cf, 1 vladivostok.tk, 1 @@ -147495,6 +146108,7 @@ vm88.top, 0 vmagadane.tk, 1 vmath.my.id, 1 vmautorajkot.com, 1 +vmaxleclub.com, 1 vmc.co.id, 1 vmccnc.com, 1 vmconnected.co.uk, 1 @@ -147509,7 +146123,6 @@ vmninja.io, 1 vmoagents.com, 0 vmock.com, 1 vmoe.info, 1 -vmoffer.com, 1 vmotosoco.lv, 0 vmst.io, 1 vmsurgery.org, 1 @@ -147518,7 +146131,6 @@ vmurmanske.tk, 1 vn.search.yahoo.com, 0 vn58.com, 1 vnanet.vn, 1 -vnback.com, 1 vnctdj.fr, 1 vnd.cloud, 1 vndb.org, 1 @@ -147587,6 +146199,7 @@ vodix.nl, 1 vodpay.com, 1 vodpay.net, 1 vodpay.org, 1 +voeding-en-fitness.nl, 1 voetbalclubinfo.tk, 1 voetbalforum.tk, 1 voetbalindestad.be, 1 @@ -147640,7 +146253,6 @@ voidpay.net, 1 voidpay.org, 1 voidx.top, 1 voigt-it.solutions, 1 -voileux.org, 1 voimix.ee, 1 voinuocsago.com, 1 voinuocthienmy.com, 1 @@ -147789,7 +146401,6 @@ vookstock.tk, 1 voolik.pw, 1 voom.pt, 1 voorde.lol, 1 -voordewereldvanmorgen.nl, 1 vooreenveiligthuis.nl, 0 voornaam-at-achternaam.be, 1 vooruitmetjevereniging.nl, 1 @@ -147839,7 +146450,6 @@ votan.cf, 1 vote.gov, 1 vote.nz, 1 vote.org, 1 -vote4.hk, 1 votealachua.gov, 1 votebradfordfl.gov, 1 votebrevard.gov, 1 @@ -147893,7 +146503,6 @@ votre-hotel.com, 1 votrepolice.ch, 0 votresiteweb.ch, 0 votrespace.ca, 1 -voucher-express.fr, 1 vouchers4u.com, 1 voucherx.co.uk, 1 vought-vip.com, 1 @@ -148009,7 +146618,6 @@ vr-immoinvest.eu, 1 vr-payment.de, 1 vr-re-bank.org, 1 vr-realestate.co.uk, 1 -vr-tops.ir, 1 vr3marcas.com.br, 1 vrac-drive.ch, 1 vracdrive.ch, 1 @@ -148071,6 +146679,7 @@ vrostove.tk, 1 vrp.moe, 0 vrre.ag, 1 vrrebank.info, 1 +vrsmash.com, 1 vrsystem.com.br, 0 vrtak-cz.net, 0 vrtidaho.gov, 1 @@ -148131,7 +146740,6 @@ vsmcomunicacao.com.br, 1 vsoflavors.com, 1 vsolovev.com, 1 vsolvit.com, 1 -vsource-rsdv.azurewebsites.net, 1 vsoy.co.th, 1 vspin.cz, 1 vsportage.com, 1 @@ -148161,7 +146769,6 @@ vtliving.com, 1 vtm.be, 1 vtmgo.be, 1 vtoroy-kanal.ga, 1 -vtsmedia.com, 1 vtsnetworks.com, 1 vttnordisere.fr, 1 vtuber-schedule.info, 1 @@ -148172,7 +146779,6 @@ vtupro.com, 1 vtvnetwork.org, 1 vtwonen.be, 1 vtwonen.nl, 1 -vtwonenendesignbeurs.nl, 1 vuagym.com, 1 vuakhuyenmai.vn, 1 vuath.com, 1 @@ -148195,7 +146801,6 @@ vulcanplatinum777-vip.com, 1 vulcanplatinum777club.com, 1 vulcanplatinumplay.xyz, 1 vulcanrussia-game.com, 1 -vulcanrussia24-pro.com, 1 vulcanrussiagame.com, 1 vuldb.com, 1 vulgar-teens.tk, 1 @@ -148255,7 +146860,6 @@ vv6729.co, 1 vv6729.com, 0 vv6957.co, 1 vv9297.co, 1 -vv9397.com, 1 vv9721.com, 0 vv9728.co, 1 vvactivia.nl, 1 @@ -148332,7 +146936,6 @@ vysvetluju.cz, 1 vyturys.lt, 1 vytvorsipotisk.cz, 1 vyvod-iz-zapoya.online, 1 -vyvozhlama24.ru, 1 vyvygen.org, 1 vyzner.cz, 1 vzce.cn, 1 @@ -148442,12 +147045,10 @@ w888088.com, 0 w889-line.com, 1 w889-line.net, 1 w88clubz.com, 1 -w88vna.com, 1 w8less.nl, 1 w8wat.com, 1 w9297.co, 1 w9297.com, 0 -w9397.com, 1 w9721.com, 0 w9728.co, 1 w9nb.radio, 1 @@ -148473,7 +147074,6 @@ wachtspoor.nl, 1 wachtspoor18.nl, 1 wacken666.com, 1 wackery.com, 1 -wacky-science.com, 1 wacky.one, 1 wackyblackie.eu.org, 1 wackyblackie.ml, 1 @@ -148508,7 +147108,6 @@ wagesweldandfab.com, 1 wageverify.com, 1 waggybytes.com, 1 wagn3r.de, 1 -wagnervineyards.com, 1 wagspuzzle.space, 1 waguramaurice.cf, 1 wahay.org, 1 @@ -148582,7 +147181,7 @@ walk.onl, 1 walkaround.tk, 1 walker-foundation.org, 1 walkera-fans.de, 1 -walkercorp.com.au, 1 +walkercorp.com.au, 0 walkercountytx.gov, 1 walkerfoundation.org.au, 1 walkergroup.com.au, 1 @@ -148644,6 +147243,7 @@ wallpaperup.com, 1 wallrgb.com, 1 walls.io, 1 wallsauce.com, 1 +wallstreetmojo.com, 1 walltech.tk, 1 walltime.info, 1 wallumai.com.au, 1 @@ -148846,7 +147446,6 @@ warrentwpstjosephco-in.gov, 1 warringtonkidsbouncycastles.co.uk, 1 warringtonsownbuses.co.uk, 1 warriorofmars.com, 1 -warrioronewgw.com, 1 warrock-es.tk, 1 warrs.com, 1 wars.cat, 1 @@ -148970,7 +147569,6 @@ waterbassoon.eu.org, 1 waterborefiji.com, 1 waterboromaine.gov, 1 watercold.cool, 1 -waterdamagehouston.us, 1 waterdamageindiana.com, 1 waterdogsmokehouse.com, 1 waterdownmedia.co.uk, 1 @@ -149033,7 +147631,6 @@ watfordjc.uk, 1 wathory.com, 1 watisleukemie.tk, 1 watismijnbandenspanning.nl, 1 -watlam.com, 0 watongaok.gov, 1 watoo.tech, 1 watsonsurplus.com, 1 @@ -149101,7 +147698,6 @@ waynefranklin.com, 1 waynehartman.com, 1 wayneo.tk, 1 waynesboropa.gov, 1 -waynescottlcsw.com, 1 waynetworking.com, 1 waynewashcowi.gov, 1 wayofleaf.com, 1 @@ -149216,7 +147812,6 @@ we-use-linux.de, 1 we.serveftp.net, 1 we168168.com, 1 we5688.net, 1 -we88fun.com, 1 we9988.net, 1 weacceptbitcoin.gr, 1 wealthadvisorsmf.com, 1 @@ -149232,7 +147827,6 @@ wear-referrals.co.uk, 1 wear1015.ml, 1 wear2work.nl, 1 wearandcare.net, 1 -weare.ie, 1 weare1inspirit.com, 1 wearebase.com, 1 wearebfi.co.uk, 1 @@ -149400,7 +147994,6 @@ webcamara.sytes.net, 1 webcamdream.hu, 1 webcamera-online.tk, 1 webcamera.io, 1 -webcamromania.ro, 1 webcamrunetki.ga, 1 webcams4date.com, 1 webcamstudio.hu, 1 @@ -149479,7 +148072,6 @@ webers-webdesign.de, 1 webescucha.tk, 1 webest.pl, 1 webexample.win, 0 -webexapis.com, 1 webexp.biz, 1 webexperts.tk, 1 webexpertsdirect.com.au, 1 @@ -149583,9 +148175,8 @@ webmail.gigahost.dk, 0 webmail.info, 0 webmail.mayfirst.org, 0 webmail.onlime.ch, 0 -webmail.schokokeks.org, 0 +webmail.schokokeks.org, 1 webmama.tk, 1 -webman.ng, 1 webmanagement.berlin, 0 webmandat.fr, 1 webmandesign.eu, 1 @@ -149603,7 +148194,6 @@ webmenedzser.hu, 1 webmetallica.tk, 1 webmetering.at, 1 webmethod.email, 1 -webmikham.com, 1 webminders.it, 1 webmining.gq, 1 webministeriet.net, 1 @@ -149740,6 +148330,7 @@ websuccess.ga, 1 websvetaines.lt, 1 webtalis.nl, 1 webtasarim.info.tr, 1 +webtasarim.pw, 1 webtasarimankara.name.tr, 1 webtasarimi.tk, 1 webtasarimostim.name.tr, 1 @@ -149796,13 +148387,13 @@ webwit.pro, 1 webwweb.com.pl, 1 webx5.pro, 1 webyazilim.biz.tr, 1 +webyazilimankara.com, 1 webycrea.eu, 1 webyildiz.com, 1 webyourself.eu, 1 webz.one, 1 webzanem.com, 1 webzarabotok.tk, 1 -webzschema.in, 1 wecanvisit.com, 1 wecareplatform.nl, 1 weccode.com, 1 @@ -149825,7 +148416,6 @@ wedding-page.ga, 1 wedding-page.tk, 1 wedding-transportation.com, 1 wedding-ua.tk, 1 -weddingalbumsdesign.com, 1 weddingartist.ca, 1 weddingbells.ca, 1 weddingcalculator.ga, 1 @@ -149893,7 +148483,6 @@ weernieuws.info, 1 weerstationgiethoorn.nl, 1 weerstatistieken.nl, 1 weetalksls.com, 1 -weethet.nl, 1 weetix.fr, 1 weezerosos.tk, 1 weezertabs.tk, 1 @@ -149923,7 +148512,6 @@ wehiremac.uk, 1 weho.gov, 1 wehostdnn.com, 1 wei-mao.com.ua, 1 -weibohan.com, 1 weibomiaopai.com, 1 weideheuvel.org, 1 weidmannfibertechnology.com, 0 @@ -149949,7 +148537,6 @@ weinboxbuilders.co.nz, 1 weinfuse.com, 0 weingut-bernd-klein.de, 1 weinundsein.com, 1 -weinvestventures.com, 1 weinzierlweb.com, 1 weiran.org.cn, 1 weirddisney.com, 1 @@ -150048,7 +148635,6 @@ welovegalicia.com, 1 welovelinks.com, 1 weloveliving.it, 1 welovemail.com, 1 -welovemaira.com, 1 welovestrawberries.com, 1 welpen-rucphen.tk, 1 welpo.me, 1 @@ -150057,7 +148643,7 @@ welshterrier.tk, 1 welshyak.tk, 1 welspunindia.com, 1 welstrim.de, 1 -welsum.com, 0 +welsum.com, 1 welt-flaggen.de, 1 weltderangebote.de, 0 welteneroberer.de, 1 @@ -150110,14 +148696,12 @@ wepa.pe, 1 wepay.com, 1 wepay.in.th, 1 wepbiz.com, 1 -weplantinc.org, 1 weplay.io, 1 weplaycollectibles.com, 1 weplaynaked.dk, 1 weple.ga, 1 weple.gq, 1 weprenup.com, 1 -wer-kommt-her.de, 1 werbe-markt.de, 1 werbe-sonnenbrillen.de, 0 werbeagentur-benningen.de, 1 @@ -150176,6 +148760,7 @@ werxa.cz, 1 werxus.eu, 1 weryfikacjapodatnika.pl, 1 wesecom.com, 1 +wesermarsch-bauelemente.de, 1 weserv.nl, 1 wesleyanbank.co.uk, 1 wesleyarcher.com, 1 @@ -150193,7 +148778,6 @@ wessner.co, 0 wessner.org, 0 wessobrunn.de, 1 wessokind.de, 1 -west-contemporary.com, 1 west-nerica.de, 1 west-raptors.tk, 1 west-trans.com.au, 0 @@ -150284,7 +148868,6 @@ westportisland.gov, 1 westportok.gov, 1 westreet-store.com, 1 westsalemwi.gov, 1 -westshoresrealty.com, 1 westside-pediatrics.com, 1 westsidechildrenstherapy.com, 1 westskinlaser.com, 1 @@ -150332,7 +148915,6 @@ weyhmueller.de, 0 weyland-yutani.org, 1 weymouthslowik.com, 1 weyoui.de, 1 -wezl.net, 1 wf-bigsky-master.appspot.com, 1 wf-demo-eu.appspot.com, 1 wf-demo-hrd.appspot.com, 1 @@ -150685,7 +149267,6 @@ whydoeseverythingsuck.net, 1 whyinsurance.me, 1 whymps.com, 1 whynohttps.com, 1 -whyodindrinks.com, 1 whyopencomputing.ch, 0 whyopencomputing.com, 0 whypowerbrush.com, 1 @@ -150784,7 +149365,6 @@ wigelsworth.consulting, 1 wigelsworth.io, 1 wigger.one, 1 wigggle.it, 1 -wigglestudio.com, 1 wigglywisdom.com, 1 wigle.net, 1 wigmore-hall.org.uk, 0 @@ -150888,11 +149468,9 @@ wikimediafoundation.com, 1 wikimediafoundation.info, 1 wikimediafoundation.net, 1 wikimediafoundation.org, 1 -wikimiasr.com, 1 wikimilk.org, 1 wikimir.tk, 1 wikimirror.org, 1 -wikinbiography.com, 1 wikinews.com, 1 wikinews.de, 1 wikinews.org, 1 @@ -151092,7 +149670,7 @@ willnorris.com, 1 willocks.nl, 1 willoughbyhillsohio.gov, 1 willow.technology, 1 -willowbrook.co.uk, 0 +willowbrook.co.uk, 1 willowchild.de, 1 willowcreektrucking.com, 1 willowcundy.com, 1 @@ -151109,7 +149687,6 @@ willstamper.name, 1 willsthebest.co.uk, 1 willstocks.co.uk, 1 willturner.tk, 1 -willusherwood.com, 1 willvision.com, 1 willwilkins.com, 1 willwoodworth.com, 1 @@ -151136,7 +149713,6 @@ wiltonmanors.gov, 1 wiltonsandstonequarry.com.au, 1 wiltrovira.com, 1 wiltshirefarmfoods.com, 0 -wimachtendienk.com, 1 wimbledon.com, 1 wimlanphen.nl, 1 wimmer-informatik.eu, 1 @@ -151295,6 +149871,7 @@ winnlandscaping.com, 1 winona-area-scum.tk, 1 winonamn.gov, 1 winoptical.com, 1 +winoptimise.fr, 1 winov.com.br, 1 winphonemetro.com, 1 winpic.co, 1 @@ -151314,7 +149891,6 @@ winter-elektro.de, 1 winter-leak.ml, 1 winter.ae, 1 winterbergwebcams.com, 1 -wintercam.nl, 1 winterco.org, 1 wintercorn.com, 1 winterdetective.ga, 1 @@ -151322,7 +149898,6 @@ winterfeldt.de, 0 winterhavenobgyn.com, 1 winterhillbank.com, 1 winteringent.be, 1 -winteriscoming.net, 1 winterlandbeverages.com, 1 wintermeyer-consulting.de, 1 wintermeyer.de, 1 @@ -151699,7 +150274,6 @@ wohnungsmarktbeobachtung.de, 1 wohnzimmer-koch.de, 1 woi.vision, 1 wois.info, 1 -wojak.xyz, 1 wojart.pl, 1 wojciechowka.pl, 1 wojciechteichert.pl, 1 @@ -151815,7 +150389,6 @@ wonderleaks.gq, 1 wondermags.com, 1 wondermiles.com, 1 wondermiles.org, 1 -wonderpages.com.br, 1 wonderworksonline.com, 1 wondeur.ai, 1 wondium.nl, 1 @@ -151853,7 +150426,6 @@ woodcock.cloud, 1 woodcountywi.gov, 1 woodcraftcompany.ru, 1 woodenson.com, 1 -woodentreasure.co.uk, 0 woodev.us, 1 woodfarm2020.com, 1 woodfencestlouis.com, 1 @@ -151861,7 +150433,6 @@ woodfordcountyil.gov, 1 woodfordcountyky.gov, 1 woodhavenmi.gov, 1 woodlandboys.com, 1 -woodlandcreekfurniture.com, 1 woodlandexterior.com, 1 woodlandsiding.com, 1 woodlandsunrooms.com, 1 @@ -151903,6 +150474,7 @@ woodwormtreatment.com, 1 woody-art.eu, 1 woodyallen.tk, 1 woodysinstalaciones.com, 1 +woodyworld.com, 1 woof.gq, 1 woofsbakery.com, 1 woohay.com, 1 @@ -151963,8 +150535,6 @@ wordpress.com, 0 wordpressadmin.ru, 1 wordpressbot.tk, 1 wordpressdevelopment.ml, 1 -wordpressguru.pro, 0 -wordpresspro.guru, 1 wordregistrar.ga, 1 wordroid.net, 1 words-are-pictures.com, 1 @@ -152223,7 +150793,6 @@ wormholevpn.net, 1 wormincorporated.tk, 1 wormpress.com, 1 worms-cowclan.tk, 1 -wormss9.org, 1 worongarymedical.com.au, 1 worpswede.eu, 1 worst.horse, 0 @@ -152238,7 +150807,6 @@ worthlessingratitudecq.gq, 1 worthlessingratitudecq.ml, 1 worthlydeals.com, 1 worthtownshipmi.gov, 1 -worthwritingfor.com, 1 worthyblog.com, 1 worthygo.com, 1 worzo.tk, 1 @@ -152311,7 +150879,6 @@ wp-bundle.co, 0 wp-cloud.fi, 0 wp-fastsearch.de, 1 wp-in.de, 1 -wp-lab.pp.ua, 1 wp-mix.com, 1 wp-ninja.tk, 1 wp-note.it, 1 @@ -152322,10 +150889,10 @@ wp-stack.pro, 1 wp-tao.com, 1 wp-webagentur.de, 1 wp2static.com, 1 +wp3.ca, 1 wpac.de, 1 wpandup.org, 1 wpautolistings.com, 1 -wpbeter.nl, 1 wpboot.com, 1 wpboys.com, 0 wpbrigade.com, 1 @@ -152445,7 +151012,6 @@ wrentham.gov, 1 wrenthamfire.gov, 1 wrenthampolice.gov, 1 wrenwrites.com, 1 -wreo.org, 1 wresttmb.tk, 1 wrfalimentos.com.br, 1 wrglzd.com, 1 @@ -152480,7 +151046,6 @@ writing-expert.com, 1 writingapps.ga, 1 writingbee.com, 1 writingcities.net, 1 -writingillini.com, 1 writingiswork.ga, 1 writingontablets.com, 1 writingpapersonlineformoney.ga, 1 @@ -152610,7 +151175,6 @@ wunder.io, 1 wunderbarespolen.de, 1 wunderkarten.de, 1 wunderlist.com, 1 -wundertraining.com.au, 1 wundi.net, 1 wunschpreisauto.de, 1 wunschzettel.de, 1 @@ -152882,6 +151446,7 @@ wz.pt, 1 wzajemnie.org.pl, 1 wzfou.com, 1 wzh.one, 1 +wzmzw.com, 0 wzrd.in, 1 wzutti.com, 0 wzxaini9.com, 1 @@ -152946,7 +151511,6 @@ x59988.com, 0 x5x.host, 1 x6.nl, 1 x61.sh, 1 -x64.onl, 1 x64architecture.com, 1 x6729.co, 1 x6957.co, 1 @@ -153020,10 +151584,8 @@ xavierarroyo.tk, 1 xaviermalisse.tk, 1 xavio-design.com, 1 xavy.fr, 1 -xaxax.ru, 1 xayah.net, 1 xaydungnamcuong.com, 0 -xaydungphunguyen.com, 1 xaynhachothue.vn, 1 xb008.com, 1 xb053.com, 1 @@ -153155,7 +151717,7 @@ xbyl86.com, 1 xbyl89.com, 1 xbyl91.com, 1 xc01.co, 1 -xc02.co, 1 +xc02.co, 0 xc03.co, 1 xc06.co, 1 xc07.co, 1 @@ -153180,10 +151742,9 @@ xcompany.one, 1 xcraftsumulator.ru, 1 xcspy.org, 1 xcupidon.com, 1 -xcw888.cc, 1 xcw8886.net, 1 -xcw8888.net, 1 -xcw8889.net, 1 +xcw8888.net, 0 +xcw8889.net, 0 xcxmiku.com, 0 xd.cm, 1 xd.gd.cn, 1 @@ -153493,7 +152054,6 @@ xiuxiu.ga, 1 xiuxiu.gq, 1 xiuxiu.ml, 1 xiuxiumh01.cc, 0 -xiuxiumh02.cc, 0 xixi.com, 1 xiyu.com, 1 xjd.vision, 1 @@ -153592,7 +152152,6 @@ xn----jtbiihtkil8b4e.xn--p1ai, 1 xn----mtbckubhv.xn--p1ai, 1 xn----ncfb.ws, 1 xn----otbabmp3ae.xn--p1ai, 1 -xn----rtbbavlecj.xn--p1ai, 1 xn----ylba7abgd9bnh0e.xn--qxa6a, 1 xn----ymcbah8a8de3hvarv.com, 1 xn---35-6cdk1dnenygj.xn--p1ai, 1 @@ -153728,7 +152287,6 @@ xn--98jm6m.jp, 1 xn--9iqy04a7fi01l.com, 1 xn--9kq.eu.org, 1 xn--9kqw7o.com, 1 -xn--9wy4jw3llnh.com, 1 xn--9xa.fun, 1 xn--afd-brhl-c6a.de, 1 xn--afd-hrth-b6a.de, 1 @@ -153803,7 +152361,6 @@ xn--dckya4a0bya6x.com, 1 xn--dckya4a0bya6x.jp, 1 xn--dej-3oa.lv, 1 xn--detrkl13b9sbv53j.com, 1 -xn--dfirtrning-i6a.dk, 1 xn--diseadorwebmallorca-y3b.com, 1 xn--dk8haaa.ws, 1 xn--dmontaa-9za.com, 1 @@ -153811,8 +152368,6 @@ xn--dragni-g1a.de, 1 xn--dragni-g1a.eu, 1 xn--dtursfest-72a.dk, 1 xn--durhre-yxa.de, 1 -xn--duzy3f.com, 1 -xn--duzy3f.world, 1 xn--dviz-5qa.com, 1 xn--e--0g4aiy1b8rmfg3o.jp, 1 xn--e--4h4axau6ld4lna0g.com, 1 @@ -153890,7 +152445,6 @@ xn--hllrigl-90a.at, 0 xn--hnse-gra.net, 1 xn--hogarniitojesus-4qb.com, 1 xn--hsers-kva.de, 1 -xn--i8s3q.xn--j6w193g, 1 xn--ikketenkpdet-1cb.no, 1 xn--imker-in-nrnberg-szb.de, 1 xn--int-ru8ea.xn--6qq986b3xl, 1 @@ -153915,7 +152469,6 @@ xn--kinsthetik-s5a.ch, 1 xn--kkcon-fwab.nz, 1 xn--kl-oja.is, 1 xn--klmek-0sa.com, 1 -xn--klschs-wxa.de, 1 xn--ksse-5qa.fi, 1 xn--ktha-kamrater-pfba.se, 0 xn--l3cb0bbcf6ezc4a7e.th, 1 @@ -153952,13 +152505,11 @@ xn--mensenges-o1a8c.gq, 1 xn--mensengesss-t8a.gq, 1 xn--mentaltraining-fr-musiker-uwc.ch, 1 xn--mercadonavideo-2nb.com, 1 -xn--mes55iczlylk.cc, 1 xn--mgbbh2a9fub.xn--ngbc5azd, 0 xn--mgbmmp7eub.com, 1 xn--mgbpkc7fz3awhe.com, 1 xn--mgbqq.com, 1 xn--mgbuq0c.net, 1 -xn--mgi-qla.life, 1 xn--mhringen-65a.de, 1 xn--mitenlyttit-s8aad6xf.fi, 1 xn--mitenlyttyt-s8aad6xg.fi, 1 @@ -153996,7 +152547,6 @@ xn--p2v.xn--fiqs8s, 1 xn--p2v.xn--fiqz9s, 1 xn--p3t555glxhnwa.com, 1 xn--p8j9a0d9c9a.xn--q9jyb4c, 1 -xn--pascal-klsch-cjb.de, 1 xn--patga-p4a.ga, 1 xn--patiga-syd.ga, 1 xn--pbt947am3ab71g.com, 1 @@ -154068,7 +152618,6 @@ xn--u9jv84l7ea468b.com, 1 xn--u9jy16ncfao19mo8i.nagoya, 1 xn--uba.eu.org, 1 xn--ug8h.st, 1 -xn--uir034cu8i.com, 1 xn--uist1idrju3i.jp, 1 xn--ukasik-2db.pl, 1 xn--ukys-f6a.lt, 1 @@ -154156,7 +152705,6 @@ xosh.fr, 1 xotictrends.com, 1 xotika.tv, 1 xoutpost.com, 1 -xoxo.news, 1 xp-ochrona.pl, 1 xp.nsupdate.info, 1 xpd.se, 1 @@ -154199,8 +152747,6 @@ xplozion.tk, 1 xpods.sg, 1 xportxpert.com, 1 xpreflect.co.uk, 1 -xpremium.org, 0 -xpressable.com, 1 xps-auto.com, 1 xps3dp.com, 1 xps40.com, 1 @@ -154218,13 +152764,8 @@ xq6dtff.top, 1 xqin.net, 1 xqk7.com, 1 xqwqx.com, 1 -xr5.exchange, 1 xr5.me, 1 -xr5.mobi, 1 -xr5.systems, 1 xr5.tech, 1 -xr5.technology, 1 -xr5exchange.com, 1 xrayreview.ml, 1 xrbox.me, 1 xrdd.de, 1 @@ -154384,7 +152925,6 @@ xuesoska.ga, 1 xuewen.ink, 1 xuewen.me, 1 xuexi.icu, 0 -xuexi.moe, 1 xuez.cc, 1 xuming.studio, 1 xumm.me, 1 @@ -154529,8 +153069,6 @@ y09app.vip, 0 y09j.com, 0 y11n.net, 0 y2bet.com, 1 -y2k22.com, 1 -y2k23.com, 1 y2s.pw, 1 y3451.com, 1 y3600.cc, 1 @@ -154639,7 +153177,6 @@ y89v.com, 1 y89ww.com, 0 y89zz.com, 0 y9297.co, 1 -y9297.com, 1 y9728.co, 1 y99.in, 1 ya-hudeu.tk, 1 @@ -154651,8 +153188,8 @@ ya-radio.tk, 1 ya-stroynaya.tk, 1 ya-zdorova.tk, 1 ya.mk, 1 +yaateens.org, 1 yaay.com.br, 1 -yaay.today, 1 yaazhtech.com, 1 yaballe.com, 1 yabbr.com.au, 1 @@ -154698,7 +153235,6 @@ yahvk.moe, 1 yahzah.com, 1 yaiho.com, 1 yaiho.de, 1 -yaina.in, 1 yak-host.tk, 1 yakbett.de, 1 yakiimo-sakura.com, 1 @@ -154758,7 +153294,6 @@ yanagibashi.me, 1 yananikitina.site, 1 yanaya-k.jp, 1 yanbohon.com, 1 -yanceyleo.com, 1 yandere.moe, 1 yandong.tk, 1 yang1963.com.tw, 1 @@ -154935,10 +153470,7 @@ ycherbonnel.fr, 1 ycl.org.uk, 1 yclan.net, 1 ycnrg.org, 1 -ycnxp.com, 1 ycodendauteradio.net, 1 -ycsgo.com, 0 -ycylf.cc, 1 yd.io, 1 yd163.cc, 1 yd169.cc, 1 @@ -154948,7 +153480,6 @@ ydyy99.com, 1 ydyydy.ml, 1 ye.ax, 1 yeadonboroughpa.gov, 1 -yeah-shop.com.ua, 1 yearinviewcalendars.com, 1 yearli.com, 1 yeartracker.ga, 1 @@ -155088,9 +153619,7 @@ yezhong.ml, 1 yezi.ga, 1 yezishurb.site, 1 yf128.cc, 1 -yfcampus.com, 1 yfeer.com, 0 -yfh.me, 1 yggdar.ga, 1 yggdrasildice.com, 1 ygm.org.uk, 1 @@ -155139,11 +153668,11 @@ yigit.shop, 1 yiguan.me, 1 yigujin.cn, 1 yiheng.moe, 0 +yihome.com.tw, 1 yihouse.tw, 1 yijia.support, 1 yijingying.com, 0 yikeyong.com, 1 -yilacoin.com, 1 yilanju.com, 1 yilconstruction.ca, 1 yildiznamebaktir.com, 1 @@ -155235,7 +153764,6 @@ yodalef3.tk, 1 yodaremote.tk, 1 yodelmobile.com, 1 yodocon.com, 1 -yofi-yofi.com, 1 yoga-alliance-teacher-training.com, 1 yoga-bien-etre.com, 1 yoga-erde.de, 1 @@ -155269,7 +153797,6 @@ yogasolution.tk, 1 yogatherapykosha.com, 1 yogaworld.tk, 1 yogibear.tk, 1 -yogies.shop, 1 yogonet.com, 1 yogstation.net, 1 yogularm.de, 1 @@ -155298,7 +153825,6 @@ yolocountyca.gov, 1 yolops.net, 1 yolosh.se, 1 yoloyolo.top, 0 -yombo.net, 1 yomena.in, 1 yomeuno.com, 1 yomiren.co.jp, 1 @@ -155322,6 +153848,7 @@ yooooex.com, 1 yoopies.fr, 1 yooptopian.com, 0 yoozik.io, 1 +yooznet.com, 1 yopers.com, 0 yopmail.com, 1 yopmail.net, 1 @@ -155380,7 +153907,7 @@ yotta-zetta.com, 1 yottahash.net, 1 yotubaiotona.net, 1 you-working.ru, 1 -you.bo, 1 +you.bo, 0 you.com.br, 1 you15iv.com, 1 youareamazingnd.com, 1 @@ -155418,8 +153945,6 @@ youiv1.com, 1 youiv10.com, 1 youiv100.com, 1 youiv20.com, 1 -youiv3.com, 1 -youiv4.com, 1 youivh.com, 1 youivr.com, 1 youivt.com, 0 @@ -155434,7 +153959,6 @@ youlikehookups.com, 1 youliketwinks.com, 1 youlovehers.com, 1 youmeandjunee.com.au, 1 -youmiracle.com, 1 youmonit.me, 1 youms.de, 1 younameit.ru, 1 @@ -155471,7 +153995,6 @@ youpark.no, 1 youphysics.education, 1 youpickfarms.org, 1 your-computer-is-a-hero.tk, 1 -your-fitness-coach.ch, 1 your-forum.tk, 1 your-greece.ga, 1 your-idc.tk, 1 @@ -155603,7 +154126,6 @@ youservice.it, 1 youshouldnthavebeenhacking.com, 1 yousite.by, 1 yousound.tk, 1 -youssefsayed.com, 1 youssfitpro.com, 1 youston.agency, 1 youstyleski.it, 1 @@ -155654,6 +154176,7 @@ ypea.info, 1 ypfr.fr, 1 ypgnews.tk, 1 ypid.de, 1 +yplanapp.com, 1 ypopovych.tk, 1 yporti.net, 1 ypse.com.br, 1 @@ -155695,7 +154218,6 @@ ytcodecs.com, 1 ytcount.com, 1 ytec.ca, 1 ytexa.tk, 1 -ytmous.com, 1 ytpak.pk, 1 ytreza.fr, 1 ytterland.tk, 1 @@ -155718,12 +154240,10 @@ yuandan.ml, 1 yuanjiazhao.com, 1 yuanjiazhao.tk, 1 yuansecard.me, 1 -yubanmei.com, 1 yubi.co, 0 yubico.com, 1 yubico.org, 1 yucaipa.gov, 1 -yucatanhoney.com, 1 yucca.cf, 1 yuccaschidigera.co.uk, 1 yuce518.com, 1 @@ -155808,7 +154328,6 @@ yupug.com, 1 yupulse.be, 1 yuqi.me, 1 yura.cf, 1 -yuriboat.cn, 0 yuricarlenzoli.it, 1 yurikirin.me, 1 yuriland.xyz, 1 @@ -155885,7 +154404,7 @@ yxlon.de, 1 yxt521.com, 1 yy-s.net, 1 yy153.com, 0 -yy366.cc, 1 +yy366.cc, 0 yy369.cc, 1 yy393.com, 0 yy5197.co, 1 @@ -155919,7 +154438,6 @@ yzy6666.com, 1 yzydo.com, 0 yzyweb.cn, 1 z-cert.nl, 1 -z-coder.com, 0 z-e.eu, 1 z-epub.com, 1 z-g-v.nl, 1 @@ -156045,7 +154563,6 @@ z8917.com, 1 z8920.com, 1 z8922.com, 1 z9297.co, 1 -z9397.com, 0 z9721.com, 1 z9728.co, 1 z99944x.xyz, 1 @@ -156089,7 +154606,6 @@ zackattack.tk, 1 zackiarfan.ml, 1 zackzack.at, 1 zaclys.com, 0 -zacmi.com, 0 zad-academy.com, 1 zadania.wiki, 1 zadavalka.ru, 1 @@ -156112,10 +154628,8 @@ zagranicablog.tk, 1 zagruz.tk, 1 zahari.tk, 1 zahirdanzavila.com, 1 -zahirsweetcreations.com, 1 zahn-frankl.at, 1 zahnaerzte-website.de, 1 -zahnarzt-duempten.de, 1 zahnarzt-korsos.at, 1 zahnarzt-kramer.ch, 1 zahnarzt-kruft.de, 1 @@ -156142,7 +154656,6 @@ zain-hasan.ml, 1 zainblue.com, 1 zainzinger.org, 1 zaitaiguo.com, 1 -zaixsp.com, 1 zaizaia.cc, 1 zajc.eu.org, 1 zajm-bez-otkaza.gq, 1 @@ -156270,7 +154783,6 @@ zappbuildapps.com, 0 zappi.io, 1 zappingarahal.tk, 1 zappingcuraduria.tk, 1 -zappo-entertainment.de, 1 zappos, 1 zapproved.com, 1 zapreaders.cf, 1 @@ -156304,7 +154816,6 @@ zarbis.tk, 1 zarcik.pl, 1 zardain.tk, 1 zarezerwuj-nocleg.com, 1 -zargescases.co.uk, 1 zarinab.com, 1 zarja.tk, 1 zarjadnik.tk, 1 @@ -156490,7 +155001,6 @@ zectazepia.tk, 1 zecuur.nl, 1 zedeko.pl, 1 zednet.tk, 1 -zeds-official.com, 1 zedshaw.com, 1 zeedroom.be, 1 zeeg.me, 1 @@ -156542,7 +155052,6 @@ zeitpunkt-kulturmagazin.de, 1 zeitschrift-lq.com, 1 zeitschriftlq.com, 1 zeitzer-turngala.de, 1 -zekelman.com, 1 zekerbewegenhengelo.nl, 1 zekerheidvanparcelinternational.nl, 1 zekinteractive.com, 1 @@ -156730,7 +155239,6 @@ zevlee.me, 1 zewtie.com, 1 zeynabacademy.com, 1 zeyneleroglu.com.tr, 1 -zeynepkam.com.tr, 1 zeyoking.com, 1 zezov.com, 1 zf.com, 1 @@ -156751,7 +155259,6 @@ zgan.ga, 1 zgmining.com, 0 zgndh.com, 1 zgrep.org, 1 -zgw.cz, 1 zgyl8.ml, 1 zh.fyi, 1 zh.search.yahoo.com, 0 @@ -156767,6 +155274,7 @@ zhang.ge, 1 zhang14386.love, 1 zhangda.xyz, 1 zhangfangzhou.com, 1 +zhanghao.me, 0 zhanghao.org, 1 zhangjet.com, 1 zhangjing.space, 1 @@ -156776,7 +155284,7 @@ zhangpeng.ai, 1 zhangwendao.com, 1 zhangyiming.tech, 1 zhangyuhao.com, 0 -zhankon.com, 1 +zhankon.com, 0 zhanxiangyang.com, 1 zhanzhangb.com, 1 zhaochen.xyz, 1 @@ -156876,7 +155384,6 @@ zidanpainting.com, 0 ziddea.com, 1 ziegenhagel.com, 1 ziegler-heizung-frankfurt.de, 1 -zielonakarta.com, 1 ziemlich-zackig.de, 1 ziemlichzackig.de, 1 zifoapptest.com, 1 @@ -156967,7 +155474,6 @@ zirka24.net, 1 ziroh.be, 1 ziroux.net, 1 zirrka.de, 1 -zirveyazilim.net, 1 zisoo.nl, 1 zistemo.com, 1 zitadel.ch, 0 @@ -156997,7 +155503,6 @@ zjsnrwiki.com, 1 zju.tv, 1 zjuqsc.com, 1 zjy7722.ml, 1 -zjyifa.cn, 1 zjyoulian.cn, 1 zk.gd, 1 zk9.nl, 1 @@ -157010,7 +155515,6 @@ zkoclub.cn, 1 zkoclub.com, 1 zkontrolujsiauto.cz, 1 zkrd.de, 1 -zkrew.red, 1 zkvi.nl, 1 zkwolf.top, 1 zl-19.com, 1 @@ -157118,11 +155622,9 @@ znidar.org, 1 zniis.ru, 1 zning.net.cn, 1 znjc.top, 1 -znn.co.jp, 1 znowuwrocisz.pl, 1 znwvw.net, 1 zobraz.cz, 1 -zobworks.com, 1 zochowskiplasticsurgery.com, 1 zockenbiszumumfallen.de, 1 zocode.tk, 1 @@ -157132,6 +155634,7 @@ zodgame.fun, 0 zodgame.xyz, 1 zodiac.rs, 1 zodiacohouses.com, 1 +zodiaconline.com, 1 zodiak.tk, 1 zoedijital.com, 1 zoefmasters.be, 1 @@ -157182,7 +155685,6 @@ zolw.info, 1 zom.bi, 1 zomatree.live, 1 zombie-40th.com, 1 -zombie-apocalypse-survival.com, 1 zombie.cam, 1 zombieclown.com, 1 zombiecrowinc.tk, 1 @@ -157206,7 +155708,6 @@ zonaperu.tk, 1 zonaquimica.tk, 1 zonarumbera.tk, 1 zonatelevision.tk, 1 -zonazealots.com, 1 zondervanacademic.com, 1 zone-de-confiance.fr, 1 zone-hack.tk, 1 @@ -157236,6 +155737,7 @@ zongzi.zone, 1 zonky.cz, 1 zonky.de, 1 zonneglossis.tk, 1 +zonnenberg.de, 1 zonnigzieuwent.nl, 1 zontractors.com, 1 zoo-dog.ru, 1 @@ -157273,7 +155775,6 @@ zoosfera12.ru, 1 zoot.org, 1 zootime.net, 1 zootime.org, 1 -zootsys.com, 1 zoowiki.us, 1 zooxdata.com, 1 zopyx.com, 1 @@ -157447,6 +155948,7 @@ zusammen-grossartig.de, 1 zusjesvandenbos.nl, 1 zuss.tk, 1 zusterjansen.nl, 1 +zutobi.com, 0 zuu.fi, 1 zuviel.space, 1 zuyzi.com, 1 @@ -157502,7 +156004,6 @@ zybbo.com, 0 zycao.com, 0 zycie.news, 1 zyciedirect.pl, 1 -zyciegwiazd24.pl, 1 zyciepl.com, 1 zycjd.com, 0 zycrypto.com, 1 diff --git a/security/manager/ssl/nsSiteSecurityService.cpp b/security/manager/ssl/nsSiteSecurityService.cpp index 31867bbbe8b2d..66cc8981b77c4 100644 --- a/security/manager/ssl/nsSiteSecurityService.cpp +++ b/security/manager/ssl/nsSiteSecurityService.cpp @@ -694,15 +694,12 @@ bool nsSiteSecurityService::GetPreloadStatus(const nsACString& aHost, return found; } -// Allows us to determine if we have an HSTS entry for a given host (and, if -// so, what that state is). The return value says whether or not we know -// anything about this host (true if the host has an HSTS entry). aHost is -// the host which we wish to deteming HSTS information on, -// aRequireIncludeSubdomains specifies whether we require includeSubdomains -// to be set on the entry (with the other parameters being as per IsSecureHost). -bool nsSiteSecurityService::HostHasHSTSEntry( +// Determines whether or not there is a matching HSTS entry for the given host. +// If aRequireIncludeSubdomains is set, then for there to be a matching HSTS +// entry, it must assert includeSubdomains. +bool nsSiteSecurityService::HostMatchesHSTSEntry( const nsAutoCString& aHost, bool aRequireIncludeSubdomains, - const OriginAttributes& aOriginAttributes, bool* aResult) { + const OriginAttributes& aOriginAttributes) { // First we check for an entry in site security storage. If that entry exists, // we don't want to check in the preload lists. We only want to use the // stored value if it is not a knockout entry, however. @@ -724,9 +721,8 @@ bool nsSiteSecurityService::HostHasHSTSEntry( if (!expired) { SSSLOG(("Entry for %s is not expired", aHost.get())); if (siteState.mHSTSState == SecurityPropertySet) { - *aResult = - aRequireIncludeSubdomains ? siteState.mHSTSIncludeSubdomains : true; - return true; + return aRequireIncludeSubdomains ? siteState.mHSTSIncludeSubdomains + : true; } } @@ -746,8 +742,7 @@ bool nsSiteSecurityService::HostHasHSTSEntry( if (siteState.mHSTSState == SecurityPropertyUnset && GetPreloadStatus(aHost, &includeSubdomains)) { SSSLOG(("%s is a preloaded HSTS host", aHost.get())); - *aResult = aRequireIncludeSubdomains ? includeSubdomains : true; - return true; + return aRequireIncludeSubdomains ? includeSubdomains : true; } return false; @@ -757,8 +752,6 @@ nsresult nsSiteSecurityService::IsSecureHost( const nsACString& aHost, const OriginAttributes& aOriginAttributes, bool* aResult) { NS_ENSURE_ARG(aResult); - - // set default in case if we can't find any STS information *aResult = false; /* An IP address never qualifies as a secure URI. */ @@ -771,36 +764,42 @@ nsresult nsSiteSecurityService::IsSecureHost( PublicKeyPinningService::CanonicalizeHostname(flatHost.get())); // First check the exact host. - if (HostHasHSTSEntry(host, false, aOriginAttributes, aResult)) { + if (HostMatchesHSTSEntry(host, false, aOriginAttributes)) { + *aResult = true; return NS_OK; } - SSSLOG(("no HSTS data for %s found, walking up domain", host.get())); - const char* subdomain; + SSSLOG(("%s not congruent match for any known HSTS host", host.get())); + const char* superdomain; uint32_t offset = 0; for (offset = host.FindChar('.', offset) + 1; offset > 0; offset = host.FindChar('.', offset) + 1) { - subdomain = host.get() + offset; + superdomain = host.get() + offset; // If we get an empty string, don't continue. - if (strlen(subdomain) < 1) { + if (strlen(superdomain) < 1) { break; } // Do the same thing as with the exact host except now we're looking at // ancestor domains of the original host and, therefore, we have to require - // that the entry includes subdomains. - nsAutoCString subdomainString(subdomain); - - if (HostHasHSTSEntry(subdomainString, true, aOriginAttributes, aResult)) { - break; + // that the entry asserts includeSubdomains. + nsAutoCString superdomainString(superdomain); + if (HostMatchesHSTSEntry(superdomainString, true, aOriginAttributes)) { + *aResult = true; + return NS_OK; } - SSSLOG(("no HSTS data for %s found, walking up domain", subdomain)); + SSSLOG( + ("superdomain %s not known HSTS host (or includeSubdomains not set), " + "walking up domain", + superdomain)); } - // Use whatever we ended up with, which defaults to false. + // If we get here, there was no congruent match, and no superdomain matched + // while asserting includeSubdomains, so this host is not HSTS. + *aResult = false; return NS_OK; } diff --git a/security/manager/ssl/nsSiteSecurityService.h b/security/manager/ssl/nsSiteSecurityService.h index 648911ea69493..21403b0009ca6 100644 --- a/security/manager/ssl/nsSiteSecurityService.h +++ b/security/manager/ssl/nsSiteSecurityService.h @@ -126,10 +126,9 @@ class nsSiteSecurityService : public nsISiteSecurityService, nsISiteSecurityService::ResetStateBy aScope); void ResetStateForExactDomain(const nsCString& aHostname, const OriginAttributes& aOriginAttributes); - bool HostHasHSTSEntry(const nsAutoCString& aHost, - bool aRequireIncludeSubdomains, - const OriginAttributes& aOriginAttributes, - bool* aResult); + bool HostMatchesHSTSEntry(const nsAutoCString& aHost, + bool aRequireIncludeSubdomains, + const OriginAttributes& aOriginAttributes); bool GetPreloadStatus( const nsACString& aHost, /*optional out*/ bool* aIncludeSubdomains = nullptr) const; diff --git a/security/manager/ssl/tests/unit/test_sts_preloadlist_perwindowpb.js b/security/manager/ssl/tests/unit/test_sts_preloadlist_perwindowpb.js index 9f26272c8e6d1..6b1b4a5ba6ba1 100644 --- a/security/manager/ssl/tests/unit/test_sts_preloadlist_perwindowpb.js +++ b/security/manager/ssl/tests/unit/test_sts_preloadlist_perwindowpb.js @@ -162,8 +162,11 @@ function test_part1() { // Here's what we have now: // |-- includesubdomains.preloaded.test (in preload list, includes subdomains) IS sts host // |-- subdomain.includesubdomains.preloaded.test (include subdomains is false) IS sts host - // | `-- another.subdomain.includesubdomains.preloaded.test IS NOT sts host + // | `-- another.subdomain.includesubdomains.preloaded.test IS sts host // `-- sibling.includesubdomains.preloaded.test IS sts host + // Note that another.subdomain.includesubdomains.preloaded.test IS still an sts host, because + // there exists a superdomain that is sts and asserts includeSubdomains (namely, + // includesubdomains.preloaded.test) ok( gSSService.isSecureURI( Services.io.newURI("https://subdomain.includesubdomains.preloaded.test") @@ -175,7 +178,7 @@ function test_part1() { ) ); ok( - !gSSService.isSecureURI( + gSSService.isSecureURI( Services.io.newURI( "https://another.subdomain.includesubdomains.preloaded.test" ) diff --git a/services/settings/dumps/blocklists/addons-bloomfilters.json b/services/settings/dumps/blocklists/addons-bloomfilters.json index 8606ab067518e..79e7e55e2eb79 100644 --- a/services/settings/dumps/blocklists/addons-bloomfilters.json +++ b/services/settings/dumps/blocklists/addons-bloomfilters.json @@ -1,5 +1,487 @@ { "data": [ + { + "stash": { + "blocked": [ + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.32.3", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.2", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.15", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.19", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.19.1", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.10", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.21", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.33.1", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.26", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.33.3", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.26.2", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.31.1", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.21", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.24", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.11.1", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.12.1", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.25", + "{4d40a96d-658f-4a3e-8585-809800431ad6}:1.5.9", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.38.2", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.22", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.13", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.39.1", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.38.1", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.23", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.16", + "tab-stash@my.version:3.0", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.24.2", + "{a1e65c0a-c949-4a85-9b33-e9c6c0f249be}:1.0.0", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.15", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.19.1", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.27.2", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.27", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.35.3", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.31.2", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.20", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.16", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.19.2", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.12", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.22", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.13.7", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.38", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.3", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.27.1", + "{a1e65c0a-c949-4a85-9b33-e9c6c0f249be}:1.2.0", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.24", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.30.2", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.19.3", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.30", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.29.5", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.16.1", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.34", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.13", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.23.2", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.36.3", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.34.1", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.12.3", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.29.1", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.10", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.23", + "anywell@anywell.net:1.5", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.30.1", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.17", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.24.1", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.25", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.22", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.17", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.12", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.32", + "anywell@anywell.net:1.4", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.32", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.8", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.20", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.16.2", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.6", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.7", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.35", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.33", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.33", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.19", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.18.1", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.37", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.30", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.40", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.17", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.39", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.18.2", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.14", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.18", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.14.1", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.20.1", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.15", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.36", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.9", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.35", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.35.5", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.11", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.26.1", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.12.2", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.26.1", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.18", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.25", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.27", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.29.6", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.32.1", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.14", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.11.2", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.29.7", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.20", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.35.1", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.29", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.14.1", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.11", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.18.3", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.28.2", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.23", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.28", + "Aternity-WebExt-12.1.4@aternity.com:12.1.4.5", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.26", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.33.2", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.37.1", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.3.26", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.29.4", + "{4a53adf1-5b2b-4a2d-a912-46c74932eea6}:1.2.31" + ], + "unblocked": [] + }, + "schema": 1704903177646, + "key_format": "{guid}:{version}", + "stash_time": 1704911704305, + "id": "692d0d75-83d5-4877-b133-8c4039c92d97", + "last_modified": 1704911757478 + }, + { + "stash": { + "blocked": [ + "{5e118bad-a840-4256-bd31-296194533aac}:0.0.14" + ], + "unblocked": [] + }, + "schema": 1703766958026, + "key_format": "{guid}:{version}", + "stash_time": 1704285304557, + "id": "7347b7e8-c292-4e7b-a6ef-36a72d6e8f07", + "last_modified": 1704285358567 + }, + { + "stash": { + "blocked": [ + "{592491de-37d0-4fa3-8e7e-264c74a4bb59}:3.0.0", + "{fe967e4e-73d4-4597-9f70-b17f761778ca}:1.0.0" + ], + "unblocked": [] + }, + "schema": 1703270156760, + "key_format": "{guid}:{version}", + "stash_time": 1703766904236, + "id": "44366958-2d6b-4a17-9f30-2fdfc5b038fe", + "last_modified": 1703766957812 + }, + { + "stash": { + "blocked": [ + "{36127c9e-d2f9-4686-a135-b05d820018ff}:1.0.0" + ], + "unblocked": [] + }, + "schema": 1702989359005, + "key_format": "{guid}:{version}", + "stash_time": 1703270104442, + "id": "b41f54ad-08fe-4056-8a2b-fdfe878ab649", + "last_modified": 1703270156552 + }, + { + "stash": { + "blocked": [ + "{c35c913f-cf7a-4663-94f9-bb850b15f612}:1.0.0" + ], + "unblocked": [] + }, + "schema": 1702901354887, + "key_format": "{guid}:{version}", + "stash_time": 1702989304450, + "id": "9f52a928-085e-4444-a3cb-afb57580790d", + "last_modified": 1702989358799 + }, + { + "stash": { + "blocked": [ + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.99", + "kpm_win_add_on_9.0@kaspersky:4.0.38", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.28", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.49", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.72", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.142", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.92", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.117", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.7", + "kpm_win_add_on_9.0@kaspersky:5.0.11.1", + "kpm_win_add_on_9.0@kaspersky:6.0.37.1", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.43", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.30", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.99", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.102", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.92", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.94", + "kpm_win_add_on_9.0@kaspersky:4.0.23", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.1.6.5", + "kpm_win_add_on_9.0@kaspersky:5.0.8.43", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.69", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.12", + "kpm_win_add_on_9.0@kaspersky:5.0.0.12", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.49", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.24", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.14", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.7.18", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.67", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.12", + "kpm_win_add_on_9.0@kaspersky:4.0.29", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.1.6.10", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.54", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.68", + "kpm_win_add_on_9.0@kaspersky:4.0.32", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.145", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.7.4", + "kpm_win_add_on_9.0@kaspersky:5.0.0.50", + "kpm_win_add_on_9.0@kaspersky:4.1.4", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.120", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.68", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.41", + "kpm_win_add_on_9.0@kaspersky:4.1.3", + "kpm_win_add_on_9.0@kaspersky:5.0.7.22", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.134", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.41", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.1.9.10", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.58", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.90", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.7.77", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.17", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.208", + "kpm_win_add_on_9.0@kaspersky:4.1.13", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.191", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.88", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.16", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.1.7.11", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.80", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.47", + "kpm_win_add_on_9.0@kaspersky:5.0.2.47", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.8", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.1.7.8", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.79", + "kpm_win_add_on_9.0@kaspersky:5.0.3.6", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.10", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.87", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.1.7.12", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.6", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.24", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.132", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.64", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.16", + "kpm_win_add_on_9.0@kaspersky:5.0.7.23", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.7.9", + "kpm_win_add_on_9.0@kaspersky:4.0.39", + "kpm_win_add_on_9.0@kaspersky:4.0.24", + "kpm_win_add_on_9.0@kaspersky:5.0.0.43", + "kpm_win_add_on_9.0@kaspersky:4.0.22", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.64", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.64", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.63", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.29", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.53", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.95", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.1.6.9", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.102", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.65", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.1.8.7", + "kpm_win_add_on_9.0@kaspersky:5.0.8.46", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.76", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.60", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.95", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.150", + "kpm_win_add_on_9.0@kaspersky:5.0.12.20", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.2", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.30", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.215", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.20", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.31", + "kpm_win_add_on_9.0@kaspersky:4.1.12", + "kpm_win_add_on_9.0@kaspersky:5.0.0.19", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.219", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.138", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.13", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.82", + "kpm_win_add_on_9.0@kaspersky:4.1.5", + "kpm_win_add_on_9.0@kaspersky:5.0.5.39", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.135", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.172", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.70", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.43", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.31", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.109", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.17", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.125", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.43", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.131", + "kpm_win_add_on_9.0@kaspersky:4.0.37", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.67", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.56", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.92", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.3", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.7.21", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.106", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.198", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.56", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.8", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.7.84", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.184", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.36", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.86", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.27", + "kpm_win_add_on_9.0@kaspersky:4.0.30", + "kpm_win_add_on_9.0@kaspersky:4.1.16.2", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.1.7.5", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.211", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.81", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.12", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.46", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.96", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.79", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.40", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.72", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.178", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.56", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.175", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.53", + "kpm_win_add_on_9.0@kaspersky:4.1.7", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.149", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.29", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.200", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.101", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.109", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.60", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.72", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.34", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.93", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.5", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.7.80", + "kpm_win_add_on_9.0@kaspersky:5.0.4.15", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.42", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.131", + "kpm_win_add_on_9.0@kaspersky:4.1.15", + "kpm_win_add_on_9.0@kaspersky:4.0.31", + "kpm_win_add_on_9.0@kaspersky:5.0.0.3", + "firefoxhpsureclicksecurebrowsing@bromium.com:5.1.6.2", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.87", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.112", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.75", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.7.14", + "kpm_win_add_on_9.0@kaspersky:5.0.3.12", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.133", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.2", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.73", + "kpm_win_add_on_9.0@kaspersky:5.0.10.209", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.216", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.81", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.102", + "kpm_win_add_on_9.0@kaspersky:4.0.14", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.140", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.1.9.9", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.210", + "kpm_win_add_on_9.0@kaspersky:4.1.6", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.159", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.4", + "kpm_win_add_on_9.0@kaspersky:5.0.6.4", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.69", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.85", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.6", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.1.7.6", + "kpm_win_add_on_9.0@kaspersky:6.0.34.2", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.1.7.4", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.1.8.6", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.48", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.97", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.41", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.133", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.21", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.78", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.1.5.2", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.8", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.18", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.160", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.7.3", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.146", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.7.39", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.62", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.0.0.61", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.4.46", + "kpm_win_add_on_9.0@kaspersky:5.0.1.127", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.99", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.6", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.118", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.52", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.26", + "firefoxhpsureclicksecurebrowsing@bromium.com:7.1.6.8", + "kpm_win_add_on_9.0@kaspersky:4.0.26", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.7.6", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.137", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.2.1.9", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.8.220", + "firefoxhpsureclicksecurebrowsing@bromium.com:4.1.6.150" + ], + "unblocked": [] + }, + "schema": 1702406156175, + "key_format": "{guid}:{version}", + "stash_time": 1702470904368, + "id": "51cacbde-769a-4586-8350-e2225f82ceef", + "last_modified": 1702470957419 + }, + { + "stash": { + "blocked": [ + "{0dc8db0b-9e11-40dd-bcb8-209a8b7ac42f}:1.0.11", + "{0dc8db0b-9e11-40dd-bcb8-209a8b7ac42f}:1.0.9", + "ms.pad.firefox@microsoft.com:2.25.0.3", + "ms.pad.firefox@microsoft.com:2.27.0.1", + "ms.pad.firefox@microsoft.com:2.25.0.2", + "{0dc8db0b-9e11-40dd-bcb8-209a8b7ac42f}:1.0.10", + "ms.pad.firefox@microsoft.com:2.25.0.1" + ], + "unblocked": [] + }, + "schema": 1702319757822, + "key_format": "{guid}:{version}", + "stash_time": 1702406104049, + "id": "acba4564-70c8-4766-abb8-2280c5f33822", + "last_modified": 1702406155985 + }, + { + "stash": { + "blocked": [ + "{585c8101-7469-49de-8011-bea28460c306}:1.0.4", + "{0e7ed67c-b9ff-45cb-9398-b959d2b9ddd4}:4.6", + "{585c8101-7469-49de-8011-bea28460c306}:1.0.15", + "{0e7ed67c-b9ff-45cb-9398-b959d2b9ddd4}:4", + "{585c8101-7469-49de-8011-bea28460c306}:1.0.14", + "{585c8101-7469-49de-8011-bea28460c306}:1.0.5", + "{b7c9c36a-4104-4a91-b158-1bf41401a2fa}:0.1.1", + "{b7c9c36a-4104-4a91-b158-1bf41401a2fa}:0.0.1", + "{0e7ed67c-b9ff-45cb-9398-b959d2b9ddd4}:2.5", + "{0e7ed67c-b9ff-45cb-9398-b959d2b9ddd4}:2", + "{0e7ed67c-b9ff-45cb-9398-b959d2b9ddd4}:4.5", + "{bae5247c-d265-4e60-b555-1cf555393119}:1", + "{585c8101-7469-49de-8011-bea28460c306}:1.0.2", + "{b7c9c36a-4104-4a91-b158-1bf41401a2fa}:0.1.5", + "{0e7ed67c-b9ff-45cb-9398-b959d2b9ddd4}:3.5", + "statlook_network_filter_1.9@aplusc-systems.com:1.9", + "{2e7f0117-ca54-4bcd-97c6-0b4ea02cf9b8}:1.0.1", + "{585c8101-7469-49de-8011-bea28460c306}:0.41.5", + "{585c8101-7469-49de-8011-bea28460c306}:0.41.3", + "{585c8101-7469-49de-8011-bea28460c306}:1.0.3", + "{585c8101-7469-49de-8011-bea28460c306}:0.41.4", + "addonY21@manualsdirectory.org:1.23.1105", + "{c8a7e86e-8d85-480b-809f-a51783eadc3c}:2.5", + "{585c8101-7469-49de-8011-bea28460c306}:1.0.11", + "{585c8101-7469-49de-8011-bea28460c306}:0.41.2", + "{585c8101-7469-49de-8011-bea28460c306}:1.0.12", + "google-page-translator-en-ja@id.pokemori.jp:0.1.0", + "{b7c9c36a-4104-4a91-b158-1bf41401a2fa}:0.1.6", + "{0e7ed67c-b9ff-45cb-9398-b959d2b9ddd4}:3", + "{bae5247c-d265-4e60-b555-1cf555393119}:1.2" + ], + "unblocked": [] + }, + "schema": 1701952559639, + "key_format": "{guid}:{version}", + "stash_time": 1702319704267, + "id": "83b01958-487d-4b3b-a5b2-543cd9f8a56d", + "last_modified": 1702319757616 + }, { "stash": { "blocked": [ @@ -2913,5 +3395,5 @@ "last_modified": 1690223886167 } ], - "timestamp": 1701952559443 + "timestamp": 1704911757478 } diff --git a/services/settings/dumps/main/cookie-banner-rules-list.json b/services/settings/dumps/main/cookie-banner-rules-list.json index 0e1a3ed99971c..41b17b6250935 100644 --- a/services/settings/dumps/main/cookie-banner-rules-list.json +++ b/services/settings/dumps/main/cookie-banner-rules-list.json @@ -1,583 +1,1079 @@ { "data": [ { - "click": {}, - "schema": 1700826062965, - "cookies": { - "optOut": [ - { - "name": "cookieDeclined", - "value": "1" - } - ] + "click": { + "optIn": "[data-cookieman-accept-all]", + "optOut": "[data-cookieman-accept-none]", + "presence": "#cookieman-modal" }, + "schema": 1704727928035, "domains": [ - "grundstoff.net" + "hfm-frankfurt.de" ], - "id": "ca62d977-4e2e-48ab-a186-055f9f3277e4", - "last_modified": 1701423955158 + "id": "5FF5EEB9-1045-4ACF-8A12-0630B71063F6", + "last_modified": 1704881609345 }, { "click": {}, - "schema": 1700826062965, + "schema": 1704727928035, "cookies": { "optOut": [ { - "name": "onleiheTracking", + "name": "paydirektCookieAllowed", "value": "false" + }, + { + "name": "paydirektCookieAllowedPWS", + "value": "{%22necessary%22:true,%22analytics%22:false}" } ] }, "domains": [ - "onleihe.de" + "paydirekt.de" ], - "id": "c19b1009-d609-438c-8d7c-82fc7144eeaa", - "last_modified": 1701423955154 + "id": "769dcf5b-afd1-438d-940d-3069ff4b2f51", + "last_modified": 1704881609341 }, { "click": { - "optIn": "button.cm-btn-success", - "optOut": "button.cm-btn-danger", - "presence": "div#klaro" + "optIn": "button.iubenda-cs-accept-btn", + "optOut": "button.iubenda-cs-reject-btn", + "presence": "div#iubenda-cs-banner" }, - "schema": 1700826062965, + "schema": 1704727928035, "cookies": {}, "domains": [ - "karlsruhe.de" + "giallozafferano.it", + "virgilio.it", + "upfit.de", + "treedom.net" ], - "id": "63b5c74c-67ae-47f2-b0ba-10c03132ad6f", - "last_modified": 1701423955150 + "id": "65638975-8222-425c-9be0-3f41a51db13c", + "last_modified": 1704881609336 }, { "click": { - "optIn": "button.js-cookie-accept", - "optOut": "button.js-cookie-decline", - "presence": "div#toast-container" + "optIn": "button#didomi-notice-agree-button", + "optOut": "button#didomi-notice-disagree-button", + "presence": "div#didomi-host" }, - "schema": 1700826062965, + "schema": 1704727928035, + "cookies": {}, "domains": [ - "startnext.com" + "doctolib.fr", + "pravda.sk", + "topky.sk", + "zoznam.sk", + "tvnoviny.sk", + "aukro.cz", + "krone.at", + "cas.sk", + "heureka.sk", + "free.fr", + "markiza.sk", + "willhaben.at", + "francetvinfo.fr", + "france24.com", + "opodo.at", + "opodo.ch", + "opodo.co.uk", + "opodo.de", + "opodo.dk", + "opodo.fi", + "opodo.fr", + "opodo.it", + "opodo.nl", + "opodo.no", + "opodo.pl", + "opodo.pt" ], - "id": "312f32e1-a6bf-4e87-b7a6-7480345823cf", - "last_modified": 1701423955146 + "id": "690aa076-4a8b-48ec-b52c-1443d44ff008", + "last_modified": 1704881609332 }, { "click": { - "optIn": ".consentAgree", - "optOut": "#consentDisagree", - "presence": "div.consent" + "optIn": ".cc-btn.cc-allow", + "optOut": ".cc-btn.cc-deny", + "presence": ".cc-window.cc-banner" }, - "schema": 1700826062965, - "cookies": {}, - "domains": [ - "strato.de" - ], - "id": "18b1dd86-aee5-4697-b601-4fa320a75dbe", - "last_modified": 1701423955143 - }, - { - "click": {}, - "schema": 1700826062965, + "schema": 1704727928035, "cookies": { "optOut": [ { - "name": "hidecookie", - "value": "true" + "name": "cookieconsent_status", + "value": "deny" } ] }, "domains": [ - "vrn.de" + "magnite.com", + "omv.com", + "omv.at", + "omv.bg", + "omv.de", + "omv.nz", + "omv.no", + "omv.ro", + "omv.co.rs", + "omv.sk", + "omv.cz", + "omv.tn", + "omv.ae", + "omv.hu", + "omv.si", + "omv-gas.com", + "omv-gas.at", + "omv-gas.be", + "omv-gas.de", + "omv-gas.hu", + "omv-gas.nl", + "omv-gas.com.tr", + "omv-gas-storage.com", + "omvpetrom.com", + "petrom.ro", + "petrom.md", + "avanti.at", + "avanti-tankstellen.de", + "diskonttanken.at", + "tocimceneje.si" ], - "id": "0ae7f461-8705-4222-b8ee-afa03e5150ff", - "last_modified": 1701423955139 + "id": "8f401b10-02b6-4e05-88fa-c37012d4c8c0", + "last_modified": 1704881609328 }, { - "click": {}, - "schema": 1700826062965, - "cookies": { - "optOut": [ - { - "name": "consent_functional", - "value": "DENY" - }, - { - "name": "consent_marketing", - "value": "DENY" - }, - { - "name": "consent_technical", - "value": "ALLOW" - }, - { - "name": "consent_version", - "value": "2.6" - } - ] + "click": { + "optOut": "#zdf-cmp-deny-btn", + "presence": ".zdf-cmp-modal-content" }, + "schema": 1704727928035, + "cookies": {}, "domains": [ - "huk24.de" + "zdf.de", + "3sat.de" ], - "id": "0fbacecc-fbda-4e4b-883f-9424790ccc74", - "last_modified": 1701423955135 + "id": "91484461-01AD-4D78-9ED8-D17C688F47E7", + "last_modified": 1704881609324 }, { - "click": {}, - "schema": 1700826062965, - "cookies": { - "optOut": [ - { - "name": "cookiebanner", - "value": "closed" - } - ] + "click": { + "optIn": ".root__OblK1:not(.secondaryButton__N1rJw)", + "optOut": ".root__OblK1.secondaryButton__N1rJw", + "presence": ".root__XMKIj" }, + "schema": 1704727928035, + "cookies": {}, "domains": [ - "thw.de" + "forbes.com" ], - "id": "58226c30-e975-42f3-99e4-ca140b91e96c", - "last_modified": 1701423955130 + "id": "30293090-f064-473a-ae0f-cd390507c1c7", + "last_modified": 1704881609320 }, { - "click": {}, - "schema": 1700826062965, + "click": { + "optIn": "[href=\"#accept\"]", + "optOut": "[href=\"#refuse\"]", + "presence": "div#cookie-consent-banner" + }, + "schema": 1704727928035, "cookies": { "optOut": [ { - "name": "cookie-preference", - "value": "1" + "name": "cck1", + "value": "%7B%22cm%22%3Atrue%2C%22all1st%22%3Afalse%2C%22closed%22%3Atrue%7D" } ] }, "domains": [ - "korodrogerie.de" + "europa.eu" ], - "id": "cdd5646d-06b3-4fdf-8530-b7d8a93f03df", - "last_modified": 1701423955126 + "id": "0c74749a-8c53-4bb0-b31a-ab2f89b7f493", + "last_modified": 1704881609316 }, { "click": { - "optIn": "button.cl-consent__btn", - "optOut": "button.cl-consent__close-link", - "presence": "div#cl-consent" + "optIn": ".CookieBanner_buttonContainer__NOZxH:nth-child(1) button", + "optOut": ".CookieBanner_buttonContainer__NOZxH:nth-child(2) button", + "presence": ".CookieBanner_cookieBanner__R_BOh" }, - "schema": 1700826062965, - "cookies": {}, + "schema": 1702080004246, "domains": [ - "hdblog.it", - "hdmotori.it" + "cbinsights.com" ], - "id": "342bd7ca-6502-4df7-bd3a-0b884b51aaa7", - "last_modified": 1701423955123 + "id": "4CE0ADCF-E232-4F3B-981B-CA83A0C40874", + "last_modified": 1702633230760 }, { - "click": {}, - "schema": 1700826062965, - "cookies": { - "optOut": [ - { - "name": "cookies_accepted", - "value": "false" - } - ] + "click": { + "optIn": "#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll", + "optOut": "#CybotCookiebotDialogBodyLevelButtonLevelOptinDeclineAll", + "presence": "#cookiebanner" }, + "schema": 1702080004246, "domains": [ - "mindfactory.de" + "action.com" ], - "id": "aa077f01-0574-4f1b-ad1b-3225c4dc59f7", - "last_modified": 1701423955119 + "id": "04afc564-14b2-4c56-b72d-47a26e121f3b", + "last_modified": 1702633230755 }, { "click": { - "optIn": "button[data-qa=\"privacy-settings-action-info\"]", - "optOut": "button[data-qa=\"privacy-settings-action-close\"]", - "presence": "[data-qa=\"privacy-settings\"]" + "optIn": ".cc-allow", + "optOut": ".cc-deny", + "presence": ".cc-window" + }, + "schema": 1702080004246, + "cookies": { + "optIn": [ + { + "name": "eclipse_cookieconsent_status", + "value": "allow" + } + ], + "optOut": [ + { + "name": "eclipse_cookieconsent_status", + "value": "deny" + } + ] }, - "schema": 1700826062965, "domains": [ - "lieferando.de", - "just-eat.ch" + "adoptium.net", + "eclipse-ee4j.github.io", + "eclipse.dev", + "eclipse.org", + "glassfish.org", + "jakarta.ee", + "mbse-capella.org", + "oniroproject.org", + "open-vsx.org", + "openmdm.org", + "osgi.org", + "planeteclipse.org" ], - "id": "31d9971f-e23d-4dd9-a891-99a85d97ad19", - "last_modified": 1701423955115 + "id": "92361e84-664e-46b3-ae55-95bc185dc88e", + "last_modified": 1702633230751 }, { "click": { - "optIn": "button#cookieok", - "optOut": "button#cookiecancel", - "presence": "div#cookieconsent" + "optIn": ".cc-allow", + "optOut": ".cc-dismiss", + "presence": ".cc-window" }, - "schema": 1700826062965, - "cookies": {}, + "schema": 1702080004246, "domains": [ - "reichelt.de" + "dell.com", + "delltechnologies.com" ], - "id": "b81fc066-5cdd-4af6-b288-49de860e369a", - "last_modified": 1701423955111 + "id": "f1849b07-95e8-4ae0-a99d-24df5abbb3cb", + "last_modified": 1702633230746 }, { "click": { - "optIn": "button#cookie-consent-button", - "presence": "dialog.consent" + "optIn": ".modal-box__buttons--save-all", + "presence": ".new-policy-box" + }, + "schema": 1702080004246, + "cookies": { + "optIn": [ + { + "name": "polityka15", + "value": "security_storage%3Dtrue%26functionality_storage%3Dtrue%26analytics_storage%3Dtrue%26personalization_storage%3Dtrue%26ad_storage%3Dtrue" + } + ], + "optOut": [ + { + "name": "polityka15", + "value": "security_storage%3Dtrue%26functionality_storage%3Dfalse%26analytics_storage%3Dfalse%26personalization_storage%3Dfalse%26ad_storage%3Dfalse" + } + ] }, - "schema": 1700826062965, "domains": [ - "computerbase.de" + "nazwa.pl" ], - "id": "2c73714d-0e9b-41a1-ad12-6bd15ddade67", - "last_modified": 1701423955107 + "id": "ddff9528-161c-471e-bd2d-ba4d874a3931", + "last_modified": 1702633230742 }, { "click": { - "optIn": "button.cm-btn-accept-all", - "optOut": "button.cm-btn-accept", - "presence": "div#klaro" + "optIn": ".agree-button", + "optOut": ".decline-button", + "presence": ".eu-cookie-compliance-banner" + }, + "schema": 1702080004246, + "cookies": { + "optIn": [ + { + "name": "cookie-agreed", + "value": "2" + }, + { + "name": "cookie-agreed-version", + "value": "1.0.0" + } + ], + "optOut": [ + { + "name": "cookie-agreed", + "value": "0" + } + ] }, - "schema": 1700826062965, - "cookies": {}, "domains": [ - "lancom-systems.de" + "zyxel.com" ], - "id": "efc6f62d-8d53-4f52-9dd3-172d9b04f5de", - "last_modified": 1701423955104 + "id": "351f17c2-54b7-4a43-a425-b53bf5950b2e", + "last_modified": 1702633230738 }, { "click": { - "optIn": "button.iubenda-cs-accept-btn", - "presence": "div#iubenda-cs-banner" + "optIn": ".cc-dismiss", + "optOut": ".cc-deny", + "presence": ".cc-window" + }, + "schema": 1702080004246, + "cookies": { + "optIn": [ + { + "name": "cookieconsent_status", + "value": "dismiss" + } + ], + "optOut": [ + { + "name": "cookieconsent_status", + "value": "deny" + } + ] }, - "schema": 1700826062965, - "cookies": {}, "domains": [ - "ansa.it" + "zotac.com" ], - "id": "8e55f0f4-262f-4d35-a461-47afea6e9069", - "last_modified": 1701423955100 + "id": "4159a3d2-f331-4d56-b051-a753c7e1308a", + "last_modified": 1702633230734 }, { "click": { - "optIn": ".sp_choice_type_11", - "presence": ".message-container > #notice", - "runContext": "child" + "optIn": "#btn-allowAllCookie", + "optOut": "#btn-rejectAllCookie", + "presence": "#cc-window" }, - "schema": 1700826062965, - "cookies": {}, - "domains": [ - "thetimes.co.uk", - "qz.com", - "privacy-mgmt.com", - "independent.co.uk", - "gizmodo.com", - "e24.no", - "thesun.co.uk", - "thesun.ie", - "focus.de", - "bild.de", - "computerbild.de", - "bloomberg.com", - "t-online.de", - "wetteronline.de", - "chip.de", - "n-tv.de", - "newsnow.co.uk", - "telegraph.co.uk", - "theguardian.com", - "faz.net", - "sueddeutsche.de", - "rtl.de", - "gutefrage.net", - "express.de", - "tvspielfilm.de", - "finanzen.net", - "tag24.de", - "kino.de", - "heise.de", - "bunte.de", - "golem.de" + "schema": 1702080004246, + "cookies": { + "optIn": [ + { + "name": "_youtube_vimeo_vid", + "value": "allow" + }, + { + "name": "cookieControllerStatus", + "value": "allow" + }, + { + "name": "functionalCookieStatus", + "value": "allow" + }, + { + "name": "googleAnalyticsCookieStatus", + "value": "allow" + } + ], + "optOut": [ + { + "name": "_youtube_vimeo_vid", + "value": "deny" + }, + { + "name": "cookieControllerStatus", + "value": "deny" + }, + { + "name": "functionalCookieStatus", + "value": "deny" + }, + { + "name": "googleAnalyticsCookieStatus", + "value": "deny" + } + ] + }, + "domains": [ + "verbatim-europe.co.uk", + "verbatim-europe.cz", + "verbatim.ae", + "verbatim.bg", + "verbatim.co.il", + "verbatim.com.hr", + "verbatim.com.pt", + "verbatim.com.tr", + "verbatim.de", + "verbatim.dk", + "verbatim.es", + "verbatim.fi", + "verbatim.fr", + "verbatim.gr", + "verbatim.hu", + "verbatim.it", + "verbatim.net.pl", + "verbatim.ro", + "verbatim.ru", + "verbatim.se" ], - "id": "d42bbaee-f96e-47e7-8e81-efc642518e97", - "last_modified": 1701423955095 + "id": "3c0e4924-29ee-4d9a-99ec-e4805a7ffed9", + "last_modified": 1702633230730 }, { "click": { - "optIn": "button[data-component-name=\"consent\"]", - "optOut": "button[data-component-name=\"reject\"]", - "presence": ".cookie-notice-banner" + "optIn": "[onclick*=\"cookie_Agree()\"]", + "optOut": "[onclick*=\"cookie_Disagree()\"]", + "presence": "#legal_notice" }, - "schema": 1700826062965, - "cookies": {}, + "schema": 1702080004246, "domains": [ - "shopify.com" + "transcend-info.com" ], - "id": "531324c9-83ba-4ba3-a488-3ebde87b10af", - "last_modified": 1701423955091 + "id": "5e0387bb-1f19-4f61-b587-49d995a691c9", + "last_modified": 1702633230725 }, { "click": { - "optOut": "#tmart-cookie-layer-only-necessary", - "presence": ".cookieLayer" + "optIn": ".tp-cookie-accept-all", + "presence": "#tp-cookie" + }, + "schema": 1702080004246, + "cookies": { + "optIn": [ + { + "name": "tp_privacy_base", + "value": "1" + }, + { + "name": "tp_privacy_marketing", + "value": "1" + } + ], + "optOut": [ + { + "name": "tp_privacy_base", + "value": "1" + } + ] }, - "schema": 1700313507200, - "cookies": {}, "domains": [ - "sparda-hessen.de" + "tp-link.com" ], - "id": "0EAF9E99-36C6-4165-87BE-A62EF1751E1D", - "last_modified": 1700826062722 + "id": "48e9b863-c642-4a7a-9ee5-c085d337233e", + "last_modified": 1702633230721 }, { "click": { - "optOut": "#zdf-cmp-deny-btn", - "presence": ".zdf-cmp-modal-content" + "optIn": ".acceptAll", + "presence": ".privacyArea" + }, + "schema": 1702080004246, + "cookies": { + "optIn": [ + { + "name": "privacy", + "value": "{\"necessary\":\"ok\",\"functional\":\"ok\",\"marketing\":\"ok\"}" + } + ], + "optOut": [ + { + "name": "privacy", + "value": "{\"necessary\":\"ok\"}" + } + ] }, - "schema": 1700313507200, - "cookies": {}, "domains": [ - "zdf.de" + "teamgroupinc.com" ], - "id": "91484461-01AD-4D78-9ED8-D17C688F47E7", - "last_modified": 1700826062719 + "id": "9034f6e4-09ca-42a2-a8da-4f65968b8b36", + "last_modified": 1702633230717 }, { "click": { - "optIn": "[data-testid=\"accept-all-cookies-button\"]", - "presence": "[data-testid=\"cookie-banner\"]" + "optIn": ".btn_accept", + "presence": ".syno_cookie_element" + }, + "schema": 1702080004246, + "cookies": { + "optIn": [ + { + "name": "syno_confirm_v4_answer", + "value": "{\"necessary\":true,\"performance\":true,\"functionality\":true,\"targeting\":true}" + } + ], + "optOut": [ + { + "name": "syno_confirm_v4_answer", + "value": "{\"necessary\":true,\"performance\":false,\"functionality\":false,\"targeting\":false}" + } + ] }, - "schema": 1700313507200, - "cookies": {}, "domains": [ - "elsevier.com" + "synology.cn", + "synology.com" ], - "id": "0AB3A01E-10A9-4509-9350-6EF61AB223F3", - "last_modified": 1700826062716 + "id": "d01204bd-8a94-4e6e-8ce4-d155b0681053", + "last_modified": 1702633230713 }, { "click": { - "optIn": "[data-testid=\"uc-accept-all-button\"]", - "optOut": "[data-testid=\"uc-deny-all-button\"]", - "presence": "#usercentrics-root" + "optIn": "#cp-yes", + "optOut": "#cp-no", + "presence": "#cp-overlay" + }, + "schema": 1702080004246, + "cookies": { + "optIn": [ + { + "name": "cookiepermission", + "value": "yes" + } + ], + "optOut": [ + { + "name": "cookiepermission", + "value": "no" + } + ] }, - "schema": 1700313507200, - "cookies": {}, "domains": [ - "rts.ch" + "seasonic.com" ], - "id": "9f5f0c06-5221-45b2-a174-7d70fd128eb3", - "last_modified": 1700826062713 + "id": "6c9b123a-ec42-4128-91a2-a4cdd65059bc", + "last_modified": 1702633230709 }, { "click": { - "optIn": ".cky-btn.cky-btn-accept", - "optOut": ".cky-btn.cky-btn-reject", - "presence": ".cky-consent-bar" + "optIn": "[value=\"Accept\"]", + "optOut": "[value=\"Reject\"]", + "presence": "#pp_info" }, - "schema": 1700313507200, - "cookies": {}, + "schema": 1702080004246, "domains": [ - "met.ie" + "gainward.com", + "palit.com" ], - "id": "536f8027-111f-4798-a9ef-745b30fe65c8", - "last_modified": 1700826062709 + "id": "c79fc6da-0143-46a0-abfc-debbd4d05f4b", + "last_modified": 1702633230705 }, { "click": { - "optIn": "#didomi-notice-agree-button", - "optOut": ".didomi-continue-without-agreeing", - "presence": "div#didomi-notice" + "optIn": "#Footer_butAccept", + "optOut": "#Footer_butCancel", + "presence": "#Footer_Cookie" }, - "schema": 1700313507200, - "cookies": {}, + "schema": 1702080004246, "domains": [ - "orange.sk", - "hnonline.sk" + "cablexpert.be", + "cablexpert.com", + "cablexpert.de", + "cablexpert.gr", + "cablexpert.nl", + "energenie.com", + "gembird.be", + "gembird.com", + "gembird.com.pl", + "gembird.es", + "gembird.nl", + "gembird3.com", + "gembird3.nl", + "gmb-online.nl", + "gmb.nl" ], - "id": "688d29a8-e1c7-4d62-b3d4-53b451ff5a48", - "last_modified": 1700826062705 + "id": "f7aa3175-3c2a-4458-b822-da0bd57c2524", + "last_modified": 1702633230701 }, { "click": { - "optIn": "#onetrust-accept-btn-handler", - "presence": "div#onetrust-consent-sdk" + "optIn": "#wt-cli-accept-all-btn", + "presence": "#cookie-law-info-bar" + }, + "schema": 1702080004246, + "cookies": { + "optOut": [ + { + "name": "viewed_cookie_policy", + "value": "yes" + } + ] }, - "schema": 1700313507200, - "cookies": {}, "domains": [ - "gitlab.com", - "speedtest.net", - "name.com", - "mlb.com", - "qualtrics.com", - "tim.it", - "hotnews.ro", - "mashable.com", - "pcmag.com", - "barnesandnoble.com", - "politico.com", - "quillbot.com", - "newyorker.com", - "upwork.com", - "mediafax.ro", - "elisa.fi", - "blick.ch", - "dn.no", - "soundcloud.com", - "tvn24.pl", - "olx.pl", - "olx.bg", - "gsp.ro", - "fastly.com", - "spotify.com", - "20min.ch", - "olx.ro", - "olx.pt", - "sportal.bg", - "gazeta.pl", - "romaniatv.net", - "teamviewer.com", - "ted.com", - "tripadvisor.com", - "webmd.com", - "cambridge.org", - "investing.com", - "businesswire.com", - "istockphoto.com", - "iso.org", - "quizlet.com", - "genius.com", - "jstor.org", - "trendmicro.com", - "duolingo.com", - "sophos.com", - "rte.ie", - "euro.com.pl", - "wired.com", - "arstechnica.com", - "gartner.com", - "thelancet.com", - "weebly.com", - "irishtimes.com", - "libertatea.ro", - "otomoto.pl", - "sport.pl", - "novini.bg", - "stiripesurse.ro", - "suomi24.fi", - "sbb.ch", - "atg.se", - "ziare.com", - "irishexaminer.com", - "tripadvisor.it", - "thejournal.ie", - "superbet.ro", - "g4media.ro", - "wyborcza.pl", - "nachrichten.at", - "tt.com", - "three.ie", - "tripadvisor.co.uk", - "dcnews.ro", - "vol.at", - "plotek.pl", - "howstuffworks.com", - "tripadvisor.de", - "otto.de", - "kaufland.de", - "lidl.de", - "lidl.cz", - "rightmove.co.uk" + "endorfy.com", + "silentiumpc.com" ], - "id": "256259D5-28AA-44C4-A837-8A30424005BB", - "last_modified": 1700826062701 + "id": "04e919eb-13c2-4b37-bf7f-888767888640", + "last_modified": 1702633230696 }, { "click": { - "optIn": "button#onetrust-accept-btn-handler", - "optOut": ".ot-pc-refuse-all-handler, #onetrust-reject-all-handler", + "optIn": "#Cookies_consent_btn", + "optOut": "#Cookies_consent_internal_btn", + "presence": "#qkies_info" + }, + "schema": 1702080004246, + "cookies": { + "optIn": [ + { + "name": "cookiesconsent", + "value": "true" + } + ], + "optOut": [ + { + "name": "cookiesconsent", + "value": "internal" + } + ] + }, + "domains": [ + "dreammachines.by", + "dreammachines.eu", + "dreammachines.io", + "dreammachines.nl", + "dreammachines.pl", + "dreammachines.ru" + ], + "id": "c8cb50a3-7604-4de0-a0ac-c2e7b0ad45c0", + "last_modified": 1702633230692 + }, + { + "click": { + "optIn": "[name=\"accept\"]", + "presence": ".ck-notiz" + }, + "schema": 1702080004246, + "cookies": { + "optIn": [ + { + "name": "cookieSettings", + "value": "%7B%22necessary%22%3Atrue%2C%22analytics%22%3Atrue%2C%22thirdParty%22%3Atrue%2C%22dismissed%22%3Atrue%7D" + } + ], + "optOut": [ + { + "name": "cookieSettings", + "value": "%7B%22necessary%22%3Atrue%2C%22analytics%22%3Afalse%2C%22thirdParty%22%3Afalse%2C%22dismissed%22%3Atrue%7D" + } + ] + }, + "domains": [ + "creative.com" + ], + "id": "32fc1292-e26f-49c8-8de8-c41966c0bd34", + "last_modified": 1702633230688 + }, + { + "click": { + "optIn": ".cookie-accept", + "optOut": "#cookie-accept-technical", + "presence": ".cookie-banner" + }, + "schema": 1702080004246, + "cookies": { + "optIn": [ + { + "name": "_CookiePolicyHint", + "value": "true" + }, + { + "name": "cookie_functional", + "value": "on" + }, + { + "name": "cookie_marketing", + "value": "on" + } + ], + "optOut": [ + { + "name": "_CookiePolicyHint", + "value": "true" + } + ] + }, + "domains": [ + "bequiet.com" + ], + "id": "de38e8a0-25d2-42d2-974d-04684e54b7ce", + "last_modified": 1702633230684 + }, + { + "click": { + "optIn": "#cookiesPrivacyPolicyAllowBtn", + "optOut": "#cookiesPrivacyPolicyDenyBtn", + "presence": "#cookiesPrivacyPolicyContainerWrapper" + }, + "schema": 1702080004246, + "cookies": { + "optIn": [ + { + "name": "cookiesPrivacyPolicy", + "value": "1" + }, + { + "name": "cookiesPrivacyPolicyExtended", + "value": "1" + } + ], + "optOut": [ + { + "name": "cookiesPrivacyPolicy", + "value": "1" + }, + { + "name": "cookiesPrivacyPolicyExtended", + "value": "0" + } + ] + }, + "domains": [ + "akyga.com" + ], + "id": "3bf04e3c-efe8-49af-bf80-506f12ba2da4", + "last_modified": 1702633230681 + }, + { + "click": { + "optIn": "button.fcQwZX", + "optOut": "button.fLZgds", + "presence": ".kDNyTh.hbTFXs" + }, + "schema": 1702598407647, + "domains": [ + "androidpolice.com" + ], + "id": "5B57603A-0CE0-4511-B324-18D34F60EC51", + "last_modified": 1702633230676 + }, + { + "click": { + "optIn": "button[data-testid=\"allow-all-cookies-button\"]", + "optOut": "div[data-testid=\"cookie-popover\"] button:nth-child(2)", + "presence": "div[data-testid=\"cookie-popover\"]" + }, + "schema": 1702598407647, + "domains": [ + "ondo.finance" + ], + "id": "50105C82-FEDE-424E-884D-430FA7BCBED", + "last_modified": 1702633230671 + }, + { + "click": { + "optIn": "#gdpr-cookie-accept", + "presence": "#gdpr-cookie-message" + }, + "schema": 1702598407647, + "cookies": { + "optIn": [ + { + "name": "cookieControl", + "value": "true" + }, + { + "name": "cookieControlPrefs", + "value": "[\"analytics\",\"marketing\"]" + } + ], + "optOut": [ + { + "name": "cookieControl", + "value": "true" + }, + { + "name": "cookieControlPrefs", + "value": "[]" + } + ] + }, + "domains": [ + "teamspeak.com" + ], + "id": "8005fd7b-26ec-43c0-ad94-1c6834cc7905", + "last_modified": 1702633230667 + }, + { + "click": {}, + "schema": 1702080004246, + "cookies": { + "optIn": [ + { + "name": "happycow-cookie-policy", + "value": "1" + } + ], + "optOut": [ + { + "name": "happycow-cookie-policy", + "value": "0" + } + ] + }, + "domains": [ + "happycow.net" + ], + "id": "4710a874-0ff4-4072-8476-36a22d7f698e", + "last_modified": 1702633230662 + }, + { + "click": {}, + "schema": 1702080004246, + "cookies": { + "optIn": [ + { + "name": "cookiebanner_accepted", + "value": "1" + } + ] + }, + "domains": [ + "raspberrypi.com" + ], + "id": "61dfb6a1-21b4-4f95-aa6d-946eb09f8511", + "last_modified": 1702633230658 + }, + { + "click": { + "optOut": "button.js-decline-all-cookies", + "presence": "div.cookie-consent-spice" + }, + "schema": 1702080004246, + "cookies": {}, + "domains": [ + "thomann.de" + ], + "id": "5aa2d4df-2a5d-4abf-bb5a-bd714951f790", + "last_modified": 1702633230653 + }, + { + "click": { + "optIn": "button[data-testid=\"gdpr-btn-accept-all\"]", + "optOut": "button[data-testid=\"gdpr-btn-refuse-all\"]", + "presence": "[data-testid=\"cookie-banner\"]" + }, + "schema": 1702080004246, + "domains": [ + "deezer.com" + ], + "id": "5bdcb3ce-6270-4270-af7b-d1fdef5cecb4", + "last_modified": 1702633230649 + }, + { + "click": { + "optIn": "button[data-cookie_consent=\"1\"]", + "optOut": "button[data-cookie_consent=\"0\"]", + "presence": "#js_reveal_cookie_content" + }, + "schema": 1702080004246, + "cookies": {}, + "domains": [ + "voelkner.de" + ], + "id": "bcf09922-64d7-4879-974a-119e8bd05fee", + "last_modified": 1702633230645 + }, + { + "click": { + "optIn": "#onetrust-accept-btn-handler", "presence": "div#onetrust-consent-sdk" }, - "schema": 1700313507200, + "schema": 1702598407647, "cookies": {}, "domains": [ - "espncricinfo.com", - "blackboard.com", - "roche.com", - "apnews.com", - "nationalgeographic.com", - "frontiersin.org", - "espn.com", - "thawte.com", - "digicert.com", - "hotjar.com", - "marriott.com", - "hootsuite.com", - "wattpad.com", - "gamespot.com", - "apa.org", - "opendns.com", - "epicgames.com", - "zendesk.com", - "drei.at", - "ikea.com", - "search.ch", - "centrum.sk", - "zoom.us", - "pluska.sk", - "hp.com", - "ceskatelevize.cz", - "telenet.be", - "adobe.com", - "rottentomatoes.com", - "dhl.com", - "dhl.de", - "nvidia.com", - "cloudflare.com", - "webex.com", - "indeed.com", - "discord.com", - "sport.ro", - "ricardo.ch", - "stirileprotv.ro", - "1177.se", - "meinbezirk.at", - "orange.ro", - "ica.se", - "flashscore.pl", - "kuleuven.be", - "tutti.ch", - "post.at", - "rezultati.com", - "nbg.gr", - "behance.net", - "zemanta.com", - "grammarly.com", - "usatoday.com", - "cnet.com", - "npr.org", - "binance.com", - "linktr.ee", - "time.com", - "cisco.com", - "udemy.com", - "shutterstock.com", - "investopedia.com", - "cbsnews.com", - "okta.com", - "appsflyer.com", - "typepad.com", - "calendly.com", - "verisign.com", - "outbrain.com", - "zdnet.com", - "deloitte.com", - "hdfcbank.com", - "media.net", - "docker.com", - "avast.com", - "bluehost.com", - "nba.com", - "hostgator.com", - "scientificamerican.com", - "aljazeera.com", + "gitlab.com", + "speedtest.net", + "name.com", + "mlb.com", + "qualtrics.com", + "tim.it", + "hotnews.ro", + "mashable.com", + "pcmag.com", + "barnesandnoble.com", + "politico.com", + "quillbot.com", + "newyorker.com", + "upwork.com", + "mediafax.ro", + "elisa.fi", + "blick.ch", + "tvn24.pl", + "olx.pl", + "olx.bg", + "gsp.ro", + "fastly.com", + "spotify.com", + "20min.ch", + "olx.ro", + "olx.pt", + "sportal.bg", + "gazeta.pl", + "romaniatv.net", + "teamviewer.com", + "ted.com", + "tripadvisor.com", + "webmd.com", + "cambridge.org", + "investing.com", + "businesswire.com", + "istockphoto.com", + "iso.org", + "quizlet.com", + "genius.com", + "jstor.org", + "trendmicro.com", + "duolingo.com", + "sophos.com", + "rte.ie", + "euro.com.pl", + "wired.com", + "arstechnica.com", + "gartner.com", + "thelancet.com", + "weebly.com", + "irishtimes.com", + "libertatea.ro", + "otomoto.pl", + "sport.pl", + "novini.bg", + "stiripesurse.ro", + "suomi24.fi", + "ziare.com", + "irishexaminer.com", + "tripadvisor.it", + "thejournal.ie", + "superbet.ro", + "g4media.ro", + "wyborcza.pl", + "nachrichten.at", + "tt.com", + "three.ie", + "tripadvisor.co.uk", + "dcnews.ro", + "vol.at", + "plotek.pl", + "howstuffworks.com", + "tripadvisor.de", + "acer.com", + "allaboutcookies.org", + "bankier.pl", + "brother.co.uk", + "brother.es", + "brother.it", + "digicert.com", + "epson.co.uk", + "fiverr.com", + "frontiersin.org", + "glassdoor.com", + "global.brother", + "gq-magazine.co.uk", + "ingka.com", + "inpost.pl", + "instructure.com", + "komputronik.pl", + "mediaexpert.pl", + "oleole.pl", + "ookla.com", + "otodom.pl", + "play.pl", + "prnewswire.com", + "salesforce.com", + "slack.com", + "thawte.com", + "ui.com", + "uisp.com" + ], + "id": "256259D5-28AA-44C4-A837-8A30424005BB", + "last_modified": 1702633230640 + }, + { + "click": { + "optIn": "button#onetrust-accept-btn-handler", + "optOut": ".ot-pc-refuse-all-handler, #onetrust-reject-all-handler", + "presence": "div#onetrust-consent-sdk" + }, + "schema": 1702598407647, + "cookies": {}, + "domains": [ + "espncricinfo.com", + "blackboard.com", + "roche.com", + "apnews.com", + "nationalgeographic.com", + "espn.com", + "hotjar.com", + "marriott.com", + "hootsuite.com", + "wattpad.com", + "gamespot.com", + "apa.org", + "opendns.com", + "epicgames.com", + "zendesk.com", + "drei.at", + "ikea.com", + "search.ch", + "centrum.sk", + "zoom.us", + "pluska.sk", + "hp.com", + "ceskatelevize.cz", + "telenet.be", + "adobe.com", + "rottentomatoes.com", + "dhl.com", + "dhl.de", + "nvidia.com", + "cloudflare.com", + "webex.com", + "indeed.com", + "discord.com", + "sport.ro", + "ricardo.ch", + "stirileprotv.ro", + "1177.se", + "meinbezirk.at", + "orange.ro", + "ica.se", + "flashscore.pl", + "kuleuven.be", + "tutti.ch", + "post.at", + "rezultati.com", + "nbg.gr", + "behance.net", + "zemanta.com", + "grammarly.com", + "usatoday.com", + "cnet.com", + "npr.org", + "binance.com", + "linktr.ee", + "time.com", + "cisco.com", + "udemy.com", + "shutterstock.com", + "investopedia.com", + "cbsnews.com", + "okta.com", + "appsflyer.com", + "typepad.com", + "calendly.com", + "verisign.com", + "outbrain.com", + "zdnet.com", + "deloitte.com", + "hdfcbank.com", + "media.net", + "docker.com", + "avast.com", + "bluehost.com", + "nba.com", + "hostgator.com", + "scientificamerican.com", + "aljazeera.com", "sahibinden.com", "rackspace.com", "namecheap.com", @@ -595,16 +1091,13 @@ "dictionary.com", "coursera.org", "msn.com", - "allaboutcookies.org", "chegg.com", "variety.com", "cnn.com", - "slack.com", "proximus.be", "adevarul.ro", "cnbc.com", "oe24.at", - "salesforce.com", "reuters.com", "booking.com", "bluewin.ch", @@ -614,11 +1107,9 @@ "rtlnieuws.nl", "buienradar.be", "viaplay.se", - "instructure.com", "antena3.ro", "statista.com", "pixabay.com", - "prnewswire.com", "constantcontact.com", "atlassian.com", "bmj.com", @@ -627,19 +1118,538 @@ "vmware.com", "bitbucket.org", "viaplay.no", - "fiverr.com", "asana.com", - "glassdoor.com", "freepik.com", "heute.at", "mtvuutiset.fi", "buienradar.nl", "nypost.com", "panasonic.com", - "safeway.com" + "safeway.com", + "amd.com", + "atg.se", + "brother.de", + "brother.eu", + "brother.fr", + "corsair.com", + "crucial.com", + "dc.com", + "dn.no", + "epson.de", + "epson.es", + "epson.eu", + "epson.fr", + "epson.it", + "evga.com", + "fortnite.com", + "fujitsu.com", + "global.canon", + "gpuopen.com", + "info.lidl", + "inpost.es", + "inpost.eu", + "inpost.it", + "intel.com", + "kaufland.de", + "lg.com", + "lidl.co.uk", + "lidl.com", + "lidl.cz", + "lidl.de", + "lidl.fr", + "lidl.it", + "lidl.pl", + "lifewire.com", + "logitech.com", + "micron.com", + "mythomson.com", + "oki.com", + "otto.de", + "razer.com", + "rightmove.co.uk", + "sbb.ch", + "seagate.com", + "soundcloud.com", + "trello.com", + "unrealengine.com" + ], + "id": "6c7366a0-4762-47b9-8eeb-04e86cc7a0cc", + "last_modified": 1702633230636 + }, + { + "click": { + "optIn": "button[data-qa=\"privacy-settings-action-info\"]", + "optOut": "button[data-qa=\"privacy-settings-action-close\"]", + "presence": "[data-qa=\"privacy-settings\"]" + }, + "schema": 1702598407647, + "domains": [ + "lieferando.de", + "lieferando.at", + "just-eat.ch" + ], + "id": "31d9971f-e23d-4dd9-a891-99a85d97ad19", + "last_modified": 1702633230631 + }, + { + "schema": 1702598407647, + "cookies": { + "optOut": [ + { + "name": "js-cookie-opt-in__consent", + "value": "needed" + } + ] + }, + "domains": [ + "netcup.de", + "netcup-news.de", + "netcup-sonderangebote.de" + ], + "id": "dea34d82-9c05-4c08-9262-18a7f62be91e", + "last_modified": 1702633230627 + }, + { + "click": { + "optIn": "button#didomi-notice-agree-button", + "optOut": "span.didomi-continue-without-agreeing", + "presence": "div#didomi-popup" + }, + "schema": 1702598407647, + "cookies": {}, + "domains": [ + "theconversation.com", + "leparisien.fr", + "jofogas.hu", + "orange.fr", + "meteofrance.com", + "subito.it", + "hasznaltauto.hu", + "zdnet.de" + ], + "id": "c1d7be10-151e-4a66-b83b-31a762869a97", + "last_modified": 1702633230623 + }, + { + "click": { + "optIn": "button.osano-cm-accept-all", + "optOut": ".osano-cm-denyAll", + "presence": "div.osano-cm-dialog__buttons" + }, + "schema": 1702598407647, + "cookies": {}, + "domains": [ + "slideshare.net", + "ieee.org", + "linuxfoundation.eu" + ], + "id": "23710ccf-85e6-450e-953d-7ffc3f80bbf0", + "last_modified": 1702633230618 + }, + { + "click": { + "optIn": "button#popin_tc_privacy_button_2", + "presence": "div#popin_tc_privacy_container_button" + }, + "schema": 1702598407647, + "cookies": { + "optIn": [], + "optOut": [ + { + "name": "TC_PRIVACY", + "value": "1@006%7C86%7C3315@@@1665406595598%2C1665406595598%2C1680958595598@" + } + ] + }, + "domains": [ + "credit-agricole.fr", + "sparkasse.at" + ], + "id": "850ca0e7-372f-4c9f-bfbd-76d38a076cf7", + "last_modified": 1702633230606 + }, + { + "click": { + "optIn": "button#ccc-recommended-settings", + "optOut": "button#ccc-reject-settings", + "presence": "div#ccc" + }, + "schema": 1702598407647, + "cookies": {}, + "domains": [ + "metoffice.gov.uk", + "footballmanager.com", + "sigames.com" + ], + "id": "9e4d932a-eaf9-44e4-a3ac-55861d66a7c3", + "last_modified": 1702633230599 + }, + { + "click": {}, + "schema": 1700826062965, + "cookies": { + "optOut": [ + { + "name": "cookieDeclined", + "value": "1" + } + ] + }, + "domains": [ + "grundstoff.net" + ], + "id": "ca62d977-4e2e-48ab-a186-055f9f3277e4", + "last_modified": 1701423955158 + }, + { + "click": {}, + "schema": 1700826062965, + "cookies": { + "optOut": [ + { + "name": "onleiheTracking", + "value": "false" + } + ] + }, + "domains": [ + "onleihe.de" + ], + "id": "c19b1009-d609-438c-8d7c-82fc7144eeaa", + "last_modified": 1701423955154 + }, + { + "click": { + "optIn": "button.cm-btn-success", + "optOut": "button.cm-btn-danger", + "presence": "div#klaro" + }, + "schema": 1700826062965, + "cookies": {}, + "domains": [ + "karlsruhe.de" + ], + "id": "63b5c74c-67ae-47f2-b0ba-10c03132ad6f", + "last_modified": 1701423955150 + }, + { + "click": { + "optIn": "button.js-cookie-accept", + "optOut": "button.js-cookie-decline", + "presence": "div#toast-container" + }, + "schema": 1700826062965, + "domains": [ + "startnext.com" + ], + "id": "312f32e1-a6bf-4e87-b7a6-7480345823cf", + "last_modified": 1701423955146 + }, + { + "click": { + "optIn": ".consentAgree", + "optOut": "#consentDisagree", + "presence": "div.consent" + }, + "schema": 1700826062965, + "cookies": {}, + "domains": [ + "strato.de" + ], + "id": "18b1dd86-aee5-4697-b601-4fa320a75dbe", + "last_modified": 1701423955143 + }, + { + "click": {}, + "schema": 1700826062965, + "cookies": { + "optOut": [ + { + "name": "hidecookie", + "value": "true" + } + ] + }, + "domains": [ + "vrn.de" + ], + "id": "0ae7f461-8705-4222-b8ee-afa03e5150ff", + "last_modified": 1701423955139 + }, + { + "click": {}, + "schema": 1700826062965, + "cookies": { + "optOut": [ + { + "name": "consent_functional", + "value": "DENY" + }, + { + "name": "consent_marketing", + "value": "DENY" + }, + { + "name": "consent_technical", + "value": "ALLOW" + }, + { + "name": "consent_version", + "value": "2.6" + } + ] + }, + "domains": [ + "huk24.de" + ], + "id": "0fbacecc-fbda-4e4b-883f-9424790ccc74", + "last_modified": 1701423955135 + }, + { + "click": {}, + "schema": 1700826062965, + "cookies": { + "optOut": [ + { + "name": "cookiebanner", + "value": "closed" + } + ] + }, + "domains": [ + "thw.de" + ], + "id": "58226c30-e975-42f3-99e4-ca140b91e96c", + "last_modified": 1701423955130 + }, + { + "click": {}, + "schema": 1700826062965, + "cookies": { + "optOut": [ + { + "name": "cookie-preference", + "value": "1" + } + ] + }, + "domains": [ + "korodrogerie.de" + ], + "id": "cdd5646d-06b3-4fdf-8530-b7d8a93f03df", + "last_modified": 1701423955126 + }, + { + "click": { + "optIn": "button.cl-consent__btn", + "optOut": "button.cl-consent__close-link", + "presence": "div#cl-consent" + }, + "schema": 1700826062965, + "cookies": {}, + "domains": [ + "hdblog.it", + "hdmotori.it" + ], + "id": "342bd7ca-6502-4df7-bd3a-0b884b51aaa7", + "last_modified": 1701423955123 + }, + { + "click": {}, + "schema": 1700826062965, + "cookies": { + "optOut": [ + { + "name": "cookies_accepted", + "value": "false" + } + ] + }, + "domains": [ + "mindfactory.de" + ], + "id": "aa077f01-0574-4f1b-ad1b-3225c4dc59f7", + "last_modified": 1701423955119 + }, + { + "click": { + "optIn": "button#cookieok", + "optOut": "button#cookiecancel", + "presence": "div#cookieconsent" + }, + "schema": 1700826062965, + "cookies": {}, + "domains": [ + "reichelt.de" + ], + "id": "b81fc066-5cdd-4af6-b288-49de860e369a", + "last_modified": 1701423955111 + }, + { + "click": { + "optIn": "button#cookie-consent-button", + "presence": "dialog.consent" + }, + "schema": 1700826062965, + "domains": [ + "computerbase.de" + ], + "id": "2c73714d-0e9b-41a1-ad12-6bd15ddade67", + "last_modified": 1701423955107 + }, + { + "click": { + "optIn": "button.cm-btn-accept-all", + "optOut": "button.cm-btn-accept", + "presence": "div#klaro" + }, + "schema": 1700826062965, + "cookies": {}, + "domains": [ + "lancom-systems.de" + ], + "id": "efc6f62d-8d53-4f52-9dd3-172d9b04f5de", + "last_modified": 1701423955104 + }, + { + "click": { + "optIn": "button.iubenda-cs-accept-btn", + "presence": "div#iubenda-cs-banner" + }, + "schema": 1700826062965, + "cookies": {}, + "domains": [ + "ansa.it" + ], + "id": "8e55f0f4-262f-4d35-a461-47afea6e9069", + "last_modified": 1701423955100 + }, + { + "click": { + "optIn": ".sp_choice_type_11", + "presence": ".message-container > #notice", + "runContext": "child" + }, + "schema": 1700826062965, + "cookies": {}, + "domains": [ + "thetimes.co.uk", + "qz.com", + "privacy-mgmt.com", + "independent.co.uk", + "gizmodo.com", + "e24.no", + "thesun.co.uk", + "thesun.ie", + "focus.de", + "bild.de", + "computerbild.de", + "bloomberg.com", + "t-online.de", + "wetteronline.de", + "chip.de", + "n-tv.de", + "newsnow.co.uk", + "telegraph.co.uk", + "theguardian.com", + "faz.net", + "sueddeutsche.de", + "rtl.de", + "gutefrage.net", + "express.de", + "tvspielfilm.de", + "finanzen.net", + "tag24.de", + "kino.de", + "heise.de", + "bunte.de", + "golem.de" + ], + "id": "d42bbaee-f96e-47e7-8e81-efc642518e97", + "last_modified": 1701423955095 + }, + { + "click": { + "optIn": "button[data-component-name=\"consent\"]", + "optOut": "button[data-component-name=\"reject\"]", + "presence": ".cookie-notice-banner" + }, + "schema": 1700826062965, + "cookies": {}, + "domains": [ + "shopify.com" + ], + "id": "531324c9-83ba-4ba3-a488-3ebde87b10af", + "last_modified": 1701423955091 + }, + { + "click": { + "optOut": "#tmart-cookie-layer-only-necessary", + "presence": ".cookieLayer" + }, + "schema": 1700313507200, + "cookies": {}, + "domains": [ + "sparda-hessen.de" ], - "id": "6c7366a0-4762-47b9-8eeb-04e86cc7a0cc", - "last_modified": 1700826062697 + "id": "0EAF9E99-36C6-4165-87BE-A62EF1751E1D", + "last_modified": 1700826062722 + }, + { + "click": { + "optIn": "[data-testid=\"accept-all-cookies-button\"]", + "presence": "[data-testid=\"cookie-banner\"]" + }, + "schema": 1700313507200, + "cookies": {}, + "domains": [ + "elsevier.com" + ], + "id": "0AB3A01E-10A9-4509-9350-6EF61AB223F3", + "last_modified": 1700826062716 + }, + { + "click": { + "optIn": "[data-testid=\"uc-accept-all-button\"]", + "optOut": "[data-testid=\"uc-deny-all-button\"]", + "presence": "#usercentrics-root" + }, + "schema": 1700313507200, + "cookies": {}, + "domains": [ + "rts.ch" + ], + "id": "9f5f0c06-5221-45b2-a174-7d70fd128eb3", + "last_modified": 1700826062713 + }, + { + "click": { + "optIn": ".cky-btn.cky-btn-accept", + "optOut": ".cky-btn.cky-btn-reject", + "presence": ".cky-consent-bar" + }, + "schema": 1700313507200, + "cookies": {}, + "domains": [ + "met.ie" + ], + "id": "536f8027-111f-4798-a9ef-745b30fe65c8", + "last_modified": 1700826062709 + }, + { + "click": { + "optIn": "#didomi-notice-agree-button", + "optOut": ".didomi-continue-without-agreeing", + "presence": "div#didomi-notice" + }, + "schema": 1700313507200, + "cookies": {}, + "domains": [ + "orange.sk", + "hnonline.sk" + ], + "id": "688d29a8-e1c7-4d62-b3d4-53b451ff5a48", + "last_modified": 1700826062705 }, { "click": { @@ -842,66 +1852,6 @@ "id": "97ba1ec3-c8e7-45a0-845f-c732b71bd213", "last_modified": 1700826062677 }, - { - "click": { - "optIn": "button#didomi-notice-agree-button", - "optOut": "button#didomi-notice-disagree-button", - "presence": "div#didomi-host" - }, - "schema": 1700784006705, - "cookies": {}, - "domains": [ - "doctolib.fr", - "pravda.sk", - "topky.sk", - "zoznam.sk", - "tvnoviny.sk", - "aukro.cz", - "krone.at", - "cas.sk", - "heureka.sk", - "free.fr", - "markiza.sk", - "willhaben.at", - "francetvinfo.fr" - ], - "id": "690aa076-4a8b-48ec-b52c-1443d44ff008", - "last_modified": 1700826062673 - }, - { - "click": { - "optIn": "button#didomi-notice-agree-button", - "optOut": "span.didomi-continue-without-agreeing", - "presence": "div#didomi-popup" - }, - "schema": 1700313507200, - "cookies": {}, - "domains": [ - "theconversation.com", - "leparisien.fr", - "jofogas.hu", - "orange.fr", - "meteofrance.com", - "subito.it", - "hasznaltauto.hu" - ], - "id": "c1d7be10-151e-4a66-b83b-31a762869a97", - "last_modified": 1700826062669 - }, - { - "click": { - "optIn": "button.osano-cm-accept-all", - "optOut": ".osano-cm-denyAll", - "presence": "div.osano-cm-dialog__buttons" - }, - "schema": 1700784006705, - "cookies": {}, - "domains": [ - "slideshare.net" - ], - "id": "23710ccf-85e6-450e-953d-7ffc3f80bbf0", - "last_modified": 1700826062665 - }, { "click": { "optIn": ".qxOn2zvg.e1sXLPUy", @@ -1228,27 +2178,6 @@ "id": "ff5b2d52-6cc0-47e5-a515-4a31c9207b81", "last_modified": 1700826062569 }, - { - "click": { - "optIn": ".cc-btn.cc-allow", - "optOut": ".cc-btn.cc-deny", - "presence": ".cc-window.cc-banner" - }, - "schema": 1700784006705, - "cookies": { - "optOut": [ - { - "name": "cookieconsent_status", - "value": "deny" - } - ] - }, - "domains": [ - "magnite.com" - ], - "id": "8f401b10-02b6-4e05-88fa-c37012d4c8c0", - "last_modified": 1700826062565 - }, { "click": { "optIn": "#pt-accept-all", @@ -1429,22 +2358,6 @@ "id": "didomi", "last_modified": 1700313506945 }, - { - "schema": 1699660804881, - "cookies": { - "optOut": [ - { - "name": "js-cookie-opt-in__consent", - "value": "needed" - } - ] - }, - "domains": [ - "netcup.de" - ], - "id": "dea34d82-9c05-4c08-9262-18a7f62be91e", - "last_modified": 1700130283637 - }, { "schema": 1699660804881, "cookies": { @@ -2768,19 +3681,6 @@ "id": "7f8a8bfd-343c-4fa5-969b-35a0690f6f4f", "last_modified": 1676903765482 }, - { - "click": { - "optIn": "div.link-buttonstyles__BxpButton-sc-1utqn26-1", - "presence": "div.UiCookieBannerstyles__BannerContainer-sc-1f2iash-0" - }, - "schema": 1676828360243, - "cookies": {}, - "domains": [ - "trello.com" - ], - "id": "dba50586-334f-45ad-8890-4f2879e06c5a", - "last_modified": 1676903765478 - }, { "click": { "optIn": "a.cookieBarConsentButton", @@ -5813,19 +6713,6 @@ "id": "efe049ac-d21c-4fa6-b559-5c47b5ce307b", "last_modified": 1670498157643 }, - { - "click": { - "optIn": "a.cc-dismiss", - "presence": "div.cc-banner" - }, - "schema": 1670460524526, - "cookies": {}, - "domains": [ - "ieee.org" - ], - "id": "4ec563ab-ef41-4aa7-8da6-58227000fe1d", - "last_modified": 1670498157639 - }, { "click": { "optIn": "button#close_feedback_btn", @@ -6339,20 +7226,6 @@ "id": "80851a39-2183-49e4-99f4-16d6189bff1e", "last_modified": 1670498157404 }, - { - "click": { - "optIn": ".cck-actions div > button", - "optOut": ".cck-actions div > button + button", - "presence": "div#cookie-consent-banner" - }, - "schema": 1670460527205, - "cookies": {}, - "domains": [ - "europa.eu" - ], - "id": "0c74749a-8c53-4bb0-b31a-ab2f89b7f493", - "last_modified": 1670498157385 - }, { "click": { "optOut": "button.cookieBarButtons", @@ -6452,19 +7325,6 @@ "id": "c2f6b05e-73dc-4df4-bb54-68215bb9f176", "last_modified": 1670498157308 }, - { - "click": { - "optIn": "button#truste-consent-button", - "presence": "div#truste-consent-track" - }, - "schema": 1670460527205, - "cookies": {}, - "domains": [ - "forbes.com" - ], - "id": "30293090-f064-473a-ae0f-cd390507c1c7", - "last_modified": 1670498157304 - }, { "click": {}, "schema": 1670460528099, @@ -6697,21 +7557,6 @@ "id": "13dff385-bb91-414f-8fa3-88ae99621aba", "last_modified": 1670498157100 }, - { - "click": { - "optIn": "button.iubenda-cs-accept-btn", - "optOut": "button.iubenda-cs-reject-btn", - "presence": "div#iubenda-cs-banner" - }, - "schema": 1670460539454, - "cookies": {}, - "domains": [ - "giallozafferano.it", - "virgilio.it" - ], - "id": "65638975-8222-425c-9be0-3f41a51db13c", - "last_modified": 1670498157046 - }, { "click": { "optIn": "button.btn-cta-lg", @@ -7142,27 +7987,6 @@ "id": "d88020d5-47d0-4926-8375-d279870f1663", "last_modified": 1670498156564 }, - { - "click": { - "optIn": "button#popin_tc_privacy_button_2", - "presence": "div#popin_tc_privacy_container_button" - }, - "schema": 1670460534556, - "cookies": { - "optIn": [], - "optOut": [ - { - "name": "TC_PRIVACY", - "value": "1@006%7C86%7C3315@@@1665406595598%2C1665406595598%2C1680958595598@" - } - ] - }, - "domains": [ - "credit-agricole.fr" - ], - "id": "850ca0e7-372f-4c9f-bfbd-76d38a076cf7", - "last_modified": 1670498156560 - }, { "click": { "optIn": "button.orejime-Notice-saveButton", @@ -7292,26 +8116,6 @@ "id": "93b1a4a4-49e2-4160-98ae-e2311123c7f9", "last_modified": 1670498156441 }, - { - "click": { - "optIn": "button.is-primary", - "presence": "div.cookie-wrapper" - }, - "schema": 1670460533399, - "cookies": { - "optIn": [ - { - "name": "cookies", - "value": "1" - } - ] - }, - "domains": [ - "mediaexpert.pl" - ], - "id": "82e304ba-5ca0-457d-8db3-8da8769d032d", - "last_modified": 1670498156434 - }, { "click": { "optIn": "button.coi-banner__accept", @@ -7976,20 +8780,6 @@ "id": "1871561d-65f8-4972-8e8a-84fa9eb704b4", "last_modified": 1670498155756 }, - { - "click": { - "optIn": "button#ccc-recommended-settings", - "optOut": "button#ccc-reject-settings", - "presence": "div#ccc" - }, - "schema": 1670460541263, - "cookies": {}, - "domains": [ - "metoffice.gov.uk" - ], - "id": "9e4d932a-eaf9-44e4-a3ac-55861d66a7c3", - "last_modified": 1670498155746 - }, { "click": { "optIn": "button#accept-cookies", @@ -8139,5 +8929,5 @@ "last_modified": 1670498155641 } ], - "timestamp": 1701423955158 + "timestamp": 1704881609345 } diff --git a/services/settings/dumps/main/devtools-compatibility-browsers.json b/services/settings/dumps/main/devtools-compatibility-browsers.json index 01e21fbb109c8..3c52aa686741c 100644 --- a/services/settings/dumps/main/devtools-compatibility-browsers.json +++ b/services/settings/dumps/main/devtools-compatibility-browsers.json @@ -2,21 +2,165 @@ "data": [ { "name": "Edge", - "schema": 1702166707858, - "status": "current", - "version": "120", + "schema": 1705104306985, + "status": "planned", + "version": "123", "browserid": "edge", - "id": "74e217cb-3eb9-44b3-82d4-c14d54e78187", - "last_modified": 1702283211298 + "id": "d0c3d84f-8d27-455b-8746-7e25607e5b78", + "last_modified": 1705307946112 + }, + { + "name": "Edge", + "schema": 1704903174781, + "status": "beta", + "version": "121", + "browserid": "edge", + "id": "52bfc592-a35d-4208-ba7b-0810d88970d0", + "last_modified": 1705307946108 + }, + { + "name": "Edge", + "schema": 1705104306922, + "status": "nightly", + "version": "122", + "browserid": "edge", + "id": "5ad01f1f-b345-4f24-9b88-4f456a928c76", + "last_modified": 1705307946106 + }, + { + "name": "Firefox", + "schema": 1703376307846, + "status": "planned", + "version": "124", + "browserid": "firefox", + "id": "7f93cadc-411f-4e31-938c-cc5bfc173f85", + "last_modified": 1704181096583 + }, + { + "name": "Firefox for Android", + "schema": 1703376308305, + "status": "planned", + "version": "124", + "browserid": "firefox_android", + "id": "1b3c619a-5ca8-4f5f-8f0b-57a3a27a589f", + "last_modified": 1704181096580 + }, + { + "name": "Firefox", + "schema": 1703376307472, + "status": "beta", + "version": "122", + "browserid": "firefox", + "id": "956ca361-9275-40af-a48f-6b67c5ab01c9", + "last_modified": 1704181096576 + }, + { + "name": "Firefox for Android", + "schema": 1703376308153, + "status": "beta", + "version": "122", + "browserid": "firefox_android", + "id": "f849a913-a54d-4a46-bac3-e50d11e4fb59", + "last_modified": 1704181096573 + }, + { + "name": "Firefox for Android", + "schema": 1703376308089, + "status": "current", + "version": "121", + "browserid": "firefox_android", + "id": "23a8ddf5-b9a1-40c9-b72b-27fefb20f9b9", + "last_modified": 1704181096571 + }, + { + "name": "Firefox", + "schema": 1703376307401, + "status": "current", + "version": "121", + "browserid": "firefox", + "id": "6fa4f808-5e0b-4f2a-a108-600e52ea90f9", + "last_modified": 1704181096568 + }, + { + "name": "Firefox for Android", + "schema": 1703376308213, + "status": "nightly", + "version": "123", + "browserid": "firefox_android", + "id": "d9b7089d-7091-4794-9051-49f794c0c854", + "last_modified": 1704181096559 + }, + { + "name": "Firefox", + "schema": 1703376307789, + "status": "nightly", + "version": "123", + "browserid": "firefox", + "id": "2aed6f85-b118-4e91-b95a-481030c3bb78", + "last_modified": 1704181096556 + }, + { + "name": "Node.js", + "schema": 1702685107693, + "status": "esr", + "version": "20.10.0", + "browserid": "nodejs", + "id": "0d78585f-e9e0-41e8-816a-22461158e36d", + "last_modified": 1702890886929 }, { "name": "Opera Android", - "schema": 1701561907381, + "schema": 1702685107820, "status": "current", - "version": "78", + "version": "79", "browserid": "opera_android", - "id": "5889915d-7fa8-4cae-a1ae-e370a28aaec5", - "last_modified": 1701778564580 + "id": "8cbd1672-6d05-4c4f-9ad6-7955804a3f0c", + "last_modified": 1702890886926 + }, + { + "name": "Safari", + "schema": 1702685108023, + "status": "beta", + "version": "17.3", + "browserid": "safari", + "id": "7eb602be-e2c9-47d6-9491-29f8a42c3ddd", + "last_modified": 1702890886922 + }, + { + "name": "Safari on iOS", + "schema": 1702685108210, + "status": "beta", + "version": "17.3", + "browserid": "safari_ios", + "id": "f8eb9101-134d-481e-b713-42a1543008e5", + "last_modified": 1702890886919 + }, + { + "name": "Safari on iOS", + "schema": 1702685108148, + "status": "current", + "version": "17.2", + "browserid": "safari_ios", + "id": "0709a73b-ba98-4e14-a086-6515bb7fa106", + "last_modified": 1702890886904 + }, + { + "name": "Safari", + "schema": 1702685107959, + "status": "current", + "version": "17.2", + "browserid": "safari", + "id": "0358e297-4312-4137-87b7-08e6d5f03bb5", + "last_modified": 1702890886900 + }, + { + "name": "Edge", + "schema": 1702166707858, + "status": "current", + "version": "120", + "browserid": "edge", + "id": "74e217cb-3eb9-44b3-82d4-c14d54e78187", + "last_modified": 1702283211298 }, { "name": "Chrome", @@ -72,33 +216,6 @@ "id": "4f1ee2e5-7dd6-4e30-bd15-893611cd4a7f", "last_modified": 1701778564556 }, - { - "name": "Edge", - "schema": 1700957103696, - "status": "planned", - "version": "122", - "browserid": "edge", - "id": "5ad01f1f-b345-4f24-9b88-4f456a928c76", - "last_modified": 1701078578076 - }, - { - "name": "Firefox", - "schema": 1700957104142, - "status": "planned", - "version": "123", - "browserid": "firefox", - "id": "2aed6f85-b118-4e91-b95a-481030c3bb78", - "last_modified": 1701078578073 - }, - { - "name": "Firefox for Android", - "schema": 1700957104456, - "status": "planned", - "version": "123", - "browserid": "firefox_android", - "id": "d9b7089d-7091-4794-9051-49f794c0c854", - "last_modified": 1701078578070 - }, { "name": "Node.js", "schema": 1700957104515, @@ -117,15 +234,6 @@ "id": "63669ffc-728c-4e8a-b761-6939841f9d61", "last_modified": 1701078578064 }, - { - "name": "Edge", - "schema": 1700957103602, - "status": "nightly", - "version": "121", - "browserid": "edge", - "id": "52bfc592-a35d-4208-ba7b-0810d88970d0", - "last_modified": 1701078578061 - }, { "name": "Opera", "schema": 1700957104647, @@ -135,78 +243,6 @@ "id": "2d0a87f2-bc88-43d1-9b46-9ebd16e3fb66", "last_modified": 1701078578054 }, - { - "name": "Firefox for Android", - "schema": 1700957104258, - "status": "current", - "version": "120", - "browserid": "firefox_android", - "id": "34ccbda4-8e0a-46a0-b6c1-5d877aa0a1a9", - "last_modified": 1701078578051 - }, - { - "name": "Firefox", - "schema": 1700957103948, - "status": "current", - "version": "120", - "browserid": "firefox", - "id": "8abd289c-120a-47ed-a194-d3a7b6bad31b", - "last_modified": 1701078578048 - }, - { - "name": "Firefox", - "schema": 1700957104031, - "status": "beta", - "version": "121", - "browserid": "firefox", - "id": "6fa4f808-5e0b-4f2a-a108-600e52ea90f9", - "last_modified": 1701078578041 - }, - { - "name": "Firefox for Android", - "schema": 1700957104344, - "status": "beta", - "version": "121", - "browserid": "firefox_android", - "id": "23a8ddf5-b9a1-40c9-b72b-27fefb20f9b9", - "last_modified": 1701078578038 - }, - { - "name": "Firefox for Android", - "schema": 1700957104401, - "status": "nightly", - "version": "122", - "browserid": "firefox_android", - "id": "f849a913-a54d-4a46-bac3-e50d11e4fb59", - "last_modified": 1701078578035 - }, - { - "name": "Firefox", - "schema": 1700957104089, - "status": "nightly", - "version": "122", - "browserid": "firefox", - "id": "956ca361-9275-40af-a48f-6b67c5ab01c9", - "last_modified": 1701078578032 - }, - { - "name": "Safari", - "schema": 1700352303483, - "status": "beta", - "version": "17.2", - "browserid": "safari", - "id": "0358e297-4312-4137-87b7-08e6d5f03bb5", - "last_modified": 1700557930490 - }, - { - "name": "Safari on iOS", - "schema": 1700352303702, - "status": "beta", - "version": "17.2", - "browserid": "safari_ios", - "id": "0709a73b-ba98-4e14-a086-6515bb7fa106", - "last_modified": 1700557930487 - }, { "name": "Samsung Internet", "schema": 1700352303815, @@ -216,24 +252,6 @@ "id": "b6194ce4-1588-4c83-9a7c-54081c540d01", "last_modified": 1700557930484 }, - { - "name": "Safari on iOS", - "schema": 1700352303644, - "status": "current", - "version": "17.1", - "browserid": "safari_ios", - "id": "af9852bc-ad45-481d-a3b5-f8854224f568", - "last_modified": 1700557930473 - }, - { - "name": "Safari", - "schema": 1700352303427, - "status": "current", - "version": "17.1", - "browserid": "safari", - "id": "d517252f-b545-46e6-ab30-6ff27c72b32a", - "last_modified": 1700557930471 - }, { "name": "Firefox for Android", "schema": 1698797104411, @@ -305,25 +323,7 @@ "browserid": "oculus", "id": "371ced3b-8ff1-4540-a230-bc1827964bda", "last_modified": 1665656484764 - }, - { - "name": "Node.js", - "schema": 1661424922206, - "status": "esr", - "version": "16.17.0", - "browserid": "nodejs", - "id": "a7efd4b1-c035-4333-bfa9-148cd9878ac9", - "last_modified": 1661426998144 - }, - { - "name": "Node.js", - "schema": 1645204132602, - "status": "esr", - "version": "14.8.0", - "browserid": "nodejs", - "id": "4436cf1f-e30d-401a-893f-306dfd0b1e4e", - "last_modified": 1645448267500 } ], - "timestamp": 1702283211301 + "timestamp": 1705307946112 } diff --git a/services/settings/dumps/security-state/intermediates.json b/services/settings/dumps/security-state/intermediates.json index 5761c5615d95e..9603b2837dc7a 100644 --- a/services/settings/dumps/security-state/intermediates.json +++ b/services/settings/dumps/security-state/intermediates.json @@ -1,5 +1,743 @@ { "data": [ + { + "schema": 1704923284170, + "derHash": "u2FAiu2fUwsuwFReU7osjr6qV9mXZEfbFmPO1GAM1rc=", + "subject": "CN=UCA Global G2 Root,O=UniTrust,C=CN", + "subjectDN": "MD0xCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEbMBkGA1UEAwwSVUNBIEdsb2JhbCBHMiBSb290", + "whitelist": false, + "attachment": { + "hash": "8693b94fe853c85475023fa8be1792fd1f0f41c726cf590ac632829608d32dc3", + "size": 2036, + "filename": "ElXKvoFS-mTflC96R0F-KflsHOEb-MhOy-KBXMEoCBA=.pem", + "location": "security-state-staging/intermediates/f56c76d7-ae95-4ac4-9562-15e370ee8355.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "ElXKvoFS+mTflC96R0F+KflsHOEb+MhOy+KBXMEoCBA=", + "crlite_enrolled": false, + "id": "8a3e5d82-5ae8-4e51-a5db-6b86500b155e", + "last_modified": 1704923823508 + }, + { + "schema": 1704923283383, + "derHash": "v6lcXfFktln6MvbRBWTXFw3eZhqFOnguarY2OUM7y0E=", + "subject": "CN=UCA Global G2 Root,O=UniTrust,C=CN", + "subjectDN": "MD0xCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEbMBkGA1UEAwwSVUNBIEdsb2JhbCBHMiBSb290", + "whitelist": false, + "attachment": { + "hash": "5ceff937d1bce8a64fe718857c73f61b29830a24d45ac36cee4de5abec869491", + "size": 2040, + "filename": "ElXKvoFS-mTflC96R0F-KflsHOEb-MhOy-KBXMEoCBA=.pem", + "location": "security-state-staging/intermediates/7cd0dd1c-50ff-4045-8d42-130c062d2dff.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "ElXKvoFS+mTflC96R0F+KflsHOEb+MhOy+KBXMEoCBA=", + "crlite_enrolled": false, + "id": "2c1748b7-38bf-4495-91ea-1bd4dc918672", + "last_modified": 1704923823505 + }, + { + "schema": 1704469686367, + "derHash": "5LKgc2+VlQ0RuCyebDIDHhQg4GpmST5mXxKK5JlJj6s=", + "subject": "CN=LH.pl CA,O=LH.pl Sp. z o.o.,C=PL", + "subjectDN": "MDsxCzAJBgNVBAYTAlBMMRkwFwYDVQQKDBBMSC5wbCBTcC4geiBvLm8uMREwDwYDVQQDDAhMSC5wbCBDQQ==", + "whitelist": false, + "attachment": { + "hash": "1628c3d8568e4de0d51be81fe712f96e36711cc6b153eea5f3108e39a41b9d94", + "size": 1699, + "filename": "MJ-BRaw47gS1vebKWSZ_Y4etVrVSkjRdUN9KP4Ox3NM=.pem", + "location": "security-state-staging/intermediates/6bb2b968-d1dd-408d-bd15-bb2258ca0953.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "MJ+BRaw47gS1vebKWSZ/Y4etVrVSkjRdUN9KP4Ox3NM=", + "crlite_enrolled": false, + "id": "9604f1d4-9179-4db7-a8ef-e1fca8de5e17", + "last_modified": 1704470223072 + }, + { + "schema": 1703537607315, + "derHash": "ctcW97tr0QVwT0K5UkkjUQ3LhbLYcMDpraWuuclpBRo=", + "subject": "CN=ePKI Root Certification Authority - G2,O=Chunghwa Telecom Co.\\, Ltd.,C=TW", + "subjectDN": "MGMxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEvMC0GA1UEAwwmZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzI=", + "whitelist": false, + "attachment": { + "hash": "aff986340dcc592a5eacd96a6044c07f55438a9b0214921ea5306a0ea997fed9", + "size": 2804, + "filename": "tInMsiS5prgd0nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=.pem", + "location": "security-state-staging/intermediates/1cd7753f-d18c-4864-8129-0ea1a5092f75.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "tInMsiS5prgd0nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=", + "crlite_enrolled": false, + "id": "4e467304-4cae-4b24-8542-fa721e586cfb", + "last_modified": 1703537823229 + }, + { + "schema": 1703537607030, + "derHash": "aAfJcjXF7GCQJppLX+36tGmG5C9NZ9Lt3c9uRc8N+oA=", + "subject": "CN=HiPKI Root CA - G1,O=Chunghwa Telecom Co.\\, Ltd.,C=TW", + "subjectDN": "ME8xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEbMBkGA1UEAwwSSGlQS0kgUm9vdCBDQSAtIEcx", + "whitelist": false, + "attachment": { + "hash": "c94a4c47c3048f75024cf6c844a614b253f7ee3823a41c0e39e567effea001fc", + "size": 2328, + "filename": "ecqvU0fm5KlMjniphJb8dAIPgJ7eE_Ig-rYQTI3tMp8=.pem", + "location": "security-state-staging/intermediates/24d59f73-321d-498a-8fa9-3f4111529687.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "ecqvU0fm5KlMjniphJb8dAIPgJ7eE/Ig+rYQTI3tMp8=", + "crlite_enrolled": false, + "id": "64de4f00-ad9d-48db-9d46-2c27c55f4337", + "last_modified": 1703537823226 + }, + { + "schema": 1702979286308, + "derHash": "hHQJ5jUm8WJ1OsSfdSGO+q+n1clK3pCVznLn9rbjrJk=", + "subject": "CN=WE5,O=Google Trust Services,C=US", + "subjectDN": "MDsxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVHb29nbGUgVHJ1c3QgU2VydmljZXMxDDAKBgNVBAMTA1dFNQ==", + "whitelist": false, + "attachment": { + "hash": "66a4d320985f57419f1d552144985648eced68840b7963cc0127e86b68ec7423", + "size": 968, + "filename": "8yZxLgpR8EbO8ANRrWKAzIzz9XdlSUgtYPkXKYUlGSY=.pem", + "location": "security-state-staging/intermediates/edf802d5-2d08-4318-97fa-19954fb14b9e.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "8yZxLgpR8EbO8ANRrWKAzIzz9XdlSUgtYPkXKYUlGSY=", + "crlite_enrolled": false, + "id": "78aa678c-c514-489b-a47f-d976a279011a", + "last_modified": 1702979823409 + }, + { + "schema": 1702979286002, + "derHash": "3JQWwvhVEm1t6XdndTjy+Wf/SZjpDfpDWhchm+B3/AY=", + "subject": "CN=WR4,O=Google Trust Services,C=US", + "subjectDN": "MDsxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVHb29nbGUgVHJ1c3QgU2VydmljZXMxDDAKBgNVBAMTA1dSNA==", + "whitelist": false, + "attachment": { + "hash": "b9f64d659c6ad34b11345bc2d9a597d09b957f0f544c43f9f280e97de8f1f453", + "size": 1808, + "filename": "hZe1OerqJ1Pnq6F4N0gVjjpHqm037Ndf4aLLVpZZdAE=.pem", + "location": "security-state-staging/intermediates/e3958311-921c-432d-9c6d-8965c6365f95.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "hZe1OerqJ1Pnq6F4N0gVjjpHqm037Ndf4aLLVpZZdAE=", + "crlite_enrolled": false, + "id": "a4bda45a-5b5d-4254-ad27-c56b8a3484ae", + "last_modified": 1702979823406 + }, + { + "schema": 1702979285359, + "derHash": "nV6GkGoWgKhr4njPduPStit3UYYQFGHTA87pENlM4To=", + "subject": "CN=WE4,O=Google Trust Services,C=US", + "subjectDN": "MDsxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVHb29nbGUgVHJ1c3QgU2VydmljZXMxDDAKBgNVBAMTA1dFNA==", + "whitelist": false, + "attachment": { + "hash": "c3f131b2230a3e9820ca964c47489ddaf7fd334dcda9afda8ea07512cc8a9bcd", + "size": 943, + "filename": "O5TQDB_wa4SkRjBrQL2Aq9CG317H9MDDgpTVcrpJDa4=.pem", + "location": "security-state-staging/intermediates/df749bb2-7318-4d17-9bd5-f5f71cc23b79.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "O5TQDB/wa4SkRjBrQL2Aq9CG317H9MDDgpTVcrpJDa4=", + "crlite_enrolled": false, + "id": "f8362afb-a2e5-4df9-8ef7-700eae6b88ec", + "last_modified": 1702979823403 + }, + { + "schema": 1702979285043, + "derHash": "rg/IUigPG4fO2vc8+4TPEG7+yI6ClCU681LtQDRGDXs=", + "subject": "CN=WR5,O=Google Trust Services,C=US", + "subjectDN": "MDsxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVHb29nbGUgVHJ1c3QgU2VydmljZXMxDDAKBgNVBAMTA1dSNQ==", + "whitelist": false, + "attachment": { + "hash": "a06befc3d96cade86bed7e7b22a0bf465be67e57d58c636c2c27eb41b08c2350", + "size": 1808, + "filename": "_RoweMyX8j8_fAaaeAIwzhWXigZDrh_J2BBJaHrjX90=.pem", + "location": "security-state-staging/intermediates/f6b4c8a8-e26f-42cd-8cfd-622456e2cfb9.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "/RoweMyX8j8/fAaaeAIwzhWXigZDrh/J2BBJaHrjX90=", + "crlite_enrolled": false, + "id": "e8fb1277-f72f-4751-a48a-c0fd93c45a08", + "last_modified": 1702979823401 + }, + { + "schema": 1702979285679, + "derHash": "oof/q3Ysxpom1IIDft9wH2U86JkCXGKn5cuIu5tBnLs=", + "subject": "CN=WE1,O=Google Trust Services,C=US", + "subjectDN": "MDsxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVHb29nbGUgVHJ1c3QgU2VydmljZXMxDDAKBgNVBAMTA1dFMQ==", + "whitelist": false, + "attachment": { + "hash": "76c8cd346304c20236963ef1d9a2632cb775d29be521315f940c7feb5b819428", + "size": 947, + "filename": "kIdp6NNEd8wsugYyyIYFsi1ylMCED3hZbSR8ZFsa_A4=.pem", + "location": "security-state-staging/intermediates/44091d85-b3e1-4a45-93b7-40094d3626b7.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "kIdp6NNEd8wsugYyyIYFsi1ylMCED3hZbSR8ZFsa/A4=", + "crlite_enrolled": false, + "id": "b92b92e1-4d03-41fb-aea8-2ac1f6ccba1f", + "last_modified": 1702979823398 + }, + { + "schema": 1702979282537, + "derHash": "0Ml+VsewuoEtlErXcfd5m11BRKIyek5BZVT37iqgrq4=", + "subject": "CN=WE4,O=Google Trust Services,C=US", + "subjectDN": "MDsxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVHb29nbGUgVHJ1c3QgU2VydmljZXMxDDAKBgNVBAMTA1dFNA==", + "whitelist": false, + "attachment": { + "hash": "88a0f8993576590f88eb47c537e02214b477c44580eb23ac4233563fbc8833bb", + "size": 968, + "filename": "O5TQDB_wa4SkRjBrQL2Aq9CG317H9MDDgpTVcrpJDa4=.pem", + "location": "security-state-staging/intermediates/907554ce-bf54-4a19-8a6e-15fe19e6bb1c.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "O5TQDB/wa4SkRjBrQL2Aq9CG317H9MDDgpTVcrpJDa4=", + "crlite_enrolled": false, + "id": "6585b4ef-414a-4d88-a7db-3912f1c07563", + "last_modified": 1702979823396 + }, + { + "schema": 1702979284073, + "derHash": "HfwWBfutNY2LyET3bRUgP6ycpcGnn9SFf/ryhk++v5Y=", + "subject": "CN=WE1,O=Google Trust Services,C=US", + "subjectDN": "MDsxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVHb29nbGUgVHJ1c3QgU2VydmljZXMxDDAKBgNVBAMTA1dFMQ==", + "whitelist": false, + "attachment": { + "hash": "27d73fbd71e61bb97a5ee9eb30d07f7b8a6ae0b9eacb1ca9dc0bd7789a21117f", + "size": 968, + "filename": "kIdp6NNEd8wsugYyyIYFsi1ylMCED3hZbSR8ZFsa_A4=.pem", + "location": "security-state-staging/intermediates/22dd23ed-6558-4d33-884e-bb8c51dc3f70.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "kIdp6NNEd8wsugYyyIYFsi1ylMCED3hZbSR8ZFsa/A4=", + "crlite_enrolled": false, + "id": "b925e54a-22e0-429e-a2a7-938e222fa9ae", + "last_modified": 1702979823394 + }, + { + "schema": 1702979282838, + "derHash": "gSwhLp5F3FAFx/R0ERg/X7L/G67hhNM1Sy6T14woAWQ=", + "subject": "CN=AE1,O=Google Trust Services,C=US", + "subjectDN": "MDsxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVHb29nbGUgVHJ1c3QgU2VydmljZXMxDDAKBgNVBAMTA0FFMQ==", + "whitelist": false, + "attachment": { + "hash": "45a0fe1e15d4882a45910bffd62beab210d7ea87b00bbe4244ef70c872784700", + "size": 955, + "filename": "IGnQeIPjbxiR-JteR7AkUXl7pV-19BT4x3o15saZBNE=.pem", + "location": "security-state-staging/intermediates/fa74b311-65fe-4ff6-ab38-73f631970478.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "IGnQeIPjbxiR+JteR7AkUXl7pV+19BT4x3o15saZBNE=", + "crlite_enrolled": false, + "id": "1100d9a6-f856-4661-8965-1420202593f3", + "last_modified": 1702979823391 + }, + { + "schema": 1702979282239, + "derHash": "n4GaTIduEtyE5v4ON8GmmxNwlLRT+phEk5j0tx9NAJI=", + "subject": "CN=WE3,O=Google Trust Services,C=US", + "subjectDN": "MDsxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVHb29nbGUgVHJ1c3QgU2VydmljZXMxDDAKBgNVBAMTA1dFMw==", + "whitelist": false, + "attachment": { + "hash": "3096e62091f7005bfbb940f7c8d115868e2610909c6d3e3ff6708d0056b84eb2", + "size": 968, + "filename": "daBIAnKdRIX3bqM85I6We7wBUh0DPycNFBMvYkXGX2Q=.pem", + "location": "security-state-staging/intermediates/bfd5d12e-a763-4678-91e0-e15a14487bfa.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "daBIAnKdRIX3bqM85I6We7wBUh0DPycNFBMvYkXGX2Q=", + "crlite_enrolled": false, + "id": "a7495087-922c-4003-8cac-93d2e522f9ab", + "last_modified": 1702979823388 + }, + { + "schema": 1702979283154, + "derHash": "5v4iv0Xk8NO4XFngLA9JVBjh640yEPeI1IzV4ctUfNQ=", + "subject": "CN=WR2,O=Google Trust Services,C=US", + "subjectDN": "MDsxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVHb29nbGUgVHJ1c3QgU2VydmljZXMxDDAKBgNVBAMTA1dSMg==", + "whitelist": false, + "attachment": { + "hash": "209c8adefd267eac1bb057687118f475db2b88e0266ba7159a0da0420d4d9232", + "size": 1808, + "filename": "YPtHaftLw6_0vnc2BnNKGF54xiCA28WFcccjkA4ypCM=.pem", + "location": "security-state-staging/intermediates/30e866fe-25a8-40a5-aeb1-ac0f08756ce5.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "YPtHaftLw6/0vnc2BnNKGF54xiCA28WFcccjkA4ypCM=", + "crlite_enrolled": false, + "id": "87dfc3f3-2875-4c74-8f7d-90238d4926b5", + "last_modified": 1702979823385 + }, + { + "schema": 1702979283452, + "derHash": "L+NX2xN1H/kWDoc1SXWzQHSY9Byb0WpIZXhm5uWptMc=", + "subject": "CN=WR3,O=Google Trust Services,C=US", + "subjectDN": "MDsxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVHb29nbGUgVHJ1c3QgU2VydmljZXMxDDAKBgNVBAMTA1dSMw==", + "whitelist": false, + "attachment": { + "hash": "2af156305a26830e0cab92f695d4fdd2a232114a81ddc36bea3137dc4b822115", + "size": 1808, + "filename": "OdSlmQD9NWJh4EbcOHBxkhygPwNSwA9Q91eounfbcoE=.pem", + "location": "security-state-staging/intermediates/b30ba518-de9f-42f8-8c99-0a3321df25b2.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "OdSlmQD9NWJh4EbcOHBxkhygPwNSwA9Q91eounfbcoE=", + "crlite_enrolled": false, + "id": "a9ea65b5-af3d-4de9-aacb-60c3915032fe", + "last_modified": 1702979823383 + }, + { + "schema": 1702979284438, + "derHash": "VMZg2inXX8gfB61tyLt67iJY4HHosQd1RPpWIv9EyZ0=", + "subject": "CN=WE3,O=Google Trust Services,C=US", + "subjectDN": "MDsxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVHb29nbGUgVHJ1c3QgU2VydmljZXMxDDAKBgNVBAMTA1dFMw==", + "whitelist": false, + "attachment": { + "hash": "5f69b98f75457dd75b1fc0a89ec577a9ba7d8fdcfb3957bdc2a3d2c593652244", + "size": 943, + "filename": "daBIAnKdRIX3bqM85I6We7wBUh0DPycNFBMvYkXGX2Q=.pem", + "location": "security-state-staging/intermediates/7405438c-69c0-4704-a55b-babb5322df47.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "daBIAnKdRIX3bqM85I6We7wBUh0DPycNFBMvYkXGX2Q=", + "crlite_enrolled": false, + "id": "2341b1ef-a5b9-45d6-9333-5f146e9e60a8", + "last_modified": 1702979823380 + }, + { + "schema": 1702979283765, + "derHash": "sQtvAOYJUJ6HAPbTRoeiv8446gWo/fHNxAw6Kg0NDkU=", + "subject": "CN=WR1,O=Google Trust Services,C=US", + "subjectDN": "MDsxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVHb29nbGUgVHJ1c3QgU2VydmljZXMxDDAKBgNVBAMTA1dSMQ==", + "whitelist": false, + "attachment": { + "hash": "f36fa7b73961008c46f560c5bb291bd2a76dae4e3fd4564ecc3f1d589f63bf3d", + "size": 1808, + "filename": "yDu9og255NN5GEf-Bwa9rTrqFQ0EydZ0r1FCh9TdAW4=.pem", + "location": "security-state-staging/intermediates/e8838a0d-c424-498b-900c-656973dce5d6.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "yDu9og255NN5GEf+Bwa9rTrqFQ0EydZ0r1FCh9TdAW4=", + "crlite_enrolled": false, + "id": "54de915e-a0b4-4748-a565-3e96ab41d70b", + "last_modified": 1702979823377 + }, + { + "schema": 1702979281449, + "derHash": "nD8v0RxX18ZJrVoJMsDw0pdW9qChx0xD4eiaYtZM0yA=", + "subject": "CN=WE2,O=Google Trust Services,C=US", + "subjectDN": "MDsxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVHb29nbGUgVHJ1c3QgU2VydmljZXMxDDAKBgNVBAMTA1dFMg==", + "whitelist": false, + "attachment": { + "hash": "d8e7fe5c7e6836f1fdc5ff81a1b9510c11c57d74b9323efa7a37531a88ca2cdf", + "size": 968, + "filename": "vh78KSg1Ry4NaqGDV10w_cTb9VH3BQUZoCWNa93W_EY=.pem", + "location": "security-state-staging/intermediates/1f80b11f-7e0a-48dd-a7a0-b3d2daf1588c.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "vh78KSg1Ry4NaqGDV10w/cTb9VH3BQUZoCWNa93W/EY=", + "crlite_enrolled": false, + "id": "6c362de1-6fa5-49fe-808a-92fea5ac91ff", + "last_modified": 1702979823374 + }, + { + "schema": 1702979284729, + "derHash": "VPjKhYvMdZHyjY3Ddy6bxYFxfzojooi/1AWTnDYgjeU=", + "subject": "CN=WE2,O=Google Trust Services,C=US", + "subjectDN": "MDsxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVHb29nbGUgVHJ1c3QgU2VydmljZXMxDDAKBgNVBAMTA1dFMg==", + "whitelist": false, + "attachment": { + "hash": "bbbc5386082e7cac318c5296b4d680d4bffbf8511c5798b5119a9473288a7784", + "size": 943, + "filename": "vh78KSg1Ry4NaqGDV10w_cTb9VH3BQUZoCWNa93W_EY=.pem", + "location": "security-state-staging/intermediates/50a88d6e-2070-4289-91ce-aff4d6d1ac66.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "vh78KSg1Ry4NaqGDV10w/cTb9VH3BQUZoCWNa93W/EY=", + "crlite_enrolled": false, + "id": "32c0830e-d23a-448d-b04c-f1d9a5d6ec09", + "last_modified": 1702979823371 + }, + { + "schema": 1702698485861, + "derHash": "6muJ7WkHogn/kYhnb7Fk56ztiUuJlt++XOW7zCLeTd0=", + "subject": "CN=Sectigo Public Server Authentication Root E46,O=Sectigo Limited,C=GB", + "subjectDN": "MF8xCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxNjA0BgNVBAMTLVNlY3RpZ28gUHVibGljIFNlcnZlciBBdXRoZW50aWNhdGlvbiBSb290IEU0Ng==", + "whitelist": false, + "attachment": { + "hash": "66ca4451c8bd1eb771a373c620d27ea8c021479b2a2d66fbc4bb82e32517c827", + "size": 1195, + "filename": "sLVjNUaFYfW7n6EtgBeEpjOlcnBdNPMrZDRF36iwBdE=.pem", + "location": "security-state-staging/intermediates/70f63da3-037d-416c-9aa3-f651cf4ddbf6.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "sLVjNUaFYfW7n6EtgBeEpjOlcnBdNPMrZDRF36iwBdE=", + "crlite_enrolled": false, + "id": "2f13933d-5bd4-4d26-982b-8557eab6a72a", + "last_modified": 1702699023180 + }, + { + "schema": 1702698486394, + "derHash": "kvNRvz1UFk36jdj54ROdMVA0l4ZIXSue7NAOKXHB5sU=", + "subject": "CN=Sectigo Public Server Authentication Root R46,O=Sectigo Limited,C=GB", + "subjectDN": "MF8xCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxNjA0BgNVBAMTLVNlY3RpZ28gUHVibGljIFNlcnZlciBBdXRoZW50aWNhdGlvbiBSb290IFI0Ng==", + "whitelist": false, + "attachment": { + "hash": "1d6ba9f4a87acf2d3350366ab53367f2333574bf3944d21dcdd14afd0d3a17a8", + "size": 2341, + "filename": "Douxi77vs4G-Ib_BogbTFymEYq0QSFXwSgVCaZcI09Q=.pem", + "location": "security-state-staging/intermediates/c7eebf9a-39ad-4708-9361-d05032a25ded.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "Douxi77vs4G+Ib/BogbTFymEYq0QSFXwSgVCaZcI09Q=", + "crlite_enrolled": false, + "id": "6220cf95-dd0c-4ef5-9595-7def8f40b4fd", + "last_modified": 1702699023177 + }, + { + "schema": 1702676885375, + "derHash": "aAJwHw/Qlg/ytR85qusgp3jYMmGpWa0Nf/C+VCQPZz0=", + "subject": "CN=Sectigo Public Server Authentication Root E46,O=Sectigo Limited,C=GB", + "subjectDN": "MF8xCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxNjA0BgNVBAMTLVNlY3RpZ28gUHVibGljIFNlcnZlciBBdXRoZW50aWNhdGlvbiBSb290IEU0Ng==", + "whitelist": false, + "attachment": { + "hash": "daf33943ee6515c6f6685da58acad792f1d41238f045fcb457afbaf996102599", + "size": 1374, + "filename": "sLVjNUaFYfW7n6EtgBeEpjOlcnBdNPMrZDRF36iwBdE=.pem", + "location": "security-state-staging/intermediates/dfbbfdc5-3747-4cf5-b965-03ecde1435ac.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "sLVjNUaFYfW7n6EtgBeEpjOlcnBdNPMrZDRF36iwBdE=", + "crlite_enrolled": false, + "id": "1e974b0f-b590-4131-8c61-60f2ec053a74", + "last_modified": 1702677423284 + }, + { + "schema": 1702676885859, + "derHash": "znVYC8Z5bTs+osPnQlnQ1AMHJAjpYMdxOcL7Wj2UGeQ=", + "subject": "CN=Sectigo Public Server Authentication Root R46,O=Sectigo Limited,C=GB", + "subjectDN": "MF8xCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxNjA0BgNVBAMTLVNlY3RpZ28gUHVibGljIFNlcnZlciBBdXRoZW50aWNhdGlvbiBSb290IFI0Ng==", + "whitelist": false, + "attachment": { + "hash": "7b1997c27bf553e2790dae9518128f592d597f964bd542ba20ab323fec95ce3f", + "size": 1959, + "filename": "Douxi77vs4G-Ib_BogbTFymEYq0QSFXwSgVCaZcI09Q=.pem", + "location": "security-state-staging/intermediates/342d68ca-c5c7-4035-9b9e-605a2d14be23.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "Douxi77vs4G+Ib/BogbTFymEYq0QSFXwSgVCaZcI09Q=", + "crlite_enrolled": false, + "id": "d658757e-f0e6-403c-add5-2d1b715ef254", + "last_modified": 1702677423281 + }, + { + "schema": 1702525683451, + "derHash": "kWPxkQ1JRL4y0NIkp5+fprQDbpCYeVrIHT3RTOT/JNI=", + "subject": "CN=DigiCert QuoVadis 2G3 TLS RSA4096 SHA384 2023 CA1,O=DigiCert Ireland Limited,C=IE", + "subjectDN": "MGwxCzAJBgNVBAYTAklFMSEwHwYDVQQKDBhEaWdpQ2VydCBJcmVsYW5kIExpbWl0ZWQxOjA4BgNVBAMMMURpZ2lDZXJ0IFF1b1ZhZGlzIDJHMyBUTFMgUlNBNDA5NiBTSEEzODQgMjAyMyBDQTE=", + "whitelist": false, + "attachment": { + "hash": "066e7c017a39db9d21ea6c626a1fbd345b2241304c37c26cd55933353559cc74", + "size": 2337, + "filename": "ZPyxn3oNKP1K_sTUV8OfjfYB2niVatmowpkxgfZdTVA=.pem", + "location": "security-state-staging/intermediates/f818231c-ae72-4768-a4a5-5ae7765de037.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "ZPyxn3oNKP1K/sTUV8OfjfYB2niVatmowpkxgfZdTVA=", + "crlite_enrolled": false, + "id": "6a2998d4-e046-489f-9823-30f0aa88d1df", + "last_modified": 1702526223655 + }, + { + "schema": 1702486085377, + "derHash": "CoUHXdazguqzFEmCPbi+1rYaRBcUFl4z+spCzZyN7Co=", + "subject": "CN=vTrus DV SSL CA,O=iTrusChina Co.\\,Ltd.,C=CN", + "subjectDN": "MEUxCzAJBgNVBAYTAkNOMRwwGgYDVQQKExNpVHJ1c0NoaW5hIENvLixMdGQuMRgwFgYDVQQDEw92VHJ1cyBEViBTU0wgQ0E=", + "whitelist": false, + "attachment": { + "hash": "006851a10c762422e7e12ab4089a413ae73d2e8903dcf2b5f33339eb89028d4d", + "size": 2064, + "filename": "75pE_IZKhqgviWzR4qTd2zPqnbH6f4VSS4OvPeBjEjQ=.pem", + "location": "security-state-staging/intermediates/e1f0958b-86df-449d-b5f1-2757e988420c.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "75pE/IZKhqgviWzR4qTd2zPqnbH6f4VSS4OvPeBjEjQ=", + "crlite_enrolled": false, + "id": "d6f08689-0364-4035-9f67-188ef9a50390", + "last_modified": 1702486623398 + }, + { + "schema": 1702486084746, + "derHash": "O4PrXXqaWvBidaChwbNb1WJiKlUh4mmfJVWTKLiCkFg=", + "subject": "CN=vTrus FastSSL CA G1,O=iTrusChina Co.\\,Ltd.,C=CN", + "subjectDN": "MEkxCzAJBgNVBAYTAkNOMRwwGgYDVQQKExNpVHJ1c0NoaW5hIENvLixMdGQuMRwwGgYDVQQDExN2VHJ1cyBGYXN0U1NMIENBIEcx", + "whitelist": false, + "attachment": { + "hash": "21f6f414641686539d652061920c99da66eeac581d65caca2e1263ca27038b16", + "size": 2073, + "filename": "fpLQRtZkeoQDvEsHjbmGGp4fKzFQ1gW-e9kvlVQKjBY=.pem", + "location": "security-state-staging/intermediates/f44e1b60-b2f5-4240-a8cb-336596d983f3.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "fpLQRtZkeoQDvEsHjbmGGp4fKzFQ1gW+e9kvlVQKjBY=", + "crlite_enrolled": false, + "id": "c65114a4-315c-4f34-8e9e-0ef28fbdfdc5", + "last_modified": 1702486623395 + }, + { + "schema": 1702486083830, + "derHash": "p9coWEO4mxNPhSy1Km9DGTglfIJtaZqoBsiUoKHNuEc=", + "subject": "CN=vTrus YunSSL DV CA,O=iTrusChina Co.\\,Ltd.,C=CN", + "subjectDN": "MEgxCzAJBgNVBAYTAkNOMRwwGgYDVQQKExNpVHJ1c0NoaW5hIENvLixMdGQuMRswGQYDVQQDExJ2VHJ1cyBZdW5TU0wgRFYgQ0E=", + "whitelist": false, + "attachment": { + "hash": "ba59a36c91137df6649c2f760f9117e321c471b7573176c4f2332ec8bddde489", + "size": 2068, + "filename": "OfXp7s_mA-7Syh7zoom2IuL92dtJFWJQ4LjjCHnZCrk=.pem", + "location": "security-state-staging/intermediates/b4f3d401-59d8-4949-82ef-944da5336058.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "OfXp7s/mA+7Syh7zoom2IuL92dtJFWJQ4LjjCHnZCrk=", + "crlite_enrolled": false, + "id": "28811891-e6f8-4c0f-bce3-5c665db2b118", + "last_modified": 1702486623391 + }, + { + "schema": 1702486085061, + "derHash": "LPVTkkmp44/AEOKf8+gEZljz0DC5MxBHNof6kfjaRMo=", + "subject": "CN=vTrus OV SSL CA,O=iTrusChina Co.\\,Ltd.,C=CN", + "subjectDN": "MEUxCzAJBgNVBAYTAkNOMRwwGgYDVQQKExNpVHJ1c0NoaW5hIENvLixMdGQuMRgwFgYDVQQDEw92VHJ1cyBPViBTU0wgQ0E=", + "whitelist": false, + "attachment": { + "hash": "d32a79724707e94c73675621bcd08858efa114f126cfd38d017df2d44b3177b1", + "size": 2064, + "filename": "_AQe5lWT9xIwgAiIHcAT-pRj70-ckw8xE4qArEfIyd0=.pem", + "location": "security-state-staging/intermediates/1ca4e475-3a37-4fba-b668-07c7f5b577dc.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "/AQe5lWT9xIwgAiIHcAT+pRj70+ckw8xE4qArEfIyd0=", + "crlite_enrolled": false, + "id": "e01d9a3b-493a-4396-9ca4-f3f2de493daa", + "last_modified": 1702486623388 + }, + { + "schema": 1702486085692, + "derHash": "g0aSLLhzC7aucasDv8QkYvQWBCPZB5vmQ4ViGsWHdnI=", + "subject": "CN=Cybertrust Japan SureServer CA G4,O=Cybertrust Japan Co.\\, Ltd.,C=JP", + "subjectDN": "MF4xCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEqMCgGA1UEAxMhQ3liZXJ0cnVzdCBKYXBhbiBTdXJlU2VydmVyIENBIEc0", + "whitelist": false, + "attachment": { + "hash": "1c24671ce668c95b4f55ebb766c3a802692898e52ea09312bec303f2d3ef9e46", + "size": 1792, + "filename": "rS4Ex7fMz9dQhgdB6qjxP-jJJQwjIeb-7RhvvdO6xy8=.pem", + "location": "security-state-staging/intermediates/bbaf0f46-8126-403d-b143-4e1eb27f9cd6.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "rS4Ex7fMz9dQhgdB6qjxP+jJJQwjIeb+7RhvvdO6xy8=", + "crlite_enrolled": false, + "id": "16279f1b-5776-48e4-9244-7efe39ec603d", + "last_modified": 1702486623385 + }, + { + "schema": 1702486084138, + "derHash": "tyMnOjUGxr7YXwg9pWJzS+CfLEet5HMXgx1jqovieKU=", + "subject": "CN=Cybertrust Japan SureServer EV CA G3,O=Cybertrust Japan Co.\\, Ltd.,C=JP", + "subjectDN": "MGExCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEtMCsGA1UEAxMkQ3liZXJ0cnVzdCBKYXBhbiBTdXJlU2VydmVyIEVWIENBIEcz", + "whitelist": false, + "attachment": { + "hash": "d764598a0c68977c0a59932194309f858c7c76dce31f38e15a84b22b718b49d2", + "size": 1796, + "filename": "zJoepoy-7XeJoRmjbR7_i8oZ1WEujOKGTD9NNM0uWHM=.pem", + "location": "security-state-staging/intermediates/7b0627e5-46dd-4a39-bfbf-9008ac22545a.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "zJoepoy+7XeJoRmjbR7/i8oZ1WEujOKGTD9NNM0uWHM=", + "crlite_enrolled": false, + "id": "241a27dc-6ea8-4c6a-9971-ee313af5e225", + "last_modified": 1702486623382 + }, + { + "schema": 1702486084441, + "derHash": "TTkfx5C9cCytPMvAsCXFzdiMb98nTc9fvT8CeoDCx+U=", + "subject": "CN=vTrus ECC DV SSL CA,O=iTrusChina Co.\\,Ltd.,C=CN", + "subjectDN": "MEkxCzAJBgNVBAYTAkNOMRwwGgYDVQQKExNpVHJ1c0NoaW5hIENvLixMdGQuMRwwGgYDVQQDExN2VHJ1cyBFQ0MgRFYgU1NMIENB", + "whitelist": false, + "attachment": { + "hash": "5d0d09acee96f60239874fa8cbd87dfee41ac77ccb2c2345645425c953b4c5c6", + "size": 1248, + "filename": "gJ1It3GyfR5y0xbHIcRJPwjI6151kRqrGSR_W5v6jek=.pem", + "location": "security-state-staging/intermediates/d7ce4c2f-7a54-4c3b-b5d0-e9a45a50d0ec.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "gJ1It3GyfR5y0xbHIcRJPwjI6151kRqrGSR/W5v6jek=", + "crlite_enrolled": false, + "id": "4492cc7c-97f7-4600-9e46-da9cddcdec08", + "last_modified": 1702486623379 + }, + { + "schema": 1702486085984, + "derHash": "QuRsRIdFkShRdklzFFe2riAJnVQb0YLFSXsuZ+b/0PY=", + "subject": "CN=vTrus ECC OV SSL CA,O=iTrusChina Co.\\,Ltd.,C=CN", + "subjectDN": "MEkxCzAJBgNVBAYTAkNOMRwwGgYDVQQKExNpVHJ1c0NoaW5hIENvLixMdGQuMRwwGgYDVQQDExN2VHJ1cyBFQ0MgT1YgU1NMIENB", + "whitelist": false, + "attachment": { + "hash": "9a039a52d5e8d351f219305666a32564c917aa7d800fad7ae1c6f67c124b735f", + "size": 1248, + "filename": "atwg6ejpADR_jBbKnuSFzeAuVeHiQKJdUl2HSR0gLmU=.pem", + "location": "security-state-staging/intermediates/422a5983-0489-4cd2-8b21-9eed0ec2384a.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "atwg6ejpADR/jBbKnuSFzeAuVeHiQKJdUl2HSR0gLmU=", + "crlite_enrolled": false, + "id": "5e3187ba-e500-4d22-865b-3ba0e069935c", + "last_modified": 1702486623376 + }, + { + "schema": 1702352884804, + "derHash": "mDgOQ34aRuasKqZNe+bXHylp5RCsr103hGzxK4r+ez4=", + "subject": "CN=CFCA EV RSA CA,O=China Financial Certification Authority,C=CN", + "subjectDN": "MFgxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdDaGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFzAVBgNVBAMMDkNGQ0EgRVYgUlNBIENB", + "whitelist": false, + "attachment": { + "hash": "02174d0773a22f7ddf45bfa6c9381a80dc9e3cea87a1c433797804f1cfa12be2", + "size": 1735, + "filename": "FostjSDLEiGEYgqs_X5gkmIzrdLVZOV7yvaKWmt947s=.pem", + "location": "security-state-staging/intermediates/8c73311a-b6ca-411f-9470-2052fdac35aa.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "FostjSDLEiGEYgqs/X5gkmIzrdLVZOV7yvaKWmt947s=", + "crlite_enrolled": false, + "id": "52b8fd61-3e6e-4cdc-b2d3-c70ab16f8fae", + "last_modified": 1702353423385 + }, + { + "schema": 1702352884534, + "derHash": "qSvx/fstoqHOYOdECZLlOkEM4vqoq3Hq10RPJIbl+p8=", + "subject": "CN=CFCA OV ECC CA,O=China Financial Certification Authority,C=CN", + "subjectDN": "MFgxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdDaGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFzAVBgNVBAMMDkNGQ0EgT1YgRUNDIENB", + "whitelist": false, + "attachment": { + "hash": "3da3c929f3dcc4dbfe6eaebe09c4fab613a57298f098f007d68254f442742b70", + "size": 1735, + "filename": "TN_N6Jf5rIbtK8zrR3O_l4jRaH_uNDW2uy7BpL6wRpI=.pem", + "location": "security-state-staging/intermediates/acefad73-b52a-43ed-b85d-8cab0869f2ac.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "TN/N6Jf5rIbtK8zrR3O/l4jRaH/uNDW2uy7BpL6wRpI=", + "crlite_enrolled": false, + "id": "085e76be-1462-4bb5-a71b-13de680c2ff9", + "last_modified": 1702353423383 + }, + { + "schema": 1702352884224, + "derHash": "16Q6q1tZ9Yy2jMAc+Dijku6RP/Mw/nwzCe2jC4RUHQc=", + "subject": "CN=vTrus DV SSL CA G2,O=iTrusChina Co.\\, Ltd.,C=CN", + "subjectDN": "MEkxCzAJBgNVBAYTAkNOMR0wGwYDVQQKDBRpVHJ1c0NoaW5hIENvLiwgTHRkLjEbMBkGA1UEAwwSdlRydXMgRFYgU1NMIENBIEcy", + "whitelist": false, + "attachment": { + "hash": "a28ebaa77124c4b2275a78789c6c65782052cf8a54da01edea3da85edb1d3437", + "size": 1715, + "filename": "6_JADGgIS7qnL3q5HjSoTOzc3odMNijcmursMnJhReQ=.pem", + "location": "security-state-staging/intermediates/f00f70b3-f28e-431f-8f71-a2f633499040.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "6/JADGgIS7qnL3q5HjSoTOzc3odMNijcmursMnJhReQ=", + "crlite_enrolled": false, + "id": "dc84f6b9-ac89-467f-bb01-900748e40219", + "last_modified": 1702353423380 + }, + { + "schema": 1702352885755, + "derHash": "B26nNYOJQQ34XZEdJRuaWCxeb2hODwRu1DAYfwUzrvw=", + "subject": "CN=CFCA OV RSA CA,O=China Financial Certification Authority,C=CN", + "subjectDN": "MFgxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdDaGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFzAVBgNVBAMMDkNGQ0EgT1YgUlNBIENB", + "whitelist": false, + "attachment": { + "hash": "e326ed8724e104b43f7a73dadcafea08ad7d6fdd820d8a4558bea5ddd1072ce6", + "size": 1735, + "filename": "oDH56AcLYxtHRL0Vzs-6NObCXyFWaCqKf19VIrBXVKY=.pem", + "location": "security-state-staging/intermediates/dd558b1b-c233-4ce6-b488-e22e9314516b.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "oDH56AcLYxtHRL0Vzs+6NObCXyFWaCqKf19VIrBXVKY=", + "crlite_enrolled": false, + "id": "18d9efdc-6b6e-4d9f-ad58-bfd9db3909f6", + "last_modified": 1702353423378 + }, + { + "schema": 1702352885173, + "derHash": "7RJPR1qvTZjR5hjTvjLwA7PLuHPH0VsPGgCJc5y05Mw=", + "subject": "CN=CFCA DV RSA CA,O=China Financial Certification Authority,C=CN", + "subjectDN": "MFgxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdDaGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFzAVBgNVBAMMDkNGQ0EgRFYgUlNBIENB", + "whitelist": false, + "attachment": { + "hash": "1b74e4ff46433497155f6445c718c2b35401560cde64d863bb7afa29a28cb274", + "size": 1735, + "filename": "o8-G4ge4DP6REqP8nqEgIKpU1MYBfSTo2XXoAIlBhVA=.pem", + "location": "security-state-staging/intermediates/7f16a83f-64ff-4abe-81b4-4a97981da839.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "o8+G4ge4DP6REqP8nqEgIKpU1MYBfSTo2XXoAIlBhVA=", + "crlite_enrolled": false, + "id": "0549e809-df97-4bac-8e1a-3c257d5b5c47", + "last_modified": 1702353423376 + }, + { + "schema": 1702352883540, + "derHash": "MpbrBgyIfo7A5ZkD6cyNX2MC7o+rqVYgrl3iNkMz91M=", + "subject": "CN=vTrus OV SSL CA G2,O=iTrusChina Co.\\, Ltd.,C=CN", + "subjectDN": "MEkxCzAJBgNVBAYTAkNOMR0wGwYDVQQKDBRpVHJ1c0NoaW5hIENvLiwgTHRkLjEbMBkGA1UEAwwSdlRydXMgT1YgU1NMIENBIEcy", + "whitelist": false, + "attachment": { + "hash": "17d7817dc4df1312e08da6598409e25705300aaf63ac4de26dd9534ebf355212", + "size": 1715, + "filename": "M_T-ODly7zfdF_regqVPUCM52AYR2nAJSX2YFe_geDU=.pem", + "location": "security-state-staging/intermediates/efa4881e-b0ac-4ed6-8d4d-083540c8ea0e.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "M/T+ODly7zfdF/regqVPUCM52AYR2nAJSX2YFe/geDU=", + "crlite_enrolled": false, + "id": "21fdc757-5060-4551-964d-f884521c5212", + "last_modified": 1702353423373 + }, + { + "schema": 1702352885455, + "derHash": "1lgQ/9e/mg5Xed9nU7o4lDefhQsbdDrsVXhvmKwpAR8=", + "subject": "CN=CFCA EV ECC CA,O=China Financial Certification Authority,C=CN", + "subjectDN": "MFgxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdDaGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFzAVBgNVBAMMDkNGQ0EgRVYgRUNDIENB", + "whitelist": false, + "attachment": { + "hash": "2e785ab906f57de5b38277ddb2e235376abc6cdceff60668f1b20926a5bf7aaa", + "size": 1735, + "filename": "T_J7T2Xp0tXUxym7kWqj938wizi4IJKSuk2Cx_ei-a0=.pem", + "location": "security-state-staging/intermediates/219f5965-7274-4186-bb78-8e90c65398ba.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "T/J7T2Xp0tXUxym7kWqj938wizi4IJKSuk2Cx/ei+a0=", + "crlite_enrolled": false, + "id": "c5d19d1d-497a-4df6-a274-e1941058ddab", + "last_modified": 1702353423371 + }, + { + "schema": 1702352886056, + "derHash": "aQ3Vq2kACYEzObxmjG04ORRPNOF+W+fwlYh56angV/s=", + "subject": "CN=CFCA DV ECC CA,O=China Financial Certification Authority,C=CN", + "subjectDN": "MFgxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdDaGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFzAVBgNVBAMMDkNGQ0EgRFYgRUNDIENB", + "whitelist": false, + "attachment": { + "hash": "de5c1276a142ce3215f26b9d34df3e6b9c947ebad516149c89a1a382807bc023", + "size": 1735, + "filename": "QCrNhyXiWTS-zTKMhcNGYuaF3Sh-qCy3Hr77ZyQ-XTA=.pem", + "location": "security-state-staging/intermediates/f004a08f-2c32-40e8-b2b9-9fded843766e.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "QCrNhyXiWTS+zTKMhcNGYuaF3Sh+qCy3Hr77ZyQ+XTA=", + "crlite_enrolled": false, + "id": "27a87848-2d12-4437-90f7-c2ddf5caf834", + "last_modified": 1702353423368 + }, { "schema": 1700646486489, "derHash": "hA6N0d/JwMUNKcqFEpkc8u19zd8SQQN1/QpdR/j79XY=", @@ -11052,24 +11790,6 @@ "id": "c4016ca8-8eb6-4dcf-b5d7-f9cf4687f6db", "last_modified": 1666727870056 }, - { - "schema": 1666727401655, - "derHash": "AUU/ZFzZHiM7dISCfyP4pXP9ZBAp6opr/lSe9O2LMj0=", - "subject": "CN=HydrantID SSL ICA G2,O=HydrantID (Avalanche Cloud Corporation),C=US", - "subjectDN": "MF4xCzAJBgNVBAYTAlVTMTAwLgYDVQQKEydIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHTAbBgNVBAMTFEh5ZHJhbnRJRCBTU0wgSUNBIEcy", - "whitelist": false, - "attachment": { - "hash": "7210ab4fd67176c39b121dc273d719681e6df16720f1ec337d1ed98f2f42397f", - "size": 2410, - "filename": "400Fim9IQe4j-Gj-Ci4R44M3gA6J1_TRh8LlPSLF3I8=.pem", - "location": "security-state-staging/intermediates/59737916-a963-4e35-8bd8-385202497f2a.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "400Fim9IQe4j+Gj+Ci4R44M3gA6J1/TRh8LlPSLF3I8=", - "crlite_enrolled": false, - "id": "ed99b508-86ba-4d5c-b995-fdab177680bd", - "last_modified": 1666727870043 - }, { "schema": 1666727385101, "derHash": "8DhCHwfyDWOiDTaR5aF4q4RZ6+VwwWR7dpBVTvI4dqs=", @@ -11196,24 +11916,6 @@ "id": "78225120-3a97-4f14-84f9-0aa83efcdb19", "last_modified": 1666727869939 }, - { - "schema": 1666727354185, - "derHash": "nG0IkzIBQH+/KxJUC2fMDkyWZvEy4VBHYqcXy66PP9Y=", - "subject": "CN=HydrantID SSL ICA G2,O=HydrantID (Avalanche Cloud Corporation),C=US", - "subjectDN": "MF4xCzAJBgNVBAYTAlVTMTAwLgYDVQQKEydIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHTAbBgNVBAMTFEh5ZHJhbnRJRCBTU0wgSUNBIEcy", - "whitelist": false, - "attachment": { - "hash": "c4fbca9a15eb275e83118896e4839aba070abde056cf047aa1a57afdd78af927", - "size": 2406, - "filename": "400Fim9IQe4j-Gj-Ci4R44M3gA6J1_TRh8LlPSLF3I8=.pem", - "location": "security-state-staging/intermediates/0711da67-ae2e-4da6-b908-4e2a4c4b75d5.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "400Fim9IQe4j+Gj+Ci4R44M3gA6J1/TRh8LlPSLF3I8=", - "crlite_enrolled": false, - "id": "fd5ca567-aacd-40bf-afeb-7eaf0f0e8a38", - "last_modified": 1666727869926 - }, { "schema": 1666727387793, "derHash": "Httr2RJ0iC23lb/FFPiqvhCtlVy8z9P9Wltf67LOW2g=", @@ -12456,24 +13158,6 @@ "id": "3cd31ab6-a5a0-48c8-b8c6-bf3b52f1e812", "last_modified": 1666727868851 }, - { - "schema": 1666727405975, - "derHash": "pTtcm7WtknA9xPd/5k2ROiOf03IHOkjiegSBWApWN8Q=", - "subject": "CN=vTrus OV SSL CA,O=iTrusChina Co.\\,Ltd.,C=CN", - "subjectDN": "MEUxCzAJBgNVBAYTAkNOMRwwGgYDVQQKExNpVHJ1c0NoaW5hIENvLixMdGQuMRgwFgYDVQQDEw92VHJ1cyBPViBTU0wgQ0E=", - "whitelist": false, - "attachment": { - "hash": "4edc5bd03aede64fb9a23473cb654b555c969e2142043a263b82aeb3a59fe874", - "size": 2003, - "filename": "_AQe5lWT9xIwgAiIHcAT-pRj70-ckw8xE4qArEfIyd0=.pem", - "location": "security-state-staging/intermediates/4c09e834-209d-44b3-9ae2-1d9033f6247f.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "/AQe5lWT9xIwgAiIHcAT+pRj70+ckw8xE4qArEfIyd0=", - "crlite_enrolled": false, - "id": "4230b38b-be66-4970-8f7a-3918ddc99f23", - "last_modified": 1666727868838 - }, { "schema": 1666727355222, "derHash": "NleScpC2H2zJgSsAJDFTm5c0y2WpaFdnUMdr8kll6Wo=", @@ -14022,24 +14706,6 @@ "id": "20775ffb-1103-4907-b08a-0c493aeac016", "last_modified": 1666727867638 }, - { - "schema": 1666727384915, - "derHash": "V2XGaWoOtcgWRFcyPcQbYSmWHuXFWMEeygKagGdd4to=", - "subject": "CN=InCommon IGTF Server CA,OU=InCommon,O=Internet2,C=US", - "subjectDN": "MFYxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJbnRlcm5ldDIxETAPBgNVBAsTCEluQ29tbW9uMSAwHgYDVQQDExdJbkNvbW1vbiBJR1RGIFNlcnZlciBDQQ==", - "whitelist": false, - "attachment": { - "hash": "84bee3071007d8cacb31b71811506cc6d89340e7f698c79b47b57ee4ddb3916a", - "size": 2105, - "filename": "eKK5WQ3iY2Qjww9Titbu9ylESXstB780TnTJBT7c0zI=.pem", - "location": "security-state-staging/intermediates/2d51da9f-ff3c-4174-9e79-a98e40e238f5.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "eKK5WQ3iY2Qjww9Titbu9ylESXstB780TnTJBT7c0zI=", - "crlite_enrolled": false, - "id": "4a68831a-9470-4a77-aba6-70258fa43dbd", - "last_modified": 1666727867623 - }, { "schema": 1666727364656, "derHash": "kdwogfatCgATs9ROmTYaE4YvnLe+YiD8395g5IvdMXo=", @@ -21546,24 +22212,6 @@ "id": "6831d020-be6b-40ae-bcf0-87582137009e", "last_modified": 1663333023134 }, - { - "schema": 1663292934087, - "derHash": "yX42zr8VgKsb2tYcHVOwXHWBnoXZNyFL5oTIWbItReA=", - "subject": "CN=vTrus ECC DV SSL CA,O=iTrusChina Co.\\,Ltd.,C=CN", - "subjectDN": "MEkxCzAJBgNVBAYTAkNOMRwwGgYDVQQKExNpVHJ1c0NoaW5hIENvLixMdGQuMRwwGgYDVQQDExN2VHJ1cyBFQ0MgRFYgU1NMIENB", - "whitelist": false, - "attachment": { - "hash": "ef4575a1abe7f8492e2e0d89dbbf6e80b196e4b6dccd8bf4e48700ed4bcfec4a", - "size": 1183, - "filename": "gJ1It3GyfR5y0xbHIcRJPwjI6151kRqrGSR_W5v6jek=.pem", - "location": "security-state-staging/intermediates/ec7a715e-d7a6-4181-97cf-a92d556be831.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "gJ1It3GyfR5y0xbHIcRJPwjI6151kRqrGSR/W5v6jek=", - "crlite_enrolled": false, - "id": "b03c963c-1efb-4b29-ada5-072be4e9c064", - "last_modified": 1663293423137 - }, { "schema": 1663292931545, "derHash": "vTDA0eesuD78T19sYvjzpXm6snUnr65mbGlsOoZxdfE=", @@ -21582,42 +22230,6 @@ "id": "e538f9af-2862-49fd-bf86-757961d7fae8", "last_modified": 1663293423124 }, - { - "schema": 1663292933222, - "derHash": "X36LSowRuvLL5kWbR/221QwChcSplPTu8v5RYKoKt4o=", - "subject": "CN=vTrus DV SSL CA,O=iTrusChina Co.\\,Ltd.,C=CN", - "subjectDN": "MEUxCzAJBgNVBAYTAkNOMRwwGgYDVQQKExNpVHJ1c0NoaW5hIENvLixMdGQuMRgwFgYDVQQDEw92VHJ1cyBEViBTU0wgQ0E=", - "whitelist": false, - "attachment": { - "hash": "02cc66488a37100af024e6807b42f3d0fcca6bac68c70036847c21859c2e0f9f", - "size": 2003, - "filename": "75pE_IZKhqgviWzR4qTd2zPqnbH6f4VSS4OvPeBjEjQ=.pem", - "location": "security-state-staging/intermediates/f23ff21b-8762-4cf2-9fc1-76e7a2b242a8.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "75pE/IZKhqgviWzR4qTd2zPqnbH6f4VSS4OvPeBjEjQ=", - "crlite_enrolled": false, - "id": "2c323d34-79d7-4432-98d5-a94de72a3cdc", - "last_modified": 1663293423118 - }, - { - "schema": 1663292930727, - "derHash": "I1ge8ZId8vkpDboNTU9IqX+Yrq77XjNQs/cFgujNvng=", - "subject": "CN=vTrus ECC OV SSL CA,O=iTrusChina Co.\\,Ltd.,C=CN", - "subjectDN": "MEkxCzAJBgNVBAYTAkNOMRwwGgYDVQQKExNpVHJ1c0NoaW5hIENvLixMdGQuMRwwGgYDVQQDExN2VHJ1cyBFQ0MgT1YgU1NMIENB", - "whitelist": false, - "attachment": { - "hash": "f5e788b19092bef358268ca50c1012469e23bacaec6b8968235a7fde8315fae3", - "size": 1183, - "filename": "atwg6ejpADR_jBbKnuSFzeAuVeHiQKJdUl2HSR0gLmU=.pem", - "location": "security-state-staging/intermediates/b692d6ce-df0f-4a0e-920b-24276a7019af.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "atwg6ejpADR/jBbKnuSFzeAuVeHiQKJdUl2HSR0gLmU=", - "crlite_enrolled": false, - "id": "db5d32a7-7559-4255-af23-e2984f0c4bb5", - "last_modified": 1663293423112 - }, { "schema": 1663292929822, "derHash": "86ptcSoV9j+DUIBJedtUJBmmGysdIudWxBer/o10o8o=", @@ -27990,24 +28602,6 @@ "id": "dce12f32-7494-4a0b-a01f-b3b7fcaa5481", "last_modified": 1562025688751 }, - { - "schema": 1562025655469, - "derHash": "3MpxYWfwKaqaMJ7oyj/x9AF9Gh89GYG9/55a8/UDaCo=", - "subject": "CN=Booz Allen Hamilton BA CA 01,OU=TrustID,O=IdenTrust,C=US", - "subjectDN": "MFoxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxEDAOBgNVBAsTB1RydXN0SUQxJTAjBgNVBAMTHEJvb3ogQWxsZW4gSGFtaWx0b24gQkEgQ0EgMDE=", - "whitelist": false, - "attachment": { - "hash": "909f0042606279a43c7d642c24bb37ea7161ec199ee60c8c634d754172b1ea23", - "size": 2040, - "filename": "UdncogVDGpmz7WJo4cgW3yRJEEC_B94goUWpdotXqis=.pem", - "location": "security-state-staging/intermediates/5c0368c0-92c7-4bdf-a1bd-6456c1a67422.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "UdncogVDGpmz7WJo4cgW3yRJEEC/B94goUWpdotXqis=", - "crlite_enrolled": false, - "id": "f48c0b76-fdb4-48ef-8265-f5936ac95931", - "last_modified": 1562025656207 - }, { "schema": 1562025646434, "derHash": "j3zEVemlUHgEEgZV1xORhiU+Q7AEIuc0JjoHadL4n30=", @@ -29089,5 +29683,5 @@ "last_modified": 1559865884636 } ], - "timestamp": 1700647023222 + "timestamp": 1704923823508 } diff --git a/taskcluster/ci/toolchain/misc.yml b/taskcluster/ci/toolchain/misc.yml index d51915412bdcd..c3392926e1cf1 100644 --- a/taskcluster/ci/toolchain/misc.yml +++ b/taskcluster/ci/toolchain/misc.yml @@ -183,11 +183,14 @@ linux64-custom-v8: linux64-custom-car: description: "Custom chromium-as-release build for Linux" + attributes: + cached_task: false treeherder: symbol: TL(custom-car) worker: docker-image: {in-tree: custom-car-linux} max-run-time: 16200 + run-on-projects: [] run: script: build-custom-car-linux.sh arguments: [ @@ -210,6 +213,8 @@ linux64-custom-car: win64-custom-car: description: "Custom chromium-as-release build for Windows" + attributes: + cached_task: false treeherder: symbol: TW64(custom-car) worker-type: b-win2012 @@ -217,6 +222,7 @@ win64-custom-car: max-run-time: 16200 env: MSYSTEM: "MINGW64" + run-on-projects: [] run: script: build-custom-car-win64.sh arguments: [ diff --git a/taskcluster/scripts/builder/build-sm.sh b/taskcluster/scripts/builder/build-sm.sh index 44ccde6f96b88..7ee31bbcf488e 100755 --- a/taskcluster/scripts/builder/build-sm.sh +++ b/taskcluster/scripts/builder/build-sm.sh @@ -31,7 +31,7 @@ if [ "$upload" = "1" ]; then # Fuzzing users want the correct version of llvm-symbolizer available in the # same directory as the built output. - if [ -d "$MOZ_FETCHES_DIR/llvm-symbolizer"]; then + if [ -d "$MOZ_FETCHES_DIR/llvm-symbolizer" ]; then for f in "$MOZ_FETCHES_DIR/llvm-symbolizer/bin/llvm-symbolizer"*; do gzip -c "$f" > "$UPLOAD_DIR/llvm-symbolizer.gz" || echo "gzip $f failed" >&2 break diff --git a/taskcluster/scripts/misc/wrench-deps-vendoring.sh b/taskcluster/scripts/misc/wrench-deps-vendoring.sh index fa25a3183b7ef..f81dc1be93225 100755 --- a/taskcluster/scripts/misc/wrench-deps-vendoring.sh +++ b/taskcluster/scripts/misc/wrench-deps-vendoring.sh @@ -20,7 +20,8 @@ mkdir wrench-deps/cargo-apk # https://github.com/rust-windowing/android-ndk-rs/pull/236, we need to use # an unpublished version. Additionally, until we update the NDK version used # in gecko we must use our own patched version. See bug 1615148. -cargo install --path $MOZ_FETCHES_DIR/android-ndk-rs/cargo-apk --root wrench-deps/cargo-apk cargo-apk +(cd $MOZ_FETCHES_DIR/android-ndk-rs/cargo-apk; cargo update -p home --precise 0.5.5) +cargo install --locked --path $MOZ_FETCHES_DIR/android-ndk-rs/cargo-apk --root wrench-deps/cargo-apk cargo-apk ci-scripts/install-meson.sh mv meson wrench-deps/meson diff --git a/testing/perfdocs/generated/raptor.rst b/testing/perfdocs/generated/raptor.rst index c97148088462f..6a2dc3180b718 100644 --- a/testing/perfdocs/generated/raptor.rst +++ b/testing/perfdocs/generated/raptor.rst @@ -1520,53 +1520,6 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr * **unit**: score * **Test Task**: - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-speedometer-mobile-fenix-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-speedometer-mobile-geckoview-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-speedometer-mobile-chrome-m-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-speedometer-mobile-fenix-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-speedometer-mobile-geckoview-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - - .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -1815,53 +1768,6 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr * **unit**: score * **Test Task**: - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-speedometer-mobile-fenix-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-speedometer-mobile-geckoview-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-speedometer-mobile-chrome-m-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-speedometer-mobile-fenix-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-speedometer-mobile-geckoview-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - - .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -2124,53 +2030,6 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr * **unit**: score * **Test Task**: - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-speedometer3-mobile-fenix-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-speedometer3-mobile-geckoview-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-speedometer3-mobile-chrome-m-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-speedometer3-mobile-fenix-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-speedometer3-mobile-geckoview-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - - .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -2428,53 +2287,6 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr * **unit**: score * **Test Task**: - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-speedometer3-mobile-fenix-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-speedometer3-mobile-geckoview-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-speedometer3-mobile-chrome-m-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-speedometer3-mobile-fenix-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-speedometer3-mobile-geckoview-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - - .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -3414,53 +3226,6 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr * **unit**: score * **Test Task**: - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-unity-webgl-mobile-fenix-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-unity-webgl-mobile-geckoview-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-unity-webgl-mobile-chrome-m-nofis** - - ✅ - - ❌ - - ❌ - - ❌ - * - **browsertime-unity-webgl-mobile-fenix-nofis** - - ✅ - - ❌ - - ❌ - - ❌ - * - **browsertime-unity-webgl-mobile-geckoview-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - - .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -3701,53 +3466,6 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr * **unit**: score * **Test Task**: - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-unity-webgl-mobile-fenix-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-unity-webgl-mobile-geckoview-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-unity-webgl-mobile-chrome-m-nofis** - - ✅ - - ❌ - - ❌ - - ❌ - * - **browsertime-unity-webgl-mobile-fenix-nofis** - - ✅ - - ❌ - - ❌ - - ❌ - * - **browsertime-unity-webgl-mobile-geckoview-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - - .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -6312,7 +6030,7 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr * **use live sites**: true * **Test Task**: - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** + .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -6321,49 +6039,7 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr - autoland - mozilla-release - mozilla-beta - * - **browsertime-mobile-fenix-youtube-playback-h264-sfr-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-mobile-geckoview-youtube-playback-h264-sfr-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-mobile-fenix-youtube-playback-h264-sfr-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-mobile-geckoview-youtube-playback-h264-sfr-nofis** - - ✅ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-firefox-youtube-playback-h264-sfr** + * - **browsertime-firefox-youtube-playback-h264-sfr** - ❌ - ❌ - ❌ @@ -6556,48 +6232,6 @@ Standard benchmarks are third-party tests (i.e. Speedometer) that we have integr * **use live sites**: true * **Test Task**: - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-mobile-fenix-youtube-playback-hfr-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-mobile-geckoview-youtube-playback-hfr-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-mobile-fenix-youtube-playback-hfr-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-mobile-geckoview-youtube-playback-hfr-nofis** - - ✅ - - ❌ - - ❌ - - ❌ - - .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -9354,31 +8988,11 @@ Tests for page-load performance. The links direct to the actual websites that ar - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-amazon** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-amazon** - ❌ - ❌ @@ -9400,46 +9014,16 @@ Tests for page-load performance. The links direct to the actual websites that ar - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-amazon** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-amazon** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-amazon-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-amazon** - ❌ - ❌ @@ -10526,31 +10110,11 @@ Tests for page-load performance. The links direct to the actual websites that ar - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-cnn** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-cnn** - ❌ - ❌ @@ -10572,46 +10136,16 @@ Tests for page-load performance. The links direct to the actual websites that ar - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-cnn** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-cnn** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-cnn-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-cnn** - ❌ - ❌ @@ -11323,78 +10857,6 @@ Tests for page-load performance. The links direct to the actual websites that ar * **use live sites**: false * **Test Task**: - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-fenix-espn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-espn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-espn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-espn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-chrome-m-espn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-fenix-espn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-espn-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-espn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-espn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-espn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -11637,7 +11099,7 @@ Tests for page-load performance. The links direct to the actual websites that ar * **use live sites**: false * **Test Task**: - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** + .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -11646,19 +11108,14 @@ Tests for page-load performance. The links direct to the actual websites that ar - autoland - mozilla-release - mozilla-beta - * - **browsertime-tp6m-live-fenix-expedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-expedia-nofis** + * - **browsertime-tp6-firefox-expedia** - ❌ - ❌ - ❌ - ❌ - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** + .. list-table:: **test-linux1804-64-nightlyasrelease-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -11667,24 +11124,14 @@ Tests for page-load performance. The links direct to the actual websites that ar - autoland - mozilla-release - mozilla-beta - * - **browsertime-tp6m-live-chrome-m-expedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-expedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-expedia-nofis** + * - **browsertime-tp6-firefox-expedia** - ❌ - ❌ - ❌ - ❌ - .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** + .. list-table:: **test-linux1804-64-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -11700,7 +11147,7 @@ Tests for page-load performance. The links direct to the actual websites that ar - ❌ - .. list-table:: **test-linux1804-64-nightlyasrelease-qr/opt** + .. list-table:: **test-linux1804-64-shippable-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -11709,14 +11156,24 @@ Tests for page-load performance. The links direct to the actual websites that ar - autoland - mozilla-release - mozilla-beta - * - **browsertime-tp6-firefox-expedia** + * - **browsertime-tp6-chrome-expedia** + - ❌ + - ❌ - ❌ - ❌ + * - **browsertime-tp6-chromium-expedia** + - ❌ - ❌ - ❌ + - ❌ + * - **browsertime-tp6-firefox-expedia** + - ✅ + - ✅ + - ✅ + - ✅ - .. list-table:: **test-linux1804-64-qr/opt** + .. list-table:: **test-macosx1015-64-nightlyasrelease-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -11732,49 +11189,7 @@ Tests for page-load performance. The links direct to the actual websites that ar - ❌ - .. list-table:: **test-linux1804-64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6-chrome-expedia** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6-chromium-expedia** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6-firefox-expedia** - - ✅ - - ✅ - - ✅ - - ✅ - - - .. list-table:: **test-macosx1015-64-nightlyasrelease-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6-firefox-expedia** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-macosx1015-64-shippable-qr/opt** + .. list-table:: **test-macosx1015-64-shippable-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -11926,78 +11341,6 @@ Tests for page-load performance. The links direct to the actual websites that ar * **use live sites**: false * **Test Task**: - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-fenix-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-chrome-m-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-fenix-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-facebook-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -14182,31 +13525,11 @@ Tests for page-load performance. The links direct to the actual websites that ar - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-imdb-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-imdb** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-imdb-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-imdb-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-imdb-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-imdb** - ❌ - ❌ @@ -14228,46 +13551,16 @@ Tests for page-load performance. The links direct to the actual websites that ar - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-imdb-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-imdb** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-imdb-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-imdb** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-imdb-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-imdb-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-imdb-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-imdb-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-imdb** - ❌ - ❌ @@ -14949,31 +14242,11 @@ Tests for page-load performance. The links direct to the actual websites that ar - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-instagram-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-instagram** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-instagram-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-instagram-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-instagram-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-instagram** - ❌ - ❌ @@ -14995,46 +14268,16 @@ Tests for page-load performance. The links direct to the actual websites that ar - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-instagram-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-instagram** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-instagram-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-instagram** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-instagram-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-instagram-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-instagram-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-instagram-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-instagram** - ❌ - ❌ @@ -16370,53 +15613,6 @@ Tests for page-load performance. The links direct to the actual websites that ar * **use live sites**: false * **Test Task**: - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-fenix-nytimes-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-nytimes-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-chrome-m-nytimes-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-nytimes-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-nytimes-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -17939,27 +17135,38 @@ Tests for page-load performance. The links direct to the actual websites that ar - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-reddit-nofis** + * - **browsertime-tp6m-geckoview-reddit** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-reddit** + * - **browsertime-tp6m-refbrow-reddit** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-reddit-nofis** + + + .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** + :widths: 30 15 15 15 15 + :header-rows: 1 + + * - **Test Name** + - mozilla-central + - autoland + - mozilla-release + - mozilla-beta + * - **browsertime-tp6m-chrome-m-reddit** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-live-fenix-reddit-nofis** + * - **browsertime-tp6m-fenix-reddit** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-live-geckoview-reddit-nofis** + * - **browsertime-tp6m-geckoview-reddit** - ❌ - ❌ - ❌ @@ -17971,7 +17178,7 @@ Tests for page-load performance. The links direct to the actual websites that ar - ❌ - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** + .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -17980,73 +17187,12 @@ Tests for page-load performance. The links direct to the actual websites that ar - autoland - mozilla-release - mozilla-beta - * - **browsertime-tp6m-chrome-m-reddit** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-chrome-m-reddit-nofis** - - ❌ - - ❌ - - ❌ + * - **browsertime-tp6-firefox-reddit** - ❌ - * - **browsertime-tp6m-fenix-reddit** - ❌ - ❌ - ❌ - - ❌ - * - **browsertime-tp6m-fenix-reddit-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-geckoview-reddit** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-geckoview-reddit-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-reddit-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-reddit-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-reddit-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-refbrow-reddit** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6-firefox-reddit** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6-live-firefox-reddit** + * - **browsertime-tp6-live-firefox-reddit** - ❌ - ❌ - ❌ @@ -19721,31 +18867,11 @@ Tests for page-load performance. The links direct to the actual websites that ar - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-wikipedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-wikipedia** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-wikipedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-wikipedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-wikipedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-wikipedia** - ❌ - ❌ @@ -19767,46 +18893,16 @@ Tests for page-load performance. The links direct to the actual websites that ar - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-wikipedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-wikipedia** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-wikipedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-wikipedia** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-wikipedia-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-wikipedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-wikipedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-wikipedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-wikipedia** - ❌ - ❌ @@ -20636,31 +19732,11 @@ Tests for page-load performance. The links direct to the actual websites that ar - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-youtube** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-youtube** - ❌ - ❌ @@ -20682,46 +19758,16 @@ Tests for page-load performance. The links direct to the actual websites that ar - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-youtube** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-youtube** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-youtube-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-youtube** - ❌ - ❌ @@ -22293,55 +21339,6 @@ A set of test pages that are run as live sites instead of recorded versions. The * **type**: pageload * **unit**: ms * **use live sites**: true - * **Test Task**: - - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-fenix-booking-sf-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-booking-sf-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-chrome-m-booking-sf-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-booking-sf-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-booking-sf-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - .. dropdown:: cnn :class-container: anchor-id-cnn-l @@ -22376,31 +21373,11 @@ A set of test pages that are run as live sites instead of recorded versions. The - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-cnn** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-cnn** - ❌ - ❌ @@ -22422,46 +21399,16 @@ A set of test pages that are run as live sites instead of recorded versions. The - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-cnn** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-cnn** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-cnn-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-cnn** - ❌ - ❌ @@ -22839,31 +21786,11 @@ A set of test pages that are run as live sites instead of recorded versions. The - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-cnn-ampstories-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-cnn-ampstories** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-cnn-ampstories-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-cnn-ampstories-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-cnn-ampstories-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-cnn-ampstories** - ❌ - ❌ @@ -22885,46 +21812,16 @@ A set of test pages that are run as live sites instead of recorded versions. The - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-cnn-ampstories-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-cnn-ampstories** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-cnn-ampstories-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-cnn-ampstories** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-cnn-ampstories-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-cnn-ampstories-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-cnn-ampstories-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-cnn-ampstories-nofis** - - ❌ - - ✅ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-cnn-ampstories** - ❌ - ❌ @@ -22950,55 +21847,6 @@ A set of test pages that are run as live sites instead of recorded versions. The * **type**: pageload * **unit**: ms * **use live sites**: true - * **Test Task**: - - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-fenix-discord-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-discord-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-chrome-m-discord-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-discord-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-discord-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - .. dropdown:: expedia :class-container: anchor-id-expedia-l @@ -23019,53 +21867,6 @@ A set of test pages that are run as live sites instead of recorded versions. The * **use live sites**: true * **Test Task**: - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-fenix-expedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-expedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-chrome-m-expedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-expedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-expedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -23300,58 +22101,63 @@ A set of test pages that are run as live sites instead of recorded versions. The * **type**: pageload * **unit**: ms * **use live sites**: true - * **Test Task**: - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 +.. dropdown:: google-accounts + :class-container: anchor-id-google-accounts-l - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-fenix-fashionbeans-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-fashionbeans-nofis** - - ❌ - - ❌ - - ❌ - - ❌ + **Owner**: PerfTest Team + * **alert on**: fcp, loadtime, ContentfulSpeedIndex, PerceptualSpeedIndex, SpeedIndex, FirstVisualChange, LastVisualChange + * **alert threshold**: 2.0 + * **apps**: geckoview, fenix, refbrow, chrome-m, firefox, chrome, chromium + * **browser cycles**: 15 + * **expected**: pass + * **lower is better**: true + * **page cycles**: 25 + * **page timeout**: 60000 + * **test url**: ``__ + * **type**: pageload + * **unit**: ms + * **use live sites**: true - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 +.. dropdown:: imdb-firefox + :class-container: anchor-id-imdb-firefox-l - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-chrome-m-fashionbeans-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-fashionbeans-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-fashionbeans-nofis** - - ❌ - - ❌ - - ❌ - - ❌ + **Owner**: PerfTest Team + + * **alert on**: fcp, loadtime, ContentfulSpeedIndex, PerceptualSpeedIndex, SpeedIndex, FirstVisualChange, LastVisualChange + * **alert threshold**: 2.0 + * **apps**: geckoview, fenix, refbrow, chrome-m, firefox, chrome, chromium + * **browser cycles**: 15 + * **expected**: pass + * **lower is better**: true + * **page cycles**: 25 + * **page timeout**: 60000 + * **test url**: ``__ + * **type**: pageload + * **unit**: ms + * **use live sites**: true +.. dropdown:: medium-article + :class-container: anchor-id-medium-article-l + **Owner**: PerfTest Team -.. dropdown:: google-accounts - :class-container: anchor-id-google-accounts-l + * **alert on**: fcp, loadtime, ContentfulSpeedIndex, PerceptualSpeedIndex, SpeedIndex, FirstVisualChange, LastVisualChange + * **alert threshold**: 2.0 + * **apps**: geckoview, fenix, refbrow, chrome-m, firefox, chrome, chromium + * **browser cycles**: 15 + * **expected**: pass + * **lower is better**: true + * **page cycles**: 25 + * **page timeout**: 60000 + * **test url**: ``__ + * **type**: pageload + * **unit**: ms + * **use live sites**: true + +.. dropdown:: nytimes + :class-container: anchor-id-nytimes-l **Owner**: PerfTest Team @@ -23363,13 +22169,13 @@ A set of test pages that are run as live sites instead of recorded versions. The * **lower is better**: true * **page cycles**: 25 * **page timeout**: 60000 - * **test url**: ``__ + * **test url**: ``__ * **type**: pageload * **unit**: ms * **use live sites**: true * **Test Task**: - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** + .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -23378,19 +22184,30 @@ A set of test pages that are run as live sites instead of recorded versions. The - autoland - mozilla-release - mozilla-beta - * - **browsertime-tp6m-live-fenix-google-accounts-nofis** + * - **browsertime-tp6-firefox-nytimes** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-live-geckoview-google-accounts-nofis** + + + .. list-table:: **test-linux1804-64-nightlyasrelease-qr/opt** + :widths: 30 15 15 15 15 + :header-rows: 1 + + * - **Test Name** + - mozilla-central + - autoland + - mozilla-release + - mozilla-beta + * - **browsertime-tp6-firefox-nytimes** - ❌ - ❌ - ❌ - ❌ - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** + .. list-table:: **test-linux1804-64-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -23399,44 +22216,40 @@ A set of test pages that are run as live sites instead of recorded versions. The - autoland - mozilla-release - mozilla-beta - * - **browsertime-tp6m-live-chrome-m-google-accounts-nofis** + * - **browsertime-tp6-firefox-nytimes** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-live-fenix-google-accounts-nofis** + + + .. list-table:: **test-linux1804-64-shippable-qr/opt** + :widths: 30 15 15 15 15 + :header-rows: 1 + + * - **Test Name** + - mozilla-central + - autoland + - mozilla-release + - mozilla-beta + * - **browsertime-tp6-chrome-nytimes** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-live-geckoview-google-accounts-nofis** + * - **browsertime-tp6-chromium-nytimes** - ❌ - ❌ - ❌ - ❌ + * - **browsertime-tp6-firefox-nytimes** + - ✅ + - ✅ + - ✅ + - ✅ - -.. dropdown:: imdb-firefox - :class-container: anchor-id-imdb-firefox-l - - **Owner**: PerfTest Team - - * **alert on**: fcp, loadtime, ContentfulSpeedIndex, PerceptualSpeedIndex, SpeedIndex, FirstVisualChange, LastVisualChange - * **alert threshold**: 2.0 - * **apps**: geckoview, fenix, refbrow, chrome-m, firefox, chrome, chromium - * **browser cycles**: 15 - * **expected**: pass - * **lower is better**: true - * **page cycles**: 25 - * **page timeout**: 60000 - * **test url**: ``__ - * **type**: pageload - * **unit**: ms - * **use live sites**: true - * **Test Task**: - - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** + .. list-table:: **test-macosx1015-64-nightlyasrelease-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -23445,19 +22258,14 @@ A set of test pages that are run as live sites instead of recorded versions. The - autoland - mozilla-release - mozilla-beta - * - **browsertime-tp6m-live-fenix-imdb-firefox-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-imdb-firefox-nofis** + * - **browsertime-tp6-firefox-nytimes** - ❌ - ❌ - ❌ - ❌ - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** + .. list-table:: **test-macosx1015-64-shippable-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -23466,283 +22274,33 @@ A set of test pages that are run as live sites instead of recorded versions. The - autoland - mozilla-release - mozilla-beta - * - **browsertime-tp6m-live-chrome-m-imdb-firefox-nofis** + * - **browsertime-tp6-chrome-nytimes** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-live-fenix-imdb-firefox-nofis** + * - **browsertime-tp6-chromium-nytimes** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-live-geckoview-imdb-firefox-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - -.. dropdown:: medium-article - :class-container: anchor-id-medium-article-l - - **Owner**: PerfTest Team - - * **alert on**: fcp, loadtime, ContentfulSpeedIndex, PerceptualSpeedIndex, SpeedIndex, FirstVisualChange, LastVisualChange - * **alert threshold**: 2.0 - * **apps**: geckoview, fenix, refbrow, chrome-m, firefox, chrome, chromium - * **browser cycles**: 15 - * **expected**: pass - * **lower is better**: true - * **page cycles**: 25 - * **page timeout**: 60000 - * **test url**: ``__ - * **type**: pageload - * **unit**: ms - * **use live sites**: true - * **Test Task**: - - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-fenix-medium-article-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-medium-article-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-chrome-m-medium-article-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-medium-article-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-medium-article-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - -.. dropdown:: nytimes - :class-container: anchor-id-nytimes-l - - **Owner**: PerfTest Team - - * **alert on**: fcp, loadtime, ContentfulSpeedIndex, PerceptualSpeedIndex, SpeedIndex, FirstVisualChange, LastVisualChange - * **alert threshold**: 2.0 - * **apps**: geckoview, fenix, refbrow, chrome-m, firefox, chrome, chromium - * **browser cycles**: 15 - * **expected**: pass - * **lower is better**: true - * **page cycles**: 25 - * **page timeout**: 60000 - * **test url**: ``__ - * **type**: pageload - * **unit**: ms - * **use live sites**: true - * **Test Task**: - - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-fenix-nytimes-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-nytimes-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-chrome-m-nytimes-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-nytimes-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-nytimes-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6-firefox-nytimes** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-linux1804-64-nightlyasrelease-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6-firefox-nytimes** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-linux1804-64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6-firefox-nytimes** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-linux1804-64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6-chrome-nytimes** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6-chromium-nytimes** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6-firefox-nytimes** - - ✅ - - ✅ - - ✅ - - ✅ - - - .. list-table:: **test-macosx1015-64-nightlyasrelease-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6-firefox-nytimes** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-macosx1015-64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6-chrome-nytimes** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6-chromium-nytimes** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6-firefox-nytimes** - - ✅ - - ✅ - - ✅ - - ✅ - - - .. list-table:: **test-windows10-32-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6-firefox-nytimes** + * - **browsertime-tp6-firefox-nytimes** + - ✅ + - ✅ + - ✅ + - ✅ + + + .. list-table:: **test-windows10-32-qr/opt** + :widths: 30 15 15 15 15 + :header-rows: 1 + + * - **Test Name** + - mozilla-central + - autoland + - mozilla-release + - mozilla-beta + * - **browsertime-tp6-firefox-nytimes** - ❌ - ❌ - ❌ @@ -23851,55 +22409,6 @@ A set of test pages that are run as live sites instead of recorded versions. The * **type**: pageload * **unit**: ms * **use live sites**: true - * **Test Task**: - - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-fenix-people-article-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-people-article-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-chrome-m-people-article-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-people-article-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-people-article-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - .. dropdown:: reddit-thread :class-container: anchor-id-reddit-thread-l @@ -23918,55 +22427,6 @@ A set of test pages that are run as live sites instead of recorded versions. The * **type**: pageload * **unit**: ms * **use live sites**: true - * **Test Task**: - - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-fenix-reddit-thread-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-reddit-thread-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-chrome-m-reddit-thread-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-reddit-thread-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-reddit-thread-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - .. dropdown:: rumble-fox :class-container: anchor-id-rumble-fox-l @@ -23977,63 +22437,14 @@ A set of test pages that are run as live sites instead of recorded versions. The * **alert threshold**: 2.0 * **apps**: geckoview, fenix, refbrow, chrome-m, firefox, chrome, chromium * **browser cycles**: 15 - * **expected**: pass - * **lower is better**: true - * **page cycles**: 25 - * **page timeout**: 60000 - * **test url**: ``__ - * **type**: pageload - * **unit**: ms - * **use live sites**: true - * **Test Task**: - - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-fenix-rumble-fox-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-rumble-fox-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-chrome-m-rumble-fox-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-rumble-fox-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-rumble-fox-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - + * **expected**: pass + * **lower is better**: true + * **page cycles**: 25 + * **page timeout**: 60000 + * **test url**: ``__ + * **type**: pageload + * **unit**: ms + * **use live sites**: true .. dropdown:: stackoverflow-question :class-container: anchor-id-stackoverflow-question-l @@ -24052,55 +22463,6 @@ A set of test pages that are run as live sites instead of recorded versions. The * **type**: pageload * **unit**: ms * **use live sites**: true - * **Test Task**: - - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-fenix-stackoverflow-question-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-stackoverflow-question-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-chrome-m-stackoverflow-question-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-stackoverflow-question-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-stackoverflow-question-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - .. dropdown:: urbandictionary-define :class-container: anchor-id-urbandictionary-define-l @@ -24119,55 +22481,6 @@ A set of test pages that are run as live sites instead of recorded versions. The * **type**: pageload * **unit**: ms * **use live sites**: true - * **Test Task**: - - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-fenix-urbandictionary-define-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-urbandictionary-define-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-chrome-m-urbandictionary-define-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-urbandictionary-define-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-urbandictionary-define-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - .. dropdown:: wikia-marvel :class-container: anchor-id-wikia-marvel-l @@ -24186,55 +22499,6 @@ A set of test pages that are run as live sites instead of recorded versions. The * **type**: pageload * **unit**: ms * **use live sites**: true - * **Test Task**: - - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-fenix-wikia-marvel-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-wikia-marvel-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-live-chrome-m-wikia-marvel-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-wikia-marvel-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-wikia-marvel-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - Mobile @@ -24261,80 +22525,6 @@ Page-load performance test suite on Android. The links direct to the actual webs * **type**: pageload * **unit**: ms * **use live sites**: false - * **Test Task**: - - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-fenix-allrecipes-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-allrecipes-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-allrecipes-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-allrecipes-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-chrome-m-allrecipes-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-fenix-allrecipes-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-allrecipes-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-allrecipes-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-allrecipes-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-allrecipes-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - .. dropdown:: amazon :class-container: anchor-id-amazon-m @@ -24366,94 +22556,44 @@ Page-load performance test suite on Android. The links direct to the actual webs - mozilla-central - autoland - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-fenix-amazon** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-fenix-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-geckoview-amazon** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-geckoview-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-refbrow-amazon** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-chrome-m-amazon** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-chrome-m-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ + - mozilla-beta * - **browsertime-tp6m-fenix-amazon** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-amazon-nofis** - - ❌ - - ❌ + * - **browsertime-tp6m-geckoview-amazon** - ❌ - ❌ - * - **browsertime-tp6m-geckoview-amazon** - ❌ - ❌ + * - **browsertime-tp6m-refbrow-amazon** - ❌ - ❌ - * - **browsertime-tp6m-geckoview-amazon-nofis** - - ✅ - - ✅ - ❌ - ❌ - * - **browsertime-tp6m-live-chrome-m-amazon-nofis** + + + .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** + :widths: 30 15 15 15 15 + :header-rows: 1 + + * - **Test Name** + - mozilla-central + - autoland + - mozilla-release + - mozilla-beta + * - **browsertime-tp6m-chrome-m-amazon** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-live-fenix-amazon-nofis** + * - **browsertime-tp6m-fenix-amazon** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-live-geckoview-amazon-nofis** + * - **browsertime-tp6m-geckoview-amazon** - ❌ - ❌ - ❌ @@ -24877,80 +23017,6 @@ Page-load performance test suite on Android. The links direct to the actual webs * **type**: pageload * **unit**: ms * **use live sites**: false - * **Test Task**: - - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-fenix-amazon-search-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-amazon-search-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-amazon-search-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-amazon-search-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-chrome-m-amazon-search-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-fenix-amazon-search-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-amazon-search-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-amazon-search-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-amazon-search-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-amazon-search-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - .. dropdown:: bing :class-container: anchor-id-bing-m @@ -24988,31 +23054,11 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-bing-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-bing** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-bing-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-bing-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-bing-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-bing** - ❌ - ❌ @@ -25034,46 +23080,16 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-bing-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-bing** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-bing-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-bing** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-bing-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-bing-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-bing-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-bing-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-bing** - ❌ - ❌ @@ -25118,31 +23134,11 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-bing-search-restaurants-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-bing-search-restaurants** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-bing-search-restaurants-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-bing-search-restaurants-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-bing-search-restaurants-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-bing-search-restaurants** - ❌ - ❌ @@ -25164,46 +23160,16 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-bing-search-restaurants-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-bing-search-restaurants** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-bing-search-restaurants-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-bing-search-restaurants** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-bing-search-restaurants-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-bing-search-restaurants-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-bing-search-restaurants-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-bing-search-restaurants-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-bing-search-restaurants** - ❌ - ❌ @@ -25248,31 +23214,11 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-booking-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-booking** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-booking-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-booking-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-booking-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-booking** - ❌ - ❌ @@ -25294,46 +23240,16 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-booking-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-booking** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-booking-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-booking** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-booking-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-booking-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-booking-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-booking-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-booking** - ❌ - ❌ @@ -25378,31 +23294,11 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-cnn** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-cnn** - ❌ - ❌ @@ -25412,54 +23308,24 @@ Page-load performance test suite on Android. The links direct to the actual webs .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-chrome-m-cnn** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-chrome-m-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-fenix-cnn** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-fenix-cnn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-geckoview-cnn** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-geckoview-cnn-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-cnn-nofis** + :header-rows: 1 + + * - **Test Name** + - mozilla-central + - autoland + - mozilla-release + - mozilla-beta + * - **browsertime-tp6m-chrome-m-cnn** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-live-fenix-cnn-nofis** + * - **browsertime-tp6m-fenix-cnn** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-live-geckoview-cnn-nofis** + * - **browsertime-tp6m-geckoview-cnn** - ❌ - ❌ - ❌ @@ -25844,31 +23710,11 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-cnn-ampstories-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-cnn-ampstories** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-cnn-ampstories-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-cnn-ampstories-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-cnn-ampstories-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-cnn-ampstories** - ❌ - ❌ @@ -25890,46 +23736,16 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-cnn-ampstories-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-cnn-ampstories** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-cnn-ampstories-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-cnn-ampstories** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-cnn-ampstories-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-cnn-ampstories-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-cnn-ampstories-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-cnn-ampstories-nofis** - - ❌ - - ✅ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-cnn-ampstories** - ❌ - ❌ @@ -25974,31 +23790,11 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-dailymail-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-dailymail** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-dailymail-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-dailymail-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-dailymail-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-dailymail** - ❌ - ❌ @@ -26020,46 +23816,16 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-dailymail-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-dailymail** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-dailymail-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-dailymail** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-dailymail-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-dailymail-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-dailymail-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-dailymail-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-dailymail** - ❌ - ❌ @@ -26104,31 +23870,11 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-ebay-kleinanzeigen-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-ebay-kleinanzeigen** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-ebay-kleinanzeigen-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-ebay-kleinanzeigen-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-ebay-kleinanzeigen-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-ebay-kleinanzeigen** - ❌ - ❌ @@ -26150,46 +23896,16 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-ebay-kleinanzeigen-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-ebay-kleinanzeigen** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-ebay-kleinanzeigen-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-ebay-kleinanzeigen** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-ebay-kleinanzeigen-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-ebay-kleinanzeigen-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-ebay-kleinanzeigen-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-ebay-kleinanzeigen-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-ebay-kleinanzeigen** - ❌ - ❌ @@ -26234,31 +23950,11 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-ebay-kleinanzeigen-search-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-ebay-kleinanzeigen-search** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-ebay-kleinanzeigen-search-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-ebay-kleinanzeigen-search-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-ebay-kleinanzeigen-search-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-ebay-kleinanzeigen-search** - ❌ - ❌ @@ -26280,148 +23976,46 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-ebay-kleinanzeigen-search-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-fenix-ebay-kleinanzeigen-search** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-fenix-ebay-kleinanzeigen-search-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-geckoview-ebay-kleinanzeigen-search** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-geckoview-ebay-kleinanzeigen-search-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-ebay-kleinanzeigen-search-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-ebay-kleinanzeigen-search-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-ebay-kleinanzeigen-search-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-refbrow-ebay-kleinanzeigen-search** - - ❌ - - ❌ - - ❌ - - ❌ - - - -.. dropdown:: espn - :class-container: anchor-id-espn-m - - **Owner**: PerfTest Team - - * **alert on**: fcp, loadtime, ContentfulSpeedIndex, PerceptualSpeedIndex, SpeedIndex, FirstVisualChange, LastVisualChange - * **alert threshold**: 2.0 - * **apps**: geckoview, fenix, refbrow, chrome-m - * **browser cycles**: 15 - * **expected**: pass - * **lower is better**: true - * **page cycles**: 25 - * **page timeout**: 60000 - * **playback**: mitmproxy-android - * **playback pageset manifest**: mitm6-android-fenix-espn.manifest - * **playback version**: 8.1.1 - * **test url**: ``__ - * **type**: pageload - * **unit**: ms - * **use live sites**: false - * **Test Task**: - - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-fenix-espn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-espn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-espn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-espn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-chrome-m-espn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-fenix-espn-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-espn-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-espn-nofis** + * - **browsertime-tp6m-fenix-ebay-kleinanzeigen-search** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-live-fenix-espn-nofis** + * - **browsertime-tp6m-geckoview-ebay-kleinanzeigen-search** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-live-geckoview-espn-nofis** + * - **browsertime-tp6m-refbrow-ebay-kleinanzeigen-search** - ❌ - ❌ - ❌ - ❌ + +.. dropdown:: espn + :class-container: anchor-id-espn-m + + **Owner**: PerfTest Team + + * **alert on**: fcp, loadtime, ContentfulSpeedIndex, PerceptualSpeedIndex, SpeedIndex, FirstVisualChange, LastVisualChange + * **alert threshold**: 2.0 + * **apps**: geckoview, fenix, refbrow, chrome-m + * **browser cycles**: 15 + * **expected**: pass + * **lower is better**: true + * **page cycles**: 25 + * **page timeout**: 60000 + * **playback**: mitmproxy-android + * **playback pageset manifest**: mitm6-android-fenix-espn.manifest + * **playback version**: 8.1.1 + * **test url**: ``__ + * **type**: pageload + * **unit**: ms + * **use live sites**: false + * **Test Task**: + .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -26662,78 +24256,6 @@ Page-load performance test suite on Android. The links direct to the actual webs * **use live sites**: false * **Test Task**: - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-fenix-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-chrome-m-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-fenix-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-facebook-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -27087,31 +24609,11 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-facebook-cristiano-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-facebook-cristiano** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-facebook-cristiano-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-facebook-cristiano-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-facebook-cristiano-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-facebook-cristiano** - ❌ - ❌ @@ -27133,46 +24635,16 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-facebook-cristiano-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-facebook-cristiano** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-facebook-cristiano-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-facebook-cristiano** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-facebook-cristiano-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-facebook-cristiano-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-facebook-cristiano-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-facebook-cristiano-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-facebook-cristiano** - ❌ - ❌ @@ -27202,80 +24674,6 @@ Page-load performance test suite on Android. The links direct to the actual webs * **type**: pageload * **unit**: ms * **use live sites**: false - * **Test Task**: - - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-fenix-google-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-google-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-google-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-google-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-chrome-m-google-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-fenix-google-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-google-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-google-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-google-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-google-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - .. dropdown:: google-maps :class-container: anchor-id-google-maps-m @@ -27313,31 +24711,11 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-google-maps-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-google-maps** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-google-maps-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-google-maps-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-google-maps-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-google-maps** - ❌ - ❌ @@ -27359,46 +24737,16 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-google-maps-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-google-maps** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-google-maps-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-google-maps** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-google-maps-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-google-maps-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-google-maps-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-google-maps-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-google-maps** - ❌ - ❌ @@ -27435,36 +24783,16 @@ Page-load performance test suite on Android. The links direct to the actual webs :header-rows: 1 * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-fenix-google-search-restaurants** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-fenix-google-search-restaurants-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-geckoview-google-search-restaurants** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-geckoview-google-search-restaurants-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-google-search-restaurants-nofis** + - mozilla-central + - autoland + - mozilla-release + - mozilla-beta + * - **browsertime-tp6m-fenix-google-search-restaurants** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-live-geckoview-google-search-restaurants-nofis** + * - **browsertime-tp6m-geckoview-google-search-restaurants** - ❌ - ❌ - ❌ @@ -27490,46 +24818,16 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-google-search-restaurants-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-google-search-restaurants** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-google-search-restaurants-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-google-search-restaurants** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-google-search-restaurants-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-google-search-restaurants-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-google-search-restaurants-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-google-search-restaurants-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-google-search-restaurants** - ❌ - ❌ @@ -27574,31 +24872,11 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-imdb-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-imdb** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-imdb-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-imdb-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-imdb-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-imdb** - ❌ - ❌ @@ -27620,46 +24898,16 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-imdb-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-imdb** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-imdb-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-imdb** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-imdb-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-imdb-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-imdb-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-imdb-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-imdb** - ❌ - ❌ @@ -28021,31 +25269,11 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-instagram-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-instagram** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-instagram-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-instagram-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-instagram-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-instagram** - ❌ - ❌ @@ -28067,46 +25295,16 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-instagram-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-instagram** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-instagram-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-instagram** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-instagram-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-instagram-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-instagram-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-instagram-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-instagram** - ❌ - ❌ @@ -28416,80 +25614,6 @@ Page-load performance test suite on Android. The links direct to the actual webs * **type**: pageload * **unit**: ms * **use live sites**: false - * **Test Task**: - - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-fenix-microsoft-support-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-microsoft-support-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-microsoft-support-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-microsoft-support-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-chrome-m-microsoft-support-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-fenix-microsoft-support-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-microsoft-support-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-microsoft-support-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-microsoft-support-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-microsoft-support-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - .. dropdown:: reddit :class-container: anchor-id-reddit-m @@ -28527,31 +25651,11 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-reddit-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-reddit** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-reddit-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-reddit-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-reddit-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-reddit** - ❌ - ❌ @@ -28573,46 +25677,16 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-reddit-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-reddit** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-reddit-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-reddit** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-reddit-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-reddit-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-reddit-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-reddit-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-reddit** - ❌ - ❌ @@ -28973,21 +26047,11 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-sina-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-sina** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-sina-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-sina** - ❌ - ❌ @@ -29009,31 +26073,16 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-sina-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-sina** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-sina-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-sina** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-sina-nofis** - - ✅ - - ✅ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-sina** - ❌ - ❌ @@ -29069,36 +26118,16 @@ Page-load performance test suite on Android. The links direct to the actual webs :header-rows: 1 * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-fenix-stackoverflow** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-fenix-stackoverflow-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-geckoview-stackoverflow** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-geckoview-stackoverflow-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-stackoverflow-nofis** + - mozilla-central + - autoland + - mozilla-release + - mozilla-beta + * - **browsertime-tp6m-fenix-stackoverflow** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-live-geckoview-stackoverflow-nofis** + * - **browsertime-tp6m-geckoview-stackoverflow** - ❌ - ❌ - ❌ @@ -29124,46 +26153,16 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-stackoverflow-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-stackoverflow** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-stackoverflow-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-stackoverflow** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-stackoverflow-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-stackoverflow-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-stackoverflow-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-stackoverflow-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-stackoverflow** - ❌ - ❌ @@ -29208,31 +26207,11 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-web-de-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-web-de** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-web-de-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-web-de-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-web-de-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-web-de** - ❌ - ❌ @@ -29254,46 +26233,16 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-web-de-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-web-de** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-web-de-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-web-de** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-web-de-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-web-de-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-web-de-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-web-de-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-web-de** - ❌ - ❌ @@ -29338,31 +26287,11 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-wikipedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-wikipedia** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-wikipedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-wikipedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-wikipedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-wikipedia** - ❌ - ❌ @@ -29384,46 +26313,16 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-wikipedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-wikipedia** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-wikipedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-wikipedia** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-wikipedia-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-wikipedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-wikipedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-wikipedia-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-wikipedia** - ❌ - ❌ @@ -29849,31 +26748,11 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-youtube** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-youtube** - ❌ - ❌ @@ -29895,46 +26774,16 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-youtube** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-youtube** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-youtube-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-youtube** - ❌ - ❌ @@ -30175,113 +27024,7 @@ Page-load performance test suite on Android. The links direct to the actual webs - ❌ - .. list-table:: **test-windows10-64-nightlyasrelease-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6-firefox-youtube** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6-live-firefox-youtube** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-windows10-64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6-firefox-youtube** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6-live-firefox-youtube** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-windows10-64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6-chrome-youtube** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6-chromium-youtube** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6-firefox-youtube** - - ✅ - - ✅ - - ✅ - - ✅ - * - **browsertime-tp6-live-chrome-youtube** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6-live-chromium-youtube** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6-live-firefox-youtube** - - ❌ - - ❌ - - ❌ - - ❌ - - - -.. dropdown:: youtube-watch - :class-container: anchor-id-youtube-watch-m - - **Owner**: PerfTest Team - - * **alert on**: fcp, loadtime, ContentfulSpeedIndex, PerceptualSpeedIndex, SpeedIndex, FirstVisualChange, LastVisualChange - * **alert threshold**: 2.0 - * **apps**: geckoview, fenix, refbrow, chrome-m - * **browser cycles**: 15 - * **expected**: pass - * **lower is better**: true - * **page cycles**: 25 - * **page timeout**: 60000 - * **playback**: mitmproxy-android - * **playback pageset manifest**: mitm6-android-fenix-youtube-watch.manifest - * **playback version**: 8.1.1 - * **test url**: ``__ - * **type**: pageload - * **unit**: ms - * **use live sites**: false - * **Test Task**: - - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** + .. list-table:: **test-windows10-64-nightlyasrelease-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -30290,29 +27033,40 @@ Page-load performance test suite on Android. The links direct to the actual webs - autoland - mozilla-release - mozilla-beta - * - **browsertime-tp6m-essential-fenix-youtube-watch-nofis** + * - **browsertime-tp6-firefox-youtube** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-essential-geckoview-youtube-watch-nofis** + * - **browsertime-tp6-live-firefox-youtube** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-live-fenix-youtube-watch-nofis** + + + .. list-table:: **test-windows10-64-qr/opt** + :widths: 30 15 15 15 15 + :header-rows: 1 + + * - **Test Name** + - mozilla-central + - autoland + - mozilla-release + - mozilla-beta + * - **browsertime-tp6-firefox-youtube** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-live-geckoview-youtube-watch-nofis** + * - **browsertime-tp6-live-firefox-youtube** - ❌ - ❌ - ❌ - ❌ - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** + .. list-table:: **test-windows10-64-shippable-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -30321,32 +27075,32 @@ Page-load performance test suite on Android. The links direct to the actual webs - autoland - mozilla-release - mozilla-beta - * - **browsertime-tp6m-essential-chrome-m-youtube-watch-nofis** + * - **browsertime-tp6-chrome-youtube** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-essential-fenix-youtube-watch-nofis** + * - **browsertime-tp6-chromium-youtube** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-essential-geckoview-youtube-watch-nofis** + * - **browsertime-tp6-firefox-youtube** - ✅ - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-youtube-watch-nofis** + - ✅ + - ✅ + * - **browsertime-tp6-live-chrome-youtube** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-live-fenix-youtube-watch-nofis** + * - **browsertime-tp6-live-chromium-youtube** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-live-geckoview-youtube-watch-nofis** + * - **browsertime-tp6-live-firefox-youtube** - ❌ - ❌ - ❌ @@ -30354,6 +27108,27 @@ Page-load performance test suite on Android. The links direct to the actual webs +.. dropdown:: youtube-watch + :class-container: anchor-id-youtube-watch-m + + **Owner**: PerfTest Team + + * **alert on**: fcp, loadtime, ContentfulSpeedIndex, PerceptualSpeedIndex, SpeedIndex, FirstVisualChange, LastVisualChange + * **alert threshold**: 2.0 + * **apps**: geckoview, fenix, refbrow, chrome-m + * **browser cycles**: 15 + * **expected**: pass + * **lower is better**: true + * **page cycles**: 25 + * **page timeout**: 60000 + * **playback**: mitmproxy-android + * **playback pageset manifest**: mitm6-android-fenix-youtube-watch.manifest + * **playback version**: 8.1.1 + * **test url**: ``__ + * **type**: pageload + * **unit**: ms + * **use live sites**: false + Scenario -------- @@ -30435,31 +27210,11 @@ These tests aren't used in standard testing, they are only used in the Raptor un - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-amazon** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-amazon** - ❌ - ❌ @@ -30481,46 +27236,16 @@ These tests aren't used in standard testing, they are only used in the Raptor un - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-amazon** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-amazon** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-amazon-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-amazon-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-amazon** - ❌ - ❌ @@ -30942,78 +27667,6 @@ These tests aren't used in standard testing, they are only used in the Raptor un * **unit**: ms * **Test Task**: - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-fenix-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-chrome-m-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-fenix-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-facebook-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-facebook-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - .. list-table:: **test-linux1804-64-clang-trunk-qr/opt** :widths: 30 15 15 15 15 :header-rows: 1 @@ -31351,80 +28004,6 @@ These tests aren't used in standard testing, they are only used in the Raptor un * **test url**: ``__ * **type**: pageload * **unit**: ms - * **Test Task**: - - .. list-table:: **test-android-hw-a51-11-0-aarch64-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-fenix-google-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-google-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-google-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-google-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - - .. list-table:: **test-android-hw-a51-11-0-aarch64-shippable-qr/opt** - :widths: 30 15 15 15 15 - :header-rows: 1 - - * - **Test Name** - - mozilla-central - - autoland - - mozilla-release - - mozilla-beta - * - **browsertime-tp6m-essential-chrome-m-google-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-fenix-google-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-essential-geckoview-google-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-google-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-google-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-google-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - - .. dropdown:: youtube :class-container: anchor-id-youtube-u @@ -31462,31 +28041,11 @@ These tests aren't used in standard testing, they are only used in the Raptor un - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-youtube** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-youtube** - ❌ - ❌ @@ -31508,46 +28067,16 @@ These tests aren't used in standard testing, they are only used in the Raptor un - ❌ - ❌ - ❌ - * - **browsertime-tp6m-chrome-m-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-fenix-youtube** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-fenix-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-geckoview-youtube** - ❌ - ❌ - ❌ - ❌ - * - **browsertime-tp6m-geckoview-youtube-nofis** - - ✅ - - ✅ - - ❌ - - ❌ - * - **browsertime-tp6m-live-chrome-m-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-fenix-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ - * - **browsertime-tp6m-live-geckoview-youtube-nofis** - - ❌ - - ❌ - - ❌ - - ❌ * - **browsertime-tp6m-refbrow-youtube** - ❌ - ❌ diff --git a/testing/perfdocs/generated/talos.rst b/testing/perfdocs/generated/talos.rst index cc845a996059c..fd49186ac2497 100644 --- a/testing/perfdocs/generated/talos.rst +++ b/testing/perfdocs/generated/talos.rst @@ -538,11 +538,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -564,11 +559,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -590,11 +580,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -611,11 +596,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -632,11 +612,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -653,11 +628,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -674,11 +644,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -755,11 +720,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-chrome-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -781,11 +741,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-chrome-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -807,11 +762,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-chrome-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -828,11 +778,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-chrome-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -849,11 +794,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-chrome-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -870,11 +810,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-chrome-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -891,11 +826,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-chrome-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -971,11 +901,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-bcv-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -997,11 +922,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-bcv-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -1023,11 +943,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-bcv-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -1044,11 +959,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-bcv-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -1065,11 +975,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-bcv-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -1086,11 +991,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-bcv-swr** - - ✅ - - ✅ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -1107,11 +1007,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-bcv-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -1161,11 +1056,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -1187,11 +1077,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -1213,11 +1098,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -1234,11 +1114,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -1255,11 +1130,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -1276,11 +1146,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -1297,11 +1162,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -1350,11 +1210,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -1376,11 +1231,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -1402,11 +1252,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -1423,11 +1268,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -1444,11 +1284,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -1465,11 +1300,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -1486,11 +1316,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -1591,31 +1416,16 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-damp-inspector-swr** - - ❌ - - ❌ - - ❌ - - ❌ * - **talos-damp-other** - ❌ - ❌ - ❌ - ❌ - * - **talos-damp-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ * - **talos-damp-webconsole** - ❌ - ❌ - ❌ - ❌ - * - **talos-damp-webconsole-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -1632,31 +1442,16 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-damp-inspector-swr** - - ✅ - - ✅ - - ❌ - - ✅ * - **talos-damp-other** - ✅ - ✅ - ❌ - ✅ - * - **talos-damp-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ * - **talos-damp-webconsole** - ✅ - ✅ - ❌ - ✅ - * - **talos-damp-webconsole-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -1673,31 +1468,16 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-damp-inspector-swr** - - ✅ - - ✅ - - ❌ - - ✅ * - **talos-damp-other** - ✅ - ✅ - ❌ - ✅ - * - **talos-damp-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ * - **talos-damp-webconsole** - ✅ - ✅ - ❌ - ✅ - * - **talos-damp-webconsole-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -1714,31 +1494,16 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-damp-inspector-swr** - - ❌ - - ❌ - - ❌ - - ❌ * - **talos-damp-other** - ❌ - ❌ - ❌ - ❌ - * - **talos-damp-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ * - **talos-damp-webconsole** - ❌ - ❌ - ❌ - ❌ - * - **talos-damp-webconsole-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -1755,31 +1520,16 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-damp-inspector-swr** - - ❌ - - ❌ - - ❌ - - ❌ * - **talos-damp-other** - ❌ - ❌ - ❌ - ❌ - * - **talos-damp-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ * - **talos-damp-webconsole** - ❌ - ❌ - ❌ - ❌ - * - **talos-damp-webconsole-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -1796,31 +1546,16 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-damp-inspector-swr** - - ❌ - - ❌ - - ❌ - - ❌ * - **talos-damp-other** - ❌ - ❌ - ❌ - ❌ - * - **talos-damp-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ * - **talos-damp-webconsole** - ❌ - ❌ - ❌ - ❌ - * - **talos-damp-webconsole-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -1837,31 +1572,16 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-damp-inspector-swr** - - ✅ - - ✅ - - ❌ - - ✅ * - **talos-damp-other** - ✅ - ✅ - ❌ - ✅ - * - **talos-damp-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ * - **talos-damp-webconsole** - ✅ - ✅ - ❌ - ✅ - * - **talos-damp-webconsole-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -1920,11 +1640,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g4-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -1946,11 +1661,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g4-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -1972,11 +1682,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g4-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -1993,11 +1698,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g4-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -2014,11 +1714,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g4-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -2035,11 +1730,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g4-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -2056,11 +1746,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-g4-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -2315,11 +2000,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g3-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -2341,11 +2021,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g3-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -2429,16 +2104,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-webgl-gli** - - ✅ - - ✅ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -2455,26 +2120,11 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-webgl-gli** - - ✅ - - ✅ - - ❌ - - ❌ * - **talos-webgl-profiling** - ❌ - ❌ - ❌ - ❌ - * - **talos-webgl-profiling-gli** - - ❌ - - ❌ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -2491,26 +2141,11 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-webgl-gli** - - ✅ - - ✅ - - ❌ - - ❌ * - **talos-webgl-profiling** - ❌ - ❌ - ❌ - ❌ - * - **talos-webgl-profiling-gli** - - ❌ - - ❌ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -2527,16 +2162,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-webgl-gli** - - ❌ - - ❌ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -2553,16 +2178,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-webgl-gli** - - ❌ - - ❌ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -2579,16 +2194,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-webgl-gli** - - ✅ - - ✅ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-ref-hw-2017-qr/opt** @@ -2605,16 +2210,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-webgl-gli** - - ✅ - - ✅ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -2631,16 +2226,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-webgl-gli** - - ✅ - - ✅ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -2704,16 +2289,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-webgl-gli** - - ✅ - - ✅ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -2730,26 +2305,11 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-webgl-gli** - - ✅ - - ✅ - - ❌ - - ❌ * - **talos-webgl-profiling** - ❌ - ❌ - ❌ - ❌ - * - **talos-webgl-profiling-gli** - - ❌ - - ❌ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -2761,31 +2321,16 @@ For the sample commands found below, note that the capitalization used is import - autoland - mozilla-release - mozilla-beta - * - **talos-webgl** - - ✅ - - ✅ - - ❌ - - ✅ - * - **talos-webgl-gli** - - ✅ - - ✅ - - ❌ - - ❌ - * - **talos-webgl-profiling** - - ❌ - - ❌ - - ❌ - - ❌ - * - **talos-webgl-profiling-gli** + * - **talos-webgl** + - ✅ + - ✅ - ❌ + - ✅ + * - **talos-webgl-profiling** - ❌ - ❌ - ❌ - * - **talos-webgl-swr** - - ✅ - - ✅ - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -2802,16 +2347,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-webgl-gli** - - ❌ - - ❌ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -2828,16 +2363,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-webgl-gli** - - ❌ - - ❌ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -2854,16 +2379,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-webgl-gli** - - ✅ - - ✅ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-ref-hw-2017-qr/opt** @@ -2880,16 +2395,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-webgl-gli** - - ✅ - - ✅ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -2906,16 +2411,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-webgl-gli** - - ✅ - - ✅ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -3232,16 +2727,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-webgl-gli** - - ✅ - - ✅ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -3258,26 +2743,11 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-webgl-gli** - - ✅ - - ✅ - - ❌ - - ❌ * - **talos-webgl-profiling** - ❌ - ❌ - ❌ - ❌ - * - **talos-webgl-profiling-gli** - - ❌ - - ❌ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -3294,26 +2764,11 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-webgl-gli** - - ✅ - - ✅ - - ❌ - - ❌ * - **talos-webgl-profiling** - ❌ - ❌ - ❌ - ❌ - * - **talos-webgl-profiling-gli** - - ❌ - - ❌ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -3330,16 +2785,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-webgl-gli** - - ❌ - - ❌ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -3356,16 +2801,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-webgl-gli** - - ❌ - - ❌ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -3382,16 +2817,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-webgl-gli** - - ✅ - - ✅ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-ref-hw-2017-qr/opt** @@ -3408,16 +2833,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-webgl-gli** - - ✅ - - ✅ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -3434,16 +2849,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-webgl-gli** - - ✅ - - ✅ - - ❌ - - ❌ - * - **talos-webgl-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -3484,11 +2889,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -3510,11 +2910,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -3536,11 +2931,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -3557,11 +2947,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -3578,11 +2963,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -3599,11 +2979,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -3620,11 +2995,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -3714,11 +3084,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-perf-reftest-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -3740,11 +3105,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-perf-reftest-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -3766,11 +3126,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-perf-reftest-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -3787,11 +3142,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-perf-reftest-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -3808,11 +3158,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-perf-reftest-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -3829,11 +3174,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-perf-reftest-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -3850,11 +3190,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-perf-reftest-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -4090,11 +3425,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g4-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -4116,11 +3446,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g4-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -4142,11 +3467,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g4-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -4163,11 +3483,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g4-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -4184,11 +3499,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g4-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -4205,11 +3515,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g4-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -4226,11 +3531,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-g4-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -4293,11 +3593,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g4-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -4319,11 +3614,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g4-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -4345,11 +3635,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g4-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -4366,11 +3651,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g4-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -4387,11 +3667,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g4-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -4408,11 +3683,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g4-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -4429,11 +3699,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-g4-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -4506,11 +3771,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -4532,11 +3792,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -4558,11 +3813,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -4579,11 +3829,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -4600,11 +3845,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -4621,11 +3861,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -4642,11 +3877,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -4677,11 +3907,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-sessionrestore-many-windows-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -4703,11 +3928,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-sessionrestore-many-windows-swr** - - ✅ - - ✅ - - ❌ - - ❌ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -4729,11 +3949,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-sessionrestore-many-windows-swr** - - ✅ - - ✅ - - ❌ - - ❌ .. list-table:: **test-windows10-32-qr/opt** @@ -4750,11 +3965,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-sessionrestore-many-windows-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -4771,11 +3981,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-sessionrestore-many-windows-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -4792,11 +3997,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-sessionrestore-many-windows-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -4813,11 +4013,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ❌ - * - **talos-sessionrestore-many-windows-swr** - - ✅ - - ✅ - - ❌ - - ❌ @@ -4849,11 +4044,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -4875,11 +4065,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -4901,11 +4086,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -4922,11 +4102,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -4943,11 +4118,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -4964,11 +4134,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -4985,11 +4150,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -5037,11 +4197,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -5063,11 +4218,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -5089,11 +4239,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -5110,11 +4255,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -5131,11 +4271,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -5152,11 +4287,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -5173,11 +4303,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -5216,11 +4341,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -5242,11 +4362,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -5268,11 +4383,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -5289,11 +4399,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -5310,11 +4415,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -5331,11 +4431,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -5352,11 +4447,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -5588,11 +4678,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -5614,11 +4699,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -5640,11 +4720,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -5661,11 +4736,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -5682,11 +4752,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -5703,11 +4768,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -5724,11 +4784,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -5833,11 +4888,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-tabswitch-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -5859,11 +4909,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-tabswitch-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -5896,11 +4941,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-tabswitch-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -5917,11 +4957,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-tabswitch-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -5938,11 +4973,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-tabswitch-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -5959,11 +4989,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-tabswitch-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -6069,11 +5094,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -6095,11 +5115,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -6121,11 +5136,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -6142,11 +5152,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -6163,11 +5168,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -6184,11 +5184,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -6205,11 +5200,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-svgr-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -6278,11 +5268,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-xperf-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows11-64-2009-shippable-qr/opt** @@ -6299,11 +5284,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-xperf-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -6438,11 +5418,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-tp5o-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -6464,11 +5439,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-tp5o-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -6490,11 +5460,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-tp5o-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -6511,11 +5476,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-tp5o-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -6532,11 +5492,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-tp5o-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -6553,11 +5508,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-tp5o-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -6574,11 +5524,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-tp5o-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -6698,11 +5643,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g1-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -6724,11 +5664,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g1-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -6750,11 +5685,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g1-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -6771,11 +5701,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g1-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -6792,11 +5717,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g1-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -6813,11 +5733,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g1-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -6834,11 +5749,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-g1-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -6870,11 +5780,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g5-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -6896,11 +5801,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g5-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -6922,11 +5822,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g5-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -6943,11 +5838,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g5-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -6964,11 +5854,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g5-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -6985,11 +5870,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g5-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -7006,11 +5886,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-g5-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -7078,11 +5953,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-chrome-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -7104,11 +5974,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-chrome-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -7130,11 +5995,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-chrome-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -7151,11 +6011,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-chrome-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -7172,11 +6027,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-chrome-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -7193,11 +6043,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-chrome-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -7214,11 +6059,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-chrome-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -7282,11 +6122,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -7308,11 +6143,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -7334,11 +6164,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -7355,11 +6180,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -7376,11 +6196,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -7397,11 +6212,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -7418,11 +6228,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -7467,11 +6272,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g5-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -7493,11 +6293,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g5-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -7519,11 +6314,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g5-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -7540,11 +6330,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g5-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -7561,11 +6346,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g5-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -7582,11 +6362,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-g5-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -7603,11 +6378,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-g5-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -7678,11 +6448,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -7704,11 +6469,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -7730,11 +6490,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -7751,11 +6506,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -7772,11 +6522,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -7793,11 +6538,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -7814,11 +6554,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-svgr-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -7874,11 +6609,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -7900,11 +6630,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -7926,11 +6651,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -7947,11 +6667,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -7968,11 +6683,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -7989,11 +6699,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -8010,11 +6715,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-svgr-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -8102,11 +6802,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -8128,11 +6823,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -8154,11 +6844,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -8175,11 +6860,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -8196,11 +6876,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -8217,11 +6892,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -8238,11 +6908,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-svgr-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -8318,11 +6983,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -8344,11 +7004,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -8370,11 +7025,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -8391,11 +7041,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -8412,11 +7057,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -8433,11 +7073,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-svgr-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -8454,11 +7089,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-svgr-swr** - - ✅ - - ✅ - - ❌ - - ✅ @@ -8516,11 +7146,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-linux1804-64-shippable-qr/opt** @@ -8542,11 +7167,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-macosx1015-64-shippable-qr/opt** @@ -8568,11 +7188,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ .. list-table:: **test-windows10-32-qr/opt** @@ -8589,11 +7204,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-32-shippable-qr/opt** @@ -8610,11 +7220,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-qr/opt** @@ -8631,11 +7236,6 @@ For the sample commands found below, note that the capitalization used is import - ❌ - ❌ - ❌ - * - **talos-other-swr** - - ❌ - - ❌ - - ❌ - - ❌ .. list-table:: **test-windows10-64-shippable-qr/opt** @@ -8652,11 +7252,6 @@ For the sample commands found below, note that the capitalization used is import - ✅ - ❌ - ✅ - * - **talos-other-swr** - - ✅ - - ✅ - - ❌ - - ✅ diff --git a/testing/web-platform/meta/content-security-policy/unsafe-eval/eval-blocked-in-about-blank-iframe.html.ini b/testing/web-platform/meta/content-security-policy/unsafe-eval/eval-blocked-in-about-blank-iframe.html.ini deleted file mode 100644 index 313d44f5e4dab..0000000000000 --- a/testing/web-platform/meta/content-security-policy/unsafe-eval/eval-blocked-in-about-blank-iframe.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[eval-blocked-in-about-blank-iframe.html] - expected: TIMEOUT - [eval-blocked-in-about-blank-iframe] - expected: TIMEOUT diff --git a/toolkit/modules/PopupNotifications.sys.mjs b/toolkit/modules/PopupNotifications.sys.mjs index 37f588bb17ffa..ca513466256f4 100644 --- a/toolkit/modules/PopupNotifications.sys.mjs +++ b/toolkit/modules/PopupNotifications.sys.mjs @@ -245,6 +245,7 @@ export function PopupNotifications(tabbrowser, panel, iconBox, options = {}) { this.iconBox = iconBox; this.panel.addEventListener("popuphidden", this, true); + this.panel.addEventListener("popuppositioned", this); this.panel.classList.add("popup-notification-panel", "panel-no-padding"); // This listener will be attached to the chrome window whenever a notification @@ -813,6 +814,7 @@ PopupNotifications.prototype = { this._onPopupHidden(aEvent); break; case "activate": + case "popuppositioned": if (this.isPanelOpen) { for (let elt of this.panel.children) { elt.notification.timeShown = Math.max( diff --git a/widget/gtk/nsDeviceContextSpecG.cpp b/widget/gtk/nsDeviceContextSpecG.cpp index cca508beac8ab..3dfa816408ae1 100644 --- a/widget/gtk/nsDeviceContextSpecG.cpp +++ b/widget/gtk/nsDeviceContextSpecG.cpp @@ -276,6 +276,12 @@ gboolean nsDeviceContextSpecGTK::PrinterEnumerator(GtkPrinter* aPrinter, gpointer aData) { nsDeviceContextSpecGTK* spec = (nsDeviceContextSpecGTK*)aData; + if (spec->mHasEnumerationFoundAMatch) { + // We're already done, but we're letting the enumeration run its course, + // to avoid a GTK bug. + return FALSE; + } + // Find the printer whose name matches the one inside the settings. nsString printerName; nsresult rv = spec->mPrintSettings->GetPrinterName(printerName); @@ -293,7 +299,14 @@ gboolean nsDeviceContextSpecGTK::PrinterEnumerator(GtkPrinter* aPrinter, NS_DispatchToCurrentThread( NewRunnableMethod("nsDeviceContextSpecGTK::StartPrintJob", spec, &nsDeviceContextSpecGTK::StartPrintJob)); - return TRUE; + + // We're already done, but we need to let the enumeration run its course, + // to avoid a GTK bug. So we record that we've found a match and + // then return FALSE. + // TODO: If/when we can be sure that GTK handles this OK, we could + // return TRUE to avoid some needless enumeration. + spec->mHasEnumerationFoundAMatch = true; + return FALSE; } } @@ -317,6 +330,7 @@ void nsDeviceContextSpecGTK::StartPrintJob() { } void nsDeviceContextSpecGTK::EnumeratePrinters() { + mHasEnumerationFoundAMatch = false; gtk_enumerate_printers(&nsDeviceContextSpecGTK::PrinterEnumerator, this, nullptr, TRUE); } diff --git a/widget/gtk/nsDeviceContextSpecG.h b/widget/gtk/nsDeviceContextSpecG.h index eb43053b2bfbc..f06b32ae473cc 100644 --- a/widget/gtk/nsDeviceContextSpecG.h +++ b/widget/gtk/nsDeviceContextSpecG.h @@ -50,6 +50,8 @@ class nsDeviceContextSpecGTK : public nsIDeviceContextSpec { nsCString mSpoolName; nsCOMPtr mSpoolFile; nsCString mTitle; + // Helper for EnumeratePrinters / PrinterEnumerator: + bool mHasEnumerationFoundAMatch = false; private: void EnumeratePrinters(); diff --git a/widget/nsBaseWidget.cpp b/widget/nsBaseWidget.cpp index ca8abbbeb9aa3..7af67a1523a71 100644 --- a/widget/nsBaseWidget.cpp +++ b/widget/nsBaseWidget.cpp @@ -2218,8 +2218,10 @@ nsresult nsBaseWidget::AsyncEnableDragDrop(bool aEnable) { } void nsBaseWidget::SwipeFinished() { - mSwipeTracker->Destroy(); - mSwipeTracker = nullptr; + if (mSwipeTracker) { + mSwipeTracker->Destroy(); + mSwipeTracker = nullptr; + } } void nsBaseWidget::ReportSwipeStarted(uint64_t aInputBlockId, diff --git a/xpcom/base/CycleCollectedJSContext.cpp b/xpcom/base/CycleCollectedJSContext.cpp index 6e6058a7805a6..9e2f89a5b4ecd 100644 --- a/xpcom/base/CycleCollectedJSContext.cpp +++ b/xpcom/base/CycleCollectedJSContext.cpp @@ -284,10 +284,49 @@ class CycleCollectedJSContext::SavedMicroTaskQueue } ~SavedMicroTaskQueue() { - MOZ_RELEASE_ASSERT(ccjs->mPendingMicroTaskRunnables.empty()); + // The JS Debugger attempts to maintain the invariant that microtasks which + // occur durring debugger operation are completely flushed from the task + // queue before returning control to the debuggee, in order to avoid + // micro-tasks generated during debugging from interfering with regular + // operation. + // + // While the vast majority of microtasks can be reliably flushed, + // synchronous operations (see nsAutoSyncOperation) such as printing and + // alert diaglogs suppress the execution of some microtasks. + // + // When PerformMicroTaskCheckpoint is run while microtasks are suppressed, + // any suppressed microtasks are gathered into a new SuppressedMicroTasks + // runnable, which is enqueued on exit from PerformMicroTaskCheckpoint. As a + // result, AutoDebuggerJobQueueInterruption::runJobs is not able to + // correctly guarantee that the microtask queue is totally empty in the + // presence of sync operations. + // + // Previous versions of this code release-asserted that the queue was empty, + // causing user observable crashes (Bug 1849675). To avoid this, we instead + // choose to move suspended microtasks from the SavedMicroTaskQueue to the + // main microtask queue in this destructor. This means that jobs enqueued + // during synchnronous events under debugger control may produce events + // which run outside the debugger, but this is viewed as strictly + // preferrable to crashing. + MOZ_RELEASE_ASSERT(ccjs->mPendingMicroTaskRunnables.size() <= 1); MOZ_RELEASE_ASSERT(ccjs->mDebuggerRecursionDepth); + RefPtr maybeSuppressedTasks; + + // Handle the case where there is a SuppressedMicroTask still in the queue. + if (!ccjs->mPendingMicroTaskRunnables.empty()) { + maybeSuppressedTasks = ccjs->mPendingMicroTaskRunnables.front(); + ccjs->mPendingMicroTaskRunnables.pop_front(); + } + + MOZ_RELEASE_ASSERT(ccjs->mPendingMicroTaskRunnables.empty()); ccjs->mDebuggerRecursionDepth--; ccjs->mPendingMicroTaskRunnables.swap(mQueue); + + // Re-enqueue the suppressed task now that we've put the original microtask + // queue back. + if (maybeSuppressedTasks) { + ccjs->mPendingMicroTaskRunnables.push_back(maybeSuppressedTasks); + } } private: