From bf584ee75fc4ea7c3377fdca589a2bd663f81c55 Mon Sep 17 00:00:00 2001 From: Mozilla Releng Treescript Date: Mon, 18 Dec 2023 16:35:44 +0000 Subject: [PATCH 01/46] Update configs. IGNORE BROKEN CHANGESETS CLOSED TREE NO BUG a=release ba=release --- CLOBBER | 2 +- browser/config/version.txt | 2 +- browser/config/version_display.txt | 2 +- config/milestone.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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/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 0e8b691ffd050..dd6d2998c7fee 100644 --- a/browser/config/version_display.txt +++ b/browser/config/version_display.txt @@ -1 +1 @@ -115.6.0esr +115.7.0esr 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 From 44fa8c2c44d4b76f550284d8c273be9464e84940 Mon Sep 17 00:00:00 2001 From: Mozilla Releng Treescript Date: Tue, 19 Dec 2023 13:58:38 +0000 Subject: [PATCH 02/46] No bug - Tagging aa9f02961b2bbb92e17fea5d6b8fd14c097baf72 with FIREFOX_115_6_0esr_RELEASE a=release CLOSED TREE DONTBUILD --- .hgtags | 1 + 1 file changed, 1 insertion(+) diff --git a/.hgtags b/.hgtags index 88e324bdb77a1..4349e7d6a365a 100644 --- a/.hgtags +++ b/.hgtags @@ -4392,3 +4392,4 @@ 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 From 046251a4febe7bb1835cb47f05f0df26acfd5ecf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Tue, 13 Jun 2023 20:12:21 +0000 Subject: [PATCH 03/46] Bug 1838265 - Clean-up code. r=smaug, a=dmeehan Trivialish clean-ups while I was looking at this code, and related clean-ups elsewhere. Differential Revision: https://phabricator.services.mozilla.com/D180850 --- dom/base/Document.cpp | 87 ++++++++++++++++--------------------------- 1 file changed, 33 insertions(+), 54 deletions(-) diff --git a/dom/base/Document.cpp b/dom/base/Document.cpp index f7853913a5e99..6d4a5df62dafb 100644 --- a/dom/base/Document.cpp +++ b/dom/base/Document.cpp @@ -4097,9 +4097,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 +7153,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 +8943,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 +9109,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 +9127,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<nsContentList> 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 +9143,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 +9220,18 @@ void Document::NotifyPossibleTitleChange(bool aBoundTitleElement) { if (aBoundTitleElement) { mMayHaveTitleElement = true; } - if (mPendingTitleChangeEvent.IsPending()) return; + if (mPendingTitleChangeEvent.IsPending()) { + return; + } MOZ_RELEASE_ASSERT(NS_IsMainThread()); RefPtr<nsRunnableMethod<Document, void, false>> 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 +9245,18 @@ void Document::DoNotifyPossibleTitleChange() { nsAutoString title; GetTitle(title); - RefPtr<PresShell> presShell = GetPresShell(); - if (presShell) { + if (RefPtr<PresShell> presShell = GetPresShell()) { nsCOMPtr<nsISupports> container = presShell->GetPresContext()->GetContainerWeak(); if (container) { - nsCOMPtr<nsIBaseWindow> docShellWin = do_QueryInterface(container); - if (docShellWin) { + if (nsCOMPtr<nsIBaseWindow> 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. @@ -12242,8 +12230,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 +12652,7 @@ void Document::UnsuppressEventHandlingAndFireEvents(bool aFireEvents) { for (nsCOMPtr<Document>& doc : documents) { if (!doc->EventHandlingSuppressed()) { - WindowGlobalChild* wgc = doc->GetWindowGlobalChild(); - if (wgc) { + if (WindowGlobalChild* wgc = doc->GetWindowGlobalChild()) { wgc->UnblockBFCacheFor(BFCacheStatus::EVENT_HANDLING_SUPPRESSED); } @@ -17188,12 +17174,7 @@ already_AddRefed<mozilla::dom::Promise> Document::HasStorageAccess( RefPtr<Document::GetContentBlockingEventsPromise> Document::GetContentBlockingEvents() { - RefPtr<nsPIDOMWindowInner> inner = GetInnerWindow(); - if (!inner) { - return nullptr; - } - - RefPtr<WindowGlobalChild> wgc = inner->GetWindowGlobalChild(); + RefPtr<WindowGlobalChild> wgc = GetWindowGlobalChild(); if (!wgc) { return nullptr; } @@ -18582,8 +18563,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 +18572,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); } } From 4042e0c0c1e5ea12d59ed2add7a150d6d2351047 Mon Sep 17 00:00:00 2001 From: Matthew Gaudet <mgaudet@mozilla.com> Date: Fri, 8 Dec 2023 21:56:02 +0000 Subject: [PATCH 04/46] Bug 1866385 - Re-enqeue suppressed microtasks when destroying SavedMicroTaskQueue r=arai, a=dmeehan I have yet to be able to produce an automated test for things under the control of nsAutoSyncOperation; this patch has been verified locally using the following STR, modified from [1]. STR for Mac 1. Go to https://debugger-crash-before-print.glitch.me/ 2. Open debugger 3. Press Command + P to trigger print for the page (This should cause the debugger to pause on line 2) 4. Go to the console, and enter Promise.resolve(10).then(() => {}). 5. Resume execution and cancel the print preview. 5. Tab Crashes [1]: https://bugzilla.mozilla.org/show_bug.cgi?id=1849675#c3 Differential Revision: https://phabricator.services.mozilla.com/D195900 --- xpcom/base/CycleCollectedJSContext.cpp | 41 +++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) 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<MicroTaskRunnable> 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: From d56f9b2969bf30fedf1dd93a09cece3e56f260a6 Mon Sep 17 00:00:00 2001 From: ffxbld <ffxbld@mozilla.com> Date: Thu, 21 Dec 2023 10:59:58 +0000 Subject: [PATCH 05/46] No Bug, mozilla-esr115 repo-update HSTS HPKP remote-settings tld-suffixes - a=repo-update, r=dmeehan Differential Revision: https://phabricator.services.mozilla.com/D197059 --- netwerk/dns/effective_tld_names.dat | 6 +- security/manager/ssl/StaticHPKPins.h | 2 +- security/manager/ssl/nsSTSPreloadList.inc | 991 +++------- .../dumps/blocklists/addons-bloomfilters.json | 309 +++- .../dumps/main/cookie-banner-rules-list.json | 1604 ++++++++++++----- .../main/devtools-compatibility-browsers.json | 119 +- .../dumps/security-state/intermediates.json | 776 ++++++-- 7 files changed, 2439 insertions(+), 1368 deletions(-) diff --git a/netwerk/dns/effective_tld_names.dat b/netwerk/dns/effective_tld_names.dat index 79248a73f04b4..d9143702b8512 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 2023-12-12T15:13:54Z // This list is auto-generated, don't edit it manually. // aaa : American Automobile Association, Inc. // https://www.iana.org/domains/root/db/aaa.html @@ -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 diff --git a/security/manager/ssl/StaticHPKPins.h b/security/manager/ssl/StaticHPKPins.h index 35c0747ebdd9c..0398529035c40 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(1711623295042000); diff --git a/security/manager/ssl/nsSTSPreloadList.inc b/security/manager/ssl/nsSTSPreloadList.inc index 991056eee7778..e594ad2214acc 100644 --- a/security/manager/ssl/nsSTSPreloadList.inc +++ b/security/manager/ssl/nsSTSPreloadList.inc @@ -8,7 +8,7 @@ /*****************************************************************************/ #include <stdint.h> -const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); +const PRTime gPreloadListExpirationTime = INT64_C(1714042491088000); %% 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 @@ -172,7 +171,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 @@ -524,15 +522,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 1020319.com, 1 1020320.com, 1 10218app10218.com, 1 -10218b.com, 1 -10218c.com, 1 -10218cj.com, 1 -10218d.com, 1 -10218e.com, 1 -10218f.com, 1 -10218g.com, 1 -10218h.com, 1 -10218i.com, 1 1024.ee, 1 1024.kr, 1 1025.ga, 1 @@ -553,7 +542,6 @@ 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 @@ -1012,7 +1000,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 @@ -2168,10 +2155,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 @@ -2245,7 +2232,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 287328.com, 1 287628.com, 1 2881dh.com, 1 -288628.com, 1 28865.de, 1 288cn-563.com, 1 288game.net, 1 @@ -2339,7 +2325,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 @@ -2444,7 +2429,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 3178g.com, 0 3178h.com, 0 3178i.com, 0 -3178iii.com, 0 3178jjj.com, 0 3178l.com, 0 3178m.com, 0 @@ -2724,7 +2708,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 @@ -3878,7 +3862,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 +3888,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 @@ -4512,7 +4495,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 @@ -4944,7 +4926,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 8278yy.com, 0 829882.com, 1 829917.com, 1 -82fss.com, 1 82fss.marketing, 1 82kb88.com, 1 830res.com, 1 @@ -5039,7 +5020,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 @@ -5627,6 +5607,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 @@ -6106,7 +6087,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 @@ -6287,7 +6268,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1713178383031000); 9822usa.com, 1 982zzz.com, 1 984.ch, 1 -985684.com, 1 9859365.com, 0 985ccc.com, 1 986ccc.com, 1 @@ -6771,7 +6751,6 @@ a122.cc, 1 a12k.nz, 0 a163.top, 1 a1bouncycastlehire.com, 1 -a1cashforcar.com.au, 1 a1cdrinks.com, 1 a1cookingequipment.com.au, 1 a1demolitionhauling.com, 1 @@ -7219,7 +7198,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 @@ -7485,7 +7463,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 +7499,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 @@ -7901,7 +7877,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 @@ -8546,7 +8521,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 @@ -9139,7 +9113,6 @@ agenciaonnmarketing.com, 1 agenciaplanner.com.br, 1 agenciarse.com, 1 agenciarubik.com, 1 -agenciatecben.com.br, 1 agenciazoe.com.br, 1 agencja-interaktywna.ga, 1 agencja-interaktywna.tk, 1 @@ -10181,6 +10154,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 @@ -10757,7 +10731,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 +10778,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 @@ -11272,7 +11245,6 @@ alldigitalsolutions.com, 1 alldm.ru, 1 alldogs.tk, 1 alldrives.tk, 1 -alle-zonvakanties.nl, 1 alle.bg, 1 alle.com, 1 allefrisuren.de, 1 @@ -11307,7 +11279,6 @@ allentherapeuticmassage.com, 1 allenturley.com, 1 allenwillis.ga, 1 allerbestefreunde.de, 1 -allergento.shop, 1 allergento.store, 0 allergictoidiots.tk, 1 allergy.university, 1 @@ -11348,7 +11319,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 @@ -11723,7 +11693,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 @@ -11781,7 +11750,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 +11881,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 @@ -12153,7 +12122,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 @@ -12576,6 +12544,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 +12591,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 @@ -12671,7 +12641,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 @@ -12858,7 +12828,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 +12867,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 @@ -13067,6 +13035,7 @@ 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 @@ -13208,7 +13177,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 +13192,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 @@ -13331,7 +13298,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 @@ -13735,6 +13701,7 @@ antikvariat22.cz, 1 antikvarshop.tk, 1 antilaserpriority.com, 1 antiled.by, 1 +antimateri.com, 1 antimaterie.tk, 1 antimine.me, 1 antiminutemen5.tk, 1 @@ -13865,7 +13832,6 @@ any-download.ml, 1 any-download.tk, 1 any-id.be, 1 any-id.eu, 1 -any-id.nl, 1 any-id.online, 1 any-id.store, 1 any-link-page.de, 1 @@ -14090,7 +14056,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 +14100,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 @@ -14316,7 +14281,6 @@ apple.markets, 1 apple.tf, 1 apple.wf, 1 apple77.net, 1 -applebee1558.com, 1 applecare.cz, 1 appledroid.ru, 1 appleedu.com, 1 @@ -14432,7 +14396,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 @@ -14712,7 +14675,6 @@ 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 @@ -15086,7 +15048,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 @@ -15236,7 +15197,6 @@ arofabric.com, 1 arogov.com, 1 arokha.com, 1 aroma-therapy.tk, 1 -aroma-wave.com, 1 aroma24.ml, 1 aromachat.eu, 1 aromacoffee.bg, 1 @@ -15284,7 +15244,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 +15438,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 @@ -15538,7 +15496,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 @@ -15786,7 +15743,6 @@ asg-egy.com, 1 asgapps.co.za, 1 asgard-engineering.com, 1 asgeirolafs.com, 1 -asgrep.com, 1 ashastalent.com, 0 ashburnconsulting.com, 1 ashburnr.com, 1 @@ -15949,6 +15905,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 @@ -16088,7 +16045,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,6 +16114,7 @@ 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 @@ -16342,6 +16300,7 @@ atelierfantazie.sk, 1 atelierferro.be, 1 atelierhsn.com, 1 atelierjs.com, 1 +atelierkuni.jp, 1 atelierlk.art, 1 ateliernaruby.cz, 1 ateliernox.com, 1 @@ -17019,7 +16978,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 @@ -17133,7 +17091,6 @@ automobile-propre.com, 1 automobileescrowers.ga, 1 automobileescrowest.ga, 1 automobiliteit.nl, 1 -automods.com.au, 1 automodulegods.com, 1 automotive.org.ua, 1 automotiveabundant.ga, 1 @@ -17433,7 +17390,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 @@ -17534,7 +17490,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 +17628,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 +17702,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 @@ -17784,7 +17738,7 @@ awomansplacenj.com, 1 awrd.cz, 1 awsbs.de, 1 awscloudrecipes.com, 1 -awsl.blog, 1 +awsl.blog, 0 awsl.tech, 0 awsmdev.de, 1 awsnuke.com, 1 @@ -17805,6 +17759,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 @@ -17994,7 +17949,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 +18262,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 +18382,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 @@ -18508,7 +18460,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 @@ -18959,7 +18910,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 @@ -18999,8 +18949,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 +18973,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 +19002,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 @@ -19265,7 +19211,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 +19409,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 +19423,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 @@ -19581,7 +19524,6 @@ bassanova.tk, 1 bassbase.tk, 1 bassblog.net, 1 bassculture.tk, 1 -bassdentistry.com, 1 basse-chaine.info, 1 bassethound.tk, 1 bassguy.tk, 1 @@ -19649,7 +19591,7 @@ 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 @@ -19740,7 +19682,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 +19718,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 @@ -19887,7 +19829,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 @@ -20391,7 +20332,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 @@ -20771,7 +20711,7 @@ 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 @@ -20871,7 +20811,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 @@ -21442,7 +21381,6 @@ bestpornpictures.com, 1 bestportablegeneratorratings.com, 1 bestpost.org, 1 bestpressurewashingchicago.com, 1 -bestprofessionalchainsaw.com, 1 bestpsychologydegrees.com, 1 bestpsychologydegrees.org, 1 bestreleases.tk, 1 @@ -21499,7 +21437,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 +21690,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 @@ -21766,7 +21702,6 @@ betterhome.ml, 1 betterjapanese.blog, 1 betterjapanese.org, 1 betterjapanese.xyz, 1 -betterlifekidsclub.com, 1 betterlovestore.com, 1 betterna.me, 1 betternews.eu, 1 @@ -21908,7 +21843,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 @@ -22137,7 +22071,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 @@ -22418,7 +22351,7 @@ 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 @@ -22810,7 +22743,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 @@ -22995,7 +22927,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 @@ -23315,7 +23246,6 @@ bkin-42740.xyz, 1 bkin-43450.xyz, 1 bkin-46680.xyz, 1 bkk24.de, 1 -bkkf.at, 1 bkkposn.com, 1 bklaindia.com, 1 bkmexpress.com.tr, 1 @@ -23447,7 +23377,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 @@ -23614,7 +23543,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 @@ -23774,7 +23702,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 @@ -23848,7 +23775,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 @@ -24083,7 +24009,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 @@ -24130,7 +24056,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 @@ -24350,7 +24275,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 @@ -24457,7 +24381,6 @@ 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 @@ -24705,6 +24628,7 @@ 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 @@ -24843,7 +24767,6 @@ bosquedelasimagenes.tk, 1 boss.az, 1 bossefors.tk, 1 bossurl.tk, 1 -bostan.com, 1 boston-molly.tk, 1 boston-sailing.com, 1 bostonadvisors.com, 0 @@ -24924,7 +24847,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 +24910,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 @@ -25256,7 +25177,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 +25195,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 @@ -25498,7 +25417,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 @@ -25722,7 +25640,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 @@ -25772,7 +25689,7 @@ brightpool-markets.com, 1 brightside.com, 1 brightsparks.com.sg, 1 brightsport-news.tk, 1 -brighttax.com, 1 +brighttax.com, 0 brighttomorrowproductions.com, 1 brightvalley.com.au, 1 brightview.net.cn, 1 @@ -26386,7 +26303,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 @@ -26511,6 +26427,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 @@ -26607,7 +26524,6 @@ bulldogmarketinggroup.com, 1 bulldogs-sipoo.tk, 1 bulledair-savons.ch, 0 bulledart.ga, 1 -bullesdeculture.com, 1 bullesdelaube.com, 1 bulletbabu.com, 0 bulletfrog.tk, 1 @@ -27018,7 +26934,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 +27051,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 @@ -27346,7 +27260,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 @@ -27805,7 +27718,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 +27826,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 @@ -28142,7 +28055,6 @@ calposa.ml, 1 calref.ca, 1 calref.cc, 0 calsense.net, 1 -calu.me, 1 calucon.de, 1 caluette.com, 1 calumcrawford.com, 1 @@ -28155,7 +28067,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 +28084,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,7 +28096,6 @@ 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 @@ -28492,7 +28401,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 @@ -28756,7 +28664,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 +28680,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 @@ -28823,7 +28731,6 @@ carboneventsupport.lu, 1 carbonholic.org, 1 carbonkiller.org, 1 carbonlib.com, 0 -carbonmapper.org, 1 carbonmonoxidelawyer.net, 1 carbonnel.me, 0 carbono.uy, 1 @@ -29043,7 +28950,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 @@ -29595,7 +29501,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 @@ -29742,7 +29647,6 @@ catchteamca.gov, 1 catchup-enschede.tk, 1 catcontent.cloud, 1 catcoxx.com, 1 -catcut.com, 1 catechese-ressources.com, 1 catedraderechonotarial.es, 1 catedraloscura.tk, 1 @@ -29870,7 +29774,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 @@ -29978,6 +29881,7 @@ cc98.eu.org, 1 cca.ky, 1 ccaa.gg, 1 ccaag.me, 1 +ccaag.mx, 1 ccaag.net, 1 ccaag.us, 0 ccac.gov, 1 @@ -30111,7 +30015,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 @@ -30708,6 +30611,7 @@ cgplumbing.com, 1 cgpn.fr, 1 cgsmart.com, 1 cgsmotors.com, 1 +cgsociety.org, 1 cgstprayagraj.gov.in, 1 cgt-univ-nantes.fr, 1 cgtcaixabank.es, 1 @@ -30723,7 +30627,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 +30717,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 +30833,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 +30905,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 +30930,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 @@ -31143,7 +31042,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 @@ -31462,7 +31360,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 +31431,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 @@ -31616,8 +31512,10 @@ china-online-news.tk, 1 chinabank.ph, 1 chinabelt.com, 1 chinablows.com, 1 +chinacbd.com, 1 chinacdn.org, 1 chinacheers.com, 1 +chinaclone.com, 1 chinadream404.com, 1 chinafree.online, 1 chinafree.site, 1 @@ -31796,7 +31694,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 @@ -32170,7 +32067,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 @@ -32258,7 +32154,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,7 +32214,6 @@ 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 @@ -32786,7 +32680,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 +32875,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 +32908,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 @@ -33242,7 +33135,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 +33358,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 +33420,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 +33428,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 @@ -33774,7 +33664,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 @@ -33941,7 +33830,6 @@ 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 @@ -34082,7 +33970,6 @@ codewaifu.com, 1 codewild.de, 1 codewitchbella.com, 0 codewithalisha.ga, 1 -codewithlove.blog, 1 codewrecks.com, 1 codex.online, 1 codezenith.com, 1 @@ -34291,7 +34178,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 @@ -34437,7 +34323,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 +34332,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 +34423,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 @@ -34548,8 +34432,6 @@ combineconquer.com, 1 combloux.com, 1 combos-2020.tk, 1 combron.be, 1 -combron.co.uk, 1 -combron.com, 1 combron.nl, 1 combustion.tk, 1 comcenter.com, 1 @@ -34614,7 +34496,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 @@ -34644,7 +34525,6 @@ comm-works.com, 1 comm.cx, 1 commagere.com, 1 command53.fr, 1 -commandeleven.com, 1 commander-seo.com, 1 commanderone.net, 1 commanderx.cf, 1 @@ -34701,7 +34581,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 @@ -34904,6 +34783,7 @@ computer-world.pro, 1 computer-worlds.tk, 1 computer4me.tk, 1 computeradvance.tk, 1 +computerandaccessories.com, 1 computerbas.nl, 1 computerbase.de, 1 computerforum.tk, 1 @@ -35064,24 +34944,16 @@ 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 conferencemanager.dk, 1 conferencemanager.es, 1 conferencemanager.fr, 1 -conferencemanager.lt, 1 -conferencemanager.lv, 1 conferencemanager.nl, 1 conferencemanager.se, 1 -conferencemanager.uk, 1 -conferencemanager.us, 1 -conferencemanagerpro.com, 1 conferencemonkey.org, 1 conferenciaepiscopal.es, 1 confettidogs.com, 1 -confia.io, 1 confianza.pe, 1 confidentielsn.com, 1 confidentliving.gq, 1 @@ -35096,7 +34968,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 @@ -35418,6 +35289,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 @@ -35462,7 +35334,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 @@ -35763,7 +35634,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 +35649,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 @@ -35876,6 +35745,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 @@ -36161,7 +36031,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,7 +36056,6 @@ 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 @@ -36313,7 +36181,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 @@ -36354,7 +36221,7 @@ craftist.de, 1 craftmachinec.com, 1 craftmenu.ru, 1 craftmeow.com, 1 -craftmeow.support, 1 +craftmeow.support, 0 craftngo.hu, 1 craftottawa.ca, 1 craftshiponline.tk, 1 @@ -36538,7 +36405,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 @@ -36585,7 +36451,6 @@ creativeweb.biz, 1 creativewolf.net, 1 creativeworks.com.hk, 1 creativika.it, 1 -creativityalliance.com, 1 creativlabor.ch, 1 creatix.tk, 1 creatixx-network.de, 0 @@ -36753,6 +36618,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 +36642,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 +36970,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 @@ -37348,7 +37212,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 @@ -37411,6 +37274,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 +37305,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 +37362,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 +37394,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 +37485,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 +37579,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 @@ -37946,7 +37806,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 @@ -38129,7 +37988,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 +37995,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 @@ -38429,7 +38286,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 +38322,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,7 +38421,7 @@ dambo.tk, 1 dame.cf, 1 damedrogy.cz, 1 dameeq.cf, 1 -dameisports.com, 1 +dameisports.com, 0 dameshoes.it, 1 damgan.com, 1 damgoodmedia.com, 1 @@ -38661,7 +38516,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 +38641,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 @@ -39113,6 +38966,7 @@ data-privacy.tk, 1 data-reader.de, 1 data-replicator.cloud, 1 data-replicator.com, 1 +data-room.nl, 1 data-servers.com, 1 data-wing.ga, 0 data.bayern, 1 @@ -39231,7 +39085,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 @@ -39453,7 +39306,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,7 +39317,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 @@ -39478,14 +39332,12 @@ 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 @@ -39644,7 +39496,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 @@ -39720,7 +39572,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 +39655,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 @@ -40066,7 +39916,6 @@ 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 +40379,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,7 +40460,6 @@ 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 @@ -40661,7 +40508,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 @@ -41035,6 +40881,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 +40923,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 @@ -41185,7 +41031,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 +41105,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 +41314,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 @@ -41729,7 +41575,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 +41583,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 @@ -41909,6 +41752,7 @@ digitalcitizen.life, 1 digitalcoffeepodcast.com, 1 digitalcomponents.de, 1 digitalcompudev.biz, 1 +digitalcompudev.com, 0 digitalcourage.de, 1 digitalcraftmarketing.co.uk, 1 digitalcrisis.com, 1 @@ -42201,7 +42045,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 @@ -42968,7 +42811,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 @@ -43281,10 +43123,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 +43211,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 +43229,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 +43264,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 @@ -43568,7 +43408,6 @@ 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 +43420,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 +43619,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 +43748,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 +43834,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 @@ -44150,7 +43986,6 @@ downrightcute.com, 1 downset.tk, 1 downthebayoucharters.com, 1 downtoagony.tk, 1 -downtoearthjewelry.com, 1 downtownafrica.com, 1 downtownboise.org, 1 downtowncharm.is, 1 @@ -44240,7 +44075,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 @@ -44711,9 +44545,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 @@ -44965,10 +44799,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 +44991,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 +45034,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 @@ -45445,7 +45279,6 @@ dvorekkarlin.cz, 1 dvoretsvramoni.ru, 1 dvorupotocnych.sk, 1 dvotx.org, 1 -dvpc.net, 1 dvu.com.tr, 1 dvwc.org, 1 dvx.cloud, 1 @@ -45471,7 +45304,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 +45326,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 @@ -46377,6 +46209,7 @@ ecgclic.fr, 1 echarity.ae, 1 echbay.com, 1 echi.pw, 1 +echidna-rocktools.eu, 1 echidna-usa.com, 1 echidna.com.au, 1 echidnalock.com.au, 1 @@ -46526,7 +46359,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 @@ -46594,7 +46426,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 @@ -46758,7 +46589,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,7 +46596,6 @@ 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 @@ -47206,7 +47035,6 @@ 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 @@ -47243,6 +47071,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 @@ -47417,7 +47246,6 @@ ekeblock.com, 1 ekedc.com, 1 ekedp.com, 1 ekf.ee, 1 -ekfgroup.com, 1 ekgh.dk, 1 ekhabar.ml, 1 ekho.tk, 1 @@ -47669,6 +47497,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 @@ -47864,7 +47693,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 @@ -48029,7 +47857,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 @@ -48236,6 +48063,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 @@ -48334,12 +48162,10 @@ embracezine.tk, 1 embraco.com, 0 embryologist.info, 1 embryooptions.com, 1 -emby.cloud, 1 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 @@ -48385,7 +48211,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 @@ -48537,7 +48362,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 @@ -48915,7 +48739,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 @@ -49090,7 +48914,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 +48938,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 +49090,9 @@ 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 eov2.com, 1 ep-cortex.com, 1 ep-plus.jp, 1 @@ -49448,6 +49268,7 @@ equinetherapy.ca, 1 equinox.io, 1 equinoxe.de, 1 equip.cz, 1 +equipamentosparapostos.com.br, 1 equipandoloja.net.br, 1 equipedefrance.tv, 0 equipedefrente.tk, 1 @@ -49774,7 +49595,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 +49603,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 +49661,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 @@ -49935,7 +49754,7 @@ esoterikerforum.de, 1 espace-caen.fr, 0 espace-gestion.fr, 1 espace-habitat-francais.fr, 1 -espace-orenda.ch, 0 +espace-orenda.ch, 1 espace-vet.fr, 1 espace.network, 1 espace.spb.ru, 0 @@ -50320,7 +50139,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 +50147,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 +50194,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 @@ -50831,7 +50648,6 @@ 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 @@ -51275,7 +51091,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 @@ -51422,13 +51237,11 @@ extremelawsers.ga, 1 extremelawsest.ga, 1 extremeleadprogram.com, 1 extremelycorporate.ca, 0 -extrememanual.net, 1 extrememusclepump.com, 1 extremepeptides.com, 1 extremeprojects.tk, 1 extremeservicesandrestoration.com, 1 extremesports.tk, 1 -extremetreeandlandscape.com, 1 extremetunedcars.tk, 1 extremfrank.tk, 1 extremovirtual.com, 1 @@ -52017,7 +51830,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 +51863,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 @@ -52186,7 +51999,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 @@ -52338,7 +52150,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 +52168,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 @@ -52571,7 +52381,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 @@ -52885,7 +52694,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 @@ -53160,6 +52968,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 @@ -53514,7 +53323,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 +53384,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 @@ -53681,7 +53489,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 @@ -53958,7 +53765,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 +53954,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 @@ -54206,6 +54011,7 @@ firstcentralsavings.com, 1 firstchoicebouncycastlehire.co.uk, 1 firstchoicefriseur.at, 1 firstchoicejunkservice.com, 1 +firstchoicewaterproofing.com, 1 firstchurchmn.org, 1 firstcitizensbank.com, 1 firstclass.com.kh, 1 @@ -54288,7 +54094,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 @@ -54943,7 +54748,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 @@ -55162,7 +54966,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 @@ -55193,7 +54996,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 @@ -55300,8 +55102,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 +55304,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 @@ -55698,6 +55498,7 @@ forfeiture.gov, 1 forfortcollins.com, 1 forfunssake.co.uk, 1 forge.my.id, 1 +forgeary.com, 1 forgejo.cloud, 1 forgemedia.io, 1 forgetfulmomma.com, 1 @@ -55813,7 +55614,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 @@ -56055,6 +55855,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 @@ -56544,7 +56345,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 @@ -57257,7 +57057,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 @@ -57562,6 +57361,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,7 +57481,6 @@ 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 @@ -58120,7 +57919,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 @@ -58412,7 +58210,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 @@ -58544,7 +58341,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 @@ -58790,6 +58586,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 +58671,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 @@ -58941,7 +58739,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 @@ -59293,7 +59090,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 +59167,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 @@ -59431,6 +59227,7 @@ genossenwiese.ch, 1 genovatoday.it, 1 genoveve.de, 1 gensenwedding.jp, 1 +genshiken-itb.org, 1 gensicke.de, 1 gensleiten.de, 1 genslerapps.com, 1 @@ -59869,6 +59666,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 @@ -60167,6 +59965,7 @@ 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 @@ -60415,7 +60214,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 @@ -60762,7 +60560,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 @@ -60879,7 +60676,6 @@ globelink-group.com, 1 globemilk.nl, 1 globemusic.es, 1 globeprotocol.be, 1 -globeprotocol.com, 1 globeprotocol.de, 1 globeprotocol.es, 1 globeprotocol.eu, 1 @@ -61112,7 +60908,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 @@ -61517,7 +61312,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 @@ -62275,7 +62069,6 @@ greatepier.tk, 1 greatergood.com, 0 greatergoods.com, 1 greaterreadingyp.org, 1 -greaterswissmountaindogs.com, 1 greaterzion.com, 1 greatestcampsest.ga, 1 greatestwallsest.ga, 1 @@ -62475,7 +62268,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 @@ -62521,7 +62314,6 @@ grenlan.com, 1 grenlandkiropraktor.no, 1 grenoblepartners.com, 1 grepable.com, 1 -grepmaste.rs, 0 grepular.com, 1 gresak.io, 0 gresik.info, 1 @@ -62576,7 +62368,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 @@ -62655,7 +62446,6 @@ grnbank.com, 1 groaccess.com, 1 groben-itsolutions.de, 1 grockradio.ga, 1 -grocock.me.uk, 1 groenaquasolutions.nl, 1 groenemoskeeen.nl, 0 groeneoldtimer.nl, 1 @@ -63170,7 +62960,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 @@ -63191,7 +62980,6 @@ guitarraclasica.tk, 1 guitarreria.tk, 1 guitarristaluisquintero.com, 1 guitarristas.info, 1 -guitartrader.international, 1 gujarat.tk, 1 gujinfo.com, 1 gujun-sky.com, 1 @@ -63351,7 +63139,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 @@ -63767,7 +63555,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 @@ -64162,7 +63950,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,7 +64451,7 @@ 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 @@ -65109,6 +64896,7 @@ healthhard.ga, 1 healthharrisburg.tk, 1 healthhelena.tk, 1 healthhendersonville.tk, 1 +healthhopper.eu, 1 healthhosts.com, 1 healthhuntsville.tk, 1 healthhusky.ga, 1 @@ -65330,7 +65118,6 @@ heartcomms.com.au, 1 heartgames.pl, 1 hearthealing.ca, 1 hearthstonehungary.hu, 1 -hearthustlebrands.com, 1 heartlandbiomed.com, 1 heartlandbraidedrugs.com, 1 heartlandcocacola.com, 1 @@ -65679,7 +65466,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 @@ -65913,7 +65699,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 +65714,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 @@ -66297,7 +66081,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 +66223,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 +66232,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 @@ -66579,7 +66361,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 @@ -66785,7 +66566,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 @@ -66873,7 +66654,6 @@ hoaas.no, 1 hoahau.org, 1 hoahop.tk, 1 hoanghaiauto.vn, 1 -hoangvangioi.com, 1 hoaphathomes.com, 1 hoardit.ml, 1 hoathienthao.com, 1 @@ -67146,7 +66926,6 @@ homa.website, 0 homake.cf, 1 homatism.com, 1 homd.xyz, 1 -home-design.bg, 1 home-hunts.com, 1 home-insurance-quotes.tk, 1 home-manicure.tk, 1 @@ -67332,7 +67111,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 @@ -67579,7 +67357,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 +67367,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 +67375,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 @@ -67784,6 +67559,7 @@ 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,7 +67741,6 @@ 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 @@ -68038,7 +67813,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 @@ -68122,7 +67896,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 @@ -68872,7 +68645,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 @@ -69010,6 +68782,7 @@ hydrozen.io, 1 hydrozone.fr, 1 hyds.com, 1 hyec.jp, 1 +hyex.com.au, 1 hygieneproclean.co.nz, 1 hygienet.be, 1 hygo.com, 1 @@ -69270,7 +69043,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 @@ -69670,8 +69442,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 +69452,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 @@ -70024,7 +69797,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 @@ -70129,7 +69901,6 @@ ikall.org, 1 ikama.cz, 1 ikara.social, 1 ikari-san.tk, 1 -ikaria.com.gr, 1 ikaros.tk, 1 ikarus-itkurs.de, 1 ikasgela.com, 1 @@ -70160,7 +69931,6 @@ 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 @@ -70182,7 +69952,6 @@ 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 +70053,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,7 +70072,7 @@ illustrate.biz, 1 illuxat.com, 1 ilmaestro.net, 1 ilmainensanakirja.fi, 1 -ilmanifesto.it, 1 +ilmanifesto.it, 0 ilmataat.ee, 1 ilmcorp.com, 1 ilmiogiardiniere.it, 1 @@ -70481,6 +70250,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 +70277,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 @@ -70770,7 +70541,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 @@ -70991,7 +70761,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 @@ -71448,8 +71217,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 @@ -71593,6 +71360,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 +71395,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 @@ -71725,7 +71494,6 @@ inox-deurtrekkers.be, 1 inoxandco.com, 1 inparkmagazine.com, 1 inpas.co.uk, 1 -inpasa.com.br, 1 inpdp.tk, 1 inpector.de, 1 inposia.com, 1 @@ -71801,7 +71569,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 +71623,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 @@ -72185,6 +71953,7 @@ internationaljoustingleague.tk, 1 internationalrelationsedu.org, 1 internationalrugsdallas.com, 1 internationalschool.it, 1 +internationaltalento.it, 1 internationaltercumeburosu.com.tr, 1 internationaltranslating.com, 1 internationalweekly.tk, 1 @@ -72243,6 +72012,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 @@ -72545,7 +72315,6 @@ ioga.tk, 1 iogamers.org, 1 iogm-official.id, 1 iograficathemes.com, 1 -ioh.lol, 1 iolabs.io, 1 ioliver.co.uk, 1 iololi.com, 1 @@ -73026,7 +72795,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 @@ -73237,7 +73005,6 @@ ispartahaber.gq, 1 ispartahaber.tk, 1 ispc-synergies.org, 1 ispfontela.es, 1 -ispmedipv6.se, 1 isportsfab.com, 1 ispro-ng.com, 1 ispsoft.pro, 1 @@ -73837,9 +73604,7 @@ iww.mx, 1 iww.org.au, 1 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 +73638,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 +73648,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,7 +73734,7 @@ j70333.com, 0 j70444.com, 0 j70555.com, 0 j82365.com, 1 -j8jp.com, 1 +j8jp.com, 0 j9.ag, 1 j9297.co, 1 j9297.com, 0 @@ -74145,7 +73910,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 @@ -74259,7 +74023,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 @@ -74425,7 +74188,6 @@ jannisfink.de, 1 janokacer.sk, 1 janome.club, 1 janome.com.ua, 1 -janonis.com, 1 janoshida.hu, 1 janostheil.de, 1 janphilip-bernius.de, 1 @@ -74981,7 +74743,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 +74794,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 +74968,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 +75287,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 @@ -75802,7 +75560,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 @@ -76085,7 +75842,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 +75997,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 +76230,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 @@ -76816,11 +76570,9 @@ 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 @@ -77283,7 +77035,6 @@ 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 @@ -77392,7 +77143,6 @@ kamitech.ch, 1 kamiyo.tk, 1 kamlunglelystad.tk, 1 kamnob.com, 1 -kamp-kisten.nl, 1 kampanyaradar.com, 1 kampffische.tk, 1 kampfsportschule-einherjar.de, 1 @@ -77438,7 +77188,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 @@ -77583,7 +77332,6 @@ 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 @@ -77640,6 +77388,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 @@ -78046,7 +77795,6 @@ kdk.com.my, 1 kdl-group.pl, 1 kdo-vola.cz, 1 kdonkers.com, 1 -kdoslavi.cz, 1 kdpmgi.com, 1 kdproduction.cz, 1 kdrama.cc, 1 @@ -78117,7 +77865,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 @@ -78128,6 +77875,7 @@ keepleft.gr, 1 keeprunning.fun, 1 keepsakedna.com, 1 keepsight.org.au, 1 +keepsmyrnabeautiful.com, 1 keepsolid.com, 1 keesmartens.tk, 1 keesslop.nl, 1 @@ -78174,7 +77922,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 @@ -78251,12 +77998,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 @@ -78781,7 +78523,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 +78576,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 @@ -79015,7 +78756,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 @@ -79281,7 +79021,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 +79041,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 @@ -79473,7 +79211,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 +79223,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 @@ -79648,6 +79384,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 @@ -79835,7 +79572,6 @@ 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 @@ -80095,6 +79831,7 @@ kontikiindustries.tk, 1 kontist.com, 1 kontorhaus-stralsund.de, 1 kontracrew.tk, 1 +kontramarka.ua, 1 kontrapolis.info, 1 kontrastonline.tk, 1 kontrolapovinnosti.cz, 1 @@ -80146,7 +79883,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 @@ -80212,7 +79949,6 @@ 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 +80017,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 @@ -81510,7 +81245,6 @@ 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 @@ -81896,6 +81630,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 +81661,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 @@ -82169,6 +81901,7 @@ laperreraflamenca.tk, 1 lapesbaldai.lt, 1 lapetitefontaine.restaurant, 1 lapicena.eu, 1 +lapierrecabinetry.com, 1 lapina.tk, 1 lapinas.com, 1 lapinator.net, 1 @@ -82382,7 +82115,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 @@ -82910,7 +82642,7 @@ leadbox.cz, 1 leadcricket.com, 1 leadercreative.ga, 1 leaderfreight.tk, 1 -leadergamer.com.tr, 1 +leadergamer.com.tr, 0 leaderinnetflow.com, 1 leaderoftheresistance.com, 0 leaderoftheresistance.net, 0 @@ -82963,7 +82695,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 +82702,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 @@ -83119,6 +82849,7 @@ leconnecteur-biarritz.fr, 1 lecourriercauchois.fr, 1 lecrayondemarz.com, 1 lecreative.tk, 1 +lecteurs.com, 0 lectormanga.top, 1 lecturaweb.tk, 1 lecul.site, 1 @@ -83497,7 +83228,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 @@ -83830,7 +83560,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 @@ -84046,7 +83775,6 @@ 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 +83842,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 @@ -84248,6 +83976,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 +84020,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 +84178,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 @@ -85491,7 +85218,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 @@ -85632,7 +85359,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 @@ -85955,7 +85681,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 +85722,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 @@ -86591,7 +86315,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 @@ -86964,6 +86687,7 @@ 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 @@ -87187,7 +86911,6 @@ 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 @@ -87246,7 +86969,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 +87017,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 @@ -87436,7 +87159,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 @@ -87640,7 +87362,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 @@ -87954,7 +87675,6 @@ magicorama.com, 1 magicorange.com, 1 magicpaper.net, 1 magicpill.com.au, 1 -magicpowertissue.com, 1 magicsms.pl, 1 magicspaceninjapirates.de, 1 magicstay.com, 1 @@ -88220,7 +87940,6 @@ mailway.io, 1 mailxpress.ga, 1 maimaiyeuem.tk, 1 maimemostatus.com, 1 -main-bvxea6i-sw23ji6z2nxsu.us-4.platformsh.site, 1 main1.host, 1 maindrivekew.com.au, 1 mainechiro.com, 1 @@ -88285,6 +88004,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 @@ -88573,6 +88293,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 @@ -88685,7 +88406,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 @@ -88976,7 +88697,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 @@ -89124,7 +88845,6 @@ margherita.cl, 1 margintoniks.fr, 1 margo-co.ch, 0 margo.ml, 1 -margolcia.com.pl, 1 margolis.gq, 1 margotbworldnews.tk, 1 margotdesign.ovh, 1 @@ -89631,13 +89351,11 @@ marxists.org, 1 marxmyths.org, 1 marxpark.tk, 1 mary-e-kay.tk, 1 -maryamghorbani.com, 1 maryannhaircpa.com, 1 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 +89396,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 @@ -90283,7 +90000,6 @@ maxhorvath.com, 1 maxi-retail.ru, 1 maxibanki.ovh, 1 maxico.tk, 1 -maxigiga.com, 1 maxiglobal.net, 1 maxihide.tk, 1 maxihyp.de, 1 @@ -90502,7 +90218,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 @@ -90695,7 +90411,6 @@ 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 @@ -90739,7 +90454,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 @@ -90779,7 +90493,6 @@ mebeloffice.com.ua, 1 mebelok.com, 1 mebelradom.com, 1 mebelshik.tk, 1 -meblerymar.pl, 1 mebtall.ru, 1 mec.gub.uy, 1 mec010.com, 1 @@ -91297,6 +91010,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 @@ -91360,7 +91074,6 @@ meditez.ca, 1 meditrak.ml, 1 medium.com, 1 mediums.cf, 1 -medivisionsc.com, 1 medivox.tk, 1 mediweed.tk, 1 mediziner-goettingen.tk, 1 @@ -91792,7 +91505,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 @@ -91834,7 +91546,6 @@ memorylines.ml, 1 memoryofyou.eu, 1 memoryplex.com, 1 memphisrap.com, 1 -memphisthemusical.com, 1 mempool.chat, 1 mempool.de, 1 mempool.ninja, 1 @@ -92313,7 +92024,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 +92294,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 @@ -92855,7 +92564,6 @@ midea.kg, 1 mideo.tk, 1 midesa.eu, 1 midesa.it, 1 -midgawash.com, 1 midi-olympique.fr, 1 midia.tk, 1 midiaid.de, 0 @@ -93085,6 +92793,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 @@ -93245,7 +92954,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 @@ -93254,6 +92962,7 @@ millburyma.gov, 1 millcreekut.gov, 1 millcreekwa.gov, 1 millefleurs.eu, 1 +millenn.photos, 1 millennium-thisiswhoweare.net, 1 millenniumfalcon.org, 1 millenniumhotels.com, 1 @@ -93419,7 +93128,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 @@ -94004,6 +93712,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 @@ -94183,7 +93892,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 @@ -94499,7 +94207,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 @@ -95362,6 +95069,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 +95135,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 @@ -96128,6 +95837,7 @@ mtltransport.com, 1 mtludlow.co.uk, 1 mtmedia.org, 1 mtn-media.de, 1 +mtncoi-coe.com, 1 mtnvalleyhospice.org, 1 mtnwebwiz.com, 1 mtoma.tk, 1 @@ -96169,6 +95879,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 @@ -96811,7 +96522,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 @@ -97188,7 +96898,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 +97016,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 @@ -97392,7 +97100,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 +97121,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 @@ -97443,7 +97149,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 +97169,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 +97179,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 +97306,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 +97358,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 @@ -97839,7 +97540,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 @@ -97924,7 +97624,6 @@ nadsandgams.com, 1 naduvilathu.tk, 1 nadyaolcer.fr, 1 naec.ge, 1 -naeemsafdar.net, 1 naehenfuerwahrekleinehelden.de, 1 naehtalente.de, 1 naemnuk.tk, 1 @@ -98001,6 +97700,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 +97747,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 @@ -98458,10 +98159,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 @@ -98535,6 +98234,7 @@ naturaprint.fr, 1 naturart.pt, 1 nature-avenue.com, 1 natureandculture.org, 0 +naturebar.co, 1 natureclaim.com, 1 naturedao.hk, 1 natureexplorer.is, 1 @@ -98546,7 +98246,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 @@ -98817,7 +98516,6 @@ ncvps.gov, 1 ndaal.eu, 1 ndaccount.com, 1 ndarville.com, 1 -ndbilje.si, 1 ndcpolipak.com, 1 ndd.govt.nz, 1 ndeb-bned.ca, 1 @@ -98982,7 +98680,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 @@ -99112,6 +98809,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 @@ -99376,7 +99074,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 +99108,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 @@ -99516,7 +99212,6 @@ netvizura.co.uk, 1 netvlies.nl, 1 netvpn.ml, 1 netvpn.net, 1 -netwaf.com, 1 netwarc.eu, 1 netwarc.nl, 1 netwatch.me, 1 @@ -99873,7 +99568,7 @@ news12elite.tk, 1 news17.tk, 1 news24rus.tk, 1 news29.tk, 1 -news47ell.com, 1 +news47ell.com, 0 news53today.tk, 1 news54.tk, 1 news5cleveland.com, 1 @@ -99937,6 +99632,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 +99814,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 @@ -100323,8 +100018,8 @@ 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 +100056,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 @@ -100441,7 +100135,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 @@ -101053,7 +100746,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 +100792,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 +100822,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 @@ -101176,6 +100866,7 @@ 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 @@ -101322,6 +101013,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 @@ -101514,7 +101206,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 @@ -101820,7 +101511,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 @@ -102285,7 +101975,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 @@ -102381,7 +102070,6 @@ nzbstars.com, 1 nzcasinohex.com, 1 nzcorp.dk, 1 nzdata.org, 1 -nzelaweb.com, 0 nzguns.co.nz, 1 nzhistory.govt.nz, 1 nzia.tk, 1 @@ -102467,6 +102155,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 @@ -102709,7 +102398,6 @@ ocenilla.tk, 1 ocenka-msfo.ru, 1 ocenka-nedv.ml, 1 ocenka.tk, 1 -ocennaswgoogle.pl, 1 ocf.io, 1 ocfelections.gov, 1 ocg-card.com, 1 @@ -102832,7 +102520,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 +102578,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 @@ -102980,6 +102667,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 @@ -103226,7 +102914,6 @@ oklahomaworkstogether.gov, 1 okmaybe.ca, 1 okmirror.net, 1 okmulgeecounty.gov, 1 -okmx.cloud, 1 okmx.de, 1 okna-tm.kz, 0 okna-vek.com.ua, 1 @@ -103442,7 +103129,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 @@ -103685,7 +103371,6 @@ ondemandassociate.com, 1 onderka.com, 1 onderwijscentrum.gent, 1 onderwijscentrumgent.be, 1 -onderzoeksraad.nl, 1 ondevamosjantar.com, 1 ondiet.biz, 1 ondoline.ch, 1 @@ -103726,7 +103411,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 @@ -104108,7 +103792,7 @@ onpointinsights.us, 0 onpointplugins.com, 1 onpopup.ga, 1 onporn.fun, 1 -onrealt.ru, 1 +onrealt.ru, 0 onrr.gov, 1 onsemediagroup.ml, 1 onsenlaichelesdoigts.be, 1 @@ -104167,7 +103851,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 +103895,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 @@ -104888,11 +104570,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 @@ -105064,7 +104744,6 @@ osm.org, 1 osmaniyehaber.tk, 1 osmanlitakilari.tk, 1 osmanlitorunu.com, 1 -osmarks.net, 1 osmarks.tk, 1 osmdroid.net, 1 osmosebox.com, 1 @@ -105590,6 +105269,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 +105379,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 @@ -106115,7 +105794,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 @@ -106545,7 +106223,6 @@ parfumer.tk, 1 parfumi-eu.com, 1 parfumi.tk, 1 parfumtester-100.ml, 1 -parhelionaerospace.com, 1 pari-match-betting.com, 1 pari-match.in, 1 pari-vinci.org, 1 @@ -106554,7 +106231,6 @@ paribus.io, 1 parichadrelax.se, 1 parideal.com, 1 parideal.de, 1 -paridokhtmoshkzad.com, 1 paridurable.com, 1 parikmaxeru.tk, 1 parimatch-best.com, 1 @@ -106625,6 +106301,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 +106350,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 +106387,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 +106436,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 @@ -106987,14 +106663,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 +106701,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 @@ -107221,7 +106895,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 @@ -107350,6 +107023,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 +107144,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 @@ -107629,6 +107303,7 @@ 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 @@ -107839,7 +107514,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 @@ -107930,7 +107604,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 @@ -108086,7 +107759,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 @@ -108228,7 +107900,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 @@ -108337,7 +108008,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 +108020,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 @@ -108457,7 +108126,7 @@ petknight.ga, 1 petless.ga, 1 petlife.od.ua, 1 petlife.vet, 1 -petlindo.com, 1 +petlindo.com, 0 petlittle.ga, 1 petmall.bg, 1 petmatchmaker.org, 1 @@ -108535,7 +108204,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 @@ -108632,7 +108300,6 @@ pgnetwork.net, 1 pgnetwork.org, 1 pgp.lol, 1 pgp.net, 1 -pgp.network, 1 pgp.org.au, 1 pgpaintanddesign.com, 1 pgpmail.cc, 1 @@ -108849,7 +108516,6 @@ phoenixpower.tk, 1 phoenixsalon.eu, 1 phoenixurbanspaces.com, 1 phoenixville.online, 1 -phoenixwebsitedesign.com, 1 phographer.com, 1 pholio.com, 1 phone-service-center.de, 1 @@ -108910,7 +108576,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 +108914,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 @@ -109428,6 +109092,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 +109194,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 @@ -109719,7 +109385,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 @@ -109928,7 +109593,6 @@ planetmetroidprime.tk, 1 planetmobile.tk, 1 planetmugen.tk, 1 planetonline.tk, 1 -planetpayment.com, 1 planetpowershell.com, 1 planetradio.tk, 1 planetreinvention.com, 1 @@ -109972,7 +109636,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 @@ -110024,12 +109687,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 @@ -110327,7 +109988,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 +110034,7 @@ pmcc.net, 1 pmccrystal.com, 1 pmconsulting.es, 1 pmcorganometallix.com, 1 +pmcorp.com, 0 pmcouvrie.com, 1 pmctcg.com, 1 pmctire.com, 0 @@ -111667,7 +111328,6 @@ pozitiffchik.tk, 1 pozitiv.gq, 1 pozitone.com, 1 poziworld.com, 1 -poznajrynek.pl, 1 poznavatelno.ml, 1 pozzitiv.ro, 1 pp.es, 1 @@ -111877,7 +111537,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 +111555,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 +111668,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 @@ -112389,7 +112047,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 @@ -112407,7 +112064,6 @@ prismosystems.com, 1 prisonerresource.com, 1 pristinegrace.org, 1 pristinepotty.com, 1 -prisync.com, 1 pritchi.tk, 1 pritti-wummen.de, 1 priv.au, 1 @@ -112731,7 +112387,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 @@ -112795,7 +112450,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 @@ -113053,7 +112707,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 @@ -113331,7 +112985,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 +113037,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 +113141,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 +113204,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 @@ -113764,7 +113416,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 @@ -113937,7 +113588,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 @@ -114112,7 +113762,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 @@ -114831,6 +114480,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 @@ -114997,7 +114647,6 @@ 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 @@ -115163,7 +114812,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 @@ -115291,7 +114939,6 @@ radnoc.com, 1 radogear.com, 1 radoman.ga, 1 radon.tk, 1 -radon.vip, 1 radopsec.com, 1 radopsec.net, 1 radopsec.org, 1 @@ -115641,7 +115288,6 @@ rangde.org, 1 range.co, 1 rangeforce.com, 1 rangeforce.eu, 1 -rangercollege.edu, 1 rangerfiles.tk, 1 rangersloyalsite.tk, 1 rangeweb.ga, 1 @@ -115671,6 +115317,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 @@ -115942,7 +115589,7 @@ raywardapparel.com, 1 raywisdom.tk, 1 raywjohnson.com, 1 raywjohnson.info, 1 -raywjohnson.me, 1 +raywjohnson.net, 1 rayworks.de, 1 razakhanimazhab.tk, 1 razalabs.com, 1 @@ -116000,7 +115647,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 +115722,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 @@ -116437,6 +116082,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 @@ -116536,7 +116182,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 @@ -116697,7 +116342,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 +116459,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 @@ -117273,7 +116917,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 @@ -117472,7 +117115,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 @@ -117575,7 +117217,6 @@ rescuer.tk, 1 research-panel.jp, 1 research.facebook.com, 0 researchmarathi.com, 1 -researchresults.com, 1 researchstory.com, 1 researchtriangle.org, 1 researchwriting.co.uk, 1 @@ -118662,6 +118303,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 +118518,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 @@ -119048,7 +118689,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 @@ -119128,7 +118768,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 +118779,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 @@ -119179,7 +118817,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 +118901,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 +119028,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 @@ -119752,7 +119388,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 @@ -119918,7 +119553,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 +119580,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 +119601,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 @@ -120443,9 +120075,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 @@ -120938,7 +120569,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 @@ -121158,7 +120788,6 @@ 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 @@ -121244,7 +120873,6 @@ samara-hosting.tk, 1 samarhotel.com, 1 samaritainsmeyrin.ch, 0 samarpanfurniture.com, 1 -samarth.edu.in, 1 samarthtyagi.tk, 1 samatva-yogalaya.com, 1 samba.org, 1 @@ -121325,7 +120953,6 @@ sampurna.shop, 1 samroelants.com, 1 sams.wtf, 1 samsatcorner.com, 1 -samsatkeliling.info, 1 samscollection.in, 1 samsebe.ml, 1 samsebe.tk, 1 @@ -121334,13 +120961,13 @@ 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 @@ -121887,7 +121514,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 @@ -121985,7 +121611,6 @@ 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 @@ -121995,7 +121620,7 @@ 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 @@ -122096,7 +121721,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 +121734,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 +121765,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 +121838,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 @@ -122355,6 +121976,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 +122012,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 +122089,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 @@ -122559,7 +122182,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 @@ -122648,14 +122270,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 @@ -122964,7 +122584,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 +122691,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 +122841,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 +122883,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 @@ -123642,6 +123259,7 @@ 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 @@ -123751,7 +123369,6 @@ senseilabs.com, 1 senselabs.it, 1 sensepixel.com, 1 sensepost.com, 1 -senshot.com, 1 senshudo.tv, 1 sensibleita.tk, 1 sensiblelanecounty.tk, 1 @@ -123960,7 +123577,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 +123655,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 +123731,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 @@ -124377,7 +123993,6 @@ sexokursk.com, 1 sexolipetsk.com, 1 sexologist.cf, 1 sexolviv.com, 1 -sexonorilsk.club, 1 sexonr.com, 1 sexonwax.com, 0 sexorzn.xyz, 1 @@ -125049,6 +124664,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 @@ -125094,7 +124710,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 @@ -125560,7 +125175,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 @@ -125868,7 +125482,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 +125553,9 @@ 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 @@ -126153,7 +125764,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 +125789,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 @@ -126975,8 +126584,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 @@ -127095,7 +126706,6 @@ skylinehouse.ca, 1 skylinertech.com, 1 skylineservers.com, 1 skylocker.net, 1 -skyloisirs.ch, 0 skyltmax.se, 1 skymagdaily.com, 1 skymail.de, 1 @@ -127198,12 +126808,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 @@ -127967,7 +127575,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 @@ -128088,7 +127695,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 @@ -128145,6 +127751,7 @@ socialistyouth.tk, 1 sociality.io, 1 socializator.tk, 1 socialloots.com, 1 +sociallypro.com, 1 socialmarketingday.nl, 1 socialmatch.de, 1 socialmedia-manager.gr, 1 @@ -128813,6 +128420,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 @@ -128940,7 +128548,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 +128611,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 @@ -129244,7 +128850,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 @@ -129336,7 +128941,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 +128969,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 @@ -129632,7 +129235,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 @@ -129819,7 +129421,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 @@ -130040,7 +129641,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 @@ -131017,7 +130617,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 @@ -131166,7 +130765,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 @@ -131609,7 +131207,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 @@ -131895,7 +131492,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 +131552,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 @@ -132111,6 +131706,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 @@ -132789,7 +132385,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 @@ -133011,7 +132607,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 @@ -133199,6 +132795,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 @@ -133492,6 +133089,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 +133150,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 +133342,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 @@ -133958,28 +133556,28 @@ t7e.de, 1 t7tech.net, 1 t8.software, 1 t82365.com, 1 -t8803.com, 1 -t8805.com, 1 -t8807.com, 1 -t8809.com, 1 -t8815.com, 1 -t8817.com, 1 -t8819.com, 1 -t8830.com, 1 +t8803.com, 0 +t8805.com, 0 +t8807.com, 0 +t8809.com, 0 +t8815.com, 0 +t8817.com, 0 +t8819.com, 0 +t8830.com, 0 t88gg.com, 1 -t88jj.com, 1 -t88mm.com, 1 -t88nn.com, 1 -t88oo.com, 1 -t88ss.com, 1 -t88vip0.com, 1 -t88vip1.com, 1 -t88vip2.com, 1 -t88vip3.com, 1 -t88vip4.com, 1 -t88vip5.com, 1 -t88vip6.com, 1 -t88vip7.com, 1 +t88jj.com, 0 +t88mm.com, 0 +t88nn.com, 0 +t88oo.com, 0 +t88ss.com, 0 +t88vip0.com, 0 +t88vip1.com, 0 +t88vip2.com, 0 +t88vip3.com, 0 +t88vip4.com, 0 +t88vip5.com, 0 +t88vip6.com, 0 +t88vip7.com, 0 t88ww.com, 1 t88yy.com, 1 t8software.cn, 1 @@ -134059,6 +133657,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 @@ -134255,7 +133854,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 @@ -134333,7 +133931,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 +134058,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 +134140,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 @@ -134796,7 +134391,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 @@ -134886,6 +134481,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 +134496,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 @@ -135270,6 +134867,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,7 +134908,6 @@ techask.it, 1 techassist.io, 0 techatt.com, 1 techava.ru, 1 -techbayleaf.com, 1 techbelife.com, 1 techbin.org, 1 techbizidea.com, 1 @@ -135684,7 +135281,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 @@ -135800,6 +135396,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 @@ -135885,7 +135482,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 @@ -136033,7 +135629,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 @@ -136217,7 +135813,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 @@ -136359,7 +135954,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 +136004,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 @@ -136792,6 +136386,7 @@ thebeatyard.nl, 1 thebeaulife.co, 1 thebeautyqueen.tk, 1 thebedfordcitizen.org, 1 +thebeeyard.org, 1 thebeginningviolinist.com, 1 thebenefitcalculator.com, 1 thebengalinews.tk, 1 @@ -136889,7 +136484,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 @@ -137019,7 +136613,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 @@ -137288,7 +136881,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 @@ -137507,7 +137099,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 @@ -137547,7 +137138,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 @@ -137816,7 +137406,6 @@ 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 @@ -137941,7 +137530,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 @@ -138015,7 +137603,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 +137666,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 @@ -138749,7 +138335,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 @@ -139183,14 +138768,12 @@ 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 tncrtinfo.com, 1 tndagc.gov, 1 tndentalwellness.com, 1 -tnes.dk, 1 tnmsc.com, 1 tnonline.net, 1 tnosha.gov, 1 @@ -139336,6 +138919,7 @@ toddmclauchlin.ml, 1 toddmissiontx.gov, 1 toddvbanks.com, 1 todeva.com, 1 +todmordendigital.co.uk, 1 todo-securitywerkstuk.azurewebsites.net, 1 todo.is, 0 todobus.tk, 1 @@ -139346,7 +138930,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 @@ -139538,7 +139122,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 @@ -140264,6 +139848,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 @@ -140684,7 +140269,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 @@ -141400,7 +140984,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 @@ -142145,29 +141729,29 @@ tsybanov.com, 1 tt-aepfingen.tk, 1 tt-hardware.com, 1 tt.gt, 1 -tt0766.com, 1 -tt0966.com, 1 -tt2866.com, 1 -tt2966.com, 1 +tt0766.com, 0 +tt0966.com, 0 +tt2866.com, 0 +tt2966.com, 0 tt3666.com, 1 -tt3699.com, 1 +tt3699.com, 0 tt3766.com, 0 -tt3999.com, 1 +tt3999.com, 0 tt5197.co, 1 tt6729.co, 1 tt6729.com, 1 tt6957.co, 1 -tt7199.com, 1 -tt7299.com, 1 -tt7399.com, 1 -tt8166.com, 1 -tt8266.com, 1 -tt8366.com, 1 +tt7199.com, 0 +tt7299.com, 0 +tt7399.com, 0 +tt8166.com, 0 +tt8266.com, 0 +tt8366.com, 0 tt9297.co, 1 tt9397.com, 0 tt9721.com, 1 tt9728.co, 1 -tt9799.com, 1 +tt9799.com, 0 ttb.gov, 1 ttbonline.gov, 1 ttc-birkenfeld.de, 1 @@ -142527,7 +142111,6 @@ turpinpesage.fr, 1 turquoisetassel.com, 1 turretlabs.io, 1 tursa.com.au, 1 -tursiae.org, 1 turteka.com, 1 turtle.ai, 0 turtleduckstudios.com, 1 @@ -142894,7 +142477,6 @@ tyinnovations.com, 1 tyk.io, 1 tyl.io, 1 tyler.rs, 1 -tylerdavies.net, 1 tylerdurden.ml, 1 tylergordonhill.com, 1 tylerharcourt.com, 1 @@ -143138,7 +142720,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 +142766,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 @@ -143315,7 +142895,6 @@ 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 +143134,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 @@ -143602,7 +143179,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 +143222,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 +143240,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 @@ -143798,6 +143372,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 @@ -143915,7 +143490,6 @@ 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 +143624,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 @@ -144077,7 +143650,6 @@ unusualhatclub.com, 1 unusualplaces.org, 1 unveiledgnosis.com, 1 unveilturkey.com, 1 -unviajedesabor.com, 1 unvired.com, 1 unwa.tk, 1 unwire.com, 1 @@ -144258,7 +143830,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 @@ -144446,7 +144017,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 +144047,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 @@ -145250,8 +144819,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 @@ -145330,7 +144899,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 +144949,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 @@ -145439,7 +145006,6 @@ vattulainen.fi, 1 vauban-ip.com, 1 vauceri.hr, 1 vaugarnier.fr, 1 -vaughanrisher.com, 1 vaulavalpola.tk, 1 vault.investments, 1 vault.spdns.eu, 1 @@ -145470,7 +145036,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 @@ -146140,7 +145705,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 +145728,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 +145848,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 +145857,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 +145919,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 @@ -146477,7 +146037,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 +146095,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 +146147,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 @@ -146779,7 +146338,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 @@ -146996,7 +146555,6 @@ virtualvaults.com, 0 virtualx.de, 1 virtubox.net, 1 virtubroker.com.mx, 1 -virtuele-dataroom.nl, 1 virtueturkey.ga, 1 virtuology.com, 1 virtus-group.com, 1 @@ -147063,7 +146621,7 @@ visioncraftinc.com, 1 visiondetails.ru, 1 visiondigitalpe.com, 1 visiondigitalsog.com, 1 -visiondrivers.com, 1 +visiondrivers.com, 0 visionduweb.fr, 1 visioned.net, 1 visioneducation.tk, 1 @@ -147247,7 +146805,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 @@ -147495,6 +147052,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 +147067,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 @@ -147587,6 +147144,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 @@ -148131,7 +147689,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 +147718,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 @@ -148582,7 +148138,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 @@ -148619,7 +148175,7 @@ wallendair.com, 1 wallers.com, 1 wallet.google.com, 1 wallet.pp.ua, 1 -walletconnect.com, 1 +walletconnect.com, 0 walletconnector.cz, 1 walletfox.com, 1 wallethub.com, 1 @@ -148644,6 +148200,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 @@ -148970,7 +148527,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 @@ -149101,7 +148657,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 +148771,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 +148786,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 @@ -149479,7 +149032,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 @@ -149949,7 +149501,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 @@ -150176,6 +149727,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 +149745,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 @@ -151314,7 +150865,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 +150872,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 @@ -151815,7 +151364,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 +151401,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 @@ -151903,6 +151450,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 @@ -151910,6 +151458,7 @@ woohoo.in, 1 woohooyeah.nl, 1 wookstar.com, 1 woolfplumbing.com.au, 1 +woolworks.co.nz, 1 woolyss.com, 1 woomu.me, 1 woonaval.eu, 1 @@ -152238,7 +151787,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 @@ -152445,7 +151993,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 +152027,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 @@ -152732,6 +152278,7 @@ www.dropbox.com, 1 www.dropcam.com, 0 www.edu.tw, 1 www.eternalgoth.co.uk, 1 +www.etsy.com, 1 www.evernote.com, 0 www.facebook.com, 0 www.fastmail.com, 1 @@ -153020,7 +152567,6 @@ 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 @@ -153180,10 +152726,6 @@ xcompany.one, 1 xcraftsumulator.ru, 1 xcspy.org, 1 xcupidon.com, 1 -xcw888.cc, 1 -xcw8886.net, 1 -xcw8888.net, 1 -xcw8889.net, 1 xcxmiku.com, 0 xd.cm, 1 xd.gd.cn, 1 @@ -153493,7 +153035,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 @@ -153691,7 +153232,6 @@ xn--80aejljbfwxn.xn--p1ai, 1 xn--80affa6ai0a.tk, 1 xn--80afvgfgb0aa.xn--p1ai, 1 xn--80ah4f.xn--p1ai, 1 -xn--80ahclcaoccacrhfebi0dcn5c1jh.xn--p1ai, 1 xn--80ahjdhy.tk, 1 xn--80ahnefiifo0g.xn--p1ai, 1 xn--80aihgal0apt.xn--p1ai, 1 @@ -153915,7 +153455,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 @@ -153996,7 +153535,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 @@ -154199,7 +153737,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 @@ -154651,6 +154188,7 @@ 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 @@ -154698,7 +154236,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 @@ -154937,7 +154474,6 @@ yclan.net, 1 ycnrg.org, 1 ycnxp.com, 1 ycodendauteradio.net, 1 -ycsgo.com, 0 ycylf.cc, 1 yd.io, 1 yd163.cc, 1 @@ -155235,7 +154771,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 @@ -155298,7 +154833,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 @@ -155418,8 +154952,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 +154966,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 +155002,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 +155133,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 +155183,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 @@ -155885,7 +155415,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 @@ -156050,7 +155580,6 @@ z9721.com, 1 z9728.co, 1 z99944x.xyz, 1 za.search.yahoo.com, 0 -zaagbaak.nl, 1 zaalleatherwear.nl, 1 zaanlijn.nl, 1 zaba.training, 1 @@ -156089,7 +155618,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 @@ -156767,6 +156295,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 @@ -156997,7 +156526,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 @@ -157118,7 +156646,6 @@ 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 @@ -157206,7 +156733,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 +156762,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 @@ -157447,6 +156974,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 +157030,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/services/settings/dumps/blocklists/addons-bloomfilters.json b/services/settings/dumps/blocklists/addons-bloomfilters.json index 8606ab067518e..c49d84c61ac2b 100644 --- a/services/settings/dumps/blocklists/addons-bloomfilters.json +++ b/services/settings/dumps/blocklists/addons-bloomfilters.json @@ -1,5 +1,312 @@ { "data": [ + { + "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 +3220,5 @@ "last_modified": 1690223886167 } ], - "timestamp": 1701952559443 + "timestamp": 1702989358799 } diff --git a/services/settings/dumps/main/cookie-banner-rules-list.json b/services/settings/dumps/main/cookie-banner-rules-list.json index 0e1a3ed99971c..615b5e96f150d 100644 --- a/services/settings/dumps/main/cookie-banner-rules-list.json +++ b/services/settings/dumps/main/cookie-banner-rules-list.json @@ -1,405 +1,696 @@ { "data": [ { - "click": {}, - "schema": 1700826062965, - "cookies": { - "optOut": [ - { - "name": "cookieDeclined", - "value": "1" - } - ] + "click": { + "optIn": ".CookieBanner_buttonContainer__NOZxH:nth-child(1) button", + "optOut": ".CookieBanner_buttonContainer__NOZxH:nth-child(2) button", + "presence": ".CookieBanner_cookieBanner__R_BOh" }, + "schema": 1702080004246, "domains": [ - "grundstoff.net" + "cbinsights.com" ], - "id": "ca62d977-4e2e-48ab-a186-055f9f3277e4", - "last_modified": 1701423955158 + "id": "4CE0ADCF-E232-4F3B-981B-CA83A0C40874", + "last_modified": 1702633230760 }, { - "click": {}, - "schema": 1700826062965, + "click": { + "optIn": "#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll", + "optOut": "#CybotCookiebotDialogBodyLevelButtonLevelOptinDeclineAll", + "presence": "#cookiebanner" + }, + "schema": 1702080004246, + "domains": [ + "action.com" + ], + "id": "04afc564-14b2-4c56-b72d-47a26e121f3b", + "last_modified": 1702633230755 + }, + { + "click": { + "optIn": ".cc-allow", + "optOut": ".cc-deny", + "presence": ".cc-window" + }, + "schema": 1702080004246, "cookies": { + "optIn": [ + { + "name": "eclipse_cookieconsent_status", + "value": "allow" + } + ], "optOut": [ { - "name": "onleiheTracking", - "value": "false" + "name": "eclipse_cookieconsent_status", + "value": "deny" } ] }, "domains": [ - "onleihe.de" + "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": "c19b1009-d609-438c-8d7c-82fc7144eeaa", - "last_modified": 1701423955154 + "id": "92361e84-664e-46b3-ae55-95bc185dc88e", + "last_modified": 1702633230751 }, { "click": { - "optIn": "button.cm-btn-success", - "optOut": "button.cm-btn-danger", - "presence": "div#klaro" + "optIn": ".cc-allow", + "optOut": ".cc-dismiss", + "presence": ".cc-window" }, - "schema": 1700826062965, - "cookies": {}, + "schema": 1702080004246, "domains": [ - "karlsruhe.de" + "dell.com", + "delltechnologies.com" ], - "id": "63b5c74c-67ae-47f2-b0ba-10c03132ad6f", - "last_modified": 1701423955150 + "id": "f1849b07-95e8-4ae0-a99d-24df5abbb3cb", + "last_modified": 1702633230746 }, { "click": { - "optIn": "button.js-cookie-accept", - "optOut": "button.js-cookie-decline", - "presence": "div#toast-container" + "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": [ - "startnext.com" + "nazwa.pl" ], - "id": "312f32e1-a6bf-4e87-b7a6-7480345823cf", - "last_modified": 1701423955146 + "id": "ddff9528-161c-471e-bd2d-ba4d874a3931", + "last_modified": 1702633230742 }, { "click": { - "optIn": ".consentAgree", - "optOut": "#consentDisagree", - "presence": "div.consent" + "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": [ - "strato.de" + "zyxel.com" ], - "id": "18b1dd86-aee5-4697-b601-4fa320a75dbe", - "last_modified": 1701423955143 + "id": "351f17c2-54b7-4a43-a425-b53bf5950b2e", + "last_modified": 1702633230738 }, { - "click": {}, - "schema": 1700826062965, + "click": { + "optIn": ".cc-dismiss", + "optOut": ".cc-deny", + "presence": ".cc-window" + }, + "schema": 1702080004246, "cookies": { + "optIn": [ + { + "name": "cookieconsent_status", + "value": "dismiss" + } + ], "optOut": [ { - "name": "hidecookie", - "value": "true" + "name": "cookieconsent_status", + "value": "deny" } ] }, "domains": [ - "vrn.de" + "zotac.com" ], - "id": "0ae7f461-8705-4222-b8ee-afa03e5150ff", - "last_modified": 1701423955139 + "id": "4159a3d2-f331-4d56-b051-a753c7e1308a", + "last_modified": 1702633230734 }, { - "click": {}, - "schema": 1700826062965, + "click": { + "optIn": "#btn-allowAllCookie", + "optOut": "#btn-rejectAllCookie", + "presence": "#cc-window" + }, + "schema": 1702080004246, "cookies": { + "optIn": [ + { + "name": "_youtube_vimeo_vid", + "value": "allow" + }, + { + "name": "cookieControllerStatus", + "value": "allow" + }, + { + "name": "functionalCookieStatus", + "value": "allow" + }, + { + "name": "googleAnalyticsCookieStatus", + "value": "allow" + } + ], "optOut": [ { - "name": "consent_functional", - "value": "DENY" + "name": "_youtube_vimeo_vid", + "value": "deny" }, { - "name": "consent_marketing", - "value": "DENY" + "name": "cookieControllerStatus", + "value": "deny" }, { - "name": "consent_technical", - "value": "ALLOW" + "name": "functionalCookieStatus", + "value": "deny" }, { - "name": "consent_version", - "value": "2.6" + "name": "googleAnalyticsCookieStatus", + "value": "deny" } ] }, "domains": [ - "huk24.de" + "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": "0fbacecc-fbda-4e4b-883f-9424790ccc74", - "last_modified": 1701423955135 + "id": "3c0e4924-29ee-4d9a-99ec-e4805a7ffed9", + "last_modified": 1702633230730 }, { - "click": {}, - "schema": 1700826062965, + "click": { + "optIn": "[onclick*=\"cookie_Agree()\"]", + "optOut": "[onclick*=\"cookie_Disagree()\"]", + "presence": "#legal_notice" + }, + "schema": 1702080004246, + "domains": [ + "transcend-info.com" + ], + "id": "5e0387bb-1f19-4f61-b587-49d995a691c9", + "last_modified": 1702633230725 + }, + { + "click": { + "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": "cookiebanner", - "value": "closed" + "name": "tp_privacy_base", + "value": "1" } ] }, "domains": [ - "thw.de" + "tp-link.com" ], - "id": "58226c30-e975-42f3-99e4-ca140b91e96c", - "last_modified": 1701423955130 + "id": "48e9b863-c642-4a7a-9ee5-c085d337233e", + "last_modified": 1702633230721 }, { - "click": {}, - "schema": 1700826062965, + "click": { + "optIn": ".acceptAll", + "presence": ".privacyArea" + }, + "schema": 1702080004246, "cookies": { + "optIn": [ + { + "name": "privacy", + "value": "{\"necessary\":\"ok\",\"functional\":\"ok\",\"marketing\":\"ok\"}" + } + ], "optOut": [ { - "name": "cookie-preference", - "value": "1" + "name": "privacy", + "value": "{\"necessary\":\"ok\"}" } ] }, "domains": [ - "korodrogerie.de" + "teamgroupinc.com" ], - "id": "cdd5646d-06b3-4fdf-8530-b7d8a93f03df", - "last_modified": 1701423955126 + "id": "9034f6e4-09ca-42a2-a8da-4f65968b8b36", + "last_modified": 1702633230717 }, { "click": { - "optIn": "button.cl-consent__btn", - "optOut": "button.cl-consent__close-link", - "presence": "div#cl-consent" + "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": 1700826062965, - "cookies": {}, "domains": [ - "hdblog.it", - "hdmotori.it" + "synology.cn", + "synology.com" ], - "id": "342bd7ca-6502-4df7-bd3a-0b884b51aaa7", - "last_modified": 1701423955123 + "id": "d01204bd-8a94-4e6e-8ce4-d155b0681053", + "last_modified": 1702633230713 }, { - "click": {}, - "schema": 1700826062965, + "click": { + "optIn": "#cp-yes", + "optOut": "#cp-no", + "presence": "#cp-overlay" + }, + "schema": 1702080004246, "cookies": { + "optIn": [ + { + "name": "cookiepermission", + "value": "yes" + } + ], "optOut": [ { - "name": "cookies_accepted", - "value": "false" + "name": "cookiepermission", + "value": "no" } ] }, "domains": [ - "mindfactory.de" + "seasonic.com" ], - "id": "aa077f01-0574-4f1b-ad1b-3225c4dc59f7", - "last_modified": 1701423955119 + "id": "6c9b123a-ec42-4128-91a2-a4cdd65059bc", + "last_modified": 1702633230709 }, { "click": { - "optIn": "button[data-qa=\"privacy-settings-action-info\"]", - "optOut": "button[data-qa=\"privacy-settings-action-close\"]", - "presence": "[data-qa=\"privacy-settings\"]" + "optIn": "[value=\"Accept\"]", + "optOut": "[value=\"Reject\"]", + "presence": "#pp_info" }, - "schema": 1700826062965, + "schema": 1702080004246, "domains": [ - "lieferando.de", - "just-eat.ch" + "gainward.com", + "palit.com" ], - "id": "31d9971f-e23d-4dd9-a891-99a85d97ad19", - "last_modified": 1701423955115 + "id": "c79fc6da-0143-46a0-abfc-debbd4d05f4b", + "last_modified": 1702633230705 }, { "click": { - "optIn": "button#cookieok", - "optOut": "button#cookiecancel", - "presence": "div#cookieconsent" + "optIn": "#Footer_butAccept", + "optOut": "#Footer_butCancel", + "presence": "#Footer_Cookie" }, - "schema": 1700826062965, - "cookies": {}, + "schema": 1702080004246, "domains": [ - "reichelt.de" + "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": "b81fc066-5cdd-4af6-b288-49de860e369a", - "last_modified": 1701423955111 + "id": "f7aa3175-3c2a-4458-b822-da0bd57c2524", + "last_modified": 1702633230701 }, { "click": { - "optIn": "button#cookie-consent-button", - "presence": "dialog.consent" + "optIn": "#wt-cli-accept-all-btn", + "presence": "#cookie-law-info-bar" + }, + "schema": 1702080004246, + "cookies": { + "optOut": [ + { + "name": "viewed_cookie_policy", + "value": "yes" + } + ] }, - "schema": 1700826062965, "domains": [ - "computerbase.de" + "endorfy.com", + "silentiumpc.com" ], - "id": "2c73714d-0e9b-41a1-ad12-6bd15ddade67", - "last_modified": 1701423955107 + "id": "04e919eb-13c2-4b37-bf7f-888767888640", + "last_modified": 1702633230696 }, { "click": { - "optIn": "button.cm-btn-accept-all", - "optOut": "button.cm-btn-accept", - "presence": "div#klaro" + "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" + } + ] }, - "schema": 1700826062965, - "cookies": {}, "domains": [ - "lancom-systems.de" + "dreammachines.by", + "dreammachines.eu", + "dreammachines.io", + "dreammachines.nl", + "dreammachines.pl", + "dreammachines.ru" ], - "id": "efc6f62d-8d53-4f52-9dd3-172d9b04f5de", - "last_modified": 1701423955104 + "id": "c8cb50a3-7604-4de0-a0ac-c2e7b0ad45c0", + "last_modified": 1702633230692 }, { "click": { - "optIn": "button.iubenda-cs-accept-btn", - "presence": "div#iubenda-cs-banner" + "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" + } + ] }, - "schema": 1700826062965, - "cookies": {}, "domains": [ - "ansa.it" + "creative.com" ], - "id": "8e55f0f4-262f-4d35-a461-47afea6e9069", - "last_modified": 1701423955100 + "id": "32fc1292-e26f-49c8-8de8-c41966c0bd34", + "last_modified": 1702633230688 }, { "click": { - "optIn": ".sp_choice_type_11", - "presence": ".message-container > #notice", - "runContext": "child" + "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" + } + ] }, - "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" + "bequiet.com" ], - "id": "d42bbaee-f96e-47e7-8e81-efc642518e97", - "last_modified": 1701423955095 + "id": "de38e8a0-25d2-42d2-974d-04684e54b7ce", + "last_modified": 1702633230684 }, { "click": { - "optIn": "button[data-component-name=\"consent\"]", - "optOut": "button[data-component-name=\"reject\"]", - "presence": ".cookie-notice-banner" + "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" + } + ] }, - "schema": 1700826062965, - "cookies": {}, "domains": [ - "shopify.com" + "akyga.com" ], - "id": "531324c9-83ba-4ba3-a488-3ebde87b10af", - "last_modified": 1701423955091 + "id": "3bf04e3c-efe8-49af-bf80-506f12ba2da4", + "last_modified": 1702633230681 }, { "click": { - "optOut": "#tmart-cookie-layer-only-necessary", - "presence": ".cookieLayer" + "optIn": "button.fcQwZX", + "optOut": "button.fLZgds", + "presence": ".kDNyTh.hbTFXs" }, - "schema": 1700313507200, - "cookies": {}, + "schema": 1702598407647, "domains": [ - "sparda-hessen.de" + "androidpolice.com" ], - "id": "0EAF9E99-36C6-4165-87BE-A62EF1751E1D", - "last_modified": 1700826062722 + "id": "5B57603A-0CE0-4511-B324-18D34F60EC51", + "last_modified": 1702633230676 }, { "click": { - "optOut": "#zdf-cmp-deny-btn", - "presence": ".zdf-cmp-modal-content" + "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": 1700313507200, - "cookies": {}, + "schema": 1702598407647, "domains": [ - "zdf.de" + "ondo.finance" ], - "id": "91484461-01AD-4D78-9ED8-D17C688F47E7", - "last_modified": 1700826062719 + "id": "50105C82-FEDE-424E-884D-430FA7BCBED", + "last_modified": 1702633230671 }, { "click": { - "optIn": "[data-testid=\"accept-all-cookies-button\"]", - "presence": "[data-testid=\"cookie-banner\"]" + "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": "[]" + } + ] }, - "schema": 1700313507200, - "cookies": {}, "domains": [ - "elsevier.com" + "teamspeak.com" ], - "id": "0AB3A01E-10A9-4509-9350-6EF61AB223F3", - "last_modified": 1700826062716 + "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": { - "optIn": "[data-testid=\"uc-accept-all-button\"]", - "optOut": "[data-testid=\"uc-deny-all-button\"]", - "presence": "#usercentrics-root" + "optOut": "button.js-decline-all-cookies", + "presence": "div.cookie-consent-spice" }, - "schema": 1700313507200, + "schema": 1702080004246, "cookies": {}, "domains": [ - "rts.ch" + "thomann.de" ], - "id": "9f5f0c06-5221-45b2-a174-7d70fd128eb3", - "last_modified": 1700826062713 + "id": "5aa2d4df-2a5d-4abf-bb5a-bd714951f790", + "last_modified": 1702633230653 }, { "click": { - "optIn": ".cky-btn.cky-btn-accept", - "optOut": ".cky-btn.cky-btn-reject", - "presence": ".cky-consent-bar" + "optIn": "button[data-testid=\"gdpr-btn-accept-all\"]", + "optOut": "button[data-testid=\"gdpr-btn-refuse-all\"]", + "presence": "[data-testid=\"cookie-banner\"]" }, - "schema": 1700313507200, - "cookies": {}, + "schema": 1702080004246, "domains": [ - "met.ie" + "deezer.com" ], - "id": "536f8027-111f-4798-a9ef-745b30fe65c8", - "last_modified": 1700826062709 + "id": "5bdcb3ce-6270-4270-af7b-d1fdef5cecb4", + "last_modified": 1702633230649 }, { "click": { - "optIn": "#didomi-notice-agree-button", - "optOut": ".didomi-continue-without-agreeing", - "presence": "div#didomi-notice" + "optIn": "button[data-cookie_consent=\"1\"]", + "optOut": "button[data-cookie_consent=\"0\"]", + "presence": "#js_reveal_cookie_content" }, - "schema": 1700313507200, + "schema": 1702080004246, "cookies": {}, "domains": [ - "orange.sk", - "hnonline.sk" + "voelkner.de" ], - "id": "688d29a8-e1c7-4d62-b3d4-53b451ff5a48", - "last_modified": 1700826062705 + "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": [ "gitlab.com", @@ -419,8 +710,6 @@ "mediafax.ro", "elisa.fi", "blick.ch", - "dn.no", - "soundcloud.com", "tvn24.pl", "olx.pl", "olx.bg", @@ -462,8 +751,6 @@ "novini.bg", "stiripesurse.ro", "suomi24.fi", - "sbb.ch", - "atg.se", "ziare.com", "irishexaminer.com", "tripadvisor.it", @@ -480,14 +767,37 @@ "plotek.pl", "howstuffworks.com", "tripadvisor.de", - "otto.de", - "kaufland.de", - "lidl.de", - "lidl.cz", - "rightmove.co.uk" + "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": 1700826062701 + "last_modified": 1702633230640 }, { "click": { @@ -495,7 +805,7 @@ "optOut": ".ot-pc-refuse-all-handler, #onetrust-reject-all-handler", "presence": "div#onetrust-consent-sdk" }, - "schema": 1700313507200, + "schema": 1702598407647, "cookies": {}, "domains": [ "espncricinfo.com", @@ -503,10 +813,7 @@ "roche.com", "apnews.com", "nationalgeographic.com", - "frontiersin.org", "espn.com", - "thawte.com", - "digicert.com", "hotjar.com", "marriott.com", "hootsuite.com", @@ -595,16 +902,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 +918,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 +929,638 @@ "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.iubenda-cs-accept-btn", + "optOut": "button.iubenda-cs-reject-btn", + "presence": "div#iubenda-cs-banner" + }, + "schema": 1702598407647, + "cookies": {}, + "domains": [ + "giallozafferano.it", + "virgilio.it", + "upfit.de" + ], + "id": "65638975-8222-425c-9be0-3f41a51db13c", + "last_modified": 1702633230611 + }, + { + "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": { + "optIn": "button#didomi-notice-agree-button", + "optOut": "button#didomi-notice-disagree-button", + "presence": "div#didomi-host" + }, + "schema": 1702598407647, + "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", + "france24.com" + ], + "id": "690aa076-4a8b-48ec-b52c-1443d44ff008", + "last_modified": 1702633230591 + }, + { + "click": { + "optIn": ".cc-btn.cc-allow", + "optOut": ".cc-btn.cc-deny", + "presence": ".cc-window.cc-banner" + }, + "schema": 1702598407647, + "cookies": { + "optOut": [ + { + "name": "cookieconsent_status", + "value": "deny" + } + ] + }, + "domains": [ + "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-gas.com", + "omv-gas.at", + "omv-gas.be", + "omv-gas.de", + "omv-gas.hu", + "omv-gas.nl", + "omv-gas.com.tr", + "omvpetrom.com", + "petrom.ro", + "petrom.md" + ], + "id": "8f401b10-02b6-4e05-88fa-c37012d4c8c0", + "last_modified": 1702633230587 + }, + { + "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": "6c7366a0-4762-47b9-8eeb-04e86cc7a0cc", - "last_modified": 1700826062697 + "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": "0EAF9E99-36C6-4165-87BE-A62EF1751E1D", + "last_modified": 1700826062722 + }, + { + "click": { + "optOut": "#zdf-cmp-deny-btn", + "presence": ".zdf-cmp-modal-content" + }, + "schema": 1700313507200, + "cookies": {}, + "domains": [ + "zdf.de" + ], + "id": "91484461-01AD-4D78-9ED8-D17C688F47E7", + "last_modified": 1700826062719 + }, + { + "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 +1763,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 +2089,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 +2269,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 +3592,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 +6624,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", @@ -6697,21 +7495,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 +7925,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 +8054,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 +8718,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 +8867,5 @@ "last_modified": 1670498155641 } ], - "timestamp": 1701423955158 + "timestamp": 1702633230760 } diff --git a/services/settings/dumps/main/devtools-compatibility-browsers.json b/services/settings/dumps/main/devtools-compatibility-browsers.json index 01e21fbb109c8..b09d28c6a75e4 100644 --- a/services/settings/dumps/main/devtools-compatibility-browsers.json +++ b/services/settings/dumps/main/devtools-compatibility-browsers.json @@ -1,5 +1,59 @@ { "data": [ + { + "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": 1702685107820, + "status": "current", + "version": "79", + "browserid": "opera_android", + "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, @@ -9,15 +63,6 @@ "id": "74e217cb-3eb9-44b3-82d4-c14d54e78187", "last_modified": 1702283211298 }, - { - "name": "Opera Android", - "schema": 1701561907381, - "status": "current", - "version": "78", - "browserid": "opera_android", - "id": "5889915d-7fa8-4cae-a1ae-e370a28aaec5", - "last_modified": 1701778564580 - }, { "name": "Chrome", "schema": 1701561906927, @@ -189,24 +234,6 @@ "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 +243,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 +314,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": 1702890886929 } diff --git a/services/settings/dumps/security-state/intermediates.json b/services/settings/dumps/security-state/intermediates.json index 5761c5615d95e..755b7d4ca6c23 100644 --- a/services/settings/dumps/security-state/intermediates.json +++ b/services/settings/dumps/security-state/intermediates.json @@ -1,5 +1,653 @@ { "data": [ + { + "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 +11700,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 +11826,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 +13068,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=", @@ -21546,24 +22140,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 +22158,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 +28530,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 +29611,5 @@ "last_modified": 1559865884636 } ], - "timestamp": 1700647023222 + "timestamp": 1702979823409 } From 1bfe656be34f338b555675f50ee19b37ffb7b908 Mon Sep 17 00:00:00 2001 From: Daniel Holbert <dholbert@cs.stanford.edu> Date: Thu, 21 Dec 2023 18:19:19 +0000 Subject: [PATCH 06/46] Bug 1848628: Null-check swipe tracker before cleaning it up, in nsBaseWidget::SwipeFinished. a=dmeehan It seems unexpected that the swipe tracker would be non-null when a swipe finishes, but there are several codepaths that can clear it, which might conceivably fire while the SwipeFinished callback is in the queue to be dispatched. Note that before bug 1837226, SwipeFinished just nulled out the pointer, which was harmless if it was already null. My patch in bug 1837226 made us start calling a method as well, and that created a new opportunity for a null-deref crash here if the pointer happens to be null when we reach this function. Original Revision: https://phabricator.services.mozilla.com/D186204 Differential Revision: https://phabricator.services.mozilla.com/D196360 --- widget/nsBaseWidget.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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, From d1dcda2cebfab1d7d414408f639e9076fc90b067 Mon Sep 17 00:00:00 2001 From: Daniel Holbert <dholbert@cs.stanford.edu> Date: Wed, 27 Dec 2023 13:19:59 +0000 Subject: [PATCH 07/46] Bug 1660223: Let printer enumeration run to completion, to avoid a GTK bug. a=dmeehan Original Revision: https://phabricator.services.mozilla.com/D195949 Differential Revision: https://phabricator.services.mozilla.com/D196685 --- widget/gtk/nsDeviceContextSpecG.cpp | 16 +++++++++++++++- widget/gtk/nsDeviceContextSpecG.h | 2 ++ 2 files changed, 17 insertions(+), 1 deletion(-) 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<nsIFile> mSpoolFile; nsCString mTitle; + // Helper for EnumeratePrinters / PrinterEnumerator: + bool mHasEnumerationFoundAMatch = false; private: void EnumeratePrinters(); From c0ff584ef35a8b3681780f48702d646382688141 Mon Sep 17 00:00:00 2001 From: Rob Wu <rob@robwu.nl> Date: Wed, 13 Dec 2023 13:57:42 +0000 Subject: [PATCH 08/46] Bug 1865689 - Clarify access checks in devtools.inspectedWindow.eval r=rpl,devtools-reviewers,ochameau, a=dmeehan and report a static error instead of including the URL in the message. Differential Revision: https://phabricator.services.mozilla.com/D196133 --- .../addon/webextension-inspected-window.js | 99 +++--- .../inspected-window/tests/browser.ini | 4 + .../browser_webextension_inspected_window.js | 42 --- ...er_webextension_inspected_window_access.js | 315 ++++++++++++++++++ 4 files changed, 373 insertions(+), 87 deletions(-) create mode 100644 devtools/shared/commands/inspected-window/tests/browser_webextension_inspected_window_access.js 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..785ad39f649ac 100644 --- a/devtools/shared/commands/inspected-window/tests/browser.ini +++ b/devtools/shared/commands/inspected-window/tests/browser.ini @@ -9,3 +9,7 @@ support-files = inspectedwindow-reload-target.sjs [browser_webextension_inspected_window.js] +[browser_webextension_inspected_window_access.js] +prefs = + # restrictedDomains must be set as early as possible. + extensions.webextensions.restrictedDomains=test2.example.com 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": `<!DOCTYPE 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": `<!DOCTYPE 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(); +}); From 5120dcbe1bdcd057323c59c145bcc0de1f9dec58 Mon Sep 17 00:00:00 2001 From: Rob Wu <rob@robwu.nl> Date: Wed, 13 Dec 2023 14:50:25 +0000 Subject: [PATCH 09/46] Bug 1865689 - Fixup browser.toml - move prefs to DEFAULT. a=test-only The individual test ran as expected when prefs was next to the file. But when the whole directory is selected, the test runner refuses to run the test due to the following error: > The 'prefs' key must be set in the DEFAULT section of a manifest. This patch fixes the issue by moving prefs to DEFAULT. This is okay because the other test in the test manifest is independent of the pref. Differential Revision: https://phabricator.services.mozilla.com/D196295 --- .../shared/commands/inspected-window/tests/browser.ini | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/devtools/shared/commands/inspected-window/tests/browser.ini b/devtools/shared/commands/inspected-window/tests/browser.ini index 785ad39f649ac..1904a2dbdd3f2 100644 --- a/devtools/shared/commands/inspected-window/tests/browser.ini +++ b/devtools/shared/commands/inspected-window/tests/browser.ini @@ -8,8 +8,12 @@ support-files = head.js inspectedwindow-reload-target.sjs -[browser_webextension_inspected_window.js] -[browser_webextension_inspected_window_access.js] prefs = - # restrictedDomains must be set as early as possible. + # 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] \ No newline at end of file From f9486b249f004d6f800ef8422daf8c44a95fd33e Mon Sep 17 00:00:00 2001 From: ffxbld <ffxbld@mozilla.com> Date: Thu, 28 Dec 2023 10:55:14 +0000 Subject: [PATCH 10/46] No Bug, mozilla-esr115 repo-update HSTS HPKP remote-settings - a=repo-update, r=dmeehan Differential Revision: https://phabricator.services.mozilla.com/D197372 --- security/manager/ssl/StaticHPKPins.h | 2 +- security/manager/ssl/nsSTSPreloadList.inc | 623 ++++++------------ .../dumps/blocklists/addons-bloomfilters.json | 15 +- .../dumps/security-state/intermediates.json | 38 +- 4 files changed, 249 insertions(+), 429 deletions(-) diff --git a/security/manager/ssl/StaticHPKPins.h b/security/manager/ssl/StaticHPKPins.h index 0398529035c40..9a05fb9be4b02 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(1711623295042000); +static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1712227835557000); diff --git a/security/manager/ssl/nsSTSPreloadList.inc b/security/manager/ssl/nsSTSPreloadList.inc index e594ad2214acc..dfbd0bac90356 100644 --- a/security/manager/ssl/nsSTSPreloadList.inc +++ b/security/manager/ssl/nsSTSPreloadList.inc @@ -8,7 +8,7 @@ /*****************************************************************************/ #include <stdint.h> -const PRTime gPreloadListExpirationTime = INT64_C(1714042491088000); +const PRTime gPreloadListExpirationTime = INT64_C(1714647032550000); %% 0--1.de, 1 0-0.io, 1 @@ -66,7 +66,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714042491088000); 0047552.com, 1 00484.com, 1 0057552.com, 1 -0066.in, 1 +0066.in, 0 0067552.com, 1 007d88.com, 1 007kf.com, 1 @@ -322,7 +322,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714042491088000); 089640.xyz, 1 089818.com, 1 08detaxe.fr, 1 -09.ag, 1 +09.ag, 0 09000113.nl, 1 090124.xyz, 1 090136.com, 1 @@ -1556,7 +1556,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714042491088000); 1rs.nl, 1 1rust.net, 1 1sand0s.nl, 1 -1satoshi.org, 1 1scope.com, 1 1se.co, 0 1se2or3.com, 1 @@ -1818,7 +1817,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714042491088000); 200fcw.com, 1 200mmx.net, 1 200pppp.com, 1 -2012.ovh, 1 2012review.tk, 1 2013review.tk, 1 20140301.xyz, 1 @@ -2419,7 +2417,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714042491088000); 31789999.com, 0 317899999.com, 0 3178b.com, 0 -3178bbb.com, 0 3178c.com, 0 3178dd.com, 1 3178ddd.com, 0 @@ -2452,7 +2449,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714042491088000); 319064.com, 1 319k3.com, 1 319xpj.com, 1 -31fss.com, 1 31fss.marketing, 1 31fss.net, 1 31fss.support, 1 @@ -2550,7 +2546,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714042491088000); 33ffyyy.com, 1 33ffzzz.com, 1 33knkn.com, 1 -33weishang.com, 1 33zv.com, 0 33zxzx.com, 1 3400.cf, 1 @@ -3493,7 +3488,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714042491088000); 5060715.com, 1 50balles.com, 1 50firstavenue.com.au, 1 -50fss.marketing, 1 50hertz.tk, 1 50lakeshore.com, 1 50ma.xyz, 1 @@ -3595,7 +3589,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714042491088000); 51pinpai.com, 1 51power.com, 1 51resume.com, 1 -51rose.com, 1 51senluo.com, 1 51share.com, 1 51shoes.com, 1 @@ -3676,9 +3669,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714042491088000); 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 @@ -4351,7 +4342,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714042491088000); 68636.cc, 1 68636.com, 1 68636.vip, 1 -68722.com, 1 689368.com, 1 68reg.tk, 1 690469.com, 1 @@ -4504,6 +4494,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714042491088000); 733673.com, 1 734365.com, 1 734551.com, 1 +735973.com, 1 736373.com, 1 736416.com, 1 736573.com, 1 @@ -4670,7 +4661,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714042491088000); 788zzz.com, 1 7891553.com, 1 7891997.com, 1 -7893.net, 1 78936565.com, 0 789365t.com, 1 789zr.com, 0 @@ -5295,7 +5285,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714042491088000); 8time.com, 1 8tuffbeers.com, 1 8ung.online, 1 -8xx.io, 0 8xx888.com, 1 8xxxxxxx.com, 1 8y.network, 1 @@ -5607,7 +5596,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714042491088000); 9234.cf, 1 9235.cf, 1 9236.cf, 1 -923601.com, 1 9237.cf, 1 9239.cf, 1 9240.cf, 1 @@ -5805,7 +5793,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714042491088000); 9397c.com, 1 9397cc.com, 0 9397dd.com, 0 -9397dh.com, 1 9397e.com, 1 9397ee.com, 0 9397ff.com, 0 @@ -6268,6 +6255,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714042491088000); 9822usa.com, 1 982zzz.com, 1 984.ch, 1 +985684.com, 1 9859365.com, 0 985ccc.com, 1 986ccc.com, 1 @@ -6713,7 +6701,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 @@ -7549,7 +7536,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 @@ -7559,7 +7545,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 @@ -7752,7 +7737,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 @@ -7782,7 +7766,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 @@ -7994,7 +7977,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 @@ -8919,6 +8901,7 @@ afrijet.ga, 1 afrilatest.com, 1 afrimarket.ci, 1 afrique.buzz, 1 +afriregister.ci, 1 afriregister.com.ss, 1 afriregister.et, 1 afriregister.eu, 1 @@ -8936,7 +8919,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 @@ -9113,6 +9095,7 @@ agenciaonnmarketing.com, 1 agenciaplanner.com.br, 1 agenciarse.com, 1 agenciarubik.com, 1 +agenciatecben.com.br, 1 agenciazoe.com.br, 1 agencja-interaktywna.ga, 1 agencja-interaktywna.tk, 1 @@ -9419,6 +9402,7 @@ ahd.com, 0 ahealthyjourney.ca, 1 ahegaoroulette.com, 1 ahelos.tk, 1 +ahero4all.org, 1 ahezu.com, 1 ahg-offices.fr, 1 ahhcomfortshoes.com, 1 @@ -10638,7 +10622,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 @@ -10806,6 +10789,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 @@ -11111,7 +11095,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 @@ -11279,6 +11262,7 @@ allentherapeuticmassage.com, 1 allenturley.com, 1 allenwillis.ga, 1 allerbestefreunde.de, 1 +allergento.shop, 1 allergento.store, 0 allergictoidiots.tk, 1 allergy.university, 1 @@ -11414,7 +11398,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 @@ -12030,7 +12013,6 @@ amagdic.com, 1 amagical.net, 0 amagraduates.tk, 1 amagroup.io, 1 -amaisd.org, 1 amaiz.com, 1 amalbansode.com, 1 amalfi5stars.com, 1 @@ -13038,7 +13020,6 @@ angeladietrich.com, 1 angelaheck.com, 1 angelalombardo.it, 1 angelarellano.tk, 1 -angelawhitepornstar.com, 1 angelbulldog.tk, 1 angelcastellanos.tk, 1 angelcorpus.tk, 1 @@ -13090,7 +13071,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 @@ -13108,7 +13089,6 @@ 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 @@ -13431,7 +13411,6 @@ 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 @@ -13718,7 +13697,6 @@ antiquario.roma.it, 1 antique-pedalcars.ch, 1 antiquecenter.gq, 1 antiquefirearms.tk, 1 -antiquemotorcycle.org, 1 antiquesinvestorsest.ga, 1 antireklams.tk, 1 antirepressionbayarea.com, 1 @@ -14674,7 +14652,6 @@ arbitrarion.com, 1 arbitrary.ch, 1 arbitrations.tk, 1 arbitrazh.tk, 1 -arbitrazhstavki.com, 1 arbobille.es, 1 arboleda-hurtado.com, 1 arbolesdenavidad.info, 1 @@ -14714,12 +14691,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 @@ -14779,7 +14754,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 @@ -15197,6 +15171,7 @@ arofabric.com, 1 arogov.com, 1 arokha.com, 1 aroma-therapy.tk, 1 +aroma-wave.com, 1 aroma24.ml, 1 aromachat.eu, 1 aromacoffee.bg, 1 @@ -15626,7 +15601,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 @@ -15743,6 +15717,7 @@ asg-egy.com, 1 asgapps.co.za, 1 asgard-engineering.com, 1 asgeirolafs.com, 1 +asgrep.com, 1 ashastalent.com, 0 ashburnconsulting.com, 1 ashburnr.com, 1 @@ -16342,7 +16317,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 @@ -16455,6 +16429,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 @@ -17044,7 +17019,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 @@ -17321,7 +17295,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 @@ -17364,7 +17337,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 @@ -17468,7 +17440,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 @@ -17738,7 +17709,7 @@ awomansplacenj.com, 1 awrd.cz, 1 awsbs.de, 1 awscloudrecipes.com, 1 -awsl.blog, 0 +awsl.blog, 1 awsl.tech, 0 awsmdev.de, 1 awsnuke.com, 1 @@ -18596,7 +18567,6 @@ baddielatina.com, 1 baddrones.llc, 1 badeand.net, 1 badekappen.com, 1 -baderscott.com, 1 badeurlaub.tk, 1 badf00d.de, 1 badge.rs, 1 @@ -19216,6 +19186,7 @@ baravalle.com, 1 baraxolka.ga, 1 baraxolka.ml, 1 barbaderespeito.com.br, 1 +barbara-bertagnolli.co.uk, 1 barbara-fuchs-gruene-fuerth.de, 1 barbarabowersrealty.com, 1 barbarabryce.com, 1 @@ -19524,6 +19495,7 @@ bassanova.tk, 1 bassbase.tk, 1 bassblog.net, 1 bassculture.tk, 1 +bassdentistry.com, 1 basse-chaine.info, 1 bassethound.tk, 1 bassguy.tk, 1 @@ -20234,7 +20206,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 @@ -20298,7 +20269,6 @@ beersheba.co.il, 1 beersheva.city, 1 beersheva.co.il, 1 beerview.ga, 1 -beerwallpa.com, 1 beerxa.cz, 1 beescloud.com, 1 beesco.us, 1 @@ -20366,7 +20336,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 @@ -20580,7 +20549,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 @@ -20648,7 +20616,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 @@ -20715,6 +20682,7 @@ 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 @@ -21702,6 +21670,7 @@ betterhome.ml, 1 betterjapanese.blog, 1 betterjapanese.org, 1 betterjapanese.xyz, 1 +betterlifekidsclub.com, 1 betterlovestore.com, 1 betterna.me, 1 betternews.eu, 1 @@ -21925,7 +21894,7 @@ 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 @@ -22016,6 +21985,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 @@ -22353,7 +22323,6 @@ bilgehan.net, 1 bilgiliksel.com, 1 bilgireis.com, 1 bilgisayarkursu.tk, 1 -bilgisoft.ir, 1 bilgo.com, 1 bilhos.com.tr, 1 bilibili.link, 1 @@ -22635,7 +22604,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 @@ -22660,7 +22628,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 @@ -23246,6 +23213,7 @@ bkin-42740.xyz, 1 bkin-43450.xyz, 1 bkin-46680.xyz, 1 bkk24.de, 1 +bkkf.at, 1 bkkposn.com, 1 bklaindia.com, 1 bkmexpress.com.tr, 1 @@ -23829,7 +23797,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 @@ -24222,7 +24189,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 @@ -24767,6 +24733,7 @@ bosquedelasimagenes.tk, 1 boss.az, 1 bossefors.tk, 1 bossurl.tk, 1 +bostan.com, 1 boston-molly.tk, 1 boston-sailing.com, 1 bostonadvisors.com, 0 @@ -25189,7 +25156,6 @@ bralnik.com, 1 bramberheights.com, 1 brambevers.tk, 1 bramblerealestate.com, 1 -brambles.com, 1 brambleski.com, 1 bramburek.net, 1 bramfri.dk, 1 @@ -25689,7 +25655,7 @@ brightpool-markets.com, 1 brightside.com, 1 brightsparks.com.sg, 1 brightsport-news.tk, 1 -brighttax.com, 0 +brighttax.com, 1 brighttomorrowproductions.com, 1 brightvalley.com.au, 1 brightview.net.cn, 1 @@ -25874,7 +25840,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 @@ -26215,7 +26180,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 @@ -26345,7 +26309,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 @@ -26565,7 +26528,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 @@ -26584,7 +26546,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 @@ -26666,7 +26627,6 @@ 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 @@ -27645,7 +27605,6 @@ cacao.supply, 1 cacaolalina.com, 1 cacareerzone.org, 1 cacaumidade.com.br, 1 -caccc.com, 1 cachacasantaterezinha.com.br, 1 cachaceros.tk, 1 cache-checker.com, 1 @@ -28055,6 +28014,7 @@ calposa.ml, 1 calref.ca, 1 calref.cc, 0 calsense.net, 1 +calu.me, 1 calucon.de, 1 caluette.com, 1 calumcrawford.com, 1 @@ -28731,6 +28691,7 @@ carboneventsupport.lu, 1 carbonholic.org, 1 carbonkiller.org, 1 carbonlib.com, 0 +carbonmapper.org, 1 carbonmonoxidelawyer.net, 1 carbonnel.me, 0 carbono.uy, 1 @@ -29647,10 +29608,10 @@ catchteamca.gov, 1 catchup-enschede.tk, 1 catcontent.cloud, 1 catcoxx.com, 1 +catcut.com, 1 catechese-ressources.com, 1 catedraderechonotarial.es, 1 catedraloscura.tk, 1 -catedralsantodomingo.org, 1 catego.info, 1 catenacondos.com, 1 caterbing.com, 1 @@ -29893,6 +29854,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 @@ -29925,7 +29887,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 @@ -31469,7 +31430,6 @@ childswear.tk, 1 childtaxcredit.gov, 1 childwelfare.gov, 1 chile.tk, 1 -chileprevencion.cl, 1 chiletrenes.tk, 1 chilhowieva.gov, 1 chili.ml, 1 @@ -31517,9 +31477,11 @@ chinacdn.org, 1 chinacheers.com, 1 chinaclone.com, 1 chinadream404.com, 1 +chinadrilling.com, 1 chinafree.online, 1 chinafree.site, 1 chinaglobalsecurities.cn, 1 +chinahd.com, 1 chinahealthcareblog.cf, 1 chinahitech.com, 1 chinaicpower.org, 0 @@ -31707,6 +31669,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 @@ -32117,7 +32080,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 @@ -32230,7 +32192,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 @@ -33653,7 +33614,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 @@ -33681,7 +33641,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 @@ -33789,7 +33748,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 @@ -33970,6 +33928,7 @@ codewaifu.com, 1 codewild.de, 1 codewitchbella.com, 0 codewithalisha.ga, 1 +codewithlove.blog, 1 codewrecks.com, 1 codex.online, 1 codezenith.com, 1 @@ -34196,6 +34155,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 @@ -34432,6 +34392,8 @@ combineconquer.com, 1 combloux.com, 1 combos-2020.tk, 1 combron.be, 1 +combron.co.uk, 1 +combron.com, 1 combron.nl, 1 combustion.tk, 1 comcenter.com, 1 @@ -34525,6 +34487,7 @@ comm-works.com, 1 comm.cx, 1 commagere.com, 1 command53.fr, 1 +commandeleven.com, 1 commander-seo.com, 1 commanderone.net, 1 commanderx.cf, 1 @@ -34944,13 +34907,19 @@ confer.ch, 1 conference-expert.eu, 1 conference.cafe, 1 conference.dnsfor.me, 1 +conferencemanager.ch, 1 conferencemanager.co.uk, 1 conferencemanager.de, 1 conferencemanager.dk, 1 conferencemanager.es, 1 conferencemanager.fr, 1 +conferencemanager.lt, 1 +conferencemanager.lv, 1 conferencemanager.nl, 1 conferencemanager.se, 1 +conferencemanager.uk, 1 +conferencemanager.us, 1 +conferencemanagerpro.com, 1 conferencemonkey.org, 1 conferenciaepiscopal.es, 1 confettidogs.com, 1 @@ -34958,7 +34927,7 @@ 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 @@ -36088,7 +36057,7 @@ cp-st-martin.be, 1 cp015.com, 1 cp017.com, 0 cp061.com, 0 -cpacharge.com, 0 +cpacharge.com, 1 cpadollar.cf, 1 cpagray.com, 0 cpanels.us, 1 @@ -36163,6 +36132,7 @@ cqswxx.com, 1 cqvradio.ddns.net, 0 cr.search.yahoo.com, 0 cr05.fr, 1 +cr3zyblog.com, 1 cr8haven.com, 1 cr9499.com, 1 cra-bank.com, 1 @@ -36221,7 +36191,7 @@ craftist.de, 1 craftmachinec.com, 1 craftmenu.ru, 1 craftmeow.com, 1 -craftmeow.support, 0 +craftmeow.support, 1 craftngo.hu, 1 craftottawa.ca, 1 craftshiponline.tk, 1 @@ -37362,7 +37332,7 @@ cuisine-ultime.fr, 1 cuitrau.tk, 1 cujanovic.com, 1 cujo.com, 1 -cukrinelape.com, 0 +cukrinelape.com, 1 cukurbag.ml, 1 culan.dk, 0 culetto.at, 1 @@ -37579,6 +37549,7 @@ 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 @@ -37969,7 +37940,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 @@ -37989,7 +37959,6 @@ cytat.tk, 1 cytech.com.tr, 1 cytegic-update-packages.com, 1 cytn.xyz, 1 -cytophil.com, 1 cyumus.com, 1 cyvault.io, 1 cyware.com, 1 @@ -38161,7 +38130,6 @@ 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 @@ -38358,6 +38326,7 @@ dal-loop.xyz, 1 dal.net.sa, 1 dalagore.com, 1 dalaran.city, 1 +dalat.blog, 1 dalb.in, 1 dalbar.com, 1 dalbarsqm.com, 1 @@ -38946,7 +38915,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 @@ -38966,7 +38934,6 @@ data-privacy.tk, 1 data-reader.de, 1 data-replicator.cloud, 1 data-replicator.com, 1 -data-room.nl, 1 data-servers.com, 1 data-wing.ga, 0 data.bayern, 1 @@ -39158,6 +39125,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 @@ -39306,9 +39274,7 @@ 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 @@ -39317,7 +39283,6 @@ davison.tech, 1 davisontwp-mi.gov, 1 davisvision.com, 1 davmimer-mercerie.ro, 1 -davoiceradio.com, 1 davorin.cf, 1 davosalestax.com, 1 davros.eu, 1 @@ -40870,6 +40835,7 @@ destroysilence.ml, 1 destruction-frelon-asiatique.com, 1 destructive-revolution.tk, 1 destructoradepapel.com.es, 1 +destruktiveridingkrew.com, 1 destudio.org.ua, 1 destuurmanskolk.nl, 1 destyntek.com, 1 @@ -41613,7 +41579,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 @@ -41752,7 +41717,7 @@ digitalcitizen.life, 1 digitalcoffeepodcast.com, 1 digitalcomponents.de, 1 digitalcompudev.biz, 1 -digitalcompudev.com, 0 +digitalcompudev.com, 1 digitalcourage.de, 1 digitalcraftmarketing.co.uk, 1 digitalcrisis.com, 1 @@ -42083,7 +42048,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 @@ -42216,7 +42180,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 @@ -42259,6 +42222,7 @@ disenowebakus.net, 1 disenowebgalicia.tk, 1 disenowebseoolmisur.com, 1 disepho.cl, 1 +disermex.mx, 1 diseworth.uk, 1 disfigured.tk, 1 disgruntledcode.com, 1 @@ -42438,7 +42402,6 @@ div12.org, 1 divacresent.tk, 1 divanogiusto.it, 1 divari.nl, 1 -divas.joburg, 1 divatri.tk, 1 divcoder.com, 1 dive-japan.com, 1 @@ -43276,6 +43239,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 @@ -43401,7 +43365,6 @@ 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 @@ -43975,7 +43938,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 @@ -43986,6 +43948,7 @@ downrightcute.com, 1 downset.tk, 1 downthebayoucharters.com, 1 downtoagony.tk, 1 +downtoearthjewelry.com, 1 downtownafrica.com, 1 downtownboise.org, 1 downtowncharm.is, 1 @@ -44091,7 +44054,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 @@ -44200,7 +44162,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 @@ -44229,7 +44190,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 @@ -44433,7 +44393,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 @@ -44783,6 +44742,7 @@ 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 @@ -45165,7 +45125,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 @@ -45279,6 +45238,7 @@ dvorekkarlin.cz, 1 dvoretsvramoni.ru, 1 dvorupotocnych.sk, 1 dvotx.org, 1 +dvpc.net, 1 dvu.com.tr, 1 dvwc.org, 1 dvx.cloud, 1 @@ -45436,7 +45396,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 @@ -45571,7 +45530,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 @@ -46248,7 +46206,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 @@ -46602,8 +46559,6 @@ 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 @@ -46677,7 +46632,6 @@ educaestado.com, 1 educanada.in, 1 educard.co.at, 1 educasis.tk, 1 -educatek.es, 1 educatie.tk, 1 education-colleges.com, 1 education-info.cf, 1 @@ -46814,7 +46768,6 @@ ee951.com, 0 ee9721.com, 0 ee9728.co, 1 ee973.com, 0 -eeagrants.cz, 1 eebt.hu, 1 eeeb.loan, 1 eeeeeeeeee.de, 1 @@ -46884,7 +46837,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 @@ -46909,7 +46861,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 @@ -47246,6 +47198,7 @@ ekeblock.com, 1 ekedc.com, 1 ekedp.com, 1 ekf.ee, 1 +ekfgroup.com, 1 ekgh.dk, 1 ekhabar.ml, 1 ekho.tk, 1 @@ -47328,7 +47281,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 @@ -47817,7 +47769,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 @@ -48003,7 +47954,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 @@ -48162,6 +48112,7 @@ embracezine.tk, 1 embraco.com, 0 embryologist.info, 1 embryooptions.com, 1 +emby.cloud, 1 emby.live, 1 emccglobal.org, 1 emceemanic.tk, 1 @@ -48191,7 +48142,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 @@ -48211,7 +48161,6 @@ emersonreview.tk, 1 emersya.com, 1 emex.ro, 1 emffren.com.tr, 1 -emgadvisors.com, 1 emi.im, 1 emielraaijmakers.nl, 1 emigrantes.tk, 1 @@ -48483,7 +48432,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 @@ -48597,6 +48545,7 @@ endviolence.gc.ca, 1 enecivilela.com, 1 enefit.com, 1 enefit.ee, 1 +enefit.lv, 1 enefitconnect.ee, 1 enefitgreen.com, 1 enefitgreen.ee, 1 @@ -49093,6 +49042,7 @@ eosinofilos.com, 1 eosol.de, 1 eosol.net, 1 eosol.services, 1 +eotvosoh.hu, 0 eov2.com, 1 ep-cortex.com, 1 ep-plus.jp, 1 @@ -49270,6 +49220,7 @@ 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 @@ -49365,7 +49316,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 @@ -49598,7 +49548,6 @@ esbuilders.co.nz, 0 esc-romania.tk, 1 esc-turkey.tk, 1 esc18.net, 1 -esc3.net, 1 esc9.net, 1 escae.ml, 1 escael.org, 1 @@ -49661,6 +49610,7 @@ escrocratie.tk, 1 escrowalliance.com, 1 escspain.tk, 1 escuelabiblica.com, 1 +escuelacaninalatejera.es, 1 escueladego.tk, 1 escueladelsabor.com, 1 escueladeministerioytecnologia.com, 1 @@ -49844,7 +49794,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 @@ -50574,7 +50523,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 @@ -50597,6 +50545,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 @@ -50648,6 +50597,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 @@ -50684,7 +50634,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 @@ -51242,9 +51191,9 @@ extremepeptides.com, 1 extremeprojects.tk, 1 extremeservicesandrestoration.com, 1 extremesports.tk, 1 +extremetreeandlandscape.com, 0 extremetunedcars.tk, 1 extremfrank.tk, 1 -extremovirtual.com, 1 extrolife.ml, 1 extromail.de, 1 extstore.com, 1 @@ -51583,7 +51532,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 @@ -52150,6 +52098,7 @@ 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 @@ -52388,7 +52337,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 @@ -53068,7 +53016,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 @@ -54821,7 +54768,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 @@ -55498,7 +55444,6 @@ forfeiture.gov, 1 forfortcollins.com, 1 forfunssake.co.uk, 1 forge.my.id, 1 -forgeary.com, 1 forgejo.cloud, 1 forgemedia.io, 1 forgetfulmomma.com, 1 @@ -55960,7 +55905,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 @@ -56057,7 +56001,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 @@ -56591,7 +56535,6 @@ 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 @@ -56658,7 +56601,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 @@ -56868,7 +56810,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 @@ -56943,7 +56884,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 @@ -56970,7 +56910,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 @@ -57296,7 +57235,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 @@ -57548,7 +57486,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 @@ -58328,7 +58265,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 @@ -58715,6 +58651,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 @@ -58770,7 +58707,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 @@ -58894,7 +58830,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 @@ -59224,6 +59159,8 @@ 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 @@ -59730,7 +59667,6 @@ getshouse.com, 1 getsilknow.com, 1 getsimone.online, 1 getsmartlife.in, 1 -getsmartlook.com, 1 getsocreative.com, 1 getspaces.com, 1 getstark.co, 1 @@ -59765,7 +59701,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 @@ -59963,7 +59898,6 @@ 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 @@ -59971,7 +59905,6 @@ 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 @@ -60329,7 +60262,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 @@ -60924,7 +60856,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 @@ -61065,7 +60996,6 @@ gokartwiki.com, 0 gokazakhstan.com, 1 gokgids.nl, 1 gokhankesici.com, 1 -gokiebox.com, 1 gokmenguresci.com, 1 gokoururi.com, 1 goksu.in, 1 @@ -61079,7 +61009,6 @@ 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 @@ -61110,7 +61039,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 @@ -61263,7 +61191,6 @@ gongjianwei.com, 1 gongjuhao.com, 1 gonintendo.com, 1 gonitro.com, 1 -gonoodle.com, 1 gonortheast.co.uk, 1 gonorthwest.co.uk, 1 gonumber.ga, 1 @@ -62127,7 +62054,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 @@ -62214,7 +62140,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 @@ -62337,7 +62262,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 @@ -62403,7 +62327,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 @@ -62791,7 +62714,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 @@ -62923,7 +62845,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 @@ -63013,7 +62935,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 @@ -64458,7 +64379,6 @@ 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 @@ -64477,7 +64397,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 @@ -64787,7 +64706,6 @@ healthbanfield.tk, 1 healthbank.io, 1 healthbeltsville.tk, 1 healthbinghamton.tk, 1 -healthbit.com.br, 1 healthblender.ga, 1 healthblod.ga, 1 healthbolton.tk, 1 @@ -65118,6 +65036,7 @@ heartcomms.com.au, 1 heartgames.pl, 1 hearthealing.ca, 1 hearthstonehungary.hu, 1 +hearthustlebrands.com, 1 heartlandbiomed.com, 1 heartlandbraidedrugs.com, 1 heartlandcocacola.com, 1 @@ -65566,7 +65485,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 @@ -65963,7 +65881,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 @@ -66248,7 +66165,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 @@ -66371,10 +66287,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 @@ -66662,6 +66576,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 @@ -66804,7 +66719,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 @@ -67499,7 +67413,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 @@ -67552,6 +67465,7 @@ hospitalsineachstate.com, 1 hospitalviladaserra.com.br, 1 hossi.pro, 0 hossien.tk, 1 +hossleylps.com, 1 host-heberg.com, 1 host-morezar.ml, 1 host-stage.net, 1 @@ -67883,7 +67797,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 @@ -68156,7 +68069,6 @@ hse-online.com, 1 hse-reglementaire.com, 1 hselectricalservices.com, 1 hsex.tv, 0 -hsg-lumdatal.de, 1 hsgms.de, 1 hsi.health, 1 hsivonen.com, 1 @@ -68782,7 +68694,6 @@ hydrozen.io, 1 hydrozone.fr, 1 hyds.com, 1 hyec.jp, 1 -hyex.com.au, 1 hygieneproclean.co.nz, 1 hygienet.be, 1 hygo.com, 1 @@ -69563,9 +69474,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 @@ -69795,7 +69705,6 @@ igva.or.kr, 1 ih8sn0w.com, 1 iha6.com, 1 ihacares.com, 1 -ihackear.com, 1 ihacker.ai, 1 ihakkitekin.com, 1 ihatereceipts.com, 1 @@ -69831,7 +69740,6 @@ 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 @@ -69854,7 +69762,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 @@ -69896,11 +69803,10 @@ 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 +ikaria.com.gr, 1 ikaros.tk, 1 ikarus-itkurs.de, 1 ikasgela.com, 1 @@ -69932,7 +69838,6 @@ iklan-baris.gq, 1 iklan.tk, 1 iklanbaris.tk, 1 ikmx.net, 1 -iknet.top, 1 iknowd.org, 1 iknowthatgirl.com, 1 ikoreg.nl, 1 @@ -70073,7 +69978,6 @@ illuxat.com, 1 ilmaestro.net, 1 ilmainensanakirja.fi, 1 ilmanifesto.it, 0 -ilmataat.ee, 1 ilmcorp.com, 1 ilmiogiardiniere.it, 1 ilmubahasainggris.com, 1 @@ -71456,7 +71360,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 @@ -71494,6 +71397,7 @@ inox-deurtrekkers.be, 1 inoxandco.com, 1 inparkmagazine.com, 1 inpas.co.uk, 1 +inpasa.com.br, 1 inpdp.tk, 1 inpector.de, 1 inposia.com, 1 @@ -72315,6 +72219,7 @@ ioga.tk, 1 iogamers.org, 1 iogm-official.id, 1 iograficathemes.com, 1 +ioh.lol, 1 iolabs.io, 1 ioliver.co.uk, 1 iololi.com, 1 @@ -72471,7 +72376,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 @@ -72865,7 +72769,6 @@ isimonbrown.co.uk, 1 isimonline.tk, 1 isincheck.com, 1 ising.pl, 1 -isiponline.ca, 1 isis.cloud, 1 isiso.com.tr, 1 isistomie.com, 0 @@ -73005,6 +72908,7 @@ ispartahaber.gq, 1 ispartahaber.tk, 1 ispc-synergies.org, 1 ispfontela.es, 1 +ispmedipv6.se, 1 isportsfab.com, 1 ispro-ng.com, 1 ispsoft.pro, 1 @@ -73404,7 +73308,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 @@ -73437,7 +73340,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 @@ -73604,6 +73506,7 @@ iww.mx, 1 iww.org.au, 1 iww.org.nz, 1 ix.run, 1 +ix8.ru, 0 ixiaqu.com, 0 ixir.gen.tr, 1 ixit.cz, 1 @@ -73648,7 +73551,6 @@ 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 @@ -73735,7 +73637,7 @@ j70444.com, 0 j70555.com, 0 j82365.com, 1 j8jp.com, 0 -j9.ag, 1 +j9.ag, 0 j9297.co, 1 j9297.com, 0 j9507.com, 0 @@ -73864,7 +73766,6 @@ jacksorrell.com, 1 jackspub.net, 1 jackstone.tk, 1 jacksutton.info, 1 -jacktor.com, 1 jackvaley.com, 1 jackwarren.info, 1 jackwilli.com, 1 @@ -73988,7 +73889,6 @@ 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 @@ -74115,6 +74015,7 @@ jammy4312.me, 1 jammysplodgers.co.uk, 1 jamonesrute.com, 1 jamonsilva.com, 1 +jamstallt.se, 1 jamstatic.fr, 0 jamukmod.com, 1 jamusa.tk, 1 @@ -74188,6 +74089,7 @@ jannisfink.de, 1 janokacer.sk, 1 janome.club, 1 janome.com.ua, 1 +janonis.com, 1 janoshida.hu, 1 janostheil.de, 1 janphilip-bernius.de, 1 @@ -74405,7 +74307,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 @@ -74656,7 +74557,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 @@ -75385,7 +75285,6 @@ jobanzeigen.de, 1 jobassadeurs.fr, 1 jobbkk.com, 1 jobbnorge.no, 1 -jobbsafari.no, 1 jobbsafari.se, 1 jobcenter.tk, 1 jobcie.com, 1 @@ -75547,7 +75446,6 @@ johannes-sprink.de, 0 johannes-zinke.de, 1 johannes.io, 1 johannes.wtf, 1 -johannesen.tv, 1 johannfritsche.de, 1 johanpeeters.com, 1 johansf.tech, 0 @@ -75644,7 +75542,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 @@ -75791,7 +75688,6 @@ joomladeveloper.ru, 1 joomlaguru.pl, 1 joompress.biz, 1 joona.pw, 1 -joonstudios.com, 1 joopzy.com, 1 joorshin.ir, 1 joostdeheer.nl, 1 @@ -76273,7 +76169,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 @@ -76363,7 +76258,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 @@ -76766,7 +76660,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 @@ -76856,7 +76749,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 @@ -77143,6 +77035,7 @@ kamitech.ch, 1 kamiyo.tk, 1 kamlunglelystad.tk, 1 kamnob.com, 1 +kamp-kisten.nl, 1 kampanyaradar.com, 1 kampffische.tk, 1 kampfsportschule-einherjar.de, 1 @@ -77388,7 +77281,6 @@ karlson.gq, 1 karlswift.com, 0 karlzotter.com, 1 karmaassurance.ca, 1 -karmadee.com, 1 karmaflux.com, 1 karmaful.de, 1 karmagroup.com, 1 @@ -77875,7 +77767,6 @@ keepleft.gr, 1 keeprunning.fun, 1 keepsakedna.com, 1 keepsight.org.au, 1 -keepsmyrnabeautiful.com, 1 keepsolid.com, 1 keesmartens.tk, 1 keesslop.nl, 1 @@ -78173,7 +78064,6 @@ keshankang.com, 1 keshankang.org, 1 keshausconsulting.com, 1 keshav.cc, 1 -keshavnet.com, 1 kesifasya.com, 1 kesinidulu.com, 1 keskikorpimotorsport.fi, 0 @@ -78891,7 +78781,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 @@ -78944,7 +78833,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 @@ -79188,7 +79076,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 @@ -79514,7 +79402,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 @@ -79552,6 +79439,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 @@ -79573,7 +79461,6 @@ koeldezomerdoor.nl, 1 koelnerkarneval.de, 1 koelnmafia.de, 1 koenberkhout.nl, 1 -koendiender.nl, 1 koenig-pflueger.de, 1 koenigsbrunner-tafel.de, 1 koenleemans.nl, 1 @@ -79831,7 +79718,6 @@ kontikiindustries.tk, 1 kontist.com, 1 kontorhaus-stralsund.de, 1 kontracrew.tk, 1 -kontramarka.ua, 1 kontrapolis.info, 1 kontrastonline.tk, 1 kontrolapovinnosti.cz, 1 @@ -79946,7 +79832,6 @@ korfezemlak.com, 1 korhonen.cc, 1 korikart.com, 1 korikart.net, 1 -korixa.com, 1 korkortet.tk, 1 korkortonline.se, 1 korn-klan.tk, 1 @@ -80262,6 +80147,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 @@ -80639,7 +80525,6 @@ ktw.lv, 0 ku-7.club, 1 ku-niederwinkling.de, 1 ku.ag, 1 -kua.com, 0 kuaforumden.com, 1 kuairead.com, 0 kuaishou.cf, 1 @@ -80882,7 +80767,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 @@ -80928,7 +80812,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 @@ -81177,7 +81060,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 @@ -81249,7 +81131,7 @@ 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 @@ -81431,7 +81313,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 @@ -81494,7 +81375,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 @@ -81901,7 +81781,6 @@ laperreraflamenca.tk, 1 lapesbaldai.lt, 1 lapetitefontaine.restaurant, 1 lapicena.eu, 1 -lapierrecabinetry.com, 1 lapina.tk, 1 lapinas.com, 1 lapinator.net, 1 @@ -81922,7 +81801,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 @@ -82020,7 +81898,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 @@ -82652,7 +82529,6 @@ leadgem.co.uk, 1 leadgenie.me, 1 leadinforce.com, 0 leadmusic.nl, 1 -leadnxt.co.in, 1 leadnxt.com, 1 leadonvale-stemcell.co.uk, 1 leadplan.ru, 0 @@ -82663,7 +82539,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 +82838,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 @@ -83513,7 +83387,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 @@ -83774,7 +83647,6 @@ lgp.go.th, 1 lgrs.com.au, 1 lgscripts.com.br, 1 lgsg.us, 1 -lgshop.cz, 1 lgstore.cz, 1 lgstore.sk, 1 lgsystem.cz, 1 @@ -85324,7 +85196,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 @@ -85380,6 +85252,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 @@ -85525,6 +85398,7 @@ 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 @@ -86274,6 +86148,7 @@ lousoyolos.fr, 1 loutro.tk, 1 louwlemmer.com, 1 louyu.cc, 1 +lov4affiliate.com, 1 lovcasino.com, 1 love-and-hate.cf, 1 love-books.ga, 1 @@ -86745,7 +86620,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 @@ -86802,7 +86676,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 @@ -86955,7 +86828,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 @@ -87410,7 +87282,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 @@ -87929,7 +87800,7 @@ mailsac.com, 1 mailsend.ml, 1 mailstart.ga, 1 mailstation.de, 1 -mailster.pt, 1 +mailster.pt, 0 mailsupport.cz, 1 mailtelligent.com, 1 mailtobiz.tk, 1 @@ -88434,7 +88305,6 @@ manhattanda.org, 1 manhattandermatologistsnyc.com, 1 manhattanfruitier.com, 1 manhattanks.gov, 1 -manhattanlife.com, 1 manhuagui.com, 1 manhwaamour.com, 1 mani.tw, 1 @@ -88629,7 +88499,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 @@ -88845,6 +88715,7 @@ margherita.cl, 1 margintoniks.fr, 1 margo-co.ch, 0 margo.ml, 1 +margolcia.com.pl, 1 margolis.gq, 1 margotbworldnews.tk, 1 margotdesign.ovh, 1 @@ -88898,6 +88769,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 @@ -89112,7 +88984,6 @@ markthisforme.com, 1 marktissink.nl, 1 markup-ua.com, 1 markus-blog.de, 1 -markus-dope.de, 1 markus-enzweiler.de, 1 markus-keppeler.de, 1 markus-musiker.de, 1 @@ -89351,6 +89222,7 @@ marxists.org, 1 marxmyths.org, 1 marxpark.tk, 1 mary-e-kay.tk, 1 +maryamghorbani.com, 1 maryannhaircpa.com, 1 marycliffpress.com, 1 marycowanceramics.com, 1 @@ -90000,6 +89872,7 @@ maxhorvath.com, 1 maxi-retail.ru, 1 maxibanki.ovh, 1 maxico.tk, 1 +maxigiga.com, 1 maxiglobal.net, 1 maxihide.tk, 1 maxihyp.de, 1 @@ -90416,7 +90289,6 @@ 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 @@ -90493,6 +90365,7 @@ mebeloffice.com.ua, 1 mebelok.com, 1 mebelradom.com, 1 mebelshik.tk, 1 +meblerymar.pl, 1 mebtall.ru, 1 mec.gub.uy, 1 mec010.com, 1 @@ -91074,6 +90947,7 @@ meditez.ca, 1 meditrak.ml, 1 medium.com, 1 mediums.cf, 1 +medivisionsc.com, 1 medivox.tk, 1 mediweed.tk, 1 mediziner-goettingen.tk, 1 @@ -91223,7 +91097,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 @@ -91546,6 +91419,7 @@ memorylines.ml, 1 memoryofyou.eu, 1 memoryplex.com, 1 memphisrap.com, 1 +memphisthemusical.com, 1 mempool.chat, 1 mempool.de, 1 mempool.ninja, 1 @@ -91752,6 +91626,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 @@ -92564,6 +92439,7 @@ midea.kg, 1 mideo.tk, 1 midesa.eu, 1 midesa.it, 1 +midgawash.com, 1 midi-olympique.fr, 1 midia.tk, 1 midiaid.de, 0 @@ -92890,13 +92766,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 @@ -93335,7 +93209,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 @@ -93428,7 +93301,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 @@ -94155,7 +94027,6 @@ mockers.tk, 1 mocknen.net, 1 mocksvillenc.org, 1 mocomoco.jp, 1 -mod.af, 0 mod.io, 1 moda-donna.cf, 1 moda-line.ml, 1 @@ -94187,7 +94058,7 @@ 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 @@ -94705,7 +94576,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 @@ -94903,7 +94773,6 @@ moort.be, 1 moosic.co, 1 moosikapp.ml, 1 moosikapp.tk, 1 -moosmann-moehrle.de, 1 moosmaus.tk, 1 moot-info.co.za, 1 moov.tk, 1 @@ -94914,7 +94783,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 @@ -95359,7 +95227,6 @@ moveonru.com, 1 movepin.com, 1 movetonewcastle.com.au, 1 movewellnesslab.com, 1 -movewithfiness.com, 1 moveyourass.tk, 1 movfun.ga, 1 movie-download.cz, 1 @@ -95662,7 +95529,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 @@ -95837,6 +95703,7 @@ 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 @@ -96768,7 +96635,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 @@ -96832,6 +96698,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 @@ -97551,7 +97418,6 @@ naap.tk, 1 naarenaa.tk, 1 naaronstoe.nl, 1 nab-services.ml, 1 -nabaleka.com, 1 nabc.com.au, 1 nabeer.ga, 1 nabeez.cf, 1 @@ -97592,7 +97458,6 @@ nacoree.ga, 1 nacres.tk, 1 nacsonline.tk, 1 nacua.org, 1 -nacudeck.com, 1 nacyklo.cz, 1 nad-r.com, 1 nada-photo.fr, 1 @@ -97824,7 +97689,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 @@ -98070,6 +97934,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 @@ -98299,7 +98164,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 @@ -99320,7 +99184,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 @@ -99403,7 +99266,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 @@ -99632,7 +99494,6 @@ newslia.org, 1 newsliner.gq, 1 newslookup.com, 1 newsmacro.org, 1 -newsmangas.fr, 1 newsmotor.info, 1 newsmyth.org, 1 newsnfl.tk, 1 @@ -99902,7 +99763,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 @@ -100711,7 +100571,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 @@ -100937,7 +100796,6 @@ nopajam.tk, 1 nopaste.eu, 1 nopaynocure.com, 1 nophelet.com, 1 -nopiamanual.net, 1 nopm.xyz, 1 nopropaganda.tk, 1 nopuedesdejarlopasar.es, 1 @@ -101058,7 +100916,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 @@ -101296,13 +101154,11 @@ notmyrealmail.com, 1 notnewz.tk, 1 notnize.net, 1 notnl.com, 1 -notofilia.com, 1 notokyc.com, 1 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 @@ -101733,7 +101589,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 @@ -101995,7 +101850,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 @@ -102008,7 +101862,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 @@ -102398,6 +102252,7 @@ ocenilla.tk, 1 ocenka-msfo.ru, 1 ocenka-nedv.ml, 1 ocenka.tk, 1 +ocennaswgoogle.pl, 1 ocf.io, 1 ocfelections.gov, 1 ocg-card.com, 1 @@ -102594,7 +102449,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 @@ -102607,7 +102461,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 @@ -102870,7 +102723,6 @@ okaidi.es, 1 okaidi.fr, 1 okaidi.ro, 1 okaidi.si, 1 -okami-no-tochi.com, 1 okanaybek.tk, 1 okash.it, 1 okashi.me, 1 @@ -102914,6 +102766,7 @@ oklahomaworkstogether.gov, 1 okmaybe.ca, 1 okmirror.net, 1 okmulgeecounty.gov, 1 +okmx.cloud, 1 okmx.de, 1 okna-tm.kz, 0 okna-vek.com.ua, 1 @@ -103010,7 +102863,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 @@ -103453,7 +103305,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 @@ -104026,7 +103877,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 @@ -104225,7 +104075,7 @@ 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 @@ -104309,7 +104159,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 @@ -104640,7 +104489,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 @@ -105147,7 +104995,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 @@ -105190,7 +105037,6 @@ owl.net, 1 owlandbee.co.uk, 1 owlandbee.eu, 1 owlandbee.uk, 1 -owlando.com, 1 owlandrabbitgallery.com, 1 owlazy.com, 1 owlbee.be, 1 @@ -105390,7 +105236,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 @@ -105785,7 +105630,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 @@ -105994,7 +105838,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 @@ -106099,7 +105943,6 @@ parachute.gov, 1 parachute.live, 1 parachutes.tk, 1 parachuteteam.co.uk, 1 -paracomer.es, 1 parade-nootdorp.nl, 1 paradex.io, 1 paradies-baar.ch, 1 @@ -106140,6 +105983,7 @@ 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 @@ -106223,6 +106067,7 @@ parfumer.tk, 1 parfumi-eu.com, 1 parfumi.tk, 1 parfumtester-100.ml, 1 +parhelionaerospace.com, 1 pari-match-betting.com, 1 pari-match.in, 1 pari-vinci.org, 1 @@ -106231,6 +106076,7 @@ paribus.io, 1 parichadrelax.se, 1 parideal.com, 1 parideal.de, 1 +paridokhtmoshkzad.com, 1 paridurable.com, 1 parikmaxeru.tk, 1 parimatch-best.com, 1 @@ -106277,7 +106123,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 @@ -106550,7 +106395,6 @@ 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 @@ -106728,7 +106572,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 @@ -106852,7 +106695,6 @@ pauljonathan.dk, 1 pauljrowland.co.uk, 1 pauljzak.com, 1 paullockaby.com, 1 -paullovestugba.nl, 1 paulmarc.org, 1 paulmarvin.tk, 1 pauloalcalde.co, 1 @@ -106997,7 +106839,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 @@ -107189,6 +107030,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 @@ -107222,7 +107064,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 @@ -107314,7 +107155,6 @@ pearcom.co.uk, 1 pearlcohen.com, 1 pearle.nl, 1 pearljamargentina.tk, 1 -pearloc.com, 1 pearlsonly.ca, 1 pearlsonly.com, 1 pearlsonly.com.au, 1 @@ -107449,7 +107289,6 @@ pegasnet.tk, 1 pegdown.org, 1 pegrum.rocks, 1 pegundugun.tk, 1 -peifeng.li, 1 peifi.de, 0 peinture-77.fr, 1 peippo.at, 1 @@ -107476,7 +107315,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 @@ -107506,7 +107344,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 @@ -107712,6 +107549,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 @@ -108300,6 +108138,7 @@ pgnetwork.net, 1 pgnetwork.org, 1 pgp.lol, 1 pgp.net, 1 +pgp.network, 1 pgp.org.au, 1 pgpaintanddesign.com, 1 pgpmail.cc, 1 @@ -108413,6 +108252,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 @@ -108516,6 +108356,7 @@ phoenixpower.tk, 1 phoenixsalon.eu, 1 phoenixurbanspaces.com, 1 phoenixville.online, 1 +phoenixwebsitedesign.com, 1 phographer.com, 1 pholio.com, 1 phone-service-center.de, 1 @@ -109108,7 +108949,6 @@ pinklecfest.org, 1 pinklittlenotebook.com, 1 pinkmango.travel, 0 pinkoi.com, 1 -pinkoz.xyz, 1 pinkpearl.tk, 1 pinkplay.com.br, 1 pinkpop.nl, 1 @@ -109593,9 +109433,9 @@ planetmetroidprime.tk, 1 planetmobile.tk, 1 planetmugen.tk, 1 planetonline.tk, 1 +planetpayment.com, 1 planetpowershell.com, 1 planetradio.tk, 1 -planetreinvention.com, 1 planetromeo.com, 1 planetromeofoundation.org, 1 planetscale.com, 1 @@ -111069,6 +110909,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 @@ -111295,7 +111136,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 @@ -112064,6 +111904,7 @@ prismosystems.com, 1 prisonerresource.com, 1 pristinegrace.org, 1 pristinepotty.com, 1 +prisync.com, 1 pritchi.tk, 1 pritti-wummen.de, 1 priv.au, 1 @@ -112355,7 +112196,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 @@ -113521,7 +113361,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 @@ -113744,6 +113583,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 @@ -115136,6 +114976,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 @@ -115240,12 +115081,12 @@ rancowar.com, 1 randallcounty.gov, 1 randallcraig.com, 1 randallso.gov, 1 +randburgplumber-247.co.za, 1 randburgplumbing.co.za, 1 randc.org, 1 randolf.ca, 1 randolphcountyal.gov, 1 randolphcountyil.gov, 1 -random-project.com, 1 random-samplings.org, 1 random.org, 1 randomactsofkindness.org, 1 @@ -115589,7 +115430,7 @@ raywardapparel.com, 1 raywisdom.tk, 1 raywjohnson.com, 1 raywjohnson.info, 1 -raywjohnson.net, 1 +raywjohnson.me, 1 rayworks.de, 1 razakhanimazhab.tk, 1 razalabs.com, 1 @@ -115777,7 +115618,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 @@ -116104,7 +115944,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 @@ -116878,7 +116717,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 @@ -117008,7 +116847,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 @@ -117201,7 +117039,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 @@ -117217,6 +117054,7 @@ rescuer.tk, 1 research-panel.jp, 1 research.facebook.com, 0 researchmarathi.com, 1 +researchresults.com, 1 researchstory.com, 1 researchtriangle.org, 1 researchwriting.co.uk, 1 @@ -117632,7 +117470,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 @@ -117747,7 +117584,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 @@ -117792,7 +117628,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 @@ -117907,7 +117742,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 @@ -118403,7 +118238,6 @@ robbiebird.tk, 1 robbiecrash.me, 1 robbielowe.co, 1 robbievasquez.com, 1 -robbins-construction.com, 1 robbinsdalemn.gov, 1 robbrestyle.com, 1 robbyzworld.cf, 1 @@ -118553,6 +118387,7 @@ rock4life.be, 1 rocka.me, 1 rockabilly-sinners.tk, 1 rockadocious.com, 1 +rockagogo.com, 1 rockandroll.tk, 1 rockbandparty.com, 1 rockbankland.com.au, 1 @@ -118643,7 +118478,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 @@ -118668,6 +118502,7 @@ rodeoimport.com, 1 rodeosales.co.uk, 1 rodest.net, 0 rodevlaggen.nl, 1 +rodgersawnings.com, 1 rodichi.net, 1 rodin.tk, 1 rodinka.tk, 1 @@ -119472,7 +119307,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 @@ -119999,7 +119833,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 @@ -120106,7 +119939,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 @@ -120233,7 +120065,6 @@ sabharwallawfirm.ca, 1 sabians.tk, 1 sabiasque.pt, 1 sabine-forschbach.de, 1 -sabinearendt.de, 1 sabineforschbach.de, 1 sablanout.com, 1 sable.gq, 1 @@ -120374,7 +120205,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 @@ -120619,6 +120449,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 @@ -120773,7 +120604,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 @@ -120873,6 +120703,7 @@ samara-hosting.tk, 1 samarhotel.com, 1 samaritainsmeyrin.ch, 0 samarpanfurniture.com, 1 +samarth.edu.in, 1 samarthtyagi.tk, 1 samatva-yogalaya.com, 1 samba.org, 1 @@ -121053,7 +120884,6 @@ sandbox.mydigipass.com, 0 sandelduggal.com, 1 sander.sh, 1 sanderdesign.tk, 1 -sanderdorigo.nl, 1 sanderkoenders.eu, 1 sanderkoenders.nl, 1 sanderpoppe.com, 0 @@ -121587,7 +121417,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 @@ -122012,6 +121841,7 @@ 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 @@ -122210,7 +122040,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 @@ -122393,7 +122222,6 @@ scphotography.co.uk, 1 scpidcard.com, 1 scpocahontas.nl, 1 scpower.sg, 1 -scpricope.com, 1 scpsecretlab.com, 1 scpsecretlab.pl, 1 scpsecretlaboratory.com, 1 @@ -122574,7 +122402,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 @@ -123271,7 +123098,6 @@ semparar.com.br, 1 sempersolaris.com, 1 semplicementelight.com, 1 sempoctet.ca, 1 -sempreupdate.com.br, 1 semps-2fa.de, 1 semps-threema.de, 1 semps.de, 1 @@ -123451,7 +123277,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 @@ -124568,8 +124393,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 @@ -124854,7 +124677,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 @@ -125553,7 +125375,6 @@ silberkiste.com, 1 silbox.ch, 1 sildenafilcitrate.cf, 1 sildenafilcitrate100mg.ga, 1 -sildenafilvpill.com, 1 silensoclinic.com, 1 silent-clean.de, 1 silent.quest, 1 @@ -125862,7 +125683,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 @@ -126713,7 +126533,6 @@ 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 @@ -126770,7 +126589,6 @@ skytown.ga, 1 skytterlogg.no, 1 skytterloggen.no, 1 skyvault.io, 1 -skyviewtowers.com, 1 skywalkersa.ga, 1 skywatch.com, 1 skywindowsnj.com, 1 @@ -126835,7 +126653,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 @@ -126898,7 +126715,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 @@ -127099,7 +126915,6 @@ smanson.duckdns.org, 1 smaragderna.cf, 1 smaragderna.ga, 1 smaragderna.tk, 1 -smares.de, 1 smaridibor.tk, 1 smarinintgal.tk, 1 smarpshare.com, 1 @@ -127200,10 +127015,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 @@ -127598,6 +127411,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 @@ -127675,7 +127489,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 @@ -128166,6 +127979,7 @@ 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 @@ -128494,7 +128308,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 @@ -128834,7 +128647,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 @@ -128852,7 +128664,6 @@ spainpol.es, 1 spajk.cz, 1 spalnobelyo.com, 1 spaltron.net, 1 -spamasaurus.com, 1 spamcage.com, 1 spamdrain.com, 1 spamedica.com.co, 1 @@ -129009,7 +128820,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 @@ -129501,6 +129312,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 @@ -130363,7 +130175,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 @@ -130777,7 +130588,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 @@ -130984,7 +130794,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 @@ -131284,7 +131093,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 @@ -132158,7 +131966,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 @@ -132498,7 +132305,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 @@ -132510,7 +132316,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 @@ -132618,7 +132423,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 @@ -132807,7 +132611,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 @@ -132898,6 +132701,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 @@ -133017,7 +132821,7 @@ swentr.site, 1 swerve-media-testbed-03.co.uk, 1 swet.com.ua, 1 swetrust.com, 1 -swey.net, 0 +swey.net, 1 swfmax.com, 1 swgoh4.life, 1 swha.xyz, 1 @@ -133556,28 +133360,28 @@ t7e.de, 1 t7tech.net, 1 t8.software, 1 t82365.com, 1 -t8803.com, 0 -t8805.com, 0 -t8807.com, 0 -t8809.com, 0 -t8815.com, 0 -t8817.com, 0 -t8819.com, 0 -t8830.com, 0 +t8803.com, 1 +t8805.com, 1 +t8807.com, 1 +t8809.com, 1 +t8815.com, 1 +t8817.com, 1 +t8819.com, 1 +t8830.com, 1 t88gg.com, 1 -t88jj.com, 0 -t88mm.com, 0 -t88nn.com, 0 -t88oo.com, 0 -t88ss.com, 0 -t88vip0.com, 0 -t88vip1.com, 0 -t88vip2.com, 0 -t88vip3.com, 0 -t88vip4.com, 0 +t88jj.com, 1 +t88mm.com, 1 +t88nn.com, 1 +t88oo.com, 1 +t88ss.com, 1 +t88vip0.com, 1 +t88vip1.com, 1 +t88vip2.com, 1 +t88vip3.com, 1 +t88vip4.com, 1 t88vip5.com, 0 -t88vip6.com, 0 -t88vip7.com, 0 +t88vip6.com, 1 +t88vip7.com, 1 t88ww.com, 1 t88yy.com, 1 t8software.cn, 1 @@ -133685,7 +133489,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 @@ -133693,7 +133496,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 @@ -133798,7 +133600,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 @@ -134509,7 +134311,6 @@ tbspace.de, 1 tbsunday.tk, 1 tbtech.cz, 1 tbuchloh.de, 1 -tbun.de, 1 tbunews.com, 1 tbunews.info, 1 tbwa.com, 1 @@ -134838,6 +134639,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 @@ -134909,7 +134711,6 @@ techassist.io, 0 techatt.com, 1 techava.ru, 1 techbelife.com, 1 -techbin.org, 1 techbizidea.com, 1 techbmc.com, 1 techbrawl.org, 1 @@ -135210,7 +135011,6 @@ tecit.ch, 1 tecke.tk, 1 teckgeekz.com, 1 tecknobox.fr, 1 -tecknologg.website, 1 teckprojects.com, 1 tecmarkdig.com, 1 tecmestre.com.br, 1 @@ -135887,7 +135687,6 @@ test-privacyportal-ui.azurewebsites.net, 1 test-school.ml, 1 test-textbooks.com, 1 test.de, 1 -test.io, 1 test1-isrewards.com, 1 test2-isrewards.com, 1 test4pro.ga, 1 @@ -136124,7 +135923,6 @@ tfw-a.com, 1 tfx.com.br, 1 tfxstartup.com, 1 tfxstartup.com.br, 1 -tfyre.co.za, 1 tg2sclient.com, 1 tgb.org.uk, 1 tgcfabian.nl, 1 @@ -136271,7 +136069,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 @@ -136375,7 +136172,6 @@ thebakery2go.de, 1 thebalancedsystem.org, 1 thebannerstore.com, 1 thebarclay.org, 1 -thebarkofhinkle.com, 1 thebarrens.nu, 1 thebasementdefender.com, 1 thebasementdefender.net, 1 @@ -136753,7 +136549,6 @@ 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 @@ -136841,7 +136636,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 @@ -136857,7 +136651,6 @@ 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 @@ -137105,7 +136898,6 @@ theocratic.tk, 1 theocrazzolara.tk, 1 theodorahome.co, 1 theodorahome.com.br, 1 -theodoreroosevelt.org, 1 theodorojr.com.br, 1 theofficeofangelascott.com, 1 theofleck.com, 0 @@ -138774,6 +138566,7 @@ tnb-plattform.de, 1 tncrtinfo.com, 1 tndagc.gov, 1 tndentalwellness.com, 1 +tnes.dk, 1 tnmsc.com, 1 tnonline.net, 1 tnosha.gov, 1 @@ -139472,7 +139265,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 @@ -139487,7 +139279,7 @@ 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 @@ -140214,7 +140006,7 @@ tpk-parma.ru, 1 tpk.quest, 1 tplak.com, 1 tpldevsg-mythiess-dev.azurewebsites.net, 1 -tplive.io, 1 +tplive.io, 0 tplprodsg-mythiess.azurewebsites.net, 1 tpltestsg-mythiess-test.azurewebsites.net, 1 tpolemis.com, 1 @@ -140519,7 +140311,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 @@ -140587,7 +140378,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 @@ -140651,7 +140441,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 @@ -140935,7 +140724,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 @@ -141106,7 +140894,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 @@ -141198,7 +140985,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 @@ -141213,7 +140999,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 @@ -141492,7 +141277,6 @@ truetraveller.com, 1 truetrophies.com, 1 truetype.tech, 1 truewateraustralia.com, 1 -trueweb.es, 1 truewinter.net, 1 truework.com, 1 trueworlds.net, 1 @@ -141590,6 +141374,7 @@ try2admin.pw, 1 try2hack.it, 1 tryaatos.com, 1 trybabyschoice.com, 1 +trybooking.com, 1 trycaviar.com, 1 trychameleon.com, 1 trydoggo.com, 1 @@ -141729,29 +141514,29 @@ tsybanov.com, 1 tt-aepfingen.tk, 1 tt-hardware.com, 1 tt.gt, 1 -tt0766.com, 0 -tt0966.com, 0 -tt2866.com, 0 -tt2966.com, 0 +tt0766.com, 1 +tt0966.com, 1 +tt2866.com, 1 +tt2966.com, 1 tt3666.com, 1 -tt3699.com, 0 +tt3699.com, 1 tt3766.com, 0 -tt3999.com, 0 +tt3999.com, 1 tt5197.co, 1 tt6729.co, 1 tt6729.com, 1 tt6957.co, 1 -tt7199.com, 0 -tt7299.com, 0 -tt7399.com, 0 -tt8166.com, 0 -tt8266.com, 0 -tt8366.com, 0 +tt7199.com, 1 +tt7299.com, 1 +tt7399.com, 1 +tt8166.com, 1 +tt8266.com, 1 +tt8366.com, 1 tt9297.co, 1 tt9397.com, 0 tt9721.com, 1 tt9728.co, 1 -tt9799.com, 0 +tt9799.com, 1 ttb.gov, 1 ttbonline.gov, 1 ttc-birkenfeld.de, 1 @@ -142477,6 +142262,7 @@ tyinnovations.com, 1 tyk.io, 1 tyl.io, 1 tyler.rs, 1 +tylerdavies.net, 1 tylerdurden.ml, 1 tylergordonhill.com, 1 tylerharcourt.com, 1 @@ -142528,7 +142314,6 @@ typingcheck.ga, 1 typist.tech, 1 typo3.com, 1 typosphere.fr, 1 -typr.com, 1 tyr0wl.com, 1 tyrael.eu, 1 tyraga.ga, 1 @@ -142566,7 +142351,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 @@ -142895,6 +142679,7 @@ 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 @@ -143304,6 +143089,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 @@ -143650,6 +143436,7 @@ unusualhatclub.com, 1 unusualplaces.org, 1 unveiledgnosis.com, 1 unveilturkey.com, 1 +unviajedesabor.com, 1 unvired.com, 1 unwa.tk, 1 unwire.com, 1 @@ -143883,7 +143670,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 @@ -144269,7 +144055,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 @@ -144881,6 +144666,7 @@ 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 @@ -145101,7 +144887,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 @@ -146417,7 +146202,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 @@ -146477,6 +146261,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 @@ -146834,6 +146619,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 @@ -147542,7 +147328,6 @@ vpsmore.com, 1 vpsou.com, 1 vpsport.ch, 1 vpsproj.dynu.net, 1 -vpsrussia.com, 1 vpstrial.net, 1 vpsvz.cloud, 1 vpsvz.ninja, 1 @@ -147567,7 +147352,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 @@ -148589,7 +148373,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 @@ -149135,7 +148918,7 @@ 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 @@ -149155,7 +148938,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 @@ -149354,7 +149136,6 @@ webyourself.eu, 1 webz.one, 1 webzanem.com, 1 webzarabotok.tk, 1 -webzschema.in, 1 wecanvisit.com, 1 wecareplatform.nl, 1 weccode.com, 1 @@ -149599,7 +149380,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 @@ -149608,7 +149388,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 @@ -149835,7 +149615,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 @@ -149923,7 +149702,6 @@ wgplatform.co.uk, 1 wgraphics.ru, 1 wgrfoods.co.uk, 1 wgrlc.vic.gov.au, 1 -wgrstudio.com, 1 wgsh.de, 1 wgsuyi.cf, 1 wgtrm.com, 1 @@ -150017,7 +149795,6 @@ wheelingisland.com, 1 wheelspin.ga, 1 wheelwide.co.uk, 1 wheelwork.org, 0 -wheelworxrefinishing.com, 1 wheely.com, 1 wheelycool.tech, 1 wheelycoolgear.com, 1 @@ -151248,7 +151025,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 @@ -151458,7 +151234,6 @@ woohoo.in, 1 woohooyeah.nl, 1 wookstar.com, 1 woolfplumbing.com.au, 1 -woolworks.co.nz, 1 woolyss.com, 1 woomu.me, 1 woonaval.eu, 1 @@ -151873,7 +151648,6 @@ wp2static.com, 1 wpac.de, 1 wpandup.org, 1 wpautolistings.com, 1 -wpbeter.nl, 1 wpboot.com, 1 wpboys.com, 0 wpbrigade.com, 1 @@ -153232,6 +153006,7 @@ xn--80aejljbfwxn.xn--p1ai, 1 xn--80affa6ai0a.tk, 1 xn--80afvgfgb0aa.xn--p1ai, 1 xn--80ah4f.xn--p1ai, 1 +xn--80ahclcaoccacrhfebi0dcn5c1jh.xn--p1ai, 1 xn--80ahjdhy.tk, 1 xn--80ahnefiifo0g.xn--p1ai, 1 xn--80aihgal0apt.xn--p1ai, 1 @@ -154295,7 +154070,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 @@ -154474,7 +154248,6 @@ yclan.net, 1 ycnrg.org, 1 ycnxp.com, 1 ycodendauteradio.net, 1 -ycylf.cc, 1 yd.io, 1 yd163.cc, 1 yd169.cc, 1 @@ -154675,6 +154448,8 @@ yigit.shop, 1 yiguan.me, 1 yigujin.cn, 1 yiheng.moe, 0 +yihome.com.tw, 1 +yihome.tw, 1 yihouse.tw, 1 yijia.support, 1 yijingying.com, 0 @@ -154914,7 +154689,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 @@ -155253,7 +155028,6 @@ 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 @@ -155580,6 +155354,7 @@ z9721.com, 1 z9728.co, 1 z99944x.xyz, 1 za.search.yahoo.com, 0 +zaagbaak.nl, 1 zaalleatherwear.nl, 1 zaanlijn.nl, 1 zaba.training, 1 @@ -155832,7 +155607,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 @@ -156402,7 +156176,6 @@ ziaiai.com, 1 ziarajoias.com.br, 1 ziaulnmonzur.tk, 1 zidanpainting.com, 0 -ziddea.com, 1 ziegenhagel.com, 1 ziegler-heizung-frankfurt.de, 1 zielonakarta.com, 1 @@ -156538,7 +156311,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 @@ -156800,7 +156572,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 diff --git a/services/settings/dumps/blocklists/addons-bloomfilters.json b/services/settings/dumps/blocklists/addons-bloomfilters.json index c49d84c61ac2b..b6477a3a651fd 100644 --- a/services/settings/dumps/blocklists/addons-bloomfilters.json +++ b/services/settings/dumps/blocklists/addons-bloomfilters.json @@ -1,5 +1,18 @@ { "data": [ + { + "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": [ @@ -3220,5 +3233,5 @@ "last_modified": 1690223886167 } ], - "timestamp": 1702989358799 + "timestamp": 1703270156552 } diff --git a/services/settings/dumps/security-state/intermediates.json b/services/settings/dumps/security-state/intermediates.json index 755b7d4ca6c23..af66b110d0352 100644 --- a/services/settings/dumps/security-state/intermediates.json +++ b/services/settings/dumps/security-state/intermediates.json @@ -1,5 +1,41 @@ { "data": [ + { + "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=", @@ -29611,5 +29647,5 @@ "last_modified": 1559865884636 } ], - "timestamp": 1702979823409 + "timestamp": 1703537823229 } From 383d8905bdcb732dd4590bc2b502a059ae4967f9 Mon Sep 17 00:00:00 2001 From: donal meehan <dmeehan@mozilla.com> Date: Thu, 28 Dec 2023 15:23:58 -0500 Subject: [PATCH 11/46] Backed out 2 changesets (bug 1865689) for causing test failures Backed out changeset 18a676f4bf5d (bug 1865689) Backed out changeset f1e03fbd5a76 (bug 1865689) --- .../addon/webextension-inspected-window.js | 99 +++--- .../inspected-window/tests/browser.ini | 8 - .../browser_webextension_inspected_window.js | 42 +++ ...er_webextension_inspected_window_access.js | 315 ------------------ 4 files changed, 87 insertions(+), 377 deletions(-) delete mode 100644 devtools/shared/commands/inspected-window/tests/browser_webextension_inspected_window_access.js diff --git a/devtools/server/actors/addon/webextension-inspected-window.js b/devtools/server/actors/addon/webextension-inspected-window.js index e69a206c9d1cf..e981874a16c64 100644 --- a/devtools/server/actors/addon/webextension-inspected-window.js +++ b/devtools/server/actors/addon/webextension-inspected-window.js @@ -103,50 +103,6 @@ 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; @@ -552,22 +508,57 @@ class WebExtensionInspectedWindowActor extends Actor { }); } - if ( - !extensionAllowedToInspectPrincipal( - extensionPolicy, - window.document.nodePrincipal - ) - ) { - // Log the error for the user to know that the extension request has been - // denied (the extension may not warn the user at all). + // 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(); - // The error message is generic here. If access is disallowed, we do not - // expose the URL either. + // 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") + ) { + logEvalDenied(); + + return createExceptionInfoResult({ + description: "Inspector protocol error: %s %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 1904a2dbdd3f2..69c027e9bc1b0 100644 --- a/devtools/shared/commands/inspected-window/tests/browser.ini +++ b/devtools/shared/commands/inspected-window/tests/browser.ini @@ -8,12 +8,4 @@ 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] \ 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 bf2b752e4d5a7..8054a7b5e5778 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,6 +233,48 @@ 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 deleted file mode 100644 index 3b32bb0aaabfa..0000000000000 --- a/devtools/shared/commands/inspected-window/tests/browser_webextension_inspected_window_access.js +++ /dev/null @@ -1,315 +0,0 @@ -/* 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": `<!DOCTYPE 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": `<!DOCTYPE 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(); -}); From 8cb2814fcea5900726c5996b207cfcfbeaf42a8b Mon Sep 17 00:00:00 2001 From: Mike Hommey <mh+mozilla@glandium.org> Date: Fri, 29 Dec 2023 20:11:36 +0000 Subject: [PATCH 12/46] Bug 1868998 - Mark custom-car jobs as running nowhere and not being cached. r=taskgraph-reviewers,kshampur,jcristau a=release They are triggered via cron, so an empty run-on-projects should be the appropriate config. As they are not idempotent (they will pick the last from upstream on each run), they also shouldn't be cached. --- taskcluster/ci/toolchain/misc.yml | 6 ++++++ 1 file changed, 6 insertions(+) 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: [ From f681eaff81e7ad4df6a30533868c37063254d59c Mon Sep 17 00:00:00 2001 From: Mike Hommey <mh+mozilla@glandium.org> Date: Mon, 11 Dec 2023 20:11:58 +0000 Subject: [PATCH 13/46] Bug 1869128 - Fix llvm-symbolizer condition in build-sm.sh. r=firefox-build-system-reviewers,sergesanspaille a=npotb Differential Revision: https://phabricator.services.mozilla.com/D195960 --- taskcluster/scripts/builder/build-sm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From b18dd447c6581302bc7832b59830ef09b7cbfdc3 Mon Sep 17 00:00:00 2001 From: ffxbld <ffxbld@mozilla.com> Date: Mon, 1 Jan 2024 10:55:40 +0000 Subject: [PATCH 14/46] No Bug, mozilla-esr115 repo-update HSTS HPKP remote-settings - a=repo-update, r=dmeehan Differential Revision: https://phabricator.services.mozilla.com/D197473 --- security/manager/ssl/StaticHPKPins.h | 2 +- security/manager/ssl/nsSTSPreloadList.inc | 392 ++++++------------ .../dumps/blocklists/addons-bloomfilters.json | 16 +- .../dumps/security-state/intermediates.json | 20 +- 4 files changed, 141 insertions(+), 289 deletions(-) diff --git a/security/manager/ssl/StaticHPKPins.h b/security/manager/ssl/StaticHPKPins.h index 9a05fb9be4b02..b5843dc12d143 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(1712227835557000); +static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1712573485417000); diff --git a/security/manager/ssl/nsSTSPreloadList.inc b/security/manager/ssl/nsSTSPreloadList.inc index dfbd0bac90356..7442d6a549c5a 100644 --- a/security/manager/ssl/nsSTSPreloadList.inc +++ b/security/manager/ssl/nsSTSPreloadList.inc @@ -8,7 +8,7 @@ /*****************************************************************************/ #include <stdint.h> -const PRTime gPreloadListExpirationTime = INT64_C(1714647032550000); +const PRTime gPreloadListExpirationTime = INT64_C(1714992681893000); %% 0--1.de, 1 0-0.io, 1 @@ -1289,7 +1289,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714647032550000); 1800petmeds.com, 1 180btt.com, 1 181k8.com, 1 -181ks.net, 1 181z6.com, 1 1820301.com, 1 1820302.com, 1 @@ -1515,7 +1514,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714647032550000); 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 @@ -2426,7 +2425,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714647032550000); 3178g.com, 0 3178h.com, 0 3178i.com, 0 -3178jjj.com, 0 3178l.com, 0 3178m.com, 0 3178n.com, 0 @@ -7021,7 +7019,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 @@ -7791,8 +7788,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 @@ -7837,7 +7832,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 @@ -8291,7 +8285,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 @@ -8376,7 +8369,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 @@ -8390,7 +8382,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 @@ -8400,7 +8391,6 @@ adultgames.pro, 1 adultmalecontent.com, 1 adultshop.com.au, 0 adultwebcams1.com, 1 -aduro.com.tr, 1 adurra.com, 1 adutoras.com.br, 1 adv.cr, 0 @@ -9402,7 +9392,6 @@ ahd.com, 0 ahealthyjourney.ca, 1 ahegaoroulette.com, 1 ahelos.tk, 1 -ahero4all.org, 1 ahezu.com, 1 ahg-offices.fr, 1 ahhcomfortshoes.com, 1 @@ -10232,7 +10221,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 @@ -10319,10 +10307,8 @@ akl.city, 1 aklagare.se, 1 akmatrix.org, 1 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 @@ -10774,7 +10760,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 @@ -10789,7 +10774,6 @@ 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 @@ -11228,6 +11212,7 @@ alldigitalsolutions.com, 1 alldm.ru, 1 alldogs.tk, 1 alldrives.tk, 1 +alle-zonvakanties.nl, 1 alle.bg, 1 alle.com, 1 allefrisuren.de, 1 @@ -12013,6 +11998,7 @@ amagdic.com, 1 amagical.net, 0 amagraduates.tk, 1 amagroup.io, 1 +amaisd.org, 1 amaiz.com, 1 amalbansode.com, 1 amalfi5stars.com, 1 @@ -13437,7 +13423,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 @@ -13697,6 +13682,7 @@ antiquario.roma.it, 1 antique-pedalcars.ch, 1 antiquecenter.gq, 1 antiquefirearms.tk, 1 +antiquemotorcycle.org, 1 antiquesinvestorsest.ga, 1 antireklams.tk, 1 antirepressionbayarea.com, 1 @@ -13867,7 +13853,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 @@ -14259,6 +14244,7 @@ apple.markets, 1 apple.tf, 1 apple.wf, 1 apple77.net, 1 +applebee1558.com, 1 applecare.cz, 1 appledroid.ru, 1 appleedu.com, 1 @@ -15582,8 +15568,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 @@ -16270,7 +16254,6 @@ atelierbw.com, 1 atelierdelacreation.com, 1 atelierdeloulou.fr, 1 atelierdesflammesnoires.fr, 1 -atelierdosorrisoalmancil.pt, 1 atelierfantazie.sk, 1 atelierferro.be, 1 atelierhsn.com, 1 @@ -16540,7 +16523,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 @@ -16617,6 +16599,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 @@ -16976,7 +16959,6 @@ autocmall.com, 1 autocoder.chat, 1 autoconcept.ga, 1 autoconcept.tk, 1 -autocont.cz, 1 autocorner.com, 1 autocross.tk, 1 autocrossfoto.tk, 1 @@ -17065,6 +17047,7 @@ automobile-propre.com, 1 automobileescrowers.ga, 1 automobileescrowest.ga, 1 automobiliteit.nl, 1 +automods.com.au, 1 automodulegods.com, 1 automotive.org.ua, 1 automotiveabundant.ga, 1 @@ -18600,7 +18583,6 @@ badnat.tk, 1 badnjar.rs, 1 badodds.ga, 1 badoinkvr.com, 1 -badoo.com, 1 badoo.com.ar, 1 badoo.de, 1 badoo.eu, 1 @@ -18818,6 +18800,7 @@ balancenaturalhealthclinic.ca, 1 balancer.gq, 1 balancingbird.net, 1 balancingbirthbaby.com, 1 +balancingeverything.com, 1 balanda.ga, 1 balashiha-podmoskovie.ml, 1 balasingandaru.cf, 1 @@ -19418,7 +19401,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 @@ -20269,6 +20251,7 @@ beersheba.co.il, 1 beersheva.city, 1 beersheva.co.il, 1 beerview.ga, 1 +beerwallpa.com, 1 beerxa.cz, 1 beescloud.com, 1 beesco.us, 1 @@ -20348,7 +20331,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 @@ -21021,8 +21003,6 @@ bespokebathrooms.com.au, 1 bespokespeaker.uk, 1 bespredel.tk, 1 bessels.tk, 1 -bessems.com, 1 -bessems.eu, 1 besser-beissen.de, 1 besser-golfen.tk, 1 besslavnye-ublyudki.tk, 1 @@ -21106,6 +21086,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 @@ -22393,7 +22374,6 @@ biloxihistoricalsociety.org, 0 biloxisportfishing.com, 1 bilsho.com, 1 biltmoreatthepark.com, 1 -biltullen.com, 1 bim.finance, 1 bim.physio, 1 bim0s.com, 1 @@ -23375,7 +23355,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 @@ -24591,7 +24570,6 @@ 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 @@ -25156,6 +25134,7 @@ bralnik.com, 1 bramberheights.com, 1 brambevers.tk, 1 bramblerealestate.com, 1 +brambles.com, 1 brambleski.com, 1 bramburek.net, 1 bramfri.dk, 1 @@ -25709,7 +25688,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 @@ -25944,7 +25922,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 @@ -26059,7 +26036,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 @@ -26393,7 +26369,6 @@ buildcor.com.au, 1 builddesygner.xyz, 1 buildersdiscount.net, 1 buildersofthesilentcities.tk, 1 -buildfood.com, 1 buildgp.com, 1 buildherers.ga, 1 buildherest.ga, 1 @@ -27220,7 +27195,6 @@ buzzeditora.com.br, 1 buzzenginegroup.com, 1 buzzfeast.com, 1 buzzhub.tk, 1 -buzzkuri.com, 1 buzzman.ga, 1 buzzpost.tk, 1 buzzprint.it, 1 @@ -27639,7 +27613,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 @@ -28228,7 +28201,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 @@ -28501,7 +28473,6 @@ capa.digital, 1 capacityproject.org, 1 capari.co, 1 caparicasurfing.com, 1 -caparicasurflessons.com, 1 caparis.nl, 1 capctury.com, 1 capeannpediatrics.com, 1 @@ -28607,7 +28578,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 @@ -28783,7 +28753,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 @@ -29628,7 +29597,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 @@ -29670,6 +29638,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 @@ -30184,7 +30153,6 @@ censeo-financial.com, 1 censored.ml, 1 censurfridns.dk, 1 censurfridns.nu, 1 -censys.io, 1 centariuss.ga, 1 centella.tw, 1 centenariodeuncampeon.tk, 1 @@ -31472,16 +31440,14 @@ china-online-news.tk, 1 chinabank.ph, 1 chinabelt.com, 1 chinablows.com, 1 -chinacbd.com, 1 chinacdn.org, 1 chinacheers.com, 1 chinaclone.com, 1 +chinadiy.com, 1 chinadream404.com, 1 -chinadrilling.com, 1 chinafree.online, 1 chinafree.site, 1 chinaglobalsecurities.cn, 1 -chinahd.com, 1 chinahealthcareblog.cf, 1 chinahitech.com, 1 chinaicpower.org, 0 @@ -32922,7 +32888,6 @@ 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 @@ -33033,7 +32998,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 @@ -33483,6 +33447,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 @@ -33934,7 +33899,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 @@ -34176,6 +34140,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 @@ -35266,7 +35231,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 @@ -35684,7 +35648,6 @@ corruptcatz.com, 1 corruptos.tk, 1 corry-new.cloud, 1 cors-proxy.cf, 1 -corsa-b.uk, 1 corsac.nl, 1 corsectra.com, 1 corsepro.com, 1 @@ -35835,7 +35798,6 @@ cotak.gov, 1 cotandoseguro.com, 1 coteax.com, 1 coteax.nl, 1 -cotehy.com, 1 cotejardin.gent, 1 cotennis.net, 1 coteouestmedia.com, 1 @@ -36367,7 +36329,6 @@ createme.com.pl, 1 createmvp.com, 1 createstudios.com.au, 0 createwithcynthia.com, 1 -creati.me, 1 creatiefcoaching.nl, 1 creatieven.com, 1 creatingchange.us, 1 @@ -36522,6 +36483,7 @@ creusalp.ch, 0 crew.moe, 1 crewextension.com, 1 crewnetwork.com, 1 +crewpictures.com, 0 crewresourcesinternational.group, 1 crewsing.tk, 1 crewvision.pt, 1 @@ -37549,7 +37511,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 @@ -37936,7 +37897,6 @@ cypressca.gov, 1 cypressinheritancesaga.com, 1 cypresslegacy.com, 1 cyprus-company-for.gr, 1 -cyprus-company-service.com, 1 cyptechost.co.ke, 1 cyqual.com, 1 cyraco.com, 1 @@ -37959,6 +37919,7 @@ cytat.tk, 1 cytech.com.tr, 1 cytegic-update-packages.com, 1 cytn.xyz, 1 +cytophil.com, 1 cyumus.com, 1 cyvault.io, 1 cyware.com, 1 @@ -38127,7 +38088,6 @@ dabai.club, 1 dabai.ga, 1 dabai.ml, 1 dabai.photo, 1 -dabaixiong.com, 1 dabasstacija.lv, 1 dabbagam.tk, 1 dabhand.studio, 1 @@ -38391,7 +38351,6 @@ dame.cf, 1 damedrogy.cz, 1 dameeq.cf, 1 dameisports.com, 0 -dameshoes.it, 1 damgan.com, 1 damgoodmedia.com, 1 damianmalrechauffe.tk, 1 @@ -38737,7 +38696,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 @@ -38915,6 +38873,7 @@ dasignsource.com, 1 dasinternetluegt.at, 1 daskirschhaus.com, 1 dasler.eu, 1 +dasmailarchiv.ch, 1 dasolindustrialpark.tk, 1 dastchin.live, 1 dastchin.shop, 1 @@ -39283,6 +39242,7 @@ davison.tech, 1 davisontwp-mi.gov, 1 davisvision.com, 1 davmimer-mercerie.ro, 1 +davoiceradio.com, 1 davorin.cf, 1 davosalestax.com, 1 davros.eu, 1 @@ -39301,7 +39261,6 @@ dawnbringer.eu, 1 dawnbringer.net, 1 dawnbyte.ch, 1 dawnlydialnyc.com, 1 -dawnofeden.net, 1 dawnofhope.tk, 1 dawnson.is, 1 dawnzine.com, 1 @@ -40491,7 +40450,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 @@ -40689,7 +40647,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 @@ -40835,7 +40792,6 @@ destroysilence.ml, 1 destruction-frelon-asiatique.com, 1 destructive-revolution.tk, 1 destructoradepapel.com.es, 1 -destruktiveridingkrew.com, 1 destudio.org.ua, 1 destuurmanskolk.nl, 1 destyntek.com, 1 @@ -40898,7 +40854,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 @@ -42228,7 +42183,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 @@ -42318,7 +42272,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 @@ -42402,6 +42355,7 @@ div12.org, 1 divacresent.tk, 1 divanogiusto.it, 1 divari.nl, 1 +divas.joburg, 1 divatri.tk, 1 divcoder.com, 1 dive-japan.com, 1 @@ -43239,7 +43193,6 @@ dogsite.tk, 1 dogsnaturallymagazine.com, 1 dogsnow.com, 1 dogsport.org, 1 -dogtoetreads.com, 1 dogtowneastpowell.com, 1 dogtrack.tk, 1 dogtrainingnaples.com, 1 @@ -44003,7 +43956,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 @@ -44038,6 +43990,7 @@ 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 @@ -44107,7 +44060,6 @@ dragonballzstore.com, 1 dragonbike.by, 1 dragonboatfestival.tk, 1 dragonbox.de, 1 -dragoncave.me, 1 dragoncityhack.tips, 1 dragonclean.gr, 1 dragonclicker.ml, 1 @@ -44522,7 +44474,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 @@ -44736,7 +44687,6 @@ 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 @@ -46023,7 +45973,7 @@ eba.com.ua, 1 ebagroup.tk, 1 ebakery.de, 1 eban.bzh, 1 -ebanca.com, 0 +ebanca.com, 1 ebanking.indovinabank.com.vn, 1 ebanking.raiffeisen.ch, 1 ebankingabersicher.ch, 1 @@ -46253,6 +46203,7 @@ ecoconut.org, 1 ecocreativity.org, 1 ecocuisinedesign.com, 1 ecodedi.com, 1 +ecodena.com.mx, 1 ecodepur.co.ao, 1 ecodepur.fr, 1 ecodesign-labo.jp, 1 @@ -46329,7 +46280,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 @@ -46713,7 +46663,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 @@ -46893,7 +46842,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 @@ -46919,7 +46867,6 @@ eggel.ch, 1 eggen.dk, 1 eggendorfer.at, 1 eggendorfer.be, 1 -eggendorfer.biz, 1 eggendorfer.ch, 1 eggendorfer.co.uk, 1 eggendorfer.de, 1 @@ -46927,7 +46874,6 @@ eggendorfer.info, 1 eggendorfer.it, 1 eggendorfer.li, 1 eggendorfer.name, 1 -eggendorfer.net, 1 eggendorfer.online, 1 eggendorfer.org, 1 eggendorfer.pro, 1 @@ -48545,7 +48491,6 @@ endviolence.gc.ca, 1 enecivilela.com, 1 enefit.com, 1 enefit.ee, 1 -enefit.lv, 1 enefitconnect.ee, 1 enefitgreen.com, 1 enefitgreen.ee, 1 @@ -48731,7 +48676,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 @@ -49125,7 +49069,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 @@ -49548,6 +49491,7 @@ esbuilders.co.nz, 0 esc-romania.tk, 1 esc-turkey.tk, 1 esc18.net, 1 +esc3.net, 1 esc9.net, 1 escae.ml, 1 escael.org, 1 @@ -49763,7 +49707,6 @@ espressodokter.nl, 1 espressonews.gr, 1 espressoservicesplus.com.au, 1 esprihealth.com, 1 -espriler.com, 1 espub.org, 1 esq, 1 esquelario.tk, 1 @@ -50535,7 +50478,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 @@ -51033,6 +50975,7 @@ exploreeurope.de, 1 exploregulf.ga, 1 exploreit.online, 1 exploretock.com, 1 +exploretravellife.com, 1 exploretsp.gov, 1 exploring-memory.org, 1 exploringmorocco.tours, 1 @@ -51191,7 +51134,7 @@ extremepeptides.com, 1 extremeprojects.tk, 1 extremeservicesandrestoration.com, 1 extremesports.tk, 1 -extremetreeandlandscape.com, 0 +extremetreeandlandscape.com, 1 extremetunedcars.tk, 1 extremfrank.tk, 1 extrolife.ml, 1 @@ -51513,7 +51456,6 @@ 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 @@ -52004,7 +51946,6 @@ 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 @@ -52259,7 +52200,6 @@ fastbob.ga, 1 fastbob.gq, 1 fastbob.ml, 1 fastbob.tk, 1 -fastbuilder.pro, 1 fastcash.com.br, 1 fastcast.ga, 1 fastcats.tk, 1 @@ -52813,7 +52753,6 @@ fencingmartest.ga, 1 feng.si, 1 feng18.vip, 0 feng28.vip, 0 -feng58.vip, 0 feng68.vip, 0 feng88.vip, 0 feng98.vip, 0 @@ -53958,7 +53897,6 @@ firstcentralsavings.com, 1 firstchoicebouncycastlehire.co.uk, 1 firstchoicefriseur.at, 1 firstchoicejunkservice.com, 1 -firstchoicewaterproofing.com, 1 firstchurchmn.org, 1 firstcitizensbank.com, 1 firstclass.com.kh, 1 @@ -54118,7 +54056,6 @@ fitnessbest.com, 1 fitnessbond.com, 1 fitnessfoodguide.com, 1 fitnesshaber.com, 1 -fitnessimage.com.au, 1 fitnesskarate.club, 1 fitnessmaus.com, 1 fitnessplanet.best, 1 @@ -54481,7 +54418,6 @@ flexiblenetflow.com, 1 flexibsd.com, 1 flexicano.nl, 1 flexicurity.tk, 1 -fleximus.org, 0 flexingpro.com, 1 flexinsurance.com.au, 1 flexinvesting.fi, 0 @@ -54786,6 +54722,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 @@ -54929,7 +54866,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 @@ -55608,8 +55544,7 @@ fortress.sk, 1 fortresslinux.com, 1 fortresslinux.nl, 1 fortresslinux.org, 1 -fortressofsolitude.co.za, 1 -fortressone.net, 1 +fortressofsolitude.co.za, 0 fortricks.in, 1 fortuna-apotheke-lahnstein.de, 1 fortuna-loessnitz.de, 1 @@ -55890,7 +55825,6 @@ 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 @@ -56468,7 +56402,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 @@ -56540,7 +56473,6 @@ freespace.info, 1 freespanlift.com, 1 freespeech.org, 1 freesports.ml, 1 -freesquare.net, 1 freesteam.net, 1 freesteam.org, 1 freestylemartialarts.tk, 1 @@ -56666,7 +56598,6 @@ freshersworld.ml, 1 fresherwalkins.tk, 1 freshfinder.com.au, 1 freshfishdelivery.com, 1 -freshgreenhouse.net, 1 freshhosting.tk, 1 freshinsport.fr, 1 freshjoomlatemplates.com, 1 @@ -56884,6 +56815,7 @@ 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 @@ -56975,7 +56907,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 @@ -57825,8 +57756,6 @@ ga-2.it, 0 ga-digitazion.com, 1 ga-part.ru, 1 gaasuper6.com, 1 -gabaldon.eu, 1 -gabaldon.nl, 1 gabapentin.gq, 1 gabare-loire.com, 1 gabbeh.jp, 1 @@ -57926,7 +57855,6 @@ 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 @@ -57938,6 +57866,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 @@ -58369,7 +58298,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 @@ -58778,14 +58706,13 @@ 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 geba-online.de, 1 gebaeude-braun.de, 1 gebaeudebilanzierung.de, 1 -gebaeudeklima-schweiz.ch, 1 gebeliktakibim.com, 1 geben.digital, 1 gebiert.de, 1 @@ -59460,7 +59387,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 @@ -59663,7 +59589,6 @@ 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 @@ -59894,6 +59819,7 @@ 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 @@ -60006,7 +59932,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 @@ -60314,7 +60239,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 @@ -60896,7 +60820,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 @@ -61047,7 +60970,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 @@ -61178,7 +61100,6 @@ 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 @@ -61191,6 +61112,7 @@ gongjianwei.com, 1 gongjuhao.com, 1 gonintendo.com, 1 gonitro.com, 1 +gonoodle.com, 1 gonortheast.co.uk, 1 gonorthwest.co.uk, 1 gonumber.ga, 1 @@ -61434,7 +61356,7 @@ gossiptimes.tk, 1 gost-energo.ru, 1 gostaffer.com, 1 gostargazing.co.uk, 1 -gostartkit.com, 1 +gostartkit.com, 0 gostatera.com, 1 gosti-dom.ga, 1 gostica.com, 1 @@ -61495,6 +61417,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 @@ -61698,7 +61621,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 @@ -61905,7 +61827,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 @@ -61995,7 +61916,6 @@ greatdanemowers.com, 1 greatepier.tk, 1 greatergood.com, 0 greatergoods.com, 1 -greaterreadingyp.org, 1 greaterzion.com, 1 greatestcampsest.ga, 1 greatestwallsest.ga, 1 @@ -62369,6 +62289,7 @@ grnbank.com, 1 groaccess.com, 1 groben-itsolutions.de, 1 grockradio.ga, 1 +grocock.me.uk, 1 groenaquasolutions.nl, 1 groenemoskeeen.nl, 0 groeneoldtimer.nl, 1 @@ -64536,7 +64457,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 @@ -65471,7 +65391,6 @@ helpwithmycreditcardbank.gov, 1 helpwithmymortgage.gov, 1 helpwithmymortgagebank.gov, 1 helsenorge.no, 1 -helsi.me, 1 helsingfors.guide, 1 helsinginlaakariyhdistys.fi, 1 helsinki-systems.de, 1 @@ -65642,7 +65561,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 @@ -65660,7 +65578,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 @@ -65765,7 +65682,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 @@ -67192,7 +67108,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 @@ -67465,14 +67380,12 @@ hospitalsineachstate.com, 1 hospitalviladaserra.com.br, 1 hossi.pro, 0 hossien.tk, 1 -hossleylps.com, 1 host-heberg.com, 1 host-morezar.ml, 1 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 @@ -67851,7 +67764,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 @@ -67877,7 +67789,6 @@ howesky.com, 1 howgoodwasmysex.com, 1 howieisawesome.com, 1 howlers.tk, 1 -howlettmartin.com, 1 howlinhawk.tk, 1 howlonghaswilliambeenwaitingforhislicence.uk, 1 howlongtobeatsteam.com, 1 @@ -68069,6 +67980,7 @@ hse-online.com, 1 hse-reglementaire.com, 1 hselectricalservices.com, 1 hsex.tv, 0 +hsg-lumdatal.de, 1 hsgms.de, 1 hsi.health, 1 hsivonen.com, 1 @@ -68688,7 +68600,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 @@ -68986,7 +68898,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 @@ -69059,7 +68970,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 @@ -69279,13 +69189,12 @@ icusignature.com, 1 icustomboxes.com, 1 icy.aq, 1 icyapril.com, 1 -icycanada.com, 0 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 @@ -69841,7 +69750,6 @@ ikmx.net, 1 iknowd.org, 1 iknowthatgirl.com, 1 ikoreg.nl, 1 -ikorekofi.com, 1 ikra24.in.ua, 1 ikrab.club, 1 iks.moe, 1 @@ -69850,7 +69758,6 @@ iksi.me, 1 iksworld.kr, 1 iktisatbank.com, 0 ikudo.top, 1 -ikulist.me, 1 ikumi.us, 1 ikutin.id, 1 ikvts.de, 1 @@ -70524,7 +70431,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 @@ -71570,7 +71476,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 @@ -72379,7 +72285,6 @@ ipledgeonline.org, 0 iplog.info, 0 iplookup.tk, 1 ipmatic.ga, 1 -ipmkts.com, 1 ipmotion.ca, 1 ipmscoutek.com, 0 ipnoze.com, 1 @@ -72786,7 +72691,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 @@ -72898,7 +72802,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 @@ -73084,7 +72987,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 @@ -73328,6 +73230,7 @@ itssolidest.ga, 1 itsstefan.eu, 1 itstartswithme.ca, 1 itstatic.tech, 1 +itstimetravel.com, 1 itsuitsyou.co.za, 1 itsuka-world.com, 1 itsundef.in, 0 @@ -73372,10 +73275,8 @@ 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 @@ -74015,7 +73916,6 @@ jammy4312.me, 1 jammysplodgers.co.uk, 1 jamonesrute.com, 1 jamonsilva.com, 1 -jamstallt.se, 1 jamstatic.fr, 0 jamukmod.com, 1 jamusa.tk, 1 @@ -75285,6 +75185,7 @@ jobanzeigen.de, 1 jobassadeurs.fr, 1 jobbkk.com, 1 jobbnorge.no, 1 +jobbsafari.no, 0 jobbsafari.se, 1 jobcenter.tk, 1 jobcie.com, 1 @@ -75688,6 +75589,7 @@ joomladeveloper.ru, 1 joomlaguru.pl, 1 joompress.biz, 1 joona.pw, 1 +joonstudios.com, 1 joopzy.com, 1 joorshin.ir, 1 joostdeheer.nl, 1 @@ -76715,6 +76617,7 @@ 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 @@ -76821,7 +76724,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 @@ -76922,7 +76824,6 @@ 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 @@ -77281,6 +77182,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 @@ -77687,6 +77589,7 @@ kdk.com.my, 1 kdl-group.pl, 1 kdo-vola.cz, 1 kdonkers.com, 1 +kdoslavi.cz, 1 kdpmgi.com, 1 kdproduction.cz, 1 kdrama.cc, 1 @@ -78064,6 +77967,7 @@ keshankang.com, 1 keshankang.org, 1 keshausconsulting.com, 1 keshav.cc, 1 +keshavnet.com, 1 kesifasya.com, 1 kesinidulu.com, 1 keskikorpimotorsport.fi, 0 @@ -78435,7 +78339,7 @@ kielwi.gov, 1 kienlen.org, 1 kientrucphunguyen.com, 1 kienviethung.com, 1 -kieran-mcguire.uk, 1 +kieran-mcguire.uk, 0 kieran.de, 1 kieranjones.uk, 1 kieranpotts.com, 1 @@ -79336,7 +79240,6 @@ 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 @@ -80596,6 +80499,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 @@ -81668,7 +81572,6 @@ langapi.com, 1 langatang.com, 1 langauto.hu, 1 langbein.org, 1 -langcom.org, 1 langenberg.tk, 1 langenu.tk, 1 langer-bauwerk.de, 1 @@ -81694,7 +81597,6 @@ languagesandnumbers.com, 1 languageterminal.com, 1 langworth.com, 0 langzeit-reisen.com, 1 -langzijn.nl, 1 lanhhuyet510.tk, 1 lanhydrockap.co.uk, 1 lanispa.com, 1 @@ -81954,7 +81856,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 @@ -82529,6 +82430,7 @@ leadgem.co.uk, 1 leadgenie.me, 1 leadinforce.com, 0 leadmusic.nl, 1 +leadnxt.co.in, 1 leadnxt.com, 1 leadonvale-stemcell.co.uk, 1 leadplan.ru, 0 @@ -83375,7 +83277,6 @@ lesterchan.net, 1 lesterrassesdusoleil.ch, 0 lestravauxduparticulier.fr, 1 lestrokeofgenius.com, 1 -lestudiopecot.fr, 1 lesummeira.is, 1 lesvertsmaroc.tk, 1 lesy.eu, 1 @@ -83552,7 +83453,6 @@ lewt.me, 1 lex-legal.com.ua, 1 lex18.com, 1 lexapro-price.ga, 1 -lexautoservice.nl, 1 lexblogplatform.com, 1 lexblogplatformthree.com, 1 lexch.com, 1 @@ -83806,7 +83706,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 @@ -84883,7 +84782,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 @@ -84915,6 +84813,7 @@ live-tv-channels.org, 1 live-z-rejstejna.cz, 1 live.ac.cn, 1 live2play.ml, 1 +live2travelmore.us, 1 live4k.media, 1 live8811.com, 1 live8899.cn, 1 @@ -85465,7 +85364,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 @@ -85611,7 +85509,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 @@ -85751,7 +85648,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 @@ -86082,7 +85978,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 @@ -86609,7 +86504,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 @@ -86790,7 +86684,6 @@ 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 @@ -86805,7 +86698,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 @@ -86841,6 +86733,7 @@ luxden.com, 1 luxe-in.gr, 1 luxe.digital, 1 luxebadkameraccessoires.nl, 1 +luxedentalfl.com, 1 luxegram.co, 1 luxehomecompany.com, 1 luxelyhome.com, 1 @@ -87014,7 +86907,6 @@ 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 @@ -87710,7 +87602,6 @@ mahurivaishya.co.in, 1 mahurivaishya.com, 1 mai.ru, 1 maiaimobiliare.ro, 1 -maialeechin.com, 1 maiateam.pt, 1 maichun.info, 0 maid.gg, 1 @@ -87800,7 +87691,6 @@ mailsac.com, 1 mailsend.ml, 1 mailstart.ga, 1 mailstation.de, 1 -mailster.pt, 0 mailsupport.cz, 1 mailtelligent.com, 1 mailtobiz.tk, 1 @@ -88125,7 +88015,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 @@ -88305,6 +88194,7 @@ manhattanda.org, 1 manhattandermatologistsnyc.com, 1 manhattanfruitier.com, 1 manhattanks.gov, 1 +manhattanlife.com, 1 manhuagui.com, 1 manhwaamour.com, 1 mani.tw, 1 @@ -88909,7 +88799,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 @@ -88950,7 +88839,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 @@ -94027,6 +93915,7 @@ mockers.tk, 1 mocknen.net, 1 mocksvillenc.org, 1 mocomoco.jp, 1 +mod.af, 0 mod.io, 1 moda-donna.cf, 1 moda-line.ml, 1 @@ -95172,7 +95061,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 @@ -95227,6 +95115,7 @@ moveonru.com, 1 movepin.com, 1 movetonewcastle.com.au, 1 movewellnesslab.com, 1 +movewithfiness.com, 1 moveyourass.tk, 1 movfun.ga, 1 movie-download.cz, 1 @@ -95703,7 +95592,6 @@ 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 @@ -97489,6 +97377,7 @@ nadsandgams.com, 1 naduvilathu.tk, 1 nadyaolcer.fr, 1 naec.ge, 1 +naeemsafdar.net, 1 naehenfuerwahrekleinehelden.de, 1 naehtalente.de, 1 naemnuk.tk, 1 @@ -97591,6 +97480,7 @@ nakalabo.jp, 1 nakama.tv, 1 nakamastudios.com, 1 nakamochi.io, 1 +nakamuramudancas.com.br, 1 nakanishi-paint.com, 1 nakanocity-cashless.jp, 1 nakarkhana.com, 1 @@ -98777,7 +98667,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 @@ -98805,7 +98694,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 @@ -98907,6 +98795,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 @@ -99073,7 +98962,7 @@ 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 netwarc.eu, 1 @@ -99215,7 +99104,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 @@ -99345,7 +99234,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 @@ -99454,7 +99343,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 @@ -99494,6 +99382,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 @@ -100796,6 +100685,7 @@ nopajam.tk, 1 nopaste.eu, 1 nopaynocure.com, 1 nophelet.com, 1 +nopiamanual.net, 1 nopm.xyz, 1 nopropaganda.tk, 1 nopuedesdejarlopasar.es, 1 @@ -101064,6 +100954,7 @@ 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 @@ -101924,6 +101815,7 @@ nzbstars.com, 1 nzcasinohex.com, 1 nzcorp.dk, 1 nzdata.org, 1 +nzelaweb.com, 1 nzguns.co.nz, 1 nzhistory.govt.nz, 1 nzia.tk, 1 @@ -102114,7 +102006,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 @@ -102179,7 +102070,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 @@ -102206,7 +102096,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 @@ -102684,6 +102573,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 @@ -102723,6 +102613,7 @@ okaidi.es, 1 okaidi.fr, 1 okaidi.ro, 1 okaidi.si, 1 +okami-no-tochi.com, 1 okanaybek.tk, 1 okash.it, 1 okashi.me, 1 @@ -104592,6 +104483,7 @@ osm.org, 1 osmaniyehaber.tk, 1 osmanlitakilari.tk, 1 osmanlitorunu.com, 1 +osmarks.net, 1 osmarks.tk, 1 osmdroid.net, 1 osmosebox.com, 1 @@ -104747,7 +104639,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 @@ -105761,7 +105652,6 @@ pando-market.com, 1 pandora-prestige.ru, 1 pandora-system.ru, 1 pandora.com.tr, 1 -pandoramutiara.id, 1 pandorarox.com, 1 pandorrah.nl, 1 pandorum.cf, 1 @@ -106392,7 +106282,6 @@ parys.org, 1 pasabahcemagazalari.com, 1 pasadena.gov, 1 pasadenapooch.org, 1 -pasalt.com, 1 pasarella.eu, 1 pascal-bourhis.com, 1 pascal-ua.tk, 1 @@ -106669,7 +106558,6 @@ paulanet.tk, 1 paulasilvasvensson.eu, 1 paulbaily.com, 1 paulborza.com, 1 -paulbramhall.uk, 1 paulbrown.ddns.net, 1 paulc-themovie.com, 1 paulcamper.com, 1 @@ -106695,6 +106583,7 @@ pauljonathan.dk, 1 pauljrowland.co.uk, 1 pauljzak.com, 1 paullockaby.com, 1 +paullovestugba.nl, 1 paulmarc.org, 1 paulmarvin.tk, 1 pauloalcalde.co, 1 @@ -107155,6 +107044,7 @@ pearcom.co.uk, 1 pearlcohen.com, 1 pearle.nl, 1 pearljamargentina.tk, 1 +pearloc.com, 1 pearlsonly.ca, 1 pearlsonly.com, 1 pearlsonly.com.au, 1 @@ -107283,7 +107173,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 @@ -107665,7 +107554,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 @@ -107964,7 +107852,6 @@ petknight.ga, 1 petless.ga, 1 petlife.od.ua, 1 petlife.vet, 1 -petlindo.com, 0 petlittle.ga, 1 petmall.bg, 1 petmatchmaker.org, 1 @@ -108570,6 +108457,7 @@ physicsforums.com, 1 physik.lol, 1 physio-im-appelbachtal.de, 1 physio-koenigsee.de, 1 +physio-nrj.ch, 1 physiobalance.nl, 1 physiobrite.tk, 1 physioteam-franz.de, 1 @@ -108949,6 +108837,7 @@ pinklecfest.org, 1 pinklittlenotebook.com, 1 pinkmango.travel, 0 pinkoi.com, 1 +pinkoz.xyz, 1 pinkpearl.tk, 1 pinkplay.com.br, 1 pinkpop.nl, 1 @@ -109874,7 +109763,8 @@ pmcc.net, 1 pmccrystal.com, 1 pmconsulting.es, 1 pmcorganometallix.com, 1 -pmcorp.com, 0 +pmcorp.com, 1 +pmcorp.mx, 1 pmcouvrie.com, 1 pmctcg.com, 1 pmctire.com, 0 @@ -109892,6 +109782,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 @@ -110530,7 +110421,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 @@ -111305,7 +111195,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 @@ -112364,7 +112253,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 @@ -113052,7 +112940,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 @@ -113221,7 +113108,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 @@ -114491,7 +114377,6 @@ 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 @@ -114527,7 +114412,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 @@ -115067,6 +114951,7 @@ ramtechmodular.com, 1 ramusa.org, 1 ramydent.no, 1 ramynetwork.tk, 1 +ramzinex.com, 1 ran-drunken.tk, 1 ran-ran.top, 1 rana.realestate, 1 @@ -115087,6 +114972,7 @@ randc.org, 1 randolf.ca, 1 randolphcountyal.gov, 1 randolphcountyil.gov, 1 +random-project.com, 1 random-samplings.org, 1 random.org, 1 randomactsofkindness.org, 1 @@ -115131,6 +115017,7 @@ rangeforce.com, 1 rangeforce.eu, 1 rangerfiles.tk, 1 rangersloyalsite.tk, 1 +rangersofbelgium.be, 1 rangeweb.ga, 1 ranginkamonkadeh.ir, 1 rangsmo.se, 0 @@ -115197,7 +115084,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 @@ -115401,7 +115287,6 @@ rayfalling.com, 1 rayhillforsupremecourt.com, 1 rayiris.com, 1 rayj.me, 1 -rayj.org, 1 raykitchenware.com, 1 raylo.com, 1 raym.ml, 1 @@ -115431,6 +115316,7 @@ raywisdom.tk, 1 raywjohnson.com, 1 raywjohnson.info, 1 raywjohnson.me, 1 +raywjohnson.net, 1 rayworks.de, 1 razakhanimazhab.tk, 1 razalabs.com, 1 @@ -115460,7 +115346,6 @@ rb-china.net, 1 rb.cz, 1 rballday-entertainment.nl, 1 rbbaader.de, 1 -rbbuae.com, 1 rbcafe.com, 1 rbclub.cz, 1 rbcosmetici.it, 1 @@ -115687,7 +115572,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 @@ -116474,6 +116358,7 @@ regtech.tk, 1 regtify.com, 1 regtify.org, 1 regtransfers.co.uk, 1 +reguanli.com, 1 reguladordevoltagem.com.br, 1 regularizaboti.com.br, 1 regularlabs.com, 1 @@ -117628,6 +117513,7 @@ 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 @@ -118238,6 +118124,7 @@ robbiebird.tk, 1 robbiecrash.me, 1 robbielowe.co, 1 robbievasquez.com, 1 +robbins-construction.com, 1 robbinsdalemn.gov, 1 robbrestyle.com, 1 robbyzworld.cf, 1 @@ -118387,7 +118274,6 @@ rock4life.be, 1 rocka.me, 1 rockabilly-sinners.tk, 1 rockadocious.com, 1 -rockagogo.com, 1 rockandroll.tk, 1 rockbandparty.com, 1 rockbankland.com.au, 1 @@ -118502,7 +118388,6 @@ rodeoimport.com, 1 rodeosales.co.uk, 1 rodest.net, 0 rodevlaggen.nl, 1 -rodgersawnings.com, 1 rodichi.net, 1 rodin.tk, 1 rodinka.tk, 1 @@ -118526,8 +118411,6 @@ rodrigocarvalho.blog.br, 1 rodrigodematos.tk, 1 rody-design.com, 1 roeckx.be, 1 -roed.gg, 1 -roeden.dk, 1 roedesonline.nl, 1 roedl.de, 1 roeitijd.nl, 0 @@ -118863,6 +118746,7 @@ 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 @@ -119100,10 +118984,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 @@ -119247,7 +119137,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 @@ -119946,7 +119835,6 @@ s-team.tk, 1 s-u.pw, 1 s-yuz.com, 1 s-zwrm.de, 1 -s.ai, 1 s.ee, 1 s.lu, 1 s.sb, 1 @@ -120217,6 +120105,7 @@ 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 @@ -120882,7 +120771,6 @@ sandairephotography.com, 1 sandbox.i.ng, 1 sandbox.mydigipass.com, 0 sandelduggal.com, 1 -sander.sh, 1 sanderdesign.tk, 1 sanderkoenders.eu, 1 sanderkoenders.nl, 1 @@ -121185,7 +121073,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 @@ -121403,6 +121291,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 @@ -121700,7 +121589,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 @@ -121841,7 +121730,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 @@ -122353,7 +122241,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 @@ -123153,6 +123040,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 @@ -123569,7 +123457,6 @@ serverlein.com, 1 serverlog.net, 1 servermacher.de, 1 servermaster.sk, 1 -servernerds.net, 1 serverninja.tk, 1 serveroffline.net, 1 serverpedia.de, 1 @@ -124120,7 +124007,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 @@ -124517,7 +124403,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 @@ -124667,7 +124552,6 @@ shop4d.com, 1 shop4im.com, 1 shopadvies.nl, 1 shopalike.cz, 1 -shopalike.dk, 1 shopalike.es, 1 shopalike.fi, 1 shopalike.fr, 1 @@ -124675,7 +124559,6 @@ shopalike.hu, 1 shopalike.it, 1 shopalike.nl, 1 shopalike.pl, 1 -shopalike.se, 1 shopalike.sk, 1 shopapi.cz, 1 shoparbonne.co.uk, 1 @@ -125375,7 +125258,6 @@ silberkiste.com, 1 silbox.ch, 1 sildenafilcitrate.cf, 1 sildenafilcitrate100mg.ga, 1 -silensoclinic.com, 1 silent-clean.de, 1 silent.quest, 1 silent.se, 1 @@ -125546,7 +125428,6 @@ sim4seed.org, 1 simabonnement.nl, 1 simac.fr, 1 simam.de, 1 -simantec.cl, 1 simaogv.net, 1 simark.ca, 1 simart.cf, 1 @@ -126503,7 +126384,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 @@ -126527,7 +126407,6 @@ skylinertech.com, 1 skylineservers.com, 1 skylocker.net, 1 skyltmax.se, 1 -skymagdaily.com, 1 skymail.de, 1 skymass.xyz, 1 skyminds.net, 1 @@ -126588,7 +126467,6 @@ skytiger.ga, 1 skytown.ga, 1 skytterlogg.no, 1 skytterloggen.no, 1 -skyvault.io, 1 skywalkersa.ga, 1 skywatch.com, 1 skywindowsnj.com, 1 @@ -126673,7 +126551,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 @@ -126942,7 +126819,6 @@ smartacademy.pro, 1 smartagilesolution.com, 1 smartandcom.ch, 1 smartapplianceservices.com, 1 -smartar.com, 1 smartart.gr, 1 smartart.tk, 1 smartass.space, 1 @@ -127017,6 +126893,7 @@ smartlogstock.com, 0 smartlogtower.com, 1 smartlooks.es, 1 smartmachine.com, 1 +smartmail.io, 1 smartmail24.de, 1 smartme.pl, 1 smartmeal.ru, 1 @@ -127084,7 +126961,7 @@ 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 @@ -127268,7 +127145,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 @@ -128715,7 +128591,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 @@ -130026,6 +129901,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 @@ -130220,7 +130096,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 @@ -130447,6 +130322,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 @@ -130805,7 +130681,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 @@ -131413,7 +131288,6 @@ 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 @@ -131585,7 +131459,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 @@ -132297,7 +132170,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 @@ -132599,7 +132471,6 @@ 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 @@ -132701,7 +132572,6 @@ svse.global, 1 svseglobal.com, 1 svsewerut.gov, 1 svswebmarketing.com, 1 -svtemplemn.org, 1 svtl.ch, 1 svtr.de, 1 svtv.org, 1 @@ -132849,7 +132719,6 @@ swiftoutput.com, 1 swiftpak.co.uk, 1 swiftqueue.com, 1 swiftrecharge.com, 1 -swilabible.be, 1 swilagod.be, 1 swilatag.be, 1 swilly.org, 1 @@ -133165,7 +133034,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 @@ -133379,7 +133247,7 @@ t88vip1.com, 1 t88vip2.com, 1 t88vip3.com, 1 t88vip4.com, 1 -t88vip5.com, 0 +t88vip5.com, 1 t88vip6.com, 1 t88vip7.com, 1 t88ww.com, 1 @@ -133998,7 +133866,6 @@ tardics.com, 1 tardics.eu, 1 tardics.net, 1 tardis.cloud, 1 -tardis.io, 1 tardishomelab.com, 1 tarek.wtf, 1 tarekfadel.com, 1 @@ -134311,6 +134178,7 @@ tbspace.de, 1 tbsunday.tk, 1 tbtech.cz, 1 tbuchloh.de, 1 +tbun.de, 1 tbunews.com, 1 tbunews.info, 1 tbwa.com, 1 @@ -134669,7 +134537,6 @@ 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 @@ -135123,7 +134990,6 @@ teenxy.com, 1 teepak.ml, 1 teerer.tk, 1 teestore.ru, 1 -teesypeesy.com, 1 teethtalkgirl.com, 0 teetje-doko.de, 1 teetoptens.com, 1 @@ -135372,6 +135238,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 @@ -135480,6 +135347,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 @@ -135687,6 +135555,7 @@ test-privacyportal-ui.azurewebsites.net, 1 test-school.ml, 1 test-textbooks.com, 1 test.de, 1 +test.io, 1 test1-isrewards.com, 1 test2-isrewards.com, 1 test4pro.ga, 1 @@ -136298,6 +136167,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 @@ -136898,6 +136768,7 @@ theocratic.tk, 1 theocrazzolara.tk, 1 theodorahome.co, 1 theodorahome.com.br, 1 +theodoreroosevelt.org, 1 theodorojr.com.br, 1 theofficeofangelascott.com, 1 theofleck.com, 0 @@ -136910,12 +136781,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 @@ -137131,7 +137000,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 @@ -137153,6 +137021,7 @@ theserver.ml, 1 theserver201.tk, 1 theserviceyouneed.com, 1 thesession.org, 1 +thesettravelgroup.com, 1 thesetwohands864.com, 1 theshaker.com.au, 1 thesharedbrain.ch, 0 @@ -137239,7 +137108,6 @@ theteaaffair.com, 1 theteaguemovie.tk, 1 thetebodifference.com, 1 thetechdude.ga, 1 -thetechnicaldost.com, 1 thetfordtwpmi.gov, 1 thetfordvt.gov, 1 thetherapist.tk, 1 @@ -137573,7 +137441,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 @@ -138486,6 +138353,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 @@ -138697,7 +138565,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 @@ -138807,6 +138674,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 @@ -139331,7 +139199,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 @@ -140006,7 +139873,7 @@ tpk-parma.ru, 1 tpk.quest, 1 tplak.com, 1 tpldevsg-mythiess-dev.azurewebsites.net, 1 -tplive.io, 0 +tplive.io, 1 tplprodsg-mythiess.azurewebsites.net, 1 tpltestsg-mythiess-test.azurewebsites.net, 1 tpolemis.com, 1 @@ -140500,7 +140367,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 @@ -141337,7 +141203,6 @@ 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 @@ -141374,7 +141239,6 @@ try2admin.pw, 1 try2hack.it, 1 tryaatos.com, 1 trybabyschoice.com, 1 -trybooking.com, 1 trycaviar.com, 1 trychameleon.com, 1 trydoggo.com, 1 @@ -141450,6 +141314,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 @@ -141714,7 +141579,6 @@ tuncelimezaryapimi.com.tr, 1 tunda.it, 1 tunder.tk, 1 tundermadar.hu, 1 -tundrawear.ru, 1 tune-web.de, 1 tunenet.ml, 1 tuner.cloud, 1 @@ -142397,7 +142261,7 @@ u15p7.com, 1 u15p8.com, 1 u15x.com, 1 u175.com, 1 -u29dc.com, 1 +u29dc.com, 0 u2b.eu, 1 u2co.de, 1 u2croatia.tk, 1 @@ -142931,7 +142795,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 @@ -142985,7 +142848,6 @@ undergrounder.ga, 1 undergroundiron.tk, 1 undergroundmusic.tk, 1 underlined.fr, 1 -undernet.org, 1 undernet.uy, 0 undershoping.tk, 1 underskatten.tk, 1 @@ -143172,7 +143034,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 @@ -144917,7 +144778,6 @@ vedev.io, 1 vedma-praktik.com, 1 vedom.ru, 1 vedran-zulin.from.hr, 1 -vee.ci, 1 veeam.com, 1 veebill.com, 1 veebiveski.ee, 1 @@ -145201,7 +145061,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 @@ -146340,6 +146199,7 @@ virtualvaults.com, 0 virtualx.de, 1 virtubox.net, 1 virtubroker.com.mx, 1 +virtuele-dataroom.nl, 1 virtueturkey.ga, 1 virtuology.com, 1 virtus-group.com, 1 @@ -146619,7 +146479,6 @@ 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 @@ -147124,7 +146983,6 @@ vonkuenheim.de, 1 vonniehudson.com, 1 vonpawn.com, 1 vonski.pl, 1 -vonsponneck.tv, 1 vonsuri.com, 1 voodoobeginner.com, 1 voodoocat.cf, 1 @@ -147328,6 +147186,7 @@ vpsmore.com, 1 vpsou.com, 1 vpsport.ch, 1 vpsproj.dynu.net, 1 +vpsrussia.com, 1 vpstrial.net, 1 vpsvz.cloud, 1 vpsvz.ninja, 1 @@ -147493,6 +147352,7 @@ vtbs.moe, 1 vtcourts.gov, 1 vtech.com, 1 vtescebu.com, 1 +vtexpayments.com.br, 1 vtipe-vylez.cz, 0 vtivision.com, 1 vtjud.gov, 1 @@ -147535,7 +147395,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 @@ -148390,7 +148249,6 @@ waupacawi.gov, 1 wausharacountywi.gov, 1 wauwatosa.gov, 1 wav-productions.com, 1 -wav.tv, 1 wave-cockpit.de, 1 wave-electronics.com, 0 wave-inc.co.jp, 1 @@ -148774,6 +148632,7 @@ webdesign-kall.de, 1 webdesign-note.jp, 1 webdesignagency.cf, 1 webdesigncompanyindia.com, 1 +webdesigner4u.net, 0 webdesignersinchennai.tk, 1 webdesignfenua.tk, 1 webdesignlabor.ch, 1 @@ -149074,6 +148933,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 @@ -149130,6 +148990,7 @@ 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 @@ -149360,6 +149221,7 @@ wellness-bonbon.de, 0 wellness-gutschein.de, 1 wellness-spa-suedtirol.com, 1 wellnesscheck.net, 1 +wellnesslifestyletravel.com, 1 wellnessmama.com, 1 wellnessmassage-eitorf.de, 1 welloca.com, 1 @@ -149448,7 +149310,6 @@ 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 @@ -149702,6 +149563,7 @@ wgplatform.co.uk, 1 wgraphics.ru, 1 wgrfoods.co.uk, 1 wgrlc.vic.gov.au, 1 +wgrstudio.com, 1 wgsh.de, 1 wgsuyi.cf, 1 wgtrm.com, 1 @@ -151184,7 +151046,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 @@ -151634,7 +151495,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 @@ -151645,6 +151505,7 @@ 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 @@ -154397,9 +154258,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 @@ -154454,7 +154313,6 @@ yihouse.tw, 1 yijia.support, 1 yijingying.com, 0 yikeyong.com, 1 -yilacoin.com, 1 yilanju.com, 1 yilconstruction.ca, 1 yildiznamebaktir.com, 1 @@ -154631,6 +154489,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 @@ -155112,7 +154971,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 @@ -155223,7 +155081,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 @@ -155573,7 +155430,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 @@ -156053,7 +155909,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 @@ -156176,6 +156031,7 @@ ziaiai.com, 1 ziarajoias.com.br, 1 ziaulnmonzur.tk, 1 zidanpainting.com, 0 +ziddea.com, 1 ziegenhagel.com, 1 ziegler-heizung-frankfurt.de, 1 zielonakarta.com, 1 diff --git a/services/settings/dumps/blocklists/addons-bloomfilters.json b/services/settings/dumps/blocklists/addons-bloomfilters.json index b6477a3a651fd..f771f2c063db4 100644 --- a/services/settings/dumps/blocklists/addons-bloomfilters.json +++ b/services/settings/dumps/blocklists/addons-bloomfilters.json @@ -1,5 +1,19 @@ { "data": [ + { + "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": [ @@ -3233,5 +3247,5 @@ "last_modified": 1690223886167 } ], - "timestamp": 1703270156552 + "timestamp": 1703766957812 } diff --git a/services/settings/dumps/security-state/intermediates.json b/services/settings/dumps/security-state/intermediates.json index af66b110d0352..d82a9320939be 100644 --- a/services/settings/dumps/security-state/intermediates.json +++ b/services/settings/dumps/security-state/intermediates.json @@ -14652,24 +14652,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=", @@ -29647,5 +29629,5 @@ "last_modified": 1559865884636 } ], - "timestamp": 1703537823229 + "timestamp": 1704038223096 } From b62042a91b0d99a716c456300ae39947993b56de Mon Sep 17 00:00:00 2001 From: "Francesco Lodolo (:flod)" <flod@lodolo.net> Date: Tue, 2 Jan 2024 06:47:16 +0000 Subject: [PATCH 15/46] Bug 1866313 - Update l10n-changesets.json for ESR115, r=RyanVM, a=l10n-bump Differential Revision: https://phabricator.services.mozilla.com/D197482 --- browser/locales/l10n-changesets.json | 202 +++++++++++++-------------- 1 file changed, 101 insertions(+), 101 deletions(-) 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 From 16396b5a857d9eb3657e13f411b1e7e1bc9e70e4 Mon Sep 17 00:00:00 2001 From: Mike Kaply <mozilla@kaply.com> Date: Wed, 3 Jan 2024 14:58:29 +0000 Subject: [PATCH 16/46] Bug 1868137 - Allow setting alerts. prefs via policy. a=dmeehan Original Revision: https://phabricator.services.mozilla.com/D195731 Differential Revision: https://phabricator.services.mozilla.com/D197512 --- browser/components/enterprisepolicies/Policies.sys.mjs | 1 + 1 file changed, 1 insertion(+) 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.", From 9ab4cfb2b9498392727a6832cc93993a98dfc897 Mon Sep 17 00:00:00 2001 From: Mike Conley <mconley@mozilla.com> Date: Wed, 3 Jan 2024 17:33:43 +0000 Subject: [PATCH 17/46] Bug 1866295 - Land new strings for ASRouter spotlight message to encourage users without FxA accounts to create one. a=dmeehan Original Revision: https://phabricator.services.mozilla.com/D194553 Differential Revision: https://phabricator.services.mozilla.com/D197601 --- .../locales/en-US/browser/newtab/asrouter.ftl | 15 ++++++++---- ...ug_1866295_new_device_migration_strings.py | 23 +++++++++++++++++++ 2 files changed, 34 insertions(+), 4 deletions(-) create mode 100644 python/l10n/fluent_migrations/bug_1866295_new_device_migration_strings.py diff --git a/browser/locales/en-US/browser/newtab/asrouter.ftl b/browser/locales/en-US/browser/newtab/asrouter.ftl index 53b6515cec100..38d704c3810c6 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 = Hoping for a new device this season? +device-migration-fxa-spotlight-getting-new-device-body = Back up your data now, so you’re ready to go when your device arrives. +device-migration-fxa-spotlight-getting-new-device-primary-button = How to back up my data 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..12189f95195a3 --- /dev/null +++ b/python/l10n/fluent_migrations/bug_1866295_new_device_migration_strings.py @@ -0,0 +1,23 @@ +# 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, + ), + ) + From 5ec1e00d573e51202e3ceb0959b05c3c0c08dc52 Mon Sep 17 00:00:00 2001 From: donal meehan <dmeehan@mozilla.com> Date: Wed, 3 Jan 2024 13:09:34 -0500 Subject: [PATCH 18/46] Bug 1866295 - fix lint failure for ESR115 a=me --- .../bug_1866295_new_device_migration_strings.py | 1 - 1 file changed, 1 deletion(-) 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 index 12189f95195a3..a8ccb8c1457c4 100644 --- a/python/l10n/fluent_migrations/bug_1866295_new_device_migration_strings.py +++ b/python/l10n/fluent_migrations/bug_1866295_new_device_migration_strings.py @@ -20,4 +20,3 @@ def migrate(ctx): from_path=source, ), ) - From 88fe768c830ae89857c01d62dff5c9d705ac30cd Mon Sep 17 00:00:00 2001 From: Mike Hommey <mh+mozilla@glandium.org> Date: Tue, 12 Dec 2023 22:15:37 +0000 Subject: [PATCH 19/46] Bug 1868680 - Stop prewarming the ARM AVD. r=geckoview-reviewers,owlish a=release DONTBUILD prewarming the AVDs was done for CI, where AVDs are used only once in each task using them, and the cost of first use is high. Prewarming reduces that overhead. However, the ARM AVD is not used on CI (anymore?), so we don't need them prewarmed. This unblocks the situation wrt the failure to run the emulator on CI, while not addressing the underlying issues, so that CoT keys can be rotated without waiting for the full situation to be resolved. Differential Revision: https://phabricator.services.mozilla.com/D195820 --- python/mozboot/mozboot/android-avds/arm.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 } From bf021288d7fbc29a9c6dd734223b2ebb508beee6 Mon Sep 17 00:00:00 2001 From: Mike Conley <mconley@mozilla.com> Date: Wed, 29 Nov 2023 19:50:07 +0000 Subject: [PATCH 20/46] Bug 1867346 - Tweak strings for ASRouter spotlight message to encourage users without FxA accounts to create one. r=fluent-reviewers,flod, a=dmeehan, l10n=flod Differential Revision: https://phabricator.services.mozilla.com/D195013 --- .../locales/en-US/browser/newtab/asrouter.ftl | 2 +- ...new_device_migration_string_replacement.py | 22 +++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 python/l10n/fluent_migrations/bug_1867346_new_device_migration_string_replacement.py diff --git a/browser/locales/en-US/browser/newtab/asrouter.ftl b/browser/locales/en-US/browser/newtab/asrouter.ftl index 38d704c3810c6..a878f31f3acfc 100644 --- a/browser/locales/en-US/browser/newtab/asrouter.ftl +++ b/browser/locales/en-US/browser/newtab/asrouter.ftl @@ -251,6 +251,6 @@ device-migration-fxa-spotlight-older-device-header = Peace of mind, from { -bran 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 = Hoping for a new device this season? +device-migration-fxa-spotlight-getting-new-device-header-2 = New device in your future? device-migration-fxa-spotlight-getting-new-device-body = Back up your data now, so you’re ready to go when your device arrives. device-migration-fxa-spotlight-getting-new-device-primary-button = How to back up my data 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, + ), + ) From d1c893f5b14db00dd2af37873081a91af8339645 Mon Sep 17 00:00:00 2001 From: Shane Hughes <shughes@mozilla.com> Date: Tue, 12 Dec 2023 06:48:23 +0000 Subject: [PATCH 21/46] Bug 1867912 - Update Device Migration Spotlight string. r=fluent-reviewers,kpatenio, a=dmeehan, l10n=flod Differential Revision: https://phabricator.services.mozilla.com/D196099 --- browser/locales/en-US/browser/newtab/asrouter.ftl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/locales/en-US/browser/newtab/asrouter.ftl b/browser/locales/en-US/browser/newtab/asrouter.ftl index a878f31f3acfc..84cb660214e6a 100644 --- a/browser/locales/en-US/browser/newtab/asrouter.ftl +++ b/browser/locales/en-US/browser/newtab/asrouter.ftl @@ -252,5 +252,5 @@ device-migration-fxa-spotlight-older-device-body = An account keeps your importa 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 = Back up your data now, so you’re ready to go when your device arrives. +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 From f0700883b8b239fb1939b268930adf210a1b4596 Mon Sep 17 00:00:00 2001 From: Dana Keeler <dkeeler@mozilla.com> Date: Wed, 3 Jan 2024 18:10:40 +0000 Subject: [PATCH 22/46] Bug 1870262 - a subdomain of any HSTS superdomain that asserts includeSubdomains is HSTS (ESR115) r=jschanck, a=dmeehan Previously, the HSTS implementation would only consider the first superdomain that had any HSTS information and use the presence or absence of the includeSubdomains directive to determine if the subdomain was HSTS. However, the specification actually stipulates that if any superdomain that is HSTS asserts includeSubdomains, the subdomain is HSTS. Differential Revision: https://phabricator.services.mozilla.com/D197550 --- .../manager/ssl/nsSiteSecurityService.cpp | 53 +++++++++---------- security/manager/ssl/nsSiteSecurityService.h | 7 ++- .../unit/test_sts_preloadlist_perwindowpb.js | 7 ++- 3 files changed, 34 insertions(+), 33 deletions(-) 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" ) From b3e9c3bcc6016685f05390fa4b520379ebe4b699 Mon Sep 17 00:00:00 2001 From: Paul Zuehlcke <pbz@mozilla.com> Date: Thu, 4 Jan 2024 13:13:49 +0000 Subject: [PATCH 23/46] Bug 1863083 - ESR, r=Gijs, a=dmeehan Differential Revision: https://phabricator.services.mozilla.com/D197667 --- toolkit/modules/PopupNotifications.sys.mjs | 2 ++ 1 file changed, 2 insertions(+) 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( From 4b23151c971f7f001e2ec7c16048670c23962e92 Mon Sep 17 00:00:00 2001 From: ffxbld <ffxbld@mozilla.com> Date: Thu, 4 Jan 2024 13:55:15 +0000 Subject: [PATCH 24/46] No Bug, mozilla-esr115 repo-update HSTS HPKP remote-settings - a=repo-update, r=dmeehan Differential Revision: https://phabricator.services.mozilla.com/D197672 --- security/manager/ssl/StaticHPKPins.h | 2 +- security/manager/ssl/nsSTSPreloadList.inc | 372 ++++++------------ .../dumps/blocklists/addons-bloomfilters.json | 15 +- .../main/devtools-compatibility-browsers.json | 146 +++---- 4 files changed, 198 insertions(+), 337 deletions(-) diff --git a/security/manager/ssl/StaticHPKPins.h b/security/manager/ssl/StaticHPKPins.h index b5843dc12d143..51d7cad664aba 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(1712573485417000); +static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1712843463560000); diff --git a/security/manager/ssl/nsSTSPreloadList.inc b/security/manager/ssl/nsSTSPreloadList.inc index 7442d6a549c5a..da8c0800d1d3e 100644 --- a/security/manager/ssl/nsSTSPreloadList.inc +++ b/security/manager/ssl/nsSTSPreloadList.inc @@ -8,7 +8,7 @@ /*****************************************************************************/ #include <stdint.h> -const PRTime gPreloadListExpirationTime = INT64_C(1714992681893000); +const PRTime gPreloadListExpirationTime = INT64_C(1715262660262000); %% 0--1.de, 1 0-0.io, 1 @@ -985,7 +985,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714992681893000); 13826145000.com, 1 138z6.com, 1 1395kj.com, 1 -1396.net, 1 139z6.com, 1 13ad.de, 1 13ag8.com, 1 @@ -3898,6 +3897,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714992681893000); 5thfloormedia.com, 1 5thgenrams.com, 1 5tiptop.com, 1 +5top.nl, 1 5u15.com, 1 5y.fi, 1 5yeb.com, 0 @@ -4329,7 +4329,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714992681893000); 683168.com, 1 683968.com, 1 684781.com, 1 -68522.com, 1 68522c.com, 1 68522k.com, 1 68522m.com, 1 @@ -4767,7 +4766,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714992681893000); 80780780.com, 1 8078d.com, 1 807software.com, 1 -8081d.com, 1 808cleanups.org, 1 808gutterking.com, 1 808mao.com, 1 @@ -4801,7 +4799,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714992681893000); 8139d.com, 1 8151d.com, 1 8153365.com, 0 -8153d.com, 1 8156d.com, 1 8159d88.com, 1 815jz.com, 1 @@ -4818,7 +4815,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714992681893000); 8173d.com, 1 817615.com, 1 8176d.com, 1 -8178d.com, 1 81818app.com, 0 81818d.com, 1 81818z.com, 1 @@ -4829,7 +4825,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714992681893000); 8183d88.com, 1 8186d.com, 1 818bwf.com, 1 -8190d.com, 1 8190d88.com, 1 819323.com, 1 8193d.com, 1 @@ -4987,7 +4982,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1714992681893000); 84yv.com, 1 84yw.com, 1 84zb.com, 1 -8501indie.nl, 1 850226.com, 1 8521.co, 0 8522hk.com, 1 @@ -6739,7 +6733,7 @@ a1bouncycastlehire.com, 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 @@ -7157,7 +7151,6 @@ ablehorsetransport.com, 1 ablehorsetransport.com.au, 1 ablehorsetransport.net.au, 1 ableitungsrechner.net, 1 -ableofficeadmin.com, 1 ableprop.net, 1 abli.at, 1 abli.eu, 1 @@ -8391,6 +8384,7 @@ adultgames.pro, 1 adultmalecontent.com, 1 adultshop.com.au, 0 adultwebcams1.com, 1 +aduro.com.tr, 1 adurra.com, 1 adutoras.com.br, 1 adv.cr, 0 @@ -8891,7 +8885,6 @@ afrijet.ga, 1 afrilatest.com, 1 afrimarket.ci, 1 afrique.buzz, 1 -afriregister.ci, 1 afriregister.com.ss, 1 afriregister.et, 1 afriregister.eu, 1 @@ -9392,6 +9385,7 @@ ahd.com, 0 ahealthyjourney.ca, 1 ahegaoroulette.com, 1 ahelos.tk, 1 +ahero4all.org, 1 ahezu.com, 1 ahg-offices.fr, 1 ahhcomfortshoes.com, 1 @@ -9620,7 +9614,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 @@ -10527,7 +10520,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 @@ -10936,7 +10928,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 @@ -11537,7 +11528,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 @@ -11897,7 +11887,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 +11987,6 @@ amagdic.com, 1 amagical.net, 0 amagraduates.tk, 1 amagroup.io, 1 -amaisd.org, 1 amaiz.com, 1 amalbansode.com, 1 amalfi5stars.com, 1 @@ -12207,7 +12195,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 @@ -13074,7 +13061,6 @@ anglarsports.com, 1 angleline.cn, 1 anglersconservation.net, 1 anglertanke.de, 1 -anglesgirl.eu.org, 1 anglictina-sojcak.cz, 1 anglictinasojcak.cz, 1 anglingactive.co.uk, 0 @@ -14146,7 +14132,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 @@ -14774,7 +14759,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 @@ -14955,8 +14940,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 @@ -16218,7 +16201,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 @@ -16837,7 +16819,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 @@ -17023,6 +17004,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 @@ -18377,7 +18359,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 @@ -18583,6 +18564,7 @@ badnat.tk, 1 badnjar.rs, 1 badodds.ga, 1 badoinkvr.com, 1 +badoo.com, 1 badoo.com.ar, 1 badoo.de, 1 badoo.eu, 1 @@ -18800,7 +18782,6 @@ balancenaturalhealthclinic.ca, 1 balancer.gq, 1 balancingbird.net, 1 balancingbirthbaby.com, 1 -balancingeverything.com, 1 balanda.ga, 1 balashiha-podmoskovie.ml, 1 balasingandaru.cf, 1 @@ -19169,7 +19150,6 @@ baravalle.com, 1 baraxolka.ga, 1 baraxolka.ml, 1 barbaderespeito.com.br, 1 -barbara-bertagnolli.co.uk, 1 barbara-fuchs-gruene-fuerth.de, 1 barbarabowersrealty.com, 1 barbarabryce.com, 1 @@ -19584,7 +19564,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 @@ -19988,7 +19967,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 @@ -20489,7 +20468,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 @@ -20742,8 +20720,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 @@ -20989,7 +20965,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 @@ -21003,6 +20978,8 @@ bespokebathrooms.com.au, 1 bespokespeaker.uk, 1 bespredel.tk, 1 bessels.tk, 1 +bessems.com, 1 +bessems.eu, 1 besser-beissen.de, 1 besser-golfen.tk, 1 besslavnye-ublyudki.tk, 1 @@ -22313,7 +22290,6 @@ bilimoe.com, 1 bilingualunit.tk, 1 bilirrubina.com, 1 bilisimdanismani.com, 1 -biliwind.com, 0 biljettmonster.se, 1 bilke.org, 1 bilkovita.bg, 1 @@ -22494,7 +22470,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 @@ -23063,7 +23038,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 @@ -23193,7 +23167,6 @@ bkin-42740.xyz, 1 bkin-43450.xyz, 1 bkin-46680.xyz, 1 bkk24.de, 1 -bkkf.at, 1 bkkposn.com, 1 bklaindia.com, 1 bkmexpress.com.tr, 1 @@ -23469,7 +23442,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 @@ -23550,7 +23522,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 @@ -24472,7 +24443,6 @@ bookbazar.co.in, 1 bookcheapairline.com, 1 bookchums.com, 1 bookcreator.com, 1 -bookfirm.com, 1 bookgeek.ga, 1 bookginawest.com, 1 bookingdjparis.fr, 1 @@ -25414,10 +25384,8 @@ breinify.ai, 1 breinify.com, 1 breitband.bz.it, 1 breizh.pm, 1 -breizhetho.com, 1 breizhpuffy.org, 1 breket.ml, 1 -brelahotelberulia.com, 1 brelin.tk, 1 brellich.eu, 1 breloque.com, 1 @@ -25736,7 +25704,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 @@ -26194,7 +26161,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 @@ -26369,6 +26335,7 @@ buildcor.com.au, 1 builddesygner.xyz, 1 buildersdiscount.net, 1 buildersofthesilentcities.tk, 1 +buildfood.com, 1 buildgp.com, 1 buildherers.ga, 1 buildherest.ga, 1 @@ -27516,7 +27483,6 @@ ca-saintdie.fr, 1 ca.gparent.org, 1 ca.search.yahoo.com, 0 ca3ahhet.tk, 1 -ca5.de, 1 caa.ca, 1 caalmn.org, 1 caarecord.org, 1 @@ -27579,6 +27545,7 @@ cacao.supply, 1 cacaolalina.com, 1 cacareerzone.org, 1 cacaumidade.com.br, 1 +caccc.com, 1 cachacasantaterezinha.com.br, 1 cachaceros.tk, 1 cache-checker.com, 1 @@ -27600,7 +27567,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 @@ -28201,6 +28167,7 @@ camslurp.org, 1 camsupplier.ml, 1 camsupplierers.ga, 1 camtor.ml, 1 +camtu.com, 1 camuri.com, 1 camview.nz, 1 camworld.com, 1 @@ -28488,7 +28455,6 @@ capellen.tk, 1 capeprivacy.com, 0 capetown.travel, 1 capetownelite.co.za, 1 -caph.info, 1 caphane.com, 1 caphapupolas.ga, 1 caphapupolas.ml, 1 @@ -30153,6 +30119,7 @@ censeo-financial.com, 1 censored.ml, 1 censurfridns.dk, 1 censurfridns.nu, 1 +censys.io, 1 centariuss.ga, 1 centella.tw, 1 centenariodeuncampeon.tk, 1 @@ -30366,7 +30333,6 @@ certbus.com, 1 certcenter.com, 0 certevia.com, 1 certfa.com, 1 -certfica4u.com, 1 certidao-nascimento-pt.org, 1 certidaonc.com.br, 1 certificados.edu.do, 1 @@ -30413,6 +30379,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 @@ -30861,6 +30828,7 @@ chasoslov.tk, 1 chasse-au-tresor.eu, 1 chasse-maree.com, 1 chasseurdetruites.com, 1 +chasti.com, 1 chastitybelts.tk, 1 chat-buddy.com, 1 chat-cam.tk, 1 @@ -31110,14 +31078,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 @@ -31398,6 +31364,7 @@ childswear.tk, 1 childtaxcredit.gov, 1 childwelfare.gov, 1 chile.tk, 1 +chileprevencion.cl, 1 chiletrenes.tk, 1 chilhowieva.gov, 1 chili.ml, 1 @@ -31440,6 +31407,7 @@ china-online-news.tk, 1 chinabank.ph, 1 chinabelt.com, 1 chinablows.com, 1 +chinacbd.com, 1 chinacdn.org, 1 chinacheers.com, 1 chinaclone.com, 1 @@ -31448,11 +31416,13 @@ chinadream404.com, 1 chinafree.online, 1 chinafree.site, 1 chinaglobalsecurities.cn, 1 +chinahd.com, 1 chinahealthcareblog.cf, 1 chinahitech.com, 1 chinaicpower.org, 0 chinaindexfund.cn, 1 chinajingkun.com, 1 +chinalike.com, 1 chinalosers.com, 1 chinamallonlin.com, 1 chinamediaproject.org, 1 @@ -31737,6 +31707,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 @@ -32027,7 +31998,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 @@ -32144,7 +32114,6 @@ cinnamonsnail.com, 1 cinnamonspiceandeverythingnice.com, 1 cinq-elements.com, 0 cinq-elements.net, 1 -cinqdecembre.com, 1 cinquecentoclubholland.tk, 1 cinqueportsvets.co.uk, 1 cins.rs, 1 @@ -32972,7 +32941,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 @@ -34045,7 +34013,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 @@ -34119,7 +34086,6 @@ 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 @@ -34614,7 +34580,7 @@ competis.cf, 1 competitor.com, 1 compeuphoria.com, 1 compibus.fr, 1 -compilenix.org, 0 +compilenix.org, 1 complaint.tk, 1 complang.se, 1 complasplasticos.com.br, 1 @@ -35067,7 +35033,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 @@ -35347,7 +35312,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 @@ -35648,6 +35612,7 @@ corruptcatz.com, 1 corruptos.tk, 1 corry-new.cloud, 1 cors-proxy.cf, 1 +corsa-b.uk, 1 corsac.nl, 1 corsectra.com, 1 corsepro.com, 1 @@ -36101,7 +36066,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 @@ -36329,6 +36293,7 @@ createme.com.pl, 1 createmvp.com, 1 createstudios.com.au, 0 createwithcynthia.com, 1 +creati.me, 1 creatiefcoaching.nl, 1 creatieven.com, 1 creatingchange.us, 1 @@ -36382,6 +36347,7 @@ creativeweb.biz, 1 creativewolf.net, 1 creativeworks.com.hk, 1 creativika.it, 1 +creativityalliance.com, 1 creativlabor.ch, 1 creatix.tk, 1 creatixx-network.de, 0 @@ -36440,7 +36406,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 @@ -36771,7 +36736,6 @@ crsvina.com, 1 crt.cloud, 1 crt.sh, 1 crt2014-2024review.gov, 1 -crtalleres.com, 1 crti.dz, 1 crti.tech, 1 crtified.me, 1 @@ -37180,7 +37144,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 @@ -37511,6 +37474,7 @@ 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 @@ -37897,6 +37861,7 @@ cypressca.gov, 1 cypressinheritancesaga.com, 1 cypresslegacy.com, 1 cyprus-company-for.gr, 1 +cyprus-company-service.com, 1 cyptechost.co.ke, 1 cyqual.com, 1 cyraco.com, 1 @@ -38286,7 +38251,6 @@ dal-loop.xyz, 1 dal.net.sa, 1 dalagore.com, 1 dalaran.city, 1 -dalat.blog, 1 dalb.in, 1 dalbar.com, 1 dalbarsqm.com, 1 @@ -38625,7 +38589,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 @@ -38873,7 +38836,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 @@ -38999,7 +38961,6 @@ datatruckers.nl, 1 datatruckers.org, 1 datatruckers.social, 1 datatube.tk, 1 -datatypes.net, 1 dataunion.com, 1 datavitec.com, 1 datavizable.org, 1 @@ -39013,7 +38974,6 @@ datazoo.com, 1 datdt.com, 1 date-hijri.net, 1 dateien.at, 1 -dateierweiterung.com, 1 datelligent.com, 1 datema.no, 1 datememe.com, 1 @@ -39027,7 +38987,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 @@ -39223,7 +39182,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 @@ -39234,6 +39192,7 @@ daviesscountyinsheriff.gov, 1 davimun.org, 1 davinamccall.tk, 1 davisboroga.gov, 1 +daviscannabisco.com, 1 daviscountyelectionsutah.gov, 1 daviscountyiowa.gov, 1 davisdieselandautorepair.com, 1 @@ -40388,7 +40347,6 @@ 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 @@ -40496,7 +40454,6 @@ depleteduranium.tk, 1 deplis.fr, 0 deplorablesdaily.com, 1 depokcity.tk, 1 -depolauncher.cf, 1 depone.net, 0 depop.com, 1 deported.ml, 1 @@ -40792,6 +40749,7 @@ destroysilence.ml, 1 destruction-frelon-asiatique.com, 1 destructive-revolution.tk, 1 destructoradepapel.com.es, 1 +destruktiveridingkrew.com, 1 destudio.org.ua, 1 destuurmanskolk.nl, 1 destyntek.com, 1 @@ -42786,7 +42744,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 @@ -43193,6 +43150,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 @@ -43262,7 +43220,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 @@ -43651,7 +43608,6 @@ doremy.be, 1 dorfbrunnen.eu, 0 dorfkultur.net, 1 dorfpark-falkenburg.de, 1 -dorfzittig.de, 1 doriangardes.fr, 1 doriangirod.ch, 0 dorianharmans.nl, 1 @@ -44485,7 +44441,6 @@ droid101.com, 1 droidafrica.net, 0 droidandy.com, 1 droidapp.nl, 1 -droidchart.com, 1 droidguide.ga, 1 droidhere.com, 1 droidific.com, 1 @@ -45845,7 +45800,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 @@ -45973,7 +45928,7 @@ eba.com.ua, 1 ebagroup.tk, 1 ebakery.de, 1 eban.bzh, 1 -ebanca.com, 1 +ebanca.com, 0 ebanking.indovinabank.com.vn, 1 ebanking.raiffeisen.ch, 1 ebankingabersicher.ch, 1 @@ -45999,7 +45954,6 @@ ebci-nsn.gov, 1 ebcired-nsn.gov, 1 ebdaa-business.com, 1 eben18.net, 1 -ebenda.org, 1 ebenisterie-de-villenouvelle.fr, 1 ebenvloedaanleggen.nl, 1 eberharter-steine.at, 1 @@ -46203,7 +46157,6 @@ ecoconut.org, 1 ecocreativity.org, 1 ecocuisinedesign.com, 1 ecodedi.com, 1 -ecodena.com.mx, 1 ecodepur.co.ao, 1 ecodepur.fr, 1 ecodesign-labo.jp, 1 @@ -46717,6 +46670,7 @@ ee951.com, 0 ee9721.com, 0 ee9728.co, 1 ee973.com, 0 +eeagrants.cz, 1 eebt.hu, 1 eeeb.loan, 1 eeeeeeeeee.de, 1 @@ -46867,6 +46821,7 @@ eggel.ch, 1 eggen.dk, 1 eggendorfer.at, 1 eggendorfer.be, 1 +eggendorfer.biz, 1 eggendorfer.ch, 1 eggendorfer.co.uk, 1 eggendorfer.de, 1 @@ -46874,6 +46829,7 @@ eggendorfer.info, 1 eggendorfer.it, 1 eggendorfer.li, 1 eggendorfer.name, 1 +eggendorfer.net, 1 eggendorfer.online, 1 eggendorfer.org, 1 eggendorfer.pro, 1 @@ -47884,7 +47840,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 @@ -48051,7 +48006,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 @@ -48491,6 +48445,7 @@ endviolence.gc.ca, 1 enecivilela.com, 1 enefit.com, 1 enefit.ee, 1 +enefit.lv, 1 enefitconnect.ee, 1 enefitgreen.com, 1 enefitgreen.ee, 1 @@ -48558,7 +48513,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 @@ -49020,7 +48974,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 @@ -49648,7 +49601,7 @@ esoterikerforum.de, 1 espace-caen.fr, 0 espace-gestion.fr, 1 espace-habitat-francais.fr, 1 -espace-orenda.ch, 1 +espace-orenda.ch, 0 espace-vet.fr, 1 espace.network, 1 espace.spb.ru, 0 @@ -51199,7 +51152,6 @@ eyfari.com, 1 eyktasarim.tk, 1 eylea.us, 1 eylog.co.uk, 1 -eylulsohbet.net, 1 eynio.com, 1 eyona.com, 1 eyoo.link, 1 @@ -51421,7 +51373,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 @@ -51643,7 +51594,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 @@ -51692,7 +51642,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 @@ -51906,7 +51855,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 @@ -52039,7 +51987,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 @@ -52655,7 +52602,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 @@ -53406,7 +53352,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 @@ -53625,7 +53570,7 @@ find-mba.com, 1 findahero.com.au, 1 findairconditioningers.ga, 1 findairconditioningest.ga, 1 -findallgames.com, 0 +findallgames.com, 1 findanengineer.com, 1 findapinball.com, 1 findautoloan.ml, 1 @@ -54286,7 +54231,6 @@ flashigra.tk, 1 flashingblinkylights.com, 1 flashissue.com, 1 flashkeysers.ga, 1 -flashlightchart.com, 1 flashpegasus.com.br, 1 flashscores.tk, 1 flashset.tk, 1 @@ -54418,6 +54362,7 @@ flexiblenetflow.com, 1 flexibsd.com, 1 flexicano.nl, 1 flexicurity.tk, 1 +fleximus.org, 0 flexingpro.com, 1 flexinsurance.com.au, 1 flexinvesting.fi, 0 @@ -54918,7 +54863,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 @@ -55823,7 +55767,6 @@ foxquill.com, 0 foxscribbler.com, 1 foxstreetcomms.co.za, 0 foxstyle.gq, 1 -foxtonsframes.com, 1 foxtransportables.com.au, 1 foxtrials.com, 1 foxtrotcharlie.ovh, 1 @@ -56121,7 +56064,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 @@ -56512,7 +56454,6 @@ freeyourmusic.com, 1 freeza.cf, 1 freeza.tk, 1 freezander.tk, 1 -freezaworld.com, 1 freezemea.com, 1 freezerrepairaustin.com, 1 freezion.com, 1 @@ -56598,6 +56539,7 @@ freshersworld.ml, 1 fresherwalkins.tk, 1 freshfinder.com.au, 1 freshfishdelivery.com, 1 +freshgreenhouse.net, 1 freshhosting.tk, 1 freshinsport.fr, 1 freshjoomlatemplates.com, 1 @@ -57756,6 +57698,8 @@ ga-2.it, 0 ga-digitazion.com, 1 ga-part.ru, 1 gaasuper6.com, 1 +gabaldon.eu, 1 +gabaldon.nl, 1 gabapentin.gq, 1 gabare-loire.com, 1 gabbeh.jp, 1 @@ -57879,7 +57823,6 @@ gagop.org, 1 gagor.pl, 0 gagramore.cf, 1 gagygnole.ch, 0 -gaheztexab.com, 1 gaiafood.co, 1 gaijin.network, 1 gailfellowsphotography.com, 1 @@ -58535,7 +58478,6 @@ 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 @@ -58713,6 +58655,7 @@ geauxdns.com, 1 geba-online.de, 1 gebaeude-braun.de, 1 gebaeudebilanzierung.de, 1 +gebaeudeklima-schweiz.ch, 1 gebeliktakibim.com, 1 geben.digital, 1 gebiert.de, 1 @@ -59878,7 +59821,6 @@ giedrioukis.lt, 1 gielectrical.com.au, 0 giemsa.com, 1 gierds.de, 1 -gieschke.de, 1 gietvloergarant.nl, 1 gif-avatars.com, 1 gif.tips, 0 @@ -60526,7 +60468,6 @@ globaz.ch, 1 globe-brasil.tk, 1 globe.gov, 1 globedx.exchange, 1 -globegazette.com, 1 globeinform.com, 1 globelink-group.com, 1 globemilk.nl, 1 @@ -60764,6 +60705,7 @@ goatbot.xyz, 1 goathub.io, 1 goatlord.tk, 1 goatstore.ca, 1 +goaudits.com, 1 goavio.rest, 1 gobarrelroll.com, 1 gobeline.com, 1 @@ -60915,7 +60857,6 @@ 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 @@ -61528,7 +61469,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 @@ -61653,7 +61593,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 @@ -61844,7 +61783,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 @@ -63019,6 +62957,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 @@ -63564,7 +63503,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 @@ -63693,7 +63631,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 @@ -64626,6 +64563,7 @@ healthbanfield.tk, 1 healthbank.io, 1 healthbeltsville.tk, 1 healthbinghamton.tk, 1 +healthbit.com.br, 1 healthblender.ga, 1 healthblod.ga, 1 healthbolton.tk, 1 @@ -65279,7 +65217,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 @@ -66756,6 +66693,7 @@ homa.website, 0 homake.cf, 1 homatism.com, 1 homd.xyz, 1 +home-design.bg, 1 home-hunts.com, 1 home-insurance-quotes.tk, 1 home-manicure.tk, 1 @@ -67573,7 +67511,6 @@ hotelmariasas.it, 1 hotelmarinaadria.com, 1 hotelmonal.in, 1 hotelnagarkotparadise.tk, 1 -hotelneptundalmatien.com, 1 hotelplazataranto.com, 1 hotelponcowinatan.com, 1 hotelpromo.codes, 1 @@ -67592,7 +67529,6 @@ hotelsinbuxton.com, 1 hotelsinformer.com, 1 hotelsingaporeairport.com, 1 hotelsinncoventry.com, 1 -hotelsolinebrela.com, 1 hotelsonline.tk, 1 hotelsrejber.cz, 1 hotelsrit.tk, 1 @@ -67791,7 +67727,6 @@ howieisawesome.com, 1 howlers.tk, 1 howlinhawk.tk, 1 howlonghaswilliambeenwaitingforhislicence.uk, 1 -howlongtobeatsteam.com, 1 howmanymilesfrom.com, 1 howmanypeoplearethereinthe.world, 1 howmanypeoplearethereintheworld.com, 0 @@ -67804,7 +67739,6 @@ howonce.com, 1 howonce.com.cn, 1 howonce.net, 1 howonce.org, 1 -howopen.net, 1 howpchub.com, 1 howsecureismypassword.net, 1 howsmyssl.com, 1 @@ -69606,6 +69540,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 @@ -70203,7 +70138,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 @@ -70656,7 +70590,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 @@ -70900,6 +70833,7 @@ informat.ga, 1 informaticapremium.com, 0 informaticien.tk, 1 informaticmousset.tk, 1 +informatico.pt, 1 informaticoalicante.tk, 1 informaticolamancha.tk, 1 informatiger.net, 1 @@ -71539,7 +71473,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 @@ -71600,7 +71533,6 @@ intelekta.es, 1 intelhost.com.br, 1 intelius.cf, 1 intellar.com, 1 -intelldynamics.com, 1 intellect-ls.com, 1 intellecta.is, 1 intellective.us, 1 @@ -71822,7 +71754,6 @@ 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 @@ -72285,6 +72216,7 @@ ipledgeonline.org, 0 iplog.info, 0 iplookup.tk, 1 ipmatic.ga, 1 +ipmkts.com, 1 ipmotion.ca, 1 ipmscoutek.com, 0 ipnoze.com, 1 @@ -72674,6 +72606,7 @@ isimonbrown.co.uk, 1 isimonline.tk, 1 isincheck.com, 1 ising.pl, 1 +isiponline.ca, 1 isis.cloud, 1 isiso.com.tr, 1 isistomie.com, 0 @@ -73281,7 +73214,7 @@ 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 @@ -73308,7 +73241,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 @@ -74279,6 +74211,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 @@ -74288,6 +74221,7 @@ jc666.xyz, 1 jcadg.com, 1 jcaicedo.com, 1 jcaicedo.tk, 1 +jcanals.com, 1 jcb.com, 1 jcbaterias.com.br, 1 jcbgolfandcountryclub.com, 1 @@ -74519,7 +74453,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 @@ -75457,7 +75390,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 @@ -75757,7 +75689,6 @@ journaliste.tk, 1 journalisticapp.com, 1 journalnow.com, 1 journals.ru, 1 -journalstar.com, 1 journaltimes.com, 1 journaway.com, 1 journeedesfilles.gc.ca, 1 @@ -76488,6 +76419,7 @@ k2united.com, 1 k2velosi.com, 1 k36533.com, 1 k38.cc, 1 +k3a.me, 1 k3nny.fr, 1 k3t.net, 1 k4law.com, 1 @@ -77047,7 +76979,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 @@ -77125,7 +77056,6 @@ karatesamurai.tk, 1 karawane.tk, 1 karaz.ps, 1 karbox.de, 1 -kardac.com, 1 kardia-bordeauxdoggen.tk, 1 kardize24.pl, 1 kardjali.bg, 1 @@ -77730,7 +77660,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 @@ -77851,7 +77780,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 @@ -78052,7 +77980,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 @@ -78339,7 +78266,7 @@ kielwi.gov, 1 kienlen.org, 1 kientrucphunguyen.com, 1 kienviethung.com, 1 -kieran-mcguire.uk, 0 +kieran-mcguire.uk, 1 kieran.de, 1 kieranjones.uk, 1 kieranpotts.com, 1 @@ -78361,6 +78288,7 @@ kif.rocks, 0 kiffmarks.com, 1 kifid.nl, 1 kigurumi-party.ru, 1 +kihi.news, 1 kiinanharjakoirat.tk, 1 kiinteistot-lidl.fi, 1 kiiteyo.net, 1 @@ -79058,7 +78986,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 @@ -80237,7 +80164,6 @@ kryshodel.ml, 1 krystal-framework.ml, 1 krytykawszystkiego.com, 1 krytykawszystkiego.pl, 1 -kryx.de, 1 krzeslaonline.pl, 1 ks-19.com, 1 ks-39.com, 1 @@ -80605,7 +80531,6 @@ kupleno.com, 1 kuplukover.by, 1 kupoholik.rs, 1 kupon-proxy6.ru, 1 -kupone.com.br, 1 kuponmail.tk, 1 kuponydoher.cz, 1 kuppingercole.com, 1 @@ -80652,7 +80577,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 @@ -81597,6 +81521,7 @@ languagesandnumbers.com, 1 languageterminal.com, 1 langworth.com, 0 langzeit-reisen.com, 1 +langzijn.nl, 1 lanhhuyet510.tk, 1 lanhydrockap.co.uk, 1 lanispa.com, 1 @@ -82420,7 +82345,7 @@ leadbox.cz, 1 leadcricket.com, 1 leadercreative.ga, 1 leaderfreight.tk, 1 -leadergamer.com.tr, 0 +leadergamer.com.tr, 1 leaderinnetflow.com, 1 leaderoftheresistance.com, 0 leaderoftheresistance.net, 0 @@ -82711,7 +82636,6 @@ lefcoaching.nl, 1 lefebvristes.com, 1 lefebvristes.fr, 1 lefevre-ec.fr, 1 -lefichier.net, 1 lefilradio.fr, 1 leflorecountyok.gov, 1 leflox.cf, 1 @@ -82932,7 +82856,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 @@ -82958,7 +82881,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 @@ -82988,7 +82910,6 @@ lemni.top, 1 lemoine.at, 1 lemonadefashion.com, 1 lemonardo.ga, 1 -lemoncloud.eu.org, 1 lemoniax.com, 1 lemonpic.ga, 1 lemonpool.com.tr, 1 @@ -83420,7 +83341,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 @@ -83453,6 +83374,7 @@ lewt.me, 1 lex-legal.com.ua, 1 lex18.com, 1 lexapro-price.ga, 1 +lexautoservice.nl, 1 lexblogplatform.com, 1 lexblogplatformthree.com, 1 lexch.com, 1 @@ -83706,6 +83628,7 @@ 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 @@ -84154,7 +84077,6 @@ lime-host.cf, 1 lime-host.tk, 1 limechain.tech, 1 limecho.net, 1 -limehost.com, 1 limehotel.tk, 1 limelightnashville.cf, 1 limelightnashville.ga, 1 @@ -84950,7 +84872,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 @@ -86298,7 +86219,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 @@ -86378,7 +86298,6 @@ 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 @@ -86427,7 +86346,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 @@ -86669,7 +86587,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 @@ -87602,6 +87520,7 @@ mahurivaishya.co.in, 1 mahurivaishya.com, 1 mai.ru, 1 maiaimobiliare.ro, 1 +maialeechin.com, 1 maiateam.pt, 1 maichun.info, 0 maid.gg, 1 @@ -87808,7 +87727,6 @@ makeitsimple.pt, 1 makejusticework.org.uk, 1 makelindazi.com, 1 makelinks.online, 0 -makellos-kosmetik.de, 1 makemejob.com, 1 makemillion.tk, 1 makemoney-plan.tk, 1 @@ -88004,7 +87922,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 @@ -88869,7 +88786,7 @@ 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-enzweiler.de, 1 @@ -88953,7 +88870,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 @@ -90848,7 +90764,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 @@ -90895,7 +90810,6 @@ medvesajt.hu, 1 medvet.com.es, 1 medy-me.com, 1 medyahabertv.com, 1 -medyaweb.net, 1 medycznyangielski.pl, 1 medyotan.ga, 1 medyumzeyneleroglu.com, 1 @@ -91535,7 +91449,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 @@ -91550,7 +91463,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 @@ -92724,7 +92636,6 @@ millburyma.gov, 1 millcreekut.gov, 1 millcreekwa.gov, 1 millefleurs.eu, 1 -millenn.photos, 1 millennium-thisiswhoweare.net, 1 millenniumfalcon.org, 1 millenniumhotels.com, 1 @@ -93378,7 +93289,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 @@ -93948,7 +93858,6 @@ moddedphones.com, 1 modderday.com, 1 modding-forum.com, 1 modding-openmw.com, 0 -modding-welt.com, 1 moddingworld.tk, 1 moddiy.com, 1 moddo.com, 1 @@ -95205,7 +95114,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 @@ -95592,6 +95501,7 @@ 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 @@ -96886,7 +96796,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 @@ -96904,7 +96813,6 @@ mypivcard.com, 1 myplaceonline.com, 1 mypnu.net, 1 mypogljad.tk, 1 -mypornsnap.top, 1 myportal.ga, 1 myposters.tk, 1 mypowerserg.ca, 1 @@ -97346,6 +97254,7 @@ nacoree.ga, 1 nacres.tk, 1 nacsonline.tk, 1 nacua.org, 1 +nacudeck.com, 1 nacyklo.cz, 1 nad-r.com, 1 nada-photo.fr, 1 @@ -97480,7 +97389,6 @@ nakalabo.jp, 1 nakama.tv, 1 nakamastudios.com, 1 nakamochi.io, 1 -nakamuramudancas.com.br, 1 nakanishi-paint.com, 1 nakanocity-cashless.jp, 1 nakarkhana.com, 1 @@ -97653,7 +97561,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 @@ -97927,7 +97834,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 @@ -99607,7 +99513,6 @@ nft-dev-web.azurewebsites.net, 1 nft-qa-web.azurewebsites.net, 1 nft.io, 1 nftactually.com, 1 -nftnow.com, 1 nftshowroom.com, 1 ng-musique.com, 1 ng.edu.ee, 1 @@ -99852,7 +99757,6 @@ nicn.me, 1 nico.st, 1 nicochinese.com, 1 nicoforconi.it, 1 -nicofy.com, 0 nicogrosser.de, 0 nicoknibbe.nl, 1 nicokroon.nl, 1 @@ -100650,7 +100554,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 @@ -101045,7 +100948,7 @@ notmyrealmail.com, 1 notnewz.tk, 1 notnize.net, 1 notnl.com, 1 -notokyc.com, 1 +notofilia.com, 1 notomalayan.tk, 1 notonprem.com, 1 notora.tech, 1 @@ -101054,7 +100957,6 @@ notre-planete.info, 1 notrefuse.tk, 1 notrero13.com, 1 notresiteduvercors.tk, 1 -notryden.com, 1 notsafefor.work, 1 notsoape.com, 1 nottawatwpisabellami.gov, 1 @@ -101872,7 +101774,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 @@ -102939,7 +102841,6 @@ omag.gov, 1 omaha.com, 1 omaha.gov, 1 omahachapterone.org, 1 -omahagutterandsiding.com, 1 omaharoofpros.com, 1 omahcoin.com, 1 omal.info, 1 @@ -102956,7 +102857,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 @@ -103220,7 +103120,7 @@ oneone.moe, 1 oneonemedia.tk, 1 oneononeonone.de, 1 oneononeonone.tv, 1 -onepeloton.ca, 1 +onepeloton.ca, 0 onepeloton.co.uk, 1 onepeloton.com, 1 onepersona.io, 1 @@ -103469,7 +103369,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 @@ -104668,7 +104568,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 @@ -104928,6 +104827,7 @@ owl.net, 1 owlandbee.co.uk, 1 owlandbee.eu, 1 owlandbee.uk, 1 +owlando.com, 1 owlandrabbitgallery.com, 1 owlazy.com, 1 owlbee.be, 1 @@ -104994,7 +104894,7 @@ oxigenoinformatica.tk, 1 oximedia.ga, 1 oximoron.tk, 1 oxinarf.pt, 1 -oxizonia.com, 0 +oxizonia.com, 1 oxlab.com.ar, 1 oxo.cloud, 0 oxona.eu, 1 @@ -106028,7 +105928,6 @@ parkcare.fr, 1 parkcare.it, 1 parkcare.nl, 1 parkcare.pt, 1 -parkcheap.nl, 1 parkcitycu.org, 1 parkcounty-wy.gov, 1 parkcountyco.gov, 1 @@ -106558,6 +106457,7 @@ paulanet.tk, 1 paulasilvasvensson.eu, 1 paulbaily.com, 1 paulborza.com, 1 +paulbramhall.uk, 1 paulbrown.ddns.net, 1 paulc-themovie.com, 1 paulcamper.com, 1 @@ -107040,7 +106940,6 @@ 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 @@ -107178,6 +107077,7 @@ pegasnet.tk, 1 pegdown.org, 1 pegrum.rocks, 1 pegundugun.tk, 1 +peifeng.li, 1 peifi.de, 0 peinture-77.fr, 1 peippo.at, 1 @@ -107252,6 +107152,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 @@ -107507,7 +107408,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 @@ -107769,7 +107669,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 @@ -108025,7 +107925,6 @@ pgnetwork.net, 1 pgnetwork.org, 1 pgp.lol, 1 pgp.net, 1 -pgp.network, 1 pgp.org.au, 1 pgpaintanddesign.com, 1 pgpmail.cc, 1 @@ -108248,7 +108147,6 @@ phographer.com, 1 pholio.com, 1 phone-service-center.de, 1 phone-spy.ml, 1 -phone42.com, 1 phonearena.com, 1 phonedoc.it, 1 phonefilter.co.uk, 1 @@ -108457,7 +108355,6 @@ physicsforums.com, 1 physik.lol, 1 physio-im-appelbachtal.de, 1 physio-koenigsee.de, 1 -physio-nrj.ch, 1 physiobalance.nl, 1 physiobrite.tk, 1 physioteam-franz.de, 1 @@ -109007,7 +108904,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 @@ -109209,7 +109105,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 @@ -110531,7 +110426,6 @@ porady.walbrzych.pl, 1 porady.zgora.pl, 1 poradywnetrzarskie.pl, 1 porazarul.by, 1 -porcepastora.com.ve, 1 porchdaydreamer.com, 1 porcore.com, 1 porelcorazon.com, 1 @@ -114341,7 +114235,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 @@ -114739,7 +114632,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 @@ -114776,7 +114668,6 @@ railto.com.se, 1 railto.llc, 1 railtollc.com, 1 railvideo.co.uk, 1 -railvideo.net, 1 railvideo.nl, 1 railway.moe, 1 railwayease.com, 1 @@ -115108,7 +114999,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 @@ -115346,6 +115236,7 @@ rb-china.net, 1 rb.cz, 1 rballday-entertainment.nl, 1 rbbaader.de, 1 +rbbuae.com, 1 rbcafe.com, 1 rbclub.cz, 1 rbcosmetici.it, 1 @@ -116358,7 +116249,6 @@ regtech.tk, 1 regtify.com, 1 regtify.org, 1 regtransfers.co.uk, 1 -reguanli.com, 1 reguladordevoltagem.com.br, 1 regularizaboti.com.br, 1 regularlabs.com, 1 @@ -117218,6 +117108,7 @@ reup.cash, 1 reurbcaceres.com.br, 1 reuschtools.com, 1 reusesti.ro, 1 +reusorecicla.com.br, 1 reut42.de, 1 reuter-profishop.de, 0 reuter.de, 0 @@ -117700,7 +117591,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 @@ -117817,7 +117707,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 @@ -117843,7 +117732,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 @@ -118746,7 +118634,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 @@ -118920,7 +118807,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 @@ -118933,7 +118820,6 @@ routechoices.com, 1 routedlogic.net, 1 routemates.tk, 1 router24.info, 1 -routerchart.com, 1 routerclub.ru, 1 routerctrl.com, 1 routeto.com, 1 @@ -119835,6 +119721,7 @@ s-team.tk, 1 s-u.pw, 1 s-yuz.com, 1 s-zwrm.de, 1 +s.ai, 1 s.ee, 1 s.lu, 1 s.sb, 1 @@ -119855,7 +119742,6 @@ s2.coach, 1 s20121946.ml, 1 s26s.com, 1 s2i.ch, 0 -s2member.com, 1 s2n.tech, 1 s2t.net, 1 s36533.com, 1 @@ -119905,7 +119791,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 @@ -120462,7 +120347,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 @@ -120772,6 +120656,7 @@ sandbox.i.ng, 1 sandbox.mydigipass.com, 0 sandelduggal.com, 1 sanderdesign.tk, 1 +sanderdorigo.nl, 1 sanderkoenders.eu, 1 sanderkoenders.nl, 1 sanderpoppe.com, 0 @@ -121667,7 +121552,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 @@ -121828,7 +121712,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 @@ -121941,7 +121824,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 @@ -122007,7 +121889,7 @@ scoolcode.com, 1 scoolio.de, 1 scoop6.co.uk, 1 scoopcake.com, 1 -scoopcanada.com, 0 +scoopcanada.com, 1 scoopgh.com, 1 scooply.org, 1 scootaloo.co.uk, 1 @@ -122155,7 +122037,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 @@ -123457,6 +123338,7 @@ serverlein.com, 1 serverlog.net, 1 servermacher.de, 1 servermaster.sk, 1 +servernerds.net, 1 serverninja.tk, 1 serveroffline.net, 1 serverpedia.de, 1 @@ -123631,7 +123513,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 @@ -124231,7 +124112,6 @@ shelterrealestate.com.au, 1 sheltieplanet.com, 1 sheltongrp.com, 1 sheltonvirtual.com, 1 -shelvacu.com, 1 shemaleflick.com, 1 shemalehub.com, 1 shemalepictures.net, 1 @@ -124552,6 +124432,7 @@ shop4d.com, 1 shop4im.com, 1 shopadvies.nl, 1 shopalike.cz, 1 +shopalike.dk, 1 shopalike.es, 1 shopalike.fi, 1 shopalike.fr, 1 @@ -124559,6 +124440,7 @@ shopalike.hu, 1 shopalike.it, 1 shopalike.nl, 1 shopalike.pl, 1 +shopalike.se, 1 shopalike.sk, 1 shopapi.cz, 1 shoparbonne.co.uk, 1 @@ -125428,6 +125310,7 @@ sim4seed.org, 1 simabonnement.nl, 1 simac.fr, 1 simam.de, 1 +simantec.cl, 1 simaogv.net, 1 simark.ca, 1 simart.cf, 1 @@ -125996,7 +125879,6 @@ siusto.com, 1 sivaexports.in, 1 sivaru.tk, 1 sivizius.eu, 1 -sivutoimisto.fi, 1 sivyerge.com, 1 siw64.com, 1 siwa.cf, 1 @@ -126081,6 +125963,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 @@ -126130,7 +126013,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 @@ -126792,6 +126674,7 @@ smanson.duckdns.org, 1 smaragderna.cf, 1 smaragderna.ga, 1 smaragderna.tk, 1 +smares.de, 1 smaridibor.tk, 1 smarinintgal.tk, 1 smarpshare.com, 1 @@ -126819,6 +126702,7 @@ smartacademy.pro, 1 smartagilesolution.com, 1 smartandcom.ch, 1 smartapplianceservices.com, 1 +smartar.com, 1 smartart.gr, 1 smartart.tk, 1 smartass.space, 1 @@ -126893,7 +126777,6 @@ smartlogstock.com, 0 smartlogtower.com, 1 smartlooks.es, 1 smartmachine.com, 1 -smartmail.io, 1 smartmail24.de, 1 smartme.pl, 1 smartmeal.ru, 1 @@ -126961,11 +126844,10 @@ smash-gg.club, 1 smashbros-chile.tk, 1 smashbylaney.com, 1 smashcooper.tk, 1 -smashingconf.com, 0 +smashingconf.com, 1 smashingmagazine.com, 1 smashnl.tk, 1 smashno.ru, 1 -smatwebdesign.com, 0 smavesto.de, 1 smb-analytics.pw, 1 smb.wiki, 1 @@ -128457,7 +128339,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 @@ -128540,6 +128421,7 @@ spainpol.es, 1 spajk.cz, 1 spalnobelyo.com, 1 spaltron.net, 1 +spamasaurus.com, 1 spamcage.com, 1 spamdrain.com, 1 spamedica.com.co, 1 @@ -128826,7 +128708,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 @@ -129788,7 +129669,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 @@ -130258,7 +130138,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 @@ -131934,6 +131813,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 @@ -132572,6 +132452,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 @@ -132719,6 +132600,7 @@ swiftoutput.com, 1 swiftpak.co.uk, 1 swiftqueue.com, 1 swiftrecharge.com, 1 +swilabible.be, 1 swilagod.be, 1 swilatag.be, 1 swilly.org, 1 @@ -133830,7 +133712,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 @@ -133866,6 +133747,7 @@ tardics.com, 1 tardics.eu, 1 tardics.net, 1 tardis.cloud, 1 +tardis.io, 1 tardishomelab.com, 1 tarek.wtf, 1 tarekfadel.com, 1 @@ -134082,7 +133964,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 @@ -134270,7 +134151,6 @@ tdev.team, 1 tdk.eu, 1 tdlesovik.ru, 1 tdln.tk, 1 -tdn.com, 1 tdolar.com, 1 tdr.today, 1 tdrcartuchos.com.br, 1 @@ -134365,7 +134245,6 @@ teambanzai.tk, 1 teambeam.at, 0 teambeam.ch, 0 teambeam.com, 0 -teambeam.de, 0 teambeam.es, 0 teambeam.eu, 0 teambeam.fr, 0 @@ -134537,6 +134416,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 @@ -134861,7 +134741,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 @@ -134878,6 +134757,7 @@ tecit.ch, 1 tecke.tk, 1 teckgeekz.com, 1 tecknobox.fr, 1 +tecknologg.website, 1 teckprojects.com, 1 tecmarkdig.com, 1 tecmestre.com.br, 1 @@ -134914,7 +134794,6 @@ tecnomagazine.net, 1 tecnonews.cf, 1 tecnonews.tk, 1 tecnopiniones.com, 1 -tecnosa.es, 1 tecnoticiasdigitales.tk, 1 tecnotrattamenti.it, 1 tecnovernicisrl.com, 1 @@ -134922,7 +134801,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 @@ -134990,6 +134868,7 @@ teenxy.com, 1 teepak.ml, 1 teerer.tk, 1 teestore.ru, 1 +teesypeesy.com, 1 teethtalkgirl.com, 0 teetje-doko.de, 1 teetoptens.com, 1 @@ -135347,7 +135226,6 @@ 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 @@ -136009,7 +135887,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 @@ -136572,7 +136449,6 @@ thekitchngic.com, 1 thekitsunesden.com, 1 thekittivibe.com, 1 thekliniquehotdeal.com, 1 -theknightrider.com, 0 theknittingnetwork.co.uk, 1 theknockout.tk, 1 theknowitguy.com, 1 @@ -136754,7 +136630,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 @@ -137108,6 +136983,7 @@ theteaaffair.com, 1 theteaguemovie.tk, 1 thetebodifference.com, 1 thetechdude.ga, 1 +thetechnicaldost.com, 1 thetfordtwpmi.gov, 1 thetfordvt.gov, 1 thetherapist.tk, 1 @@ -138707,7 +138583,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 @@ -138800,7 +138675,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 @@ -139156,7 +139030,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 @@ -140022,7 +139895,6 @@ tradingtag.ga, 1 tradingview.com, 1 tradition-immobilier.com, 1 tradition.ch, 1 -tradition.com, 1 traditional.kz, 1 traditions.nl, 1 traditionskapperscollege.nl, 1 @@ -140088,7 +139960,6 @@ trainingproviderresults.gov, 1 trainings-handschuhe-test.de, 1 trainingsalicante.tk, 1 trainingscatalogus.nl, 1 -trainingsecke.de, 1 trainingstore.fish, 1 trainingswiese.at, 1 trainline.io, 1 @@ -140708,7 +140579,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 @@ -141425,7 +141296,6 @@ ttr-home.com, 1 ttr3.eu, 1 ttrade.ga, 1 ttrecms.com, 1 -tts-assessments.com, 1 ttshapn.org, 1 ttsoft.pl, 1 ttspttsp.com, 1 @@ -141471,7 +141341,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 @@ -141576,7 +141445,6 @@ tuna.be, 1 tunad.io, 1 tunbiya.com, 1 tuncelimezaryapimi.com.tr, 1 -tunda.it, 1 tunder.tk, 1 tundermadar.hu, 1 tune-web.de, 1 @@ -141723,7 +141591,6 @@ turkru.pro, 1 turksell.ru, 1 turksite.tk, 1 turksiteleri.tk, 1 -turksohbet.com, 1 turkteam.tk, 1 turktelekomarenagolleri.tk, 1 turktree.com, 1 @@ -141931,7 +141798,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 @@ -142261,7 +142127,7 @@ u15p7.com, 1 u15p8.com, 1 u15x.com, 1 u175.com, 1 -u29dc.com, 0 +u29dc.com, 1 u2b.eu, 1 u2co.de, 1 u2croatia.tk, 1 @@ -142449,7 +142315,6 @@ udo-luetkemeier.de, 1 udomain.net, 1 udp.pw, 0 udp.sh, 0 -udruga-point.hr, 1 udsocial.com, 1 udtonline.com, 1 udvoukocek.eu, 1 @@ -142506,7 +142371,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 @@ -142543,7 +142407,6 @@ 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 @@ -143643,7 +143506,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 @@ -144659,7 +144521,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 @@ -144778,6 +144640,7 @@ vedev.io, 1 vedma-praktik.com, 1 vedom.ru, 1 vedran-zulin.from.hr, 1 +vee.ci, 1 veeam.com, 1 veebill.com, 1 veebiveski.ee, 1 @@ -146159,7 +146022,6 @@ virtual-data-room.org, 1 virtual-dba.com, 1 virtual-insanity.tk, 1 virtual-webcam.com, 1 -virtualarkansas.org, 1 virtualbrands.com, 0 virtualbrestby.tk, 1 virtualbruges.tk, 1 @@ -146199,7 +146061,6 @@ virtualvaults.com, 0 virtualx.de, 1 virtubox.net, 1 virtubroker.com.mx, 1 -virtuele-dataroom.nl, 1 virtueturkey.ga, 1 virtuology.com, 1 virtus-group.com, 1 @@ -146359,7 +146220,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 @@ -146647,7 +146507,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 @@ -146983,6 +146842,7 @@ vonkuenheim.de, 1 vonniehudson.com, 1 vonpawn.com, 1 vonski.pl, 1 +vonsponneck.tv, 1 vonsuri.com, 1 voodoobeginner.com, 1 voodoocat.cf, 1 @@ -147352,7 +147212,6 @@ vtbs.moe, 1 vtcourts.gov, 1 vtech.com, 1 vtescebu.com, 1 -vtexpayments.com.br, 1 vtipe-vylez.cz, 0 vtivision.com, 1 vtjud.gov, 1 @@ -147818,7 +147677,7 @@ wallendair.com, 1 wallers.com, 1 wallet.google.com, 1 wallet.pp.ua, 1 -walletconnect.com, 0 +walletconnect.com, 1 walletconnector.cz, 1 walletfox.com, 1 wallethub.com, 1 @@ -148358,7 +148217,6 @@ wcatherinekendall.co.uk, 1 wcei.com.au, 1 wcema-ok.gov, 1 wcfauth.de, 1 -wcfcourier.com, 1 wck.com, 1 wcl.govt.nz, 1 wcloud.pro, 1 @@ -148632,7 +148490,6 @@ webdesign-kall.de, 1 webdesign-note.jp, 1 webdesignagency.cf, 1 webdesigncompanyindia.com, 1 -webdesigner4u.net, 0 webdesignersinchennai.tk, 1 webdesignfenua.tk, 1 webdesignlabor.ch, 1 @@ -148779,7 +148636,6 @@ webmail.mayfirst.org, 0 webmail.onlime.ch, 0 webmail.schokokeks.org, 1 webmama.tk, 1 -webman.ng, 1 webmanagement.berlin, 0 webmandat.fr, 1 webmandesign.eu, 1 @@ -149117,7 +148973,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 @@ -149416,7 +149271,6 @@ westcountrystalking.com, 1 westcreekna.org, 1 westendwifi.net, 1 westerdraai.tk, 1 -westeremden.com, 1 westergas.nl, 1 westernalliancebancorporation.com, 1 westernpadermatologist.com, 1 @@ -149657,6 +149511,7 @@ wheelingisland.com, 1 wheelspin.ga, 1 wheelwide.co.uk, 1 wheelwork.org, 0 +wheelworxrefinishing.com, 1 wheely.com, 1 wheelycool.tech, 1 wheelycoolgear.com, 1 @@ -151700,7 +151555,6 @@ wselektro.de, 1 wseo.pw, 1 wsgvet.com, 1 wsheffield.com, 1 -wshop24.biz, 1 wsl.sh, 1 wsldp.com, 1 wsm-naramowice.pl, 1 @@ -152979,7 +152833,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 @@ -153242,7 +153095,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 @@ -153702,8 +153554,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 @@ -154259,6 +154109,7 @@ yezi.ga, 1 yezishurb.site, 1 yf128.cc, 1 yfeer.com, 0 +yfh.me, 1 yggdar.ga, 1 yggdrasildice.com, 1 ygm.org.uk, 1 @@ -154882,7 +154733,6 @@ yuandan.ml, 1 yuanjiazhao.com, 1 yuanjiazhao.tk, 1 yuansecard.me, 1 -yubanmei.com, 1 yubi.co, 0 yubico.com, 1 yubico.org, 1 @@ -155302,7 +155152,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 @@ -156337,7 +156186,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 diff --git a/services/settings/dumps/blocklists/addons-bloomfilters.json b/services/settings/dumps/blocklists/addons-bloomfilters.json index f771f2c063db4..d7e5462dfe1de 100644 --- a/services/settings/dumps/blocklists/addons-bloomfilters.json +++ b/services/settings/dumps/blocklists/addons-bloomfilters.json @@ -1,5 +1,18 @@ { "data": [ + { + "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": [ @@ -3247,5 +3260,5 @@ "last_modified": 1690223886167 } ], - "timestamp": 1703766957812 + "timestamp": 1704285358567 } diff --git a/services/settings/dumps/main/devtools-compatibility-browsers.json b/services/settings/dumps/main/devtools-compatibility-browsers.json index b09d28c6a75e4..1216cf02e0d7b 100644 --- a/services/settings/dumps/main/devtools-compatibility-browsers.json +++ b/services/settings/dumps/main/devtools-compatibility-browsers.json @@ -1,5 +1,77 @@ { "data": [ + { + "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, @@ -126,24 +198,6 @@ "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, @@ -180,60 +234,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": "Samsung Internet", "schema": 1700352303815, @@ -316,5 +316,5 @@ "last_modified": 1665656484764 } ], - "timestamp": 1702890886929 + "timestamp": 1704181096583 } From c550c9bbf732262ce924309bbcb8cdb02647ad6c Mon Sep 17 00:00:00 2001 From: Daniel Holbert <dholbert@cs.stanford.edu> Date: Fri, 5 Jan 2024 16:26:56 +0000 Subject: [PATCH 25/46] Bug 1868456: Improve ManagedPostRefreshObserver invariants. a=dmeehan Original Revision: https://phabricator.services.mozilla.com/D195607 Differential Revision: https://phabricator.services.mozilla.com/D197611 --- layout/base/nsRefreshObservers.cpp | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) 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<ManagedPostRefreshObserver> thisObject = this; + auto action = std::move(mAction); + Unregister unregister = action(false); - Unregister unregister = mAction(false); if (unregister == Unregister::Yes) { if (RefPtr<nsPresContext> 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); } } From 9648fd4889fbd29c4013f5ecb158f000ca86b121 Mon Sep 17 00:00:00 2001 From: Andrew Osmond <aosmond@mozilla.com> Date: Wed, 13 Sep 2023 12:05:25 +0000 Subject: [PATCH 26/46] Bug 1852420 - Ensure surface and crop rect used in ImageBitmap are valid. r=gfx-reviewers,lsalzman, a=dmeehan When ImageBitmap::PrepareForDrawTarget is called, we must ensure that the surface returned is acceptable to the given DrawTarget. If it is not, then we need to recreate the surface from mData. We must also ensure similar when we are creating a new ImageBitmap from another ImageBitmap, as we don't know in what context it may be used. Similarly, we need to ensure we produce DataSourceSurface compatible surfaces when we need to both crop and premultiply. Additionally, we now no longer clear mPictureRect or mAlphaType when we set mSurface with the cached, cropped data. Since we may need to clear the cached surface, we need to know the original crop rect and alpha. Differential Revision: https://phabricator.services.mozilla.com/D188056 --- dom/canvas/ImageBitmap.cpp | 165 ++++++++++++++++++++++++------------- 1 file changed, 110 insertions(+), 55 deletions(-) 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<SourceSurface> 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<gfx::DataSourceSurface> 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<gfx::SourceSurface> 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<SourceSurface> 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<SourceSurface> 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<DrawTarget> 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<DrawTarget> 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<DataSourceSurface> 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<DataSourceSurface> srcSurface = surface->GetDataSurface(); if (NS_WARN_IF(!srcSurface)) { return nullptr; } - RefPtr<DataSourceSurface> 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<DataSourceSurface> 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> ImageBitmap::CreateInternal( return nullptr; } - IntRect cropRect = aImageBitmap.mPictureRect; + IntRect cropRect; RefPtr<SourceSurface> surface; + RefPtr<DataSourceSurface> 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<layers::Image> data = aImageBitmap.mData; surface = data->GetAsSourceSurface(); @@ -1338,6 +1391,8 @@ already_AddRefed<ImageBitmap> 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> ImageBitmap::CreateInternal( return CreateImageBitmapInternal( aGlobal, surface, Some(cropRect), aOptions, aImageBitmap.mWriteOnly, - needToReportMemoryAllocation, false, aImageBitmap.mAlphaType, aRv); + needToReportMemoryAllocation, false, alphaType, aRv); } class FulfillImageBitmapPromise { From 32a8fa282fa2c810bc51ba5ee9446ab971eb8863 Mon Sep 17 00:00:00 2001 From: Magnus Melin <mkmelin+mozilla@iki.fi> Date: Mon, 11 Dec 2023 10:45:19 +0000 Subject: [PATCH 27/46] Bug 1869195 - Fix crash in [@ mozilla::PresShell::GetRootScrollFrame]. r=emilio, a=dmeehan Differential Revision: https://phabricator.services.mozilla.com/D196021 --- layout/base/PresShell.cpp | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/layout/base/PresShell.cpp b/layout/base/PresShell.cpp index 9fcafdde1acca..e57d773a27e68 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"); From 2fb2e11e40205caa4d5b88020c2d28a56851779e Mon Sep 17 00:00:00 2001 From: Andrew Osmond <aosmond@mozilla.com> Date: Thu, 4 Jan 2024 02:54:49 +0000 Subject: [PATCH 28/46] Bug 1872956 - Avoid copying document URI in nsLayoutUtils::PaintFrame unless logging. r=layout-reviewers,tnikkel, a=dmeehan Most of the time, we don't need to call Document::GetDocumentURI in nsLayoutUtils::PaintFrame, as it is only used when we are logging or dumping to the console. We should avoid calling it because this might be quite large in the case of data URIs and result in OOM crashes. This is most commonly observed with rasterizing SVG images. Differential Revision: https://phabricator.services.mozilla.com/D197637 --- layout/base/nsLayoutUtils.cpp | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) 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", From c6fedba266b3acb1b774fe61412a8a5d3feefe2a Mon Sep 17 00:00:00 2001 From: Sean Feng <sefeng@mozilla.com> Date: Tue, 12 Dec 2023 22:49:38 +0000 Subject: [PATCH 29/46] Bug 1867152 - Fix the assertion in nsPresContext::UserInputEventsAllowed r=smaug, a=dmeehan Differential Revision: https://phabricator.services.mozilla.com/D196106 --- dom/base/Document.cpp | 5 +++++ dom/base/Document.h | 11 +++++++++++ layout/base/nsPresContext.cpp | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/dom/base/Document.cpp b/dom/base/Document.cpp index 6d4a5df62dafb..f5832590ced32 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), @@ -18377,6 +18378,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()) { 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/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; } From 052c4d1bf4e61b28aefcf5efb8ca6717f46b99cf Mon Sep 17 00:00:00 2001 From: ffxbld <ffxbld@mozilla.com> Date: Mon, 8 Jan 2024 11:06:45 +0000 Subject: [PATCH 30/46] No Bug, mozilla-esr115 repo-update HSTS HPKP remote-settings tld-suffixes - a=repo-update, r=dmeehan Differential Revision: https://phabricator.services.mozilla.com/D197900 --- netwerk/dns/effective_tld_names.dat | 8 +- security/manager/ssl/StaticHPKPins.h | 2 +- security/manager/ssl/nsSTSPreloadList.inc | 382 +++++++----------- .../dumps/security-state/intermediates.json | 20 +- 4 files changed, 168 insertions(+), 244 deletions(-) diff --git a/netwerk/dns/effective_tld_names.dat b/netwerk/dns/effective_tld_names.dat index d9143702b8512..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-12T15:13:54Z +// 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 @@ -13426,10 +13426,6 @@ london.cloudapps.digital // Submitted by Richard Baker <richard.baker@digital.cabinet-office.gov.uk> pymnt.uk -// UKHomeOffice : https://www.gov.uk/government/organisations/home-office -// Submitted by Jon Shanks <jon.shanks@digital.homeoffice.gov.uk> -homeoffice.gov.uk - // GlobeHosting, Inc. // Submitted by Zoltan Egresi <egresi@globehosting.com> ro.im diff --git a/security/manager/ssl/StaticHPKPins.h b/security/manager/ssl/StaticHPKPins.h index 51d7cad664aba..83ecb879f44e2 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(1712843463560000); +static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1713178221152000); diff --git a/security/manager/ssl/nsSTSPreloadList.inc b/security/manager/ssl/nsSTSPreloadList.inc index da8c0800d1d3e..bd784617926db 100644 --- a/security/manager/ssl/nsSTSPreloadList.inc +++ b/security/manager/ssl/nsSTSPreloadList.inc @@ -8,7 +8,7 @@ /*****************************************************************************/ #include <stdint.h> -const PRTime gPreloadListExpirationTime = INT64_C(1715262660262000); +const PRTime gPreloadListExpirationTime = INT64_C(1715597417739000); %% 0--1.de, 1 0-0.io, 1 @@ -350,7 +350,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715262660262000); 0cdn.net, 1 0cean.tk, 1 0chan.pl, 1 -0chanru.net, 1 0cp8778.com, 1 0culus.tk, 1 0d111.com, 1 @@ -547,7 +546,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715262660262000); 10628.com, 1 1068511.com, 1 10705.ml, 1 -10774.net, 0 107996.com, 1 1079fm.ga, 1 10840.net, 1 @@ -2142,7 +2140,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715262660262000); 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 @@ -2450,7 +2448,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715262660262000); 31fss.net, 1 31fss.support, 1 320281.net, 1 -320331.com, 0 321132.com, 0 321666365.com, 1 321live.nl, 1 @@ -7151,6 +7148,7 @@ ablehorsetransport.com, 1 ablehorsetransport.com.au, 1 ablehorsetransport.net.au, 1 ableitungsrechner.net, 1 +ableofficeadmin.com, 1 ableprop.net, 1 abli.at, 1 abli.eu, 1 @@ -7415,7 +7413,6 @@ academiasdemodelos.com, 0 academic-master.com, 1 academica.nl, 1 academicassignmentexperts.com, 1 -academichealthscience.net, 1 academichelp.gq, 1 academie-angoumois.org, 1 academie-de-police.ch, 0 @@ -8206,7 +8203,6 @@ adminforge.de, 1 admingator.net, 1 admini.cl, 1 administracionessaez.es, 1 -administradoresdefincasvalencia.net, 1 administradorvalencia.es, 0 administraitor.video, 1 administrarmeusite.tk, 1 @@ -8887,8 +8883,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 @@ -9253,7 +9247,6 @@ agourahillsoutdoorlighting.com, 1 agouralandscapelighting.com, 1 agouralighting.com, 1 agouraoutdoorlighting.com, 1 -agowa338.de, 1 agpandit.in, 1 agpideas.com, 1 agr.asia, 1 @@ -9333,7 +9326,6 @@ agrotraktor.gq, 1 agrowbio.com, 0 agroyard.com.ua, 1 agrus-wow.tk, 1 -agscapeslandscaping.com, 1 agscinemas.com, 1 agscinemasapp.com, 1 agsun6.com, 1 @@ -9385,7 +9377,6 @@ ahd.com, 0 ahealthyjourney.ca, 1 ahegaoroulette.com, 1 ahelos.tk, 1 -ahero4all.org, 1 ahezu.com, 1 ahg-offices.fr, 1 ahhcomfortshoes.com, 1 @@ -10300,6 +10291,7 @@ akl.city, 1 aklagare.se, 1 akmatrix.org, 1 akmens.id, 1 +ako-world.com, 1 akoben.cloud, 1 akoch.net, 1 akoestischafbouwen.nl, 1 @@ -11987,6 +11979,7 @@ amagdic.com, 1 amagical.net, 0 amagraduates.tk, 1 amagroup.io, 1 +amaisd.org, 1 amaiz.com, 1 amalbansode.com, 1 amalfi5stars.com, 1 @@ -12578,8 +12571,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 @@ -12637,7 +12628,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 @@ -16539,7 +16529,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 @@ -18873,7 +18863,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 @@ -19017,7 +19006,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 @@ -19150,6 +19138,7 @@ baravalle.com, 1 baraxolka.ga, 1 baraxolka.ml, 1 barbaderespeito.com.br, 1 +barbara-bertagnolli.co.uk, 1 barbara-fuchs-gruene-fuerth.de, 1 barbarabowersrealty.com, 1 barbarabryce.com, 1 @@ -19778,7 +19767,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 @@ -19837,7 +19825,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 @@ -20236,7 +20223,6 @@ beescloud.com, 1 beesco.us, 1 beesex.xyz, 1 beesnoosa.com, 1 -beestar.it, 1 beestation13.com, 1 beestech.fr, 1 beeswarmrehoming.com.au, 1 @@ -20828,6 +20814,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 @@ -21052,7 +21039,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 @@ -21295,7 +21281,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 @@ -22290,6 +22275,7 @@ bilimoe.com, 1 bilingualunit.tk, 1 bilirrubina.com, 1 bilisimdanismani.com, 1 +biliwind.com, 1 biljettmonster.se, 1 bilke.org, 1 bilkovita.bg, 1 @@ -22349,7 +22335,6 @@ billywig.stream, 1 biloxihistoricalsociety.org, 0 biloxisportfishing.com, 1 bilsho.com, 1 -biltmoreatthepark.com, 1 bim.finance, 1 bim.physio, 1 bim0s.com, 1 @@ -22470,6 +22455,7 @@ 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 @@ -23167,6 +23153,7 @@ bkin-42740.xyz, 1 bkin-43450.xyz, 1 bkin-46680.xyz, 1 bkk24.de, 1 +bkkf.at, 1 bkkposn.com, 1 bklaindia.com, 1 bkmexpress.com.tr, 1 @@ -23486,6 +23473,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 @@ -23664,7 +23652,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 @@ -23964,6 +23951,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 @@ -24443,6 +24431,7 @@ bookbazar.co.in, 1 bookcheapairline.com, 1 bookchums.com, 1 bookcreator.com, 1 +bookfirm.com, 1 bookgeek.ga, 1 bookginawest.com, 1 bookingdjparis.fr, 1 @@ -25309,7 +25298,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 @@ -25384,6 +25372,7 @@ breinify.ai, 1 breinify.com, 1 breitband.bz.it, 1 breizh.pm, 1 +breizhetho.com, 1 breizhpuffy.org, 1 breket.ml, 1 brelin.tk, 1 @@ -26678,7 +26667,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 @@ -27483,6 +27472,7 @@ ca-saintdie.fr, 1 ca.gparent.org, 1 ca.search.yahoo.com, 0 ca3ahhet.tk, 1 +ca5.de, 1 caa.ca, 1 caalmn.org, 1 caarecord.org, 1 @@ -27545,7 +27535,6 @@ cacao.supply, 1 cacaolalina.com, 1 cacareerzone.org, 1 cacaumidade.com.br, 1 -caccc.com, 1 cachacasantaterezinha.com.br, 1 cachaceros.tk, 1 cache-checker.com, 1 @@ -27735,7 +27724,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 @@ -28313,7 +28301,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 @@ -28441,7 +28429,6 @@ capacityproject.org, 1 capari.co, 1 caparicasurfing.com, 1 caparis.nl, 1 -capctury.com, 1 capeannpediatrics.com, 1 capebretonpiper.com, 1 capecanaveral.gov, 1 @@ -28455,6 +28442,7 @@ capellen.tk, 1 capeprivacy.com, 0 capetown.travel, 1 capetownelite.co.za, 1 +caph.info, 1 caphane.com, 1 caphapupolas.ga, 1 caphapupolas.ml, 1 @@ -28610,7 +28598,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 @@ -28662,7 +28649,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 @@ -28945,7 +28931,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 @@ -29543,7 +29528,6 @@ catchteamca.gov, 1 catchup-enschede.tk, 1 catcontent.cloud, 1 catcoxx.com, 1 -catcut.com, 1 catechese-ressources.com, 1 catedraderechonotarial.es, 1 catedraloscura.tk, 1 @@ -29604,7 +29588,6 @@ catl.st, 1 catland.club, 1 catlettsburgky.gov, 1 catlicking.com, 1 -catlive.com, 1 catlovingcare.com, 1 catmash.tk, 0 catmatchers.org, 1 @@ -29882,7 +29865,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 @@ -29901,6 +29883,7 @@ cdf.wiki, 1 cdfnature2019.fr, 1 cdg30.fr, 1 cdga.org, 1 +cdgitalia.org, 1 cdhb.health.nz, 1 cdhome.ga, 1 cdhqt.com, 1 @@ -30333,6 +30316,7 @@ certbus.com, 1 certcenter.com, 0 certevia.com, 1 certfa.com, 1 +certfica4u.com, 1 certidao-nascimento-pt.org, 1 certidaonc.com.br, 1 certificados.edu.do, 1 @@ -30424,6 +30408,7 @@ cevt.ar, 1 cewek.ml, 1 cewood.xyz, 1 cexplorer.io, 1 +ceyhanmolla.com, 1 ceyizlikelisleri.com, 1 ceylontea.org, 1 cezdent.com, 1 @@ -30828,7 +30813,6 @@ chasoslov.tk, 1 chasse-au-tresor.eu, 1 chasse-maree.com, 1 chasseurdetruites.com, 1 -chasti.com, 1 chastitybelts.tk, 1 chat-buddy.com, 1 chat-cam.tk, 1 @@ -31411,18 +31395,15 @@ chinacbd.com, 1 chinacdn.org, 1 chinacheers.com, 1 chinaclone.com, 1 -chinadiy.com, 1 chinadream404.com, 1 chinafree.online, 1 chinafree.site, 1 chinaglobalsecurities.cn, 1 -chinahd.com, 1 chinahealthcareblog.cf, 1 chinahitech.com, 1 chinaicpower.org, 0 chinaindexfund.cn, 1 chinajingkun.com, 1 -chinalike.com, 1 chinalosers.com, 1 chinamallonlin.com, 1 chinamediaproject.org, 1 @@ -31906,7 +31887,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 @@ -32859,7 +32839,6 @@ cleocinonline.gq, 1 cleova.com, 1 cles-asso.fr, 1 cles.jp, 1 -clesurporte.be, 1 clevelandheights.gov, 1 clevelandokla.com, 1 clever-datenschutz.de, 1 @@ -33866,7 +33845,6 @@ codewrecks.com, 1 codex.online, 1 codezenith.com, 1 codezeno.com.au, 1 -codific.com, 1 codifique.tk, 1 codigodelbonusbet365.com, 1 codigoexactodearea.com, 1 @@ -34276,7 +34254,6 @@ columbiail.gov, 1 columbialawreview.org, 1 columbiamemorialhealth.org, 1 columbiamspd.gov, 1 -columbiaproemergencymovers.com, 1 columbiascaffolding.com, 1 columbiathreadneedle.com, 1 columbiatwpmi.gov, 1 @@ -34580,7 +34557,7 @@ competis.cf, 1 competitor.com, 1 compeuphoria.com, 1 compibus.fr, 1 -compilenix.org, 1 +compilenix.org, 0 complaint.tk, 1 complang.se, 1 complasplasticos.com.br, 1 @@ -34606,7 +34583,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 @@ -34797,7 +34773,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 @@ -35561,7 +35536,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 @@ -35677,7 +35651,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 @@ -35958,6 +35932,7 @@ 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 @@ -36051,7 +36026,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 @@ -36059,7 +36033,6 @@ cqswxx.com, 1 cqvradio.ddns.net, 0 cr.search.yahoo.com, 0 cr05.fr, 1 -cr3zyblog.com, 1 cr8haven.com, 1 cr9499.com, 1 cra-bank.com, 1 @@ -36448,7 +36421,6 @@ creusalp.ch, 0 crew.moe, 1 crewextension.com, 1 crewnetwork.com, 1 -crewpictures.com, 0 crewresourcesinternational.group, 1 crewsing.tk, 1 crewvision.pt, 1 @@ -37632,7 +37604,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 @@ -38961,6 +38932,7 @@ datatruckers.nl, 1 datatruckers.org, 1 datatruckers.social, 1 datatube.tk, 1 +datatypes.net, 1 dataunion.com, 1 datavitec.com, 1 datavizable.org, 1 @@ -38974,6 +38946,7 @@ datazoo.com, 1 datdt.com, 1 date-hijri.net, 1 dateien.at, 1 +dateierweiterung.com, 1 datelligent.com, 1 datema.no, 1 datememe.com, 1 @@ -39191,6 +39164,7 @@ daviesscountyin.gov, 1 daviesscountyinsheriff.gov, 1 davimun.org, 1 davinamccall.tk, 1 +davinciwaldorfschool.org, 1 davisboroga.gov, 1 daviscannabisco.com, 1 daviscountyelectionsutah.gov, 1 @@ -39201,7 +39175,6 @@ davison.tech, 1 davisontwp-mi.gov, 1 davisvision.com, 1 davmimer-mercerie.ro, 1 -davoiceradio.com, 1 davorin.cf, 1 davosalestax.com, 1 davros.eu, 1 @@ -39325,7 +39298,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 @@ -39611,7 +39583,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 @@ -39798,7 +39769,6 @@ deepbluecrafting.co.uk, 1 deepblueemail.com, 1 deepbuy.tech, 1 deepcreampie.com, 1 -deeperblue.com, 0 deepgame.tk, 1 deephill.com, 1 deephustlellc.com, 1 @@ -40353,7 +40323,6 @@ dentalqoretemp.com, 1 dentalreklamlari.tk, 1 dentals.cf, 1 dentalsupportuk.com, 1 -dentaltalent.nl, 1 dentaltransitions.com, 1 dentalturism.com, 1 dentalunion.ru, 1 @@ -40454,6 +40423,7 @@ depleteduranium.tk, 1 deplis.fr, 0 deplorablesdaily.com, 1 depokcity.tk, 1 +depolauncher.cf, 1 depone.net, 0 depop.com, 1 deported.ml, 1 @@ -40749,7 +40719,6 @@ destroysilence.ml, 1 destruction-frelon-asiatique.com, 1 destructive-revolution.tk, 1 destructoradepapel.com.es, 1 -destruktiveridingkrew.com, 1 destudio.org.ua, 1 destuurmanskolk.nl, 1 destyntek.com, 1 @@ -41377,7 +41346,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 @@ -41825,7 +41794,6 @@ dimdata.com, 1 dime-staging.com, 1 dimension-pc.com, 1 dimensionjapon.tk, 1 -dimensions-ohs.com, 1 dimensionweb.tk, 1 dimeponline.com.br, 1 dimesanmedical.com, 1 @@ -41860,7 +41828,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 @@ -42110,7 +42077,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 @@ -42659,7 +42625,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 @@ -43608,6 +43573,7 @@ doremy.be, 1 dorfbrunnen.eu, 0 dorfkultur.net, 1 dorfpark-falkenburg.de, 1 +dorfzittig.de, 1 doriangardes.fr, 1 doriangirod.ch, 0 dorianharmans.nl, 1 @@ -43838,7 +43804,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 @@ -43946,7 +43911,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 @@ -44016,6 +43980,7 @@ dragonballzstore.com, 1 dragonbike.by, 1 dragonboatfestival.tk, 1 dragonbox.de, 1 +dragoncave.me, 1 dragoncityhack.tips, 1 dragonclean.gr, 1 dragonclicker.ml, 1 @@ -44041,7 +44006,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 @@ -44441,6 +44405,7 @@ droid101.com, 1 droidafrica.net, 0 droidandy.com, 1 droidapp.nl, 1 +droidchart.com, 1 droidguide.ga, 1 droidhere.com, 1 droidific.com, 1 @@ -44647,7 +44612,6 @@ 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 @@ -45351,7 +45315,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 @@ -45855,6 +45818,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 @@ -45954,6 +45918,7 @@ ebci-nsn.gov, 1 ebcired-nsn.gov, 1 ebdaa-business.com, 1 eben18.net, 1 +ebenda.org, 1 ebenisterie-de-villenouvelle.fr, 1 ebenvloedaanleggen.nl, 1 eberharter-steine.at, 1 @@ -46004,7 +45969,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 @@ -46148,7 +46112,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 @@ -46319,7 +46282,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 @@ -46525,7 +46487,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 @@ -46895,7 +46856,6 @@ 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 @@ -47862,6 +47822,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 @@ -48137,7 +48098,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 @@ -48378,7 +48338,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 @@ -48433,7 +48392,6 @@ endometriu.ml, 1 endondehay.com, 1 endoscope.bg, 1 endpipe.com, 1 -endplasticwaste.org, 1 endpointclinical.com, 1 endrinas.com, 1 endrust.com.au, 1 @@ -48445,7 +48403,6 @@ endviolence.gc.ca, 1 enecivilela.com, 1 enefit.com, 1 enefit.ee, 1 -enefit.lv, 1 enefitconnect.ee, 1 enefitgreen.com, 1 enefitgreen.ee, 1 @@ -48456,7 +48413,6 @@ enefitgreen.lv, 1 enefitgreen.pl, 1 enefitgreen.se, 1 enefitvolt.com, 1 -enefitvolt.ee, 1 enefitvolt.eu, 1 enefitvolt.fi, 1 enefitvolt.lv, 1 @@ -49158,7 +49114,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 @@ -49445,7 +49400,6 @@ esc-romania.tk, 1 esc-turkey.tk, 1 esc18.net, 1 esc3.net, 1 -esc9.net, 1 escae.ml, 1 escael.org, 1 escalando.tk, 1 @@ -49858,7 +49812,6 @@ 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 @@ -50492,7 +50445,6 @@ 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 @@ -50902,7 +50854,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 @@ -51150,7 +51101,6 @@ eyetelligence.nl, 1 eyetooth.ga, 1 eyfari.com, 1 eyktasarim.tk, 1 -eylea.us, 1 eylog.co.uk, 1 eynio.com, 1 eyona.com, 1 @@ -51987,6 +51937,7 @@ 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 @@ -52147,6 +52098,7 @@ fastbob.ga, 1 fastbob.gq, 1 fastbob.ml, 1 fastbob.tk, 1 +fastbuilder.pro, 1 fastcash.com.br, 1 fastcast.ga, 1 fastcats.tk, 1 @@ -52277,7 +52229,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 @@ -52678,6 +52629,7 @@ feministreview.ga, 1 feministreview.gq, 1 feministreview.ml, 1 feministspectrum.org, 1 +feministwiki.org, 1 feminteligencia.com, 1 femiwiki.com, 1 femme.fitness, 1 @@ -52698,7 +52650,6 @@ fencingmarters.ga, 1 fencingmartest.ga, 1 feng.si, 1 feng18.vip, 0 -feng28.vip, 0 feng68.vip, 0 feng88.vip, 0 feng98.vip, 0 @@ -53247,7 +53198,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 @@ -53326,7 +53276,6 @@ fightsupplies.co.uk, 1 figl.net, 1 figliasons.com, 1 figma.com, 1 -figmalover.com, 1 figshare.com, 1 figsrugbyleague.com.au, 1 figura.cz, 1 @@ -53570,7 +53519,7 @@ find-mba.com, 1 findahero.com.au, 1 findairconditioningers.ga, 1 findairconditioningest.ga, 1 -findallgames.com, 1 +findallgames.com, 0 findanengineer.com, 1 findapinball.com, 1 findautoloan.ml, 1 @@ -53844,7 +53793,6 @@ firstchoicefriseur.at, 1 firstchoicejunkservice.com, 1 firstchurchmn.org, 1 firstcitizensbank.com, 1 -firstclass.com.kh, 1 firstclasscastles.com, 1 firstclassleisure.co.uk, 1 firstclassnuisance.tk, 1 @@ -54231,6 +54179,7 @@ flashigra.tk, 1 flashingblinkylights.com, 1 flashissue.com, 1 flashkeysers.ga, 1 +flashlightchart.com, 1 flashpegasus.com.br, 1 flashscores.tk, 1 flashset.tk, 1 @@ -54458,7 +54407,6 @@ flirtlu.net, 0 flirtlu.org, 1 flirtportalcheck24.de, 1 flirty.tk, 1 -flissinger.com, 1 flixcheck.com, 1 flixcheck.de, 1 flixcost.com, 1 @@ -55987,7 +55935,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 @@ -55999,7 +55946,6 @@ frank-gcc.com, 1 frank-lastia.tk, 1 frank-vincent.nl, 0 frank-wendy.tk, 1 -frank.fyi, 1 frankbellamy.co.uk, 1 frankcare.shop, 1 frankdufaux.com, 1 @@ -56445,7 +56391,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 @@ -56454,6 +56399,7 @@ freeyourmusic.com, 1 freeza.cf, 1 freeza.tk, 1 freezander.tk, 1 +freezaworld.com, 1 freezemea.com, 1 freezerrepairaustin.com, 1 freezion.com, 1 @@ -56591,7 +56537,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 @@ -57359,6 +57304,7 @@ furniturefromthebarn.com, 1 furnitureproduction.tk, 1 furnituresolutions.tk, 1 furniturezoneboone.com, 1 +furniz.sk, 1 furnu.org, 1 furorcanario.tk, 1 furoretferrum.tk, 1 @@ -57793,7 +57739,6 @@ 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 @@ -57823,6 +57768,7 @@ gagop.org, 1 gagor.pl, 0 gagramore.cf, 1 gagygnole.ch, 0 +gaheztexab.com, 1 gaiafood.co, 1 gaijin.network, 1 gailfellowsphotography.com, 1 @@ -58051,7 +57997,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 @@ -58315,6 +58261,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 @@ -58478,6 +58425,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 @@ -58655,7 +58603,6 @@ geauxdns.com, 1 geba-online.de, 1 gebaeude-braun.de, 1 gebaeudebilanzierung.de, 1 -gebaeudeklima-schweiz.ch, 1 gebeliktakibim.com, 1 geben.digital, 1 gebiert.de, 1 @@ -59821,6 +59768,7 @@ giedrioukis.lt, 1 gielectrical.com.au, 0 giemsa.com, 1 gierds.de, 1 +gieschke.de, 1 gietvloergarant.nl, 1 gif-avatars.com, 1 gif.tips, 0 @@ -60468,6 +60416,7 @@ globaz.ch, 1 globe-brasil.tk, 1 globe.gov, 1 globedx.exchange, 1 +globegazette.com, 1 globeinform.com, 1 globelink-group.com, 1 globemilk.nl, 1 @@ -60830,7 +60779,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 @@ -60875,7 +60823,7 @@ gold-fm.ml, 1 gold9999.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 @@ -61020,7 +60968,6 @@ gomelphoto.com, 1 gomer.tk, 1 gometa.link, 1 gomeya.com, 1 -gomezhvac.com, 1 gomezites.tk, 1 gomicrophone.ml, 1 gomine.tk, 1 @@ -61047,7 +60994,6 @@ gonebald.tk, 1 gonenli.com, 1 gonepal.com, 1 gonerogue.ml, 1 -gonerstudio.com, 0 gongik.info, 1 gongjianwei.com, 1 gongjuhao.com, 1 @@ -61297,7 +61243,7 @@ gossiptimes.tk, 1 gost-energo.ru, 1 gostaffer.com, 1 gostargazing.co.uk, 1 -gostartkit.com, 0 +gostartkit.com, 1 gostatera.com, 1 gosti-dom.ga, 1 gostica.com, 1 @@ -62208,7 +62154,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 @@ -62518,7 +62463,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 @@ -62677,7 +62621,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 @@ -63248,6 +63191,7 @@ hackingand.coffee, 0 hackingdh.com, 1 hackingdumpdrive.org, 1 hackingfever.tk, 1 +hackingondemand.com, 1 hackingwithswift.com, 1 hackintosh.eu, 1 hackintosh.social, 1 @@ -63424,7 +63368,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 @@ -64851,7 +64794,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 @@ -65328,6 +65270,7 @@ helpwithmycreditcardbank.gov, 1 helpwithmymortgage.gov, 1 helpwithmymortgagebank.gov, 1 helsenorge.no, 1 +helsi.me, 1 helsingfors.guide, 1 helsinginlaakariyhdistys.fi, 1 helsinki-systems.de, 1 @@ -65400,7 +65343,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 @@ -65611,7 +65553,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 @@ -66162,7 +66103,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 @@ -67002,7 +66943,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 @@ -67318,6 +67258,7 @@ hospitalsineachstate.com, 1 hospitalviladaserra.com.br, 1 hossi.pro, 0 hossien.tk, 1 +hossleylps.com, 1 host-heberg.com, 1 host-morezar.ml, 1 host-stage.net, 1 @@ -67613,7 +67554,6 @@ houdah.com, 1 houdenvanhonden.nl, 1 houhuayuan.com, 1 houlang.ac.cn, 1 -houldsworthmill.com, 1 hourai.gg, 1 houraiteahouse.net, 1 hourlyearning.tk, 1 @@ -67739,6 +67679,7 @@ howonce.com, 1 howonce.com.cn, 1 howonce.net, 1 howonce.org, 1 +howopen.net, 1 howpchub.com, 1 howsecureismypassword.net, 1 howsmyssl.com, 1 @@ -67863,7 +67804,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 @@ -69123,6 +69063,7 @@ icusignature.com, 1 icustomboxes.com, 1 icy.aq, 1 icyapril.com, 1 +icycanada.com, 1 icydestiny.com, 0 icyeurope.com, 1 icyhealth.com, 0 @@ -70833,7 +70774,6 @@ informat.ga, 1 informaticapremium.com, 0 informaticien.tk, 1 informaticmousset.tk, 1 -informatico.pt, 1 informaticoalicante.tk, 1 informaticolamancha.tk, 1 informatiger.net, 1 @@ -72097,7 +72037,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 @@ -72154,7 +72094,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 @@ -72195,7 +72135,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 @@ -72767,7 +72707,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 @@ -75689,6 +75628,7 @@ journaliste.tk, 1 journalisticapp.com, 1 journalnow.com, 1 journals.ru, 1 +journalstar.com, 1 journaltimes.com, 1 journaway.com, 1 journeedesfilles.gc.ca, 1 @@ -75987,7 +75927,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 @@ -77100,7 +77039,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 @@ -77600,6 +77538,7 @@ keepleft.gr, 1 keeprunning.fun, 1 keepsakedna.com, 1 keepsight.org.au, 1 +keepsmyrnabeautiful.com, 1 keepsolid.com, 1 keesmartens.tk, 1 keesslop.nl, 1 @@ -77670,7 +77609,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 @@ -78021,6 +77959,7 @@ 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 @@ -78133,7 +78072,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 @@ -78324,7 +78262,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 @@ -78647,7 +78584,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 @@ -80026,7 +79962,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 @@ -80264,7 +80199,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 @@ -80507,7 +80441,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 @@ -80531,6 +80464,7 @@ kupleno.com, 1 kuplukover.by, 1 kupoholik.rs, 1 kupon-proxy6.ru, 1 +kupone.com.br, 1 kuponmail.tk, 1 kuponydoher.cz, 1 kuppingercole.com, 1 @@ -82299,7 +82233,7 @@ ldemb.com, 1 ldesignweb.com, 1 ldgardenservices.co.uk, 1 ldiesel.ca, 1 -ldjb.jp, 1 +ldjb.jp, 0 ldlcorrentes.com.br, 1 ldm2468.com, 1 ldsvoicesoftherestoration.com, 1 @@ -82345,7 +82279,6 @@ leadbox.cz, 1 leadcricket.com, 1 leadercreative.ga, 1 leaderfreight.tk, 1 -leadergamer.com.tr, 1 leaderinnetflow.com, 1 leaderoftheresistance.com, 0 leaderoftheresistance.net, 0 @@ -82636,6 +82569,7 @@ lefcoaching.nl, 1 lefebvristes.com, 1 lefebvristes.fr, 1 lefevre-ec.fr, 1 +lefichier.net, 1 lefilradio.fr, 1 leflorecountyok.gov, 1 leflox.cf, 1 @@ -82910,6 +82844,7 @@ lemni.top, 1 lemoine.at, 1 lemonadefashion.com, 1 lemonardo.ga, 1 +lemoncloud.eu.org, 1 lemoniax.com, 1 lemonpic.ga, 1 lemonpool.com.tr, 1 @@ -83198,6 +83133,7 @@ lesterchan.net, 1 lesterrassesdusoleil.ch, 0 lestravauxduparticulier.fr, 1 lestrokeofgenius.com, 1 +lestudiopecot.fr, 1 lesummeira.is, 1 lesvertsmaroc.tk, 1 lesy.eu, 1 @@ -84077,6 +84013,7 @@ lime-host.cf, 1 lime-host.tk, 1 limechain.tech, 1 limecho.net, 1 +limehost.com, 1 limehotel.tk, 1 limelightnashville.cf, 1 limelightnashville.ga, 1 @@ -86132,7 +86069,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 @@ -86997,7 +86934,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 @@ -87014,7 +86950,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 @@ -87620,6 +87555,7 @@ mailway.io, 1 mailxpress.ga, 1 maimaiyeuem.tk, 1 maimemostatus.com, 1 +main-bvxea6i-sw23ji6z2nxsu.us-4.platformsh.site, 1 main1.host, 1 maindrivekew.com.au, 1 mainechiro.com, 1 @@ -87727,6 +87663,7 @@ makeitsimple.pt, 1 makejusticework.org.uk, 1 makelindazi.com, 1 makelinks.online, 0 +makellos-kosmetik.de, 1 makemejob.com, 1 makemillion.tk, 1 makemoney-plan.tk, 1 @@ -88066,7 +88003,6 @@ 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 @@ -89581,7 +89517,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 @@ -89933,7 +89868,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 @@ -90810,6 +90744,7 @@ medvesajt.hu, 1 medvet.com.es, 1 medy-me.com, 1 medyahabertv.com, 1 +medyaweb.net, 1 medycznyangielski.pl, 1 medyotan.ga, 1 medyumzeyneleroglu.com, 1 @@ -91210,7 +91145,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 @@ -91259,7 +91193,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 @@ -92636,6 +92569,7 @@ millburyma.gov, 1 millcreekut.gov, 1 millcreekwa.gov, 1 millefleurs.eu, 1 +millenn.photos, 1 millennium-thisiswhoweare.net, 1 millenniumfalcon.org, 1 millenniumhotels.com, 1 @@ -93457,7 +93391,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 @@ -93858,6 +93791,7 @@ moddedphones.com, 1 modderday.com, 1 modding-forum.com, 1 modding-openmw.com, 0 +modding-welt.com, 1 moddingworld.tk, 1 moddiy.com, 1 moddo.com, 1 @@ -94191,7 +94125,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 @@ -94207,7 +94140,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 @@ -94271,7 +94203,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 @@ -94418,7 +94349,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 @@ -94706,7 +94636,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 @@ -95817,6 +95746,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 @@ -96048,7 +95978,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 @@ -96273,6 +96202,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 @@ -96748,7 +96678,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 @@ -96813,6 +96742,7 @@ mypivcard.com, 1 myplaceonline.com, 1 mypnu.net, 1 mypogljad.tk, 1 +mypornsnap.top, 1 myportal.ga, 1 myposters.tk, 1 mypowerserg.ca, 1 @@ -97214,6 +97144,7 @@ naap.tk, 1 naarenaa.tk, 1 naaronstoe.nl, 1 nab-services.ml, 1 +nabaleka.com, 1 nabc.com.au, 1 nabeer.ga, 1 nabeez.cf, 1 @@ -97389,6 +97320,7 @@ nakalabo.jp, 1 nakama.tv, 1 nakamastudios.com, 1 nakamochi.io, 1 +nakamuramudancas.com.br, 1 nakanishi-paint.com, 1 nakanocity-cashless.jp, 1 nakarkhana.com, 1 @@ -97521,7 +97453,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 @@ -97696,7 +97628,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 @@ -97993,7 +97924,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 @@ -98176,6 +98107,7 @@ ncvps.gov, 1 ndaal.eu, 1 ndaccount.com, 1 ndarville.com, 1 +ndbilje.si, 1 ndcpolipak.com, 1 ndd.govt.nz, 1 ndeb-bned.ca, 1 @@ -99513,6 +99445,7 @@ nft-dev-web.azurewebsites.net, 1 nft-qa-web.azurewebsites.net, 1 nft.io, 1 nftactually.com, 1 +nftnow.com, 1 nftshowroom.com, 1 ng-musique.com, 1 ng.edu.ee, 1 @@ -99524,7 +99457,6 @@ ngc.gov, 0 ngclearing.com, 0 ngecezt.ddns.net, 1 ngefics.tk, 1 -ngegame.id, 1 ngelag.com, 1 ngergs.de, 1 ngetik.id, 1 @@ -99752,6 +99684,7 @@ nickwasused.ga, 1 nickwasused.gq, 1 nickwasused.ml, 1 nickwasused.tk, 1 +nickwatton.com, 0 nickyfoxx.net, 1 nicn.me, 1 nico.st, 1 @@ -100018,7 +99951,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 @@ -100174,7 +100106,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 @@ -100875,7 +100807,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 @@ -100948,7 +100879,7 @@ notmyrealmail.com, 1 notnewz.tk, 1 notnize.net, 1 notnl.com, 1 -notofilia.com, 1 +notokyc.com, 1 notomalayan.tk, 1 notonprem.com, 1 notora.tech, 1 @@ -100957,6 +100888,7 @@ notre-planete.info, 1 notrefuse.tk, 1 notrero13.com, 1 notresiteduvercors.tk, 1 +notryden.com, 1 notsafefor.work, 1 notsoape.com, 1 nottawatwpisabellami.gov, 1 @@ -101056,7 +100988,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 @@ -103014,6 +102945,7 @@ ondemandassociate.com, 1 onderka.com, 1 onderwijscentrum.gent, 1 onderwijscentrumgent.be, 1 +onderzoeksraad.nl, 1 ondevamosjantar.com, 1 ondiet.biz, 1 ondoline.ch, 1 @@ -103120,7 +103052,7 @@ oneone.moe, 1 oneonemedia.tk, 1 oneononeonone.de, 1 oneononeonone.tv, 1 -onepeloton.ca, 0 +onepeloton.ca, 1 onepeloton.co.uk, 1 onepeloton.com, 1 onepersona.io, 1 @@ -103434,7 +103366,7 @@ onpointinsights.us, 0 onpointplugins.com, 1 onpopup.ga, 1 onporn.fun, 1 -onrealt.ru, 0 +onrealt.ru, 1 onrr.gov, 1 onsemediagroup.ml, 1 onsenlaichelesdoigts.be, 1 @@ -103864,7 +103796,6 @@ optigear.nl, 1 optik-sehstern.de, 1 optik-tamara.de, 1 optik-trosdorff.de, 1 -optiker-gilde.de, 1 optikflow.com, 1 optikoscolombia.com, 1 optilan.tk, 1 @@ -103917,6 +103848,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 @@ -104845,7 +104777,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 @@ -105839,7 +105770,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 @@ -105928,6 +105858,7 @@ parkcare.fr, 1 parkcare.it, 1 parkcare.nl, 1 parkcare.pt, 1 +parkcheap.nl, 1 parkcitycu.org, 1 parkcounty-wy.gov, 1 parkcountyco.gov, 1 @@ -106342,7 +106273,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 @@ -107549,7 +107479,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 @@ -107744,7 +107673,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 @@ -107925,6 +107853,7 @@ pgnetwork.net, 1 pgnetwork.org, 1 pgp.lol, 1 pgp.net, 1 +pgp.network, 1 pgp.org.au, 1 pgpaintanddesign.com, 1 pgpmail.cc, 1 @@ -108147,6 +108076,7 @@ phographer.com, 1 pholio.com, 1 phone-service-center.de, 1 phone-spy.ml, 1 +phone42.com, 1 phonearena.com, 1 phonedoc.it, 1 phonefilter.co.uk, 1 @@ -108734,7 +108664,6 @@ pinklecfest.org, 1 pinklittlenotebook.com, 1 pinkmango.travel, 0 pinkoi.com, 1 -pinkoz.xyz, 1 pinkpearl.tk, 1 pinkplay.com.br, 1 pinkpop.nl, 1 @@ -108936,7 +108865,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 @@ -109010,6 +108938,7 @@ 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 @@ -109982,6 +109911,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 @@ -110034,7 +109964,6 @@ poki.bg, 1 poki.by, 1 poki.ch, 1 poki.cn, 1 -poki.co.id, 1 poki.co.il, 1 poki.com, 1 poki.com.br, 1 @@ -110316,6 +110245,7 @@ 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 @@ -110426,6 +110356,7 @@ porady.walbrzych.pl, 1 porady.zgora.pl, 1 poradywnetrzarskie.pl, 1 porazarul.by, 1 +porcepastora.com.ve, 1 porchdaydreamer.com, 1 porcore.com, 1 porelcorazon.com, 1 @@ -110693,7 +110624,6 @@ 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 @@ -110883,6 +110813,7 @@ powerpc.pt, 1 powerpilot.co.za, 1 powerplan.com, 1 powerplantmall.com, 1 +powerplatform.istanbul, 1 powerplay.com, 1 powerplay.xyz, 1 powerplayer.tk, 1 @@ -111474,7 +111405,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 @@ -111550,7 +111480,6 @@ primegeradores.com.br, 1 primegiftindia.com, 1 primekinoshita.com, 1 primelogistics.cf, 0 -primemotive.com, 0 primemotive.com.au, 1 primeone.global, 1 primeops.co, 1 @@ -113258,7 +113187,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 @@ -114294,7 +114222,6 @@ rackoon.de, 1 raclet.co.uk, 1 raconconsulting.co.uk, 1 raconteurs.gent, 1 -racquetdepot.co.uk, 1 racsoft.cl, 1 ractf.co.uk, 1 racunalo.com, 1 @@ -114552,7 +114479,6 @@ 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 @@ -114668,6 +114594,7 @@ railto.com.se, 1 railto.llc, 1 railtollc.com, 1 railvideo.co.uk, 1 +railvideo.net, 1 railvideo.nl, 1 railway.moe, 1 railwayease.com, 1 @@ -114857,7 +114784,6 @@ rancowar.com, 1 randallcounty.gov, 1 randallcraig.com, 1 randallso.gov, 1 -randburgplumber-247.co.za, 1 randburgplumbing.co.za, 1 randc.org, 1 randolf.ca, 1 @@ -115177,6 +115103,7 @@ rayfalling.com, 1 rayhillforsupremecourt.com, 1 rayiris.com, 1 rayj.me, 1 +rayj.org, 1 raykitchenware.com, 1 raylo.com, 1 raym.ml, 1 @@ -115206,7 +115133,6 @@ raywisdom.tk, 1 raywjohnson.com, 1 raywjohnson.info, 1 raywjohnson.me, 1 -raywjohnson.net, 1 rayworks.de, 1 razakhanimazhab.tk, 1 razalabs.com, 1 @@ -115315,7 +115241,6 @@ rcsacessoria.online, 1 rcsda.net, 1 rcslt.org, 1 rcsolutions.nl, 0 -rcsscontractors.com, 1 rct-chair.com, 1 rct.sk, 0 rct.uk, 1 @@ -115405,6 +115330,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 @@ -115547,7 +115473,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 @@ -115606,7 +115531,6 @@ reaven.nl, 0 rebajasoferta.com, 1 rebalancenyc.com, 1 rebaltica.lv, 1 -rebane2001.com, 1 rebargroup.org, 1 rebase.com.tr, 1 rebatekey.com, 1 @@ -115806,7 +115730,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 @@ -117108,7 +117031,6 @@ reup.cash, 1 reurbcaceres.com.br, 1 reuschtools.com, 1 reusesti.ro, 1 -reusorecicla.com.br, 1 reut42.de, 1 reuter-profishop.de, 0 reuter.de, 0 @@ -117179,6 +117101,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 @@ -117664,7 +117587,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 @@ -118162,6 +118084,7 @@ rock4life.be, 1 rocka.me, 1 rockabilly-sinners.tk, 1 rockadocious.com, 1 +rockagogo.com, 1 rockandroll.tk, 1 rockbandparty.com, 1 rockbankland.com.au, 1 @@ -118297,8 +118220,9 @@ rodrigoarayaaliaga.com, 1 rodrigoarriaran.com, 1 rodrigocarvalho.blog.br, 1 rodrigodematos.tk, 1 -rody-design.com, 1 roeckx.be, 1 +roed.gg, 1 +roeden.dk, 1 roedesonline.nl, 1 roedl.de, 1 roeitijd.nl, 0 @@ -118398,7 +118322,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 @@ -118820,6 +118744,7 @@ routechoices.com, 1 routedlogic.net, 1 routemates.tk, 1 router24.info, 1 +routerchart.com, 1 routerclub.ru, 1 routerctrl.com, 1 routeto.com, 1 @@ -119742,6 +119667,7 @@ s2.coach, 1 s20121946.ml, 1 s26s.com, 1 s2i.ch, 0 +s2member.com, 1 s2n.tech, 1 s2t.net, 1 s36533.com, 1 @@ -120856,7 +120782,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 @@ -121889,7 +121814,7 @@ scoolcode.com, 1 scoolio.de, 1 scoop6.co.uk, 1 scoopcake.com, 1 -scoopcanada.com, 1 +scoopcanada.com, 0 scoopgh.com, 1 scooply.org, 1 scootaloo.co.uk, 1 @@ -121992,6 +121917,7 @@ scphotography.co.uk, 1 scpidcard.com, 1 scpocahontas.nl, 1 scpower.sg, 1 +scpricope.com, 1 scpsecretlab.com, 1 scpsecretlab.pl, 1 scpsecretlaboratory.com, 1 @@ -122644,7 +122570,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 @@ -122863,9 +122789,11 @@ semobr.cf, 1 semops.gq, 1 semox.de, 1 semparar.com.br, 1 +semperincorde.sk, 1 sempersolaris.com, 1 semplicementelight.com, 1 sempoctet.ca, 1 +sempreupdate.com.br, 1 semps-2fa.de, 1 semps-threema.de, 1 semps.de, 1 @@ -123035,7 +122963,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 @@ -123338,7 +123265,6 @@ serverlein.com, 1 serverlog.net, 1 servermacher.de, 1 servermaster.sk, 1 -servernerds.net, 1 serverninja.tk, 1 serveroffline.net, 1 serverpedia.de, 1 @@ -124460,7 +124386,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 @@ -124497,7 +124422,6 @@ shoppe561.com, 1 shopperexperts.com, 1 shopperexpertss.com, 1 shoppersdepuertorico.com, 1 -shoppersvineyard.com, 1 shoppies.tk, 1 shopping-cart-migration.com, 1 shopping-il.org.il, 1 @@ -124960,6 +124884,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 @@ -125963,7 +125888,6 @@ skarox.eu, 1 skarox.net, 1 skarox.ru, 1 skat.dk, 1 -skate.fr, 1 skatefilms.tv, 1 skateparkmontbriz.tk, 1 skaterangels.tk, 1 @@ -125972,7 +125896,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 @@ -126777,6 +126700,7 @@ smartlogstock.com, 0 smartlogtower.com, 1 smartlooks.es, 1 smartmachine.com, 1 +smartmail.io, 1 smartmail24.de, 1 smartme.pl, 1 smartmeal.ru, 1 @@ -127322,7 +127246,6 @@ socialistyouth.tk, 1 sociality.io, 1 socializator.tk, 1 socialloots.com, 1 -sociallypro.com, 1 socialmarketingday.nl, 1 socialmatch.de, 1 socialmedia-manager.gr, 1 @@ -127454,7 +127377,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 @@ -127579,7 +127501,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 @@ -127608,7 +127529,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 @@ -128661,7 +128581,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 @@ -129465,7 +129384,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 @@ -129886,7 +129804,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 @@ -131226,7 +131143,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 @@ -131551,7 +131467,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 @@ -131834,7 +131749,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 @@ -133463,7 +133377,6 @@ talentplatform.us, 1 talentstimuleren.nl, 1 talentuar.com, 1 talentwall.io, 1 -taler-systems.com, 1 taler.net, 1 talerakademiet.dk, 1 talesbazaar.com, 1 @@ -134151,6 +134064,7 @@ tdev.team, 1 tdk.eu, 1 tdlesovik.ru, 1 tdln.tk, 1 +tdn.com, 1 tdolar.com, 1 tdr.today, 1 tdrcartuchos.com.br, 1 @@ -134182,6 +134096,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 @@ -134416,7 +134331,6 @@ 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 @@ -134711,7 +134625,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 @@ -134794,6 +134707,7 @@ tecnomagazine.net, 1 tecnonews.cf, 1 tecnonews.tk, 1 tecnopiniones.com, 1 +tecnosa.es, 1 tecnoticiasdigitales.tk, 1 tecnotrattamenti.it, 1 tecnovernicisrl.com, 1 @@ -135670,6 +135584,7 @@ tfw-a.com, 1 tfx.com.br, 1 tfxstartup.com, 1 tfxstartup.com.br, 1 +tfyre.co.za, 1 tg2sclient.com, 1 tgb.org.uk, 1 tgcfabian.nl, 1 @@ -136046,7 +135961,6 @@ thechallenge.fit, 1 thechandigarhcity.com, 1 thechargertimes.com, 1 thechatlinenumbers.com, 1 -thechauffeur-international.com, 1 thechavs.xyz, 1 thecheapairlinetickets.com, 1 thecheat.tk, 1 @@ -136292,7 +136206,6 @@ 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 @@ -136400,7 +136313,6 @@ thehumanjoint.com, 1 thehumorist.tk, 1 theideaskitchen.com.au, 1 theidiotboard.com, 1 -theig.co, 1 theimagefile.com, 1 theimaginationagency.com, 1 theinboxpros.com, 1 @@ -136449,6 +136361,7 @@ thekitchngic.com, 1 thekitsunesden.com, 1 thekittivibe.com, 1 thekliniquehotdeal.com, 1 +theknightrider.com, 1 theknittingnetwork.co.uk, 1 theknockout.tk, 1 theknowitguy.com, 1 @@ -137105,7 +137018,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 @@ -137252,7 +137165,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 @@ -138201,7 +138113,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 @@ -139717,11 +139628,7 @@ toysplace.ml, 1 toystory3.ga, 1 toyventure.ga, 1 tozdev.com, 1 -tp-events.co.uk, 1 tp-genie.com, 1 -tp-properties.co.uk, 1 -tp-shipping.co.uk, 1 -tp-technology.co.uk, 1 tpa.or.th, 1 tpala-pg.fr, 1 tpark.jp, 1 @@ -139881,7 +139788,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 @@ -139895,6 +139802,7 @@ tradingtag.ga, 1 tradingview.com, 1 tradition-immobilier.com, 1 tradition.ch, 1 +tradition.com, 1 traditional.kz, 1 traditions.nl, 1 traditionskapperscollege.nl, 1 @@ -140530,7 +140438,6 @@ tresoro.de, 1 trespedia.com, 1 tresredatores.tk, 1 tressallure.com, 1 -tresscabelos.com.br, 1 tretail.net, 1 tretinoin.gq, 1 treurtransport.tk, 1 @@ -141296,6 +141203,7 @@ ttr-home.com, 1 ttr3.eu, 1 ttrade.ga, 1 ttrecms.com, 1 +tts-assessments.com, 1 ttshapn.org, 1 ttsoft.pl, 1 ttspttsp.com, 1 @@ -141552,7 +141460,6 @@ turkcechat.tk, 1 turkcedizin.tk, 1 turkceingilizce.gen.tr, 1 turkcoder.tk, 1 -turkdevs.net, 1 turkey-portal.tk, 1 turkeyfiles.tk, 1 turkeymistress.tk, 1 @@ -141591,6 +141498,7 @@ turkru.pro, 1 turksell.ru, 1 turksite.tk, 1 turksiteleri.tk, 1 +turksohbet.com, 1 turkteam.tk, 1 turktelekomarenagolleri.tk, 1 turktree.com, 1 @@ -142315,6 +142223,7 @@ udo-luetkemeier.de, 1 udomain.net, 1 udp.pw, 0 udp.sh, 0 +udruga-point.hr, 1 udsocial.com, 1 udtonline.com, 1 udvoukocek.eu, 1 @@ -142401,12 +142310,13 @@ 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 @@ -144382,7 +144292,6 @@ 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 @@ -144515,6 +144424,7 @@ vattulainen.fi, 1 vauban-ip.com, 1 vauceri.hr, 1 vaugarnier.fr, 1 +vaughanrisher.com, 1 vaulavalpola.tk, 1 vault.investments, 1 vault.spdns.eu, 1 @@ -146022,6 +145932,7 @@ virtual-data-room.org, 1 virtual-dba.com, 1 virtual-insanity.tk, 1 virtual-webcam.com, 1 +virtualarkansas.org, 1 virtualbrands.com, 0 virtualbrestby.tk, 1 virtualbruges.tk, 1 @@ -146061,6 +145972,7 @@ virtualvaults.com, 0 virtualx.de, 1 virtubox.net, 1 virtubroker.com.mx, 1 +virtuele-dataroom.nl, 1 virtueturkey.ga, 1 virtuology.com, 1 virtus-group.com, 1 @@ -146353,6 +146265,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 @@ -146423,7 +146336,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 @@ -146552,7 +146464,7 @@ vm-0.com, 1 vm.co.mz, 0 vm.ee, 0 vm0.eu, 1 -vm88.top, 0 +vm88.top, 1 vmagadane.tk, 1 vmath.my.id, 1 vmautorajkot.com, 1 @@ -146901,7 +146813,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 @@ -147132,6 +147043,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 @@ -147212,6 +147124,7 @@ vtbs.moe, 1 vtcourts.gov, 1 vtech.com, 1 vtescebu.com, 1 +vtexpayments.com.br, 1 vtipe-vylez.cz, 0 vtivision.com, 1 vtjud.gov, 1 @@ -148108,6 +148021,7 @@ waupacawi.gov, 1 wausharacountywi.gov, 1 wauwatosa.gov, 1 wav-productions.com, 1 +wav.tv, 1 wave-cockpit.de, 1 wave-electronics.com, 0 wave-inc.co.jp, 1 @@ -148217,6 +148131,7 @@ wcatherinekendall.co.uk, 1 wcei.com.au, 1 wcema-ok.gov, 1 wcfauth.de, 1 +wcfcourier.com, 1 wck.com, 1 wcl.govt.nz, 1 wcloud.pro, 1 @@ -148646,7 +148561,6 @@ webmasterhall.com, 1 webmax.cloud, 1 webmediaclick.com, 1 webmediaprint.at, 1 -webmediums.com, 1 webmedpharmacy.co.uk, 1 webmeister.org, 1 webmenedzser.hu, 1 @@ -149271,6 +149185,7 @@ westcountrystalking.com, 1 westcreekna.org, 1 westendwifi.net, 1 westerdraai.tk, 1 +westeremden.com, 1 westergas.nl, 1 westernalliancebancorporation.com, 1 westernpadermatologist.com, 1 @@ -149377,7 +149292,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 @@ -150154,7 +150068,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 @@ -150340,6 +150253,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 @@ -150857,6 +150771,7 @@ 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 @@ -151555,6 +151470,7 @@ wselektro.de, 1 wseo.pw, 1 wsgvet.com, 1 wsheffield.com, 1 +wshop24.biz, 1 wsl.sh, 1 wsldp.com, 1 wsm-naramowice.pl, 1 @@ -151645,7 +151561,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 @@ -152003,7 +151918,6 @@ x77nn.com, 1 x77pp.com, 0 x77qq.com, 0 x77ww.com, 0 -x7sevenusa.com, 1 x81vv.com, 1 x82365.com, 1 x86.co.kr, 1 @@ -152190,7 +152104,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 @@ -152986,7 +152900,6 @@ 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 @@ -153225,7 +153138,6 @@ xplozion.tk, 1 xpods.sg, 1 xportxpert.com, 1 xpreflect.co.uk, 1 -xpressable.com, 1 xps-auto.com, 1 xps3dp.com, 1 xps40.com, 1 @@ -153968,7 +153880,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 @@ -154109,7 +154020,6 @@ yezi.ga, 1 yezishurb.site, 1 yf128.cc, 1 yfeer.com, 0 -yfh.me, 1 yggdar.ga, 1 yggdrasildice.com, 1 ygm.org.uk, 1 @@ -154939,6 +154849,7 @@ z-konzept-nutrition.ru, 1 z-pc.net, 1 z-rejstejna.cz, 1 z-vector.com, 1 +z.cash, 1 z.is, 1 z.md, 1 z.mom, 1 @@ -155497,7 +155408,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 @@ -155783,7 +155693,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 diff --git a/services/settings/dumps/security-state/intermediates.json b/services/settings/dumps/security-state/intermediates.json index d82a9320939be..77a56bf521e72 100644 --- a/services/settings/dumps/security-state/intermediates.json +++ b/services/settings/dumps/security-state/intermediates.json @@ -1,5 +1,23 @@ { "data": [ + { + "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=", @@ -29629,5 +29647,5 @@ "last_modified": 1559865884636 } ], - "timestamp": 1704038223096 + "timestamp": 1704470223072 } From 72fc312e138b5c183dc1f1869a64307a618037fd Mon Sep 17 00:00:00 2001 From: Jens Stutte <jstutte@mozilla.com> Date: Tue, 9 Jan 2024 14:58:13 +0000 Subject: [PATCH 31/46] Bug 1871445 - Fix copy&paste typo in ContentParent. a=dmeehan Original Revision: https://phabricator.services.mozilla.com/D197151 Differential Revision: https://phabricator.services.mozilla.com/D197990 --- dom/ipc/ContentParent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; From 40406d805da6bd4578d4da065eb1dd259444591b Mon Sep 17 00:00:00 2001 From: Mark Banner <standard8@mozilla.com> Date: Wed, 10 Jan 2024 01:46:24 +0000 Subject: [PATCH 32/46] Bug 1873464 - For search related configurations, only validate additional properties on nightly builds. a=dmeehan Original Revision: https://phabricator.services.mozilla.com/D197920 Differential Revision: https://phabricator.services.mozilla.com/D198101 --- .../unit/test_search_telemetry_config_validation.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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; } From e9b74812fbca8122e6b35f8ac9362511e6ce8847 Mon Sep 17 00:00:00 2001 From: Andrew Osmond <aosmond@mozilla.com> Date: Sun, 31 Dec 2023 22:16:46 +0000 Subject: [PATCH 33/46] Bug 1872536 - Use MakeUniqueFallible for large buffers in image decoders/encoders. r=gfx-reviewers,lsalzman, a=dmeehan Differential Revision: https://phabricator.services.mozilla.com/D197461 --- image/decoders/icon/mac/nsIconChannelCocoa.mm | 7 ++++++- image/decoders/nsAVIFDecoder.cpp | 11 ++++++----- image/decoders/nsBMPDecoder.cpp | 6 +++++- image/decoders/nsICODecoder.cpp | 7 ++++++- image/encoders/jpeg/nsJPEGEncoder.cpp | 14 ++++++++++++-- image/encoders/png/nsPNGEncoder.cpp | 11 +++++++++-- image/encoders/webp/nsWebPEncoder.cpp | 7 ++++++- 7 files changed, 50 insertions(+), 13 deletions(-) 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 <Cocoa/Cocoa.h> @@ -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<uint8_t[]> fileBuf = MakeUnique<uint8_t[]>(bufferCapacity); + UniquePtr<uint8_t[]> fileBuf = MakeUniqueFallible<uint8_t[]>(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<uint8_t[]>(yBufSize); + mBuffer = MakeUniqueFallible<uint8_t[]>(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<uint8_t[]>(yBufSize + cbBufSize + crBufSize); + mBuffer = MakeUniqueFallible<uint8_t[]>(yBufSize + cbBufSize + crBufSize); if (!mBuffer) { return false; } @@ -1728,9 +1729,8 @@ nsAVIFDecoder::DecodeResult nsAVIFDecoder::DoDecodeInternal( return AsVariant(NonDecoderResult::SizeOverflow); } - UniquePtr<uint8_t[]> rgbBuf = MakeUnique<uint8_t[]>(rgbBufLength.value()); - const uint8_t* endOfRgbBuf = {rgbBuf.get() + rgbBufLength.value()}; - + UniquePtr<uint8_t[]> rgbBuf = + MakeUniqueFallible<uint8_t[]>(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::State> nsBMPDecoder::ReadBitfields( // Always allocate and zero 256 entries, even though mNumColors might be // smaller, because the file might erroneously index past mNumColors. - mColors = MakeUnique<ColorTableEntry[]>(256); + mColors = MakeUniqueFallible<ColorTableEntry[]>(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<ICOState> nsICODecoder::PrepareForMask() { MOZ_ASSERT(bmpDecoder->GetImageDataLength() == mDownscaler->TargetSize().width * mDownscaler->TargetSize().height * sizeof(uint32_t)); - mMaskBuffer = MakeUnique<uint8_t[]>(bmpDecoder->GetImageDataLength()); + mMaskBuffer = + MakeUniqueFallible<uint8_t[]>(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<uint8_t[]> rowptr; + if (aInputFormat == INPUT_FORMAT_RGBA || + aInputFormat == INPUT_FORMAT_HOSTARGB) { + rowptr = MakeUniqueFallible<uint8_t[]>(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<uint8_t**>(&row), 1); } } else if (aInputFormat == INPUT_FORMAT_RGBA) { - UniquePtr<uint8_t[]> rowptr = MakeUnique<uint8_t[]>(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<uint8_t[]> rowptr = MakeUnique<uint8_t[]>(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<uint8_t[]> row = MakeUnique<uint8_t[]>(aWidth * 4); + UniquePtr<uint8_t[]> row = MakeUniqueFallible<uint8_t[]>(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<uint8_t[]> row = MakeUnique<uint8_t[]>(aWidth * 4); + UniquePtr<uint8_t[]> row = MakeUniqueFallible<uint8_t[]>(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<uint8_t[]> aDest = MakeUnique<uint8_t[]>(aStride * aHeight); + UniquePtr<uint8_t[]> aDest = + MakeUniqueFallible<uint8_t[]>(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++) { From 58209e81689a71475626424a2c04b58484ba2806 Mon Sep 17 00:00:00 2001 From: James Teh <jteh@mozilla.com> Date: Wed, 20 Dec 2023 21:59:41 +0000 Subject: [PATCH 34/46] Bug 1834718: Don't process a duplicate DocAccessible::ContentRemoved call for a DOM node we've already processed. r=morgan, a=dmeehan ContentRemoved recursively walks both AllChildrenIterator and direct DOM children. In addition, we might get duplicate notifications from DOM and layout, plus PruneOrInsertSubtree might do a recursive walk and it too calls ContentRemoved. To avoid this duplicate processing, keep a set of removed DOM nodes on the DocAccessible which we clear after mutation events are processed. Differential Revision: https://phabricator.services.mozilla.com/D196707 --- accessible/base/NotificationController.cpp | 2 +- accessible/generic/DocAccessible.cpp | 7 ++++--- accessible/generic/DocAccessible.h | 9 ++++++--- 3 files changed, 11 insertions(+), 7 deletions(-) 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<RefPtr<LocalAccessible>> mInsertedAccessibles; + // A set of DOM nodes removed during this tick. This avoids a lot of pointless + // recursive DOM traversals. + nsTHashSet<nsIContent*> mRemovedNodes; }; inline DocAccessible* LocalAccessible::AsDoc() { From b6c8e2a18f6b0f26580c61db6cd530469e9f930f Mon Sep 17 00:00:00 2001 From: Kelsey Gilbert <kelsey.gilbert@mozilla.com> Date: Wed, 10 Jan 2024 01:53:33 +0000 Subject: [PATCH 35/46] Bug 1864587 - [esr115] [angle] Vendor mozilla/angle/firefox-115. r=gfx-reviewers, a=dmeehan Differential Revision: https://phabricator.services.mozilla.com/D198114 --- .../checkout/out/gen/angle/angle_commit.h | 6 ++--- .../compiler/translator/VariablePacker.cpp | 19 ++++++++-------- gfx/angle/cherry_picks.txt | 22 +++++++++++++++++++ gfx/angle/update-angle.py | 7 +++--- 4 files changed, 38 insertions(+), 16 deletions(-) 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 <geofflang@chromium.org> +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 <syoussefi@chromium.org> + Auto-Submit: Geoff Lang <geofflang@chromium.org> + Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org> + commit 6784271c1c6273a1be0b6a2dad9ac7b921521ad8 Author: Shahbaz Youssefi <syoussefi@chromium.org> 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: From 2a401c03ba8b98cecb4c813415b53d4c1f2a04f4 Mon Sep 17 00:00:00 2001 From: ffxbld <ffxbld@mozilla.com> Date: Thu, 11 Jan 2024 10:57:45 +0000 Subject: [PATCH 36/46] No Bug, mozilla-esr115 repo-update HSTS HPKP remote-settings - a=repo-update, r=dmeehan Differential Revision: https://phabricator.services.mozilla.com/D198258 --- security/manager/ssl/StaticHPKPins.h | 2 +- security/manager/ssl/nsSTSPreloadList.inc | 483 ++++++------------ .../dumps/blocklists/addons-bloomfilters.json | 137 ++++- .../dumps/main/cookie-banner-rules-list.json | 318 +++++++----- .../dumps/security-state/intermediates.json | 38 +- 5 files changed, 524 insertions(+), 454 deletions(-) diff --git a/security/manager/ssl/StaticHPKPins.h b/security/manager/ssl/StaticHPKPins.h index 83ecb879f44e2..f30fd3b02d5cd 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(1713178221152000); +static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1713437457302000); diff --git a/security/manager/ssl/nsSTSPreloadList.inc b/security/manager/ssl/nsSTSPreloadList.inc index bd784617926db..b56777c97da6c 100644 --- a/security/manager/ssl/nsSTSPreloadList.inc +++ b/security/manager/ssl/nsSTSPreloadList.inc @@ -8,7 +8,7 @@ /*****************************************************************************/ #include <stdint.h> -const PRTime gPreloadListExpirationTime = INT64_C(1715597417739000); +const PRTime gPreloadListExpirationTime = INT64_C(1715856653796000); %% 0--1.de, 1 0-0.io, 1 @@ -160,7 +160,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715597417739000); 015kb.com, 1 018663.com, 1 018zl.com, 1 -019328.com, 1 019ks.com, 1 019zl.com, 1 01electronica.com.ar, 1 @@ -248,6 +247,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715597417739000); 0555z6.com, 1 056687.com, 0 056697.com, 0 +057180.com, 1 0571z6.com, 1 0575z6.com, 1 0597z6.com, 1 @@ -520,7 +520,17 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715597417739000); 1020318.com, 1 1020319.com, 1 1020320.com, 1 +10218.com, 1 10218app10218.com, 1 +10218b.com, 0 +10218c.com, 0 +10218cj.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 @@ -927,6 +937,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715597417739000); 127661.com, 1 12778.com, 1 1277bet.com, 1 +128012.com, 0 128612.com, 1 12877.com, 1 1288366.com, 1 @@ -2134,7 +2145,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715597417739000); 24bel.ru, 0 24chance.tk, 1 24control.com, 1 -24dian30.com, 1 24fair.com, 1 24fan.com, 1 24gazette.ga, 1 @@ -2206,7 +2216,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715597417739000); 272live.com, 1 275004.com, 1 275763.com, 1 -276112.com, 0 27728522.com, 1 277z6.com, 1 27lx.me, 1 @@ -2226,6 +2235,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715597417739000); 287328.com, 1 287628.com, 1 2881dh.com, 1 +288628.com, 0 28865.de, 1 288cn-563.com, 1 288game.net, 1 @@ -2418,7 +2428,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715597417739000); 3178ddd.com, 0 3178e.com, 0 3178f.com, 0 -3178fff.com, 0 3178g.com, 0 3178h.com, 0 3178i.com, 0 @@ -2914,7 +2923,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715597417739000); 3cbalance.pl, 1 3cc365.com, 1 3changtrai.com, 1 -3commas.io, 1 3countiescastlehire.co.uk, 1 3creation.com, 1 3cs.ch, 0 @@ -4908,6 +4916,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715597417739000); 829917.com, 1 82fss.marketing, 1 82kb88.com, 1 +830891.com, 0 830res.com, 1 831783.com, 1 83365365.com, 1 @@ -5008,6 +5017,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715597417739000); 86kb88.com, 1 86metro.ru, 1 870.cc, 0 +872291.com, 1 8722ph.com, 1 8722usa.com, 1 872787.com, 1 @@ -5499,6 +5509,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715597417739000); 9186.fun, 1 9186119.com, 1 9187.cf, 1 +918991.com, 1 918991a.com, 0 918991b.com, 0 918991c.com, 0 @@ -5585,6 +5596,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715597417739000); 9234.cf, 1 9235.cf, 1 9236.cf, 1 +923601.com, 1 9237.cf, 1 9239.cf, 1 9240.cf, 1 @@ -6847,7 +6859,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 @@ -6889,7 +6900,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 @@ -8142,6 +8152,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 @@ -8198,11 +8209,11 @@ 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 administracionessaez.es, 1 +administradoresdefincasvalencia.net, 1 administradorvalencia.es, 0 administraitor.video, 1 administrarmeusite.tk, 1 @@ -8222,6 +8233,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 @@ -9082,7 +9094,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 @@ -9173,7 +9184,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 @@ -9196,7 +9206,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 @@ -9247,6 +9256,7 @@ agourahillsoutdoorlighting.com, 1 agouralandscapelighting.com, 1 agouralighting.com, 1 agouraoutdoorlighting.com, 1 +agowa338.de, 1 agpandit.in, 1 agpideas.com, 1 agr.asia, 1 @@ -9326,6 +9336,7 @@ agrotraktor.gq, 1 agrowbio.com, 0 agroyard.com.ua, 1 agrus-wow.tk, 1 +agscapeslandscaping.com, 1 agscinemas.com, 1 agscinemasapp.com, 1 agsun6.com, 1 @@ -9377,6 +9388,7 @@ ahd.com, 0 ahealthyjourney.ca, 1 ahegaoroulette.com, 1 ahelos.tk, 1 +ahero4all.org, 1 ahezu.com, 1 ahg-offices.fr, 1 ahhcomfortshoes.com, 1 @@ -9419,7 +9431,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 @@ -10571,7 +10582,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 @@ -10758,6 +10768,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 @@ -10851,6 +10862,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 @@ -12821,7 +12833,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 @@ -12868,10 +12880,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 @@ -13772,6 +13780,7 @@ any-download.ml, 1 any-download.tk, 1 any-id.be, 1 any-id.eu, 1 +any-id.nl, 1 any-id.online, 1 any-id.store, 1 any-link-page.de, 1 @@ -13803,7 +13812,6 @@ anyplant.ga, 1 anyprime.net, 1 anyquestions.govt.nz, 1 anyradio.ga, 1 -anyrisk.ru, 1 anyrose.ga, 1 anysale.ga, 1 anyshapemusic.com, 1 @@ -13948,6 +13956,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 @@ -13987,7 +13996,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 @@ -14460,7 +14468,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 @@ -15123,7 +15130,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 @@ -15612,7 +15619,6 @@ asccontracts.com, 1 ascenderhcm.com, 1 ascendix.com, 1 ascension.run, 1 -ascensiongt.com, 1 ascensionnyc.org, 1 ascensionparishla.gov, 1 ascensori.biz, 1 @@ -15807,7 +15813,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 @@ -15924,7 +15929,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 @@ -16575,6 +16579,7 @@ audio.servemp3.com, 1 audiobit.es, 1 audioblackmagic.com, 1 audiobone.com, 1 +audiobookss.com, 1 audiobookstudio.com, 1 audioboom.com, 1 audioboomers.ga, 1 @@ -17018,7 +17023,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 @@ -17281,7 +17285,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 @@ -17685,7 +17688,6 @@ 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 @@ -19663,7 +19665,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 @@ -20223,6 +20224,7 @@ beescloud.com, 1 beesco.us, 1 beesex.xyz, 1 beesnoosa.com, 1 +beestar.it, 1 beestation13.com, 1 beestech.fr, 1 beeswarmrehoming.com.au, 1 @@ -20952,6 +20954,7 @@ beskiden.com, 1 besnard.me, 1 besnik.de, 0 besnik.tk, 1 +besola.de, 1 besole.ch, 1 besolov.tk, 1 besonderheit.com, 1 @@ -21788,7 +21791,6 @@ bezpiecznyiphone.pl, 1 bezpiecznykierowca.info, 1 bezposrednio.net.pl, 1 bezpredel.tk, 1 -bf-foto.eu, 1 bf2statistics.eu, 1 bfam.tv, 1 bfas237blog.com, 1 @@ -21844,7 +21846,6 @@ 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 @@ -22168,7 +22169,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 @@ -22441,7 +22441,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 @@ -22455,7 +22454,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 @@ -22551,7 +22549,6 @@ biomodra.cz, 1 bionic-karnage.tk, 1 bionicman.name, 1 bionovanaturalpools.com, 1 -biontech24.pl, 1 biontechworld.com, 1 biopreferred.gov, 1 biopro-st.com, 1 @@ -22767,7 +22764,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 @@ -22804,7 +22800,6 @@ bitcoinstock.ga, 1 bitcointask.net, 1 bitcointech.ga, 1 bitcointransfer.tk, 1 -bitcointv.com, 1 bitcoinwalletscript.tk, 1 bitcoinx.ro, 1 bitcork.io, 1 @@ -23153,7 +23148,6 @@ bkin-42740.xyz, 1 bkin-43450.xyz, 1 bkin-46680.xyz, 1 bkk24.de, 1 -bkkf.at, 1 bkkposn.com, 1 bklaindia.com, 1 bkmexpress.com.tr, 1 @@ -23473,7 +23467,6 @@ blenderinsider.com, 1 blenderrecipereviews.com, 1 blendessencial.com, 1 blending.kr, 1 -blendle.com, 1 blendle.nl, 1 blenneros.net, 0 blero.tk, 1 @@ -23693,7 +23686,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 @@ -23862,7 +23854,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 @@ -24283,7 +24275,6 @@ bolzanoinfo.it, 1 boma.ml, 1 bomanufacture.com, 1 bombard.ga, 1 -bombasticthoughtexperiments.com, 1 bombe-lacrymogene.fr, 1 bomberosceuta.tk, 1 bomberus.de, 1 @@ -25236,7 +25227,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 @@ -26564,7 +26554,6 @@ 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 @@ -27077,7 +27066,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 @@ -27535,6 +27523,7 @@ cacao.supply, 1 cacaolalina.com, 1 cacareerzone.org, 1 cacaumidade.com.br, 1 +caccc.com, 1 cachacasantaterezinha.com.br, 1 cachaceros.tk, 1 cache-checker.com, 1 @@ -27631,7 +27620,6 @@ cafead.de, 1 cafeamazon.tk, 1 cafeapple.com, 1 cafebab.com, 1 -cafebeauty.com, 1 cafebeirut.tk, 1 cafecentraal.tk, 1 cafecentral.tk, 1 @@ -27702,7 +27690,6 @@ caibi.io, 1 caic.com.sg, 1 caidao.com, 1 caifan.com, 1 -caihuan.com, 1 caijunyi.net, 0 caikuai.com, 1 caillou.eu, 1 @@ -27984,7 +27971,6 @@ cambiowatch.ch, 0 cambodiainfo.tk, 1 cambopost.tk, 1 cambramanresa.cat, 1 -cambriacoveapartments.com, 1 cambridge-security.com, 1 cambridgeanalytica.cz, 1 cambridgeanalytica.net, 1 @@ -28748,7 +28734,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 @@ -28780,7 +28765,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 @@ -29171,7 +29155,6 @@ cases.lu, 1 casetech.com, 1 casewarecloud.com, 1 caseycapitalpartners.com, 1 -casgp.com, 0 cash-bot.tk, 1 cash-generator.tk, 1 cash-pos.com, 1 @@ -29203,7 +29186,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 @@ -29236,7 +29218,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 @@ -29528,14 +29509,15 @@ catchteamca.gov, 1 catchup-enschede.tk, 1 catcontent.cloud, 1 catcoxx.com, 1 +catcut.com, 1 catechese-ressources.com, 1 catedraderechonotarial.es, 1 catedraloscura.tk, 1 +catedralsantodomingo.org, 1 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 @@ -29588,6 +29570,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 @@ -29883,7 +29866,6 @@ cdf.wiki, 1 cdfnature2019.fr, 1 cdg30.fr, 1 cdga.org, 1 -cdgitalia.org, 1 cdhb.health.nz, 1 cdhome.ga, 1 cdhqt.com, 1 @@ -30311,6 +30293,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 @@ -30318,7 +30301,6 @@ certevia.com, 1 certfa.com, 1 certfica4u.com, 1 certidao-nascimento-pt.org, 1 -certidaonc.com.br, 1 certificados.edu.do, 1 certificatedetails.com, 1 certificateoflogistics.ga, 1 @@ -30492,7 +30474,6 @@ cgplumbing.com, 1 cgpn.fr, 1 cgsmart.com, 1 cgsmotors.com, 1 -cgsociety.org, 1 cgstprayagraj.gov.in, 1 cgt-univ-nantes.fr, 1 cgtcaixabank.es, 1 @@ -30851,6 +30832,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 @@ -31038,7 +31020,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 @@ -31394,7 +31375,6 @@ chinablows.com, 1 chinacbd.com, 1 chinacdn.org, 1 chinacheers.com, 1 -chinaclone.com, 1 chinadream404.com, 1 chinafree.online, 1 chinafree.site, 1 @@ -31887,6 +31867,7 @@ 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 @@ -33564,7 +33545,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 @@ -33614,7 +33594,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 @@ -33845,6 +33825,7 @@ codewrecks.com, 1 codex.online, 1 codezenith.com, 1 codezeno.com.au, 1 +codific.com, 1 codifique.tk, 1 codigodelbonusbet365.com, 1 codigoexactodearea.com, 1 @@ -34064,6 +34045,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 @@ -34254,6 +34236,7 @@ columbiail.gov, 1 columbialawreview.org, 1 columbiamemorialhealth.org, 1 columbiamspd.gov, 1 +columbiaproemergencymovers.com, 1 columbiascaffolding.com, 1 columbiathreadneedle.com, 1 columbiatwpmi.gov, 1 @@ -35737,6 +35720,7 @@ cotak.gov, 1 cotandoseguro.com, 1 coteax.com, 1 coteax.nl, 1 +cotehy.com, 1 cotejardin.gent, 1 cotennis.net, 1 coteouestmedia.com, 1 @@ -36039,6 +36023,7 @@ 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 @@ -36386,6 +36371,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 @@ -36773,7 +36759,6 @@ crypted.chat, 0 crypteianetworks.com, 1 cryptenet.com, 1 crypterium.com.br, 1 -cryptex.net, 1 crypticdeath.tk, 1 crypticface.tk, 1 crypticonseattle.com, 1 @@ -37041,9 +37026,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 @@ -37446,7 +37429,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 @@ -38577,7 +38559,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 @@ -38807,6 +38788,7 @@ dasignsource.com, 1 dasinternetluegt.at, 1 daskirschhaus.com, 1 dasler.eu, 1 +dasmailarchiv.ch, 1 dasolindustrialpark.tk, 1 dastchin.live, 1 dastchin.shop, 1 @@ -38960,6 +38942,7 @@ 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 @@ -39166,7 +39149,6 @@ davimun.org, 1 davinamccall.tk, 1 davinciwaldorfschool.org, 1 davisboroga.gov, 1 -daviscannabisco.com, 1 daviscountyelectionsutah.gov, 1 daviscountyiowa.gov, 1 davisdieselandautorepair.com, 1 @@ -40072,7 +40054,6 @@ delphine.dance, 1 delprete.me, 1 delpuertohealth.gov, 1 delrayengineering.ca, 1 -delsfranchise.com, 1 delsolphotography.com, 1 delta-data.ch, 1 delta-electric.net, 1 @@ -40323,7 +40304,6 @@ dentalqoretemp.com, 1 dentalreklamlari.tk, 1 dentals.cf, 1 dentalsupportuk.com, 1 -dentaltransitions.com, 1 dentalturism.com, 1 dentalunion.ru, 1 dentcountyhealth.gov, 1 @@ -40337,7 +40317,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 @@ -40719,6 +40698,7 @@ destroysilence.ml, 1 destruction-frelon-asiatique.com, 1 destructive-revolution.tk, 1 destructoradepapel.com.es, 1 +destruktiveridingkrew.com, 1 destudio.org.ua, 1 destuurmanskolk.nl, 1 destyntek.com, 1 @@ -41794,6 +41774,7 @@ dimdata.com, 1 dime-staging.com, 1 dimension-pc.com, 1 dimensionjapon.tk, 1 +dimensions-ohs.com, 1 dimensionweb.tk, 1 dimeponline.com.br, 1 dimesanmedical.com, 1 @@ -42101,7 +42082,6 @@ disenowebakus.net, 1 disenowebgalicia.tk, 1 disenowebseoolmisur.com, 1 disepho.cl, 1 -disermex.mx, 1 diseworth.uk, 1 disfigured.tk, 1 disgruntledcode.com, 1 @@ -43115,7 +43095,6 @@ dogsite.tk, 1 dogsnaturallymagazine.com, 1 dogsnow.com, 1 dogsport.org, 1 -dogtoetreads.com, 1 dogtowneastpowell.com, 1 dogtrack.tk, 1 dogtrainingnaples.com, 1 @@ -44046,7 +44025,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 @@ -44612,6 +44590,7 @@ 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 @@ -45120,7 +45099,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 @@ -45389,7 +45367,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 @@ -46035,7 +46012,6 @@ ecgclic.fr, 1 echarity.ae, 1 echbay.com, 1 echi.pw, 1 -echidna-rocktools.eu, 1 echidna-usa.com, 1 echidna.com.au, 1 echidnalock.com.au, 1 @@ -47903,7 +47879,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 @@ -48218,7 +48193,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 @@ -48392,6 +48366,7 @@ endometriu.ml, 1 endondehay.com, 1 endoscope.bg, 1 endpipe.com, 1 +endplasticwaste.org, 1 endpointclinical.com, 1 endrinas.com, 1 endrust.com.au, 1 @@ -48403,6 +48378,7 @@ endviolence.gc.ca, 1 enecivilela.com, 1 enefit.com, 1 enefit.ee, 1 +enefit.lv, 1 enefitconnect.ee, 1 enefitgreen.com, 1 enefitgreen.ee, 1 @@ -48426,7 +48402,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 @@ -48543,7 +48518,7 @@ engie-laadpalen.nl, 1 engima.nl, 1 engineer-kobe.ga, 1 engineer-route.com, 1 -engineer.org.my, 0 +engineer.org.my, 1 engineeringclicks.com, 1 engineeringidea.ga, 1 engineertaplin.co.uk, 1 @@ -49399,7 +49374,7 @@ esbuilders.co.nz, 0 esc-romania.tk, 1 esc-turkey.tk, 1 esc18.net, 1 -esc3.net, 1 +esc9.net, 1 escae.ml, 1 escael.org, 1 escalando.tk, 1 @@ -49610,7 +49585,6 @@ 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 @@ -49659,7 +49633,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 @@ -49713,6 +49686,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 @@ -49792,7 +49766,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 @@ -49813,7 +49786,6 @@ etcivil.com, 1 etctop.tk, 1 etdcampus.com, 1 etdp.co.za, 1 -etduvindemoselle.fr, 1 etech-solution.com, 1 etech-solution.net, 1 etech-solutions.com, 1 @@ -50626,7 +50598,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 @@ -51003,7 +50975,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 @@ -51102,6 +51074,7 @@ eyetooth.ga, 1 eyfari.com, 1 eyktasarim.tk, 1 eylog.co.uk, 1 +eylulsohbet.net, 1 eynio.com, 1 eyona.com, 1 eyoo.link, 1 @@ -51323,6 +51296,7 @@ fabulouseventsmiami.com, 1 fabulousfarmgirl.com, 1 fabulouslyyouthfulskin.com, 1 fabulouslyyouthfulskineyeserum.com, 1 +faburocks.com, 1 fabuye.cf, 1 fabuye.ga, 1 fabuye.gq, 1 @@ -51363,7 +51337,6 @@ facedeplook.tk, 1 faceegypt.tk, 1 faceitsalon.com, 1 facekhande.tk, 1 -facekungfu.com, 0 facelimousin.fr, 1 facemashclone.com, 1 facemaze.io, 1 @@ -51837,7 +51810,6 @@ 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 @@ -51937,7 +51909,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 @@ -52098,7 +52069,6 @@ fastbob.ga, 1 fastbob.gq, 1 fastbob.ml, 1 fastbob.tk, 1 -fastbuilder.pro, 1 fastcash.com.br, 1 fastcast.ga, 1 fastcats.tk, 1 @@ -52277,7 +52247,6 @@ fbihr.gov, 1 fbiic.gov, 1 fbijobs.gov, 1 fbilab.gov, 1 -fbk.moe, 1 fbmedia-ckl.com, 1 fbo.gov, 1 fbo.network, 1 @@ -52593,7 +52562,6 @@ felixsanchez.tk, 1 felixschuermeyer.de, 1 felixseele.de, 1 felixsworld.tk, 1 -felixturgeon.ca, 1 felixvelarde.com, 1 felixweb.tk, 1 feliz.tk, 1 @@ -52629,7 +52597,6 @@ feministreview.ga, 1 feministreview.gq, 1 feministreview.ml, 1 feministspectrum.org, 1 -feministwiki.org, 1 feminteligencia.com, 1 femiwiki.com, 1 femme.fitness, 1 @@ -52652,7 +52619,6 @@ feng.si, 1 feng18.vip, 0 feng68.vip, 0 feng88.vip, 0 -feng98.vip, 0 fengchuiyudaqu.ml, 1 fenghuangcheng.tk, 1 fengrui.me, 0 @@ -53276,6 +53242,7 @@ fightsupplies.co.uk, 1 figl.net, 1 figliasons.com, 1 figma.com, 1 +figmalover.com, 1 figshare.com, 1 figsrugbyleague.com.au, 1 figura.cz, 1 @@ -53501,7 +53468,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 @@ -53793,6 +53759,7 @@ firstchoicefriseur.at, 1 firstchoicejunkservice.com, 1 firstchurchmn.org, 1 firstcitizensbank.com, 1 +firstclass.com.kh, 1 firstclasscastles.com, 1 firstclassleisure.co.uk, 1 firstclassnuisance.tk, 1 @@ -53891,7 +53858,6 @@ fishystuff.cf, 1 fisinfomanagerdr.com, 1 fisio-clinics.com, 1 fisiobox.eu, 1 -fisiodomiciliargoiania.com.br, 1 fisioterapia-online.com, 1 fisioterapiaalquimia.com, 1 fisioterapialanchares.com, 1 @@ -53949,6 +53915,7 @@ fitnessbest.com, 1 fitnessbond.com, 1 fitnessfoodguide.com, 1 fitnesshaber.com, 1 +fitnessimage.com.au, 1 fitnesskarate.club, 1 fitnessmaus.com, 1 fitnessplanet.best, 1 @@ -54407,6 +54374,7 @@ flirtlu.net, 0 flirtlu.org, 1 flirtportalcheck24.de, 1 flirty.tk, 1 +flissinger.com, 1 flixcheck.com, 1 flixcheck.de, 1 flixcost.com, 1 @@ -55946,6 +55914,7 @@ frank-gcc.com, 1 frank-lastia.tk, 1 frank-vincent.nl, 0 frank-wendy.tk, 1 +frank.fyi, 1 frankbellamy.co.uk, 1 frankcare.shop, 1 frankdufaux.com, 1 @@ -56374,7 +56343,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 @@ -57089,7 +57057,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 @@ -57304,7 +57271,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 @@ -57432,7 +57398,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 @@ -57605,7 +57570,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 @@ -58603,6 +58567,7 @@ geauxdns.com, 1 geba-online.de, 1 gebaeude-braun.de, 1 gebaeudebilanzierung.de, 1 +gebaeudeklima-schweiz.ch, 1 gebeliktakibim.com, 1 geben.digital, 1 gebiert.de, 1 @@ -59373,6 +59338,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 @@ -59426,7 +59392,6 @@ getjadedlocal.com, 1 getjms.com, 1 getlaminas.org, 1 getlantern.org, 0 -getlawnbuddy.com, 1 getlawyered.com.au, 1 getleanflorida.gov, 1 getlessgivemore.com, 1 @@ -60378,7 +60343,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 @@ -60422,6 +60386,7 @@ globelink-group.com, 1 globemilk.nl, 1 globemusic.es, 1 globeprotocol.be, 1 +globeprotocol.com, 1 globeprotocol.de, 1 globeprotocol.es, 1 globeprotocol.eu, 1 @@ -60654,7 +60619,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 @@ -60968,6 +60932,7 @@ gomelphoto.com, 1 gomer.tk, 1 gometa.link, 1 gomeya.com, 1 +gomezhvac.com, 1 gomezites.tk, 1 gomicrophone.ml, 1 gomine.tk, 1 @@ -61729,6 +61694,7 @@ 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 @@ -62027,7 +61993,6 @@ gregproffit.com, 1 gregscloud.com, 1 greizer.tk, 1 grekiskagudar.tk, 1 -grekos.com.pl, 1 gremagol.xyz, 1 gremlinsmountain.tk, 1 grenade.ga, 1 @@ -62050,7 +62015,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 @@ -62066,7 +62030,7 @@ greycrane.net, 1 greydesign.tk, 1 greyhackcentral.gq, 1 greyhash.se, 1 -greyheads.cat, 1 +greyheads.cat, 0 greyline.tk, 1 greymatteroffline.tk, 1 greymattertechs.com, 1 @@ -62218,7 +62182,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 @@ -62704,6 +62667,7 @@ guitarraclasica.tk, 1 guitarreria.tk, 1 guitarristaluisquintero.com, 1 guitarristas.info, 1 +guitartrader.international, 1 gujarat.tk, 1 gujinfo.com, 1 gujun-sky.com, 1 @@ -63191,7 +63155,6 @@ hackingand.coffee, 0 hackingdh.com, 1 hackingdumpdrive.org, 1 hackingfever.tk, 1 -hackingondemand.com, 1 hackingwithswift.com, 1 hackintosh.eu, 1 hackintosh.social, 1 @@ -63658,6 +63621,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 @@ -64615,7 +64579,6 @@ healthhard.ga, 1 healthharrisburg.tk, 1 healthhelena.tk, 1 healthhendersonville.tk, 1 -healthhopper.eu, 1 healthhosts.com, 1 healthhuntsville.tk, 1 healthhusky.ga, 1 @@ -64851,7 +64814,6 @@ heartsucker.com, 0 hearttruth.gov, 1 heartview.com.br, 1 heartwoodart.com, 1 -heartwork.pl, 1 hearty.blog, 1 hearty.eu.org, 0 hearty.ga, 1 @@ -65064,7 +65026,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 @@ -66362,6 +66323,7 @@ hoaas.no, 1 hoahau.org, 1 hoahop.tk, 1 hoanghaiauto.vn, 1 +hoangvangioi.com, 1 hoaphathomes.com, 1 hoardit.ml, 1 hoathienthao.com, 1 @@ -67464,7 +67426,6 @@ hotelsalzberg.ga, 1 hotelsalzberg.gq, 1 hotelsalzberg.ml, 1 hotelsantalibera.tk, 1 -hotelscatalog.ru, 1 hotelsfares.com, 1 hotelsinbuxton.com, 1 hotelsinformer.com, 1 @@ -67554,6 +67515,7 @@ houdah.com, 1 houdenvanhonden.nl, 1 houhuayuan.com, 1 houlang.ac.cn, 1 +houldsworthmill.com, 1 hourai.gg, 1 houraiteahouse.net, 1 hourlyearning.tk, 1 @@ -67601,7 +67563,6 @@ housese.at, 1 housesmartdecore.tk, 1 housesumo.com, 1 housetories.com, 1 -housevertising.nl, 1 housing.com, 1 housingauctions.net, 1 housingcenter.com, 1 @@ -67736,7 +67697,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 @@ -68670,7 +68630,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 @@ -69490,6 +69449,7 @@ igva.or.kr, 1 ih8sn0w.com, 1 iha6.com, 1 ihacares.com, 1 +ihackear.com, 1 ihacker.ai, 1 ihakkitekin.com, 1 ihatereceipts.com, 1 @@ -69526,7 +69486,6 @@ ihrhost.com, 1 ihri.ca, 1 ihsangans.my.id, 1 ihwanburhan.com, 1 -ii-f.ws, 1 ii-vi.com, 1 ii.cx, 1 ii5197.co, 1 @@ -69896,7 +69855,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 @@ -70370,7 +70328,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 @@ -70597,7 +70554,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 @@ -70996,7 +70952,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 @@ -71180,7 +71135,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 @@ -71456,7 +71410,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 @@ -71490,7 +71443,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 @@ -71635,7 +71587,6 @@ internationaljoustingleague.tk, 1 internationalrelationsedu.org, 1 internationalrugsdallas.com, 1 internationalschool.it, 1 -internationaltalento.it, 1 internationaltercumeburosu.com.tr, 1 internationaltranslating.com, 1 internationalweekly.tk, 1 @@ -71694,6 +71645,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 @@ -71766,7 +71718,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 @@ -71971,7 +71923,6 @@ inyr.hu, 0 inzdr.com, 1 inzeitinteractive.tk, 1 inzelabs.com, 1 -inzeni.pl, 1 inzernettechnologies.com, 1 inzestfreunde.de, 1 inzichtmeditatie.nl, 1 @@ -72381,7 +72332,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 @@ -72998,7 +72948,6 @@ 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 @@ -73538,6 +73487,7 @@ jacksorrell.com, 1 jackspub.net, 1 jackstone.tk, 1 jacksutton.info, 1 +jacktor.com, 1 jackvaley.com, 1 jackwarren.info, 1 jackwilli.com, 1 @@ -74160,7 +74110,6 @@ jc666.xyz, 1 jcadg.com, 1 jcaicedo.com, 1 jcaicedo.tk, 1 -jcanals.com, 1 jcb.com, 1 jcbaterias.com.br, 1 jcbgolfandcountryclub.com, 1 @@ -75129,7 +75078,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 @@ -75422,7 +75370,6 @@ jonin.tk, 1 jonin2.tk, 1 jonincharacter.com, 1 jonipuhakka.fi, 1 -jonizatorywody24.pl, 1 jonkerkamman.tk, 1 jonkermedia.nl, 0 jonkpl.com, 1 @@ -76354,7 +76301,6 @@ k234234.com, 1 k258059.net, 1 k29.ee, 1 k2industrial.com, 1 -k2united.com, 1 k2velosi.com, 1 k36533.com, 1 k38.cc, 1 @@ -76482,7 +76428,6 @@ 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 @@ -76650,7 +76595,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 @@ -76918,6 +76863,7 @@ 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 @@ -77117,9 +77063,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 @@ -77432,7 +77375,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 @@ -77528,7 +77470,6 @@ keepersecurity.com.au, 1 keepersecurity.eu, 1 keepersecurity.jp, 1 keepersecurity.us, 1 -keepingitsimpleblog.com, 1 keepingtheplot.co.uk, 1 keepiteasy.eu, 1 keepitsecure24.com, 1 @@ -77538,7 +77479,6 @@ keepleft.gr, 1 keeprunning.fun, 1 keepsakedna.com, 1 keepsight.org.au, 1 -keepsmyrnabeautiful.com, 1 keepsolid.com, 1 keesmartens.tk, 1 keesslop.nl, 1 @@ -77689,7 +77629,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 @@ -77844,6 +77783,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 @@ -77859,7 +77799,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 @@ -77966,7 +77905,7 @@ 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 @@ -78087,7 +78026,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 @@ -78226,7 +78164,6 @@ kif.rocks, 0 kiffmarks.com, 1 kifid.nl, 1 kigurumi-party.ru, 1 -kihi.news, 1 kiinanharjakoirat.tk, 1 kiinteistot-lidl.fi, 1 kiiteyo.net, 1 @@ -78978,7 +78915,6 @@ 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 @@ -80041,7 +79977,6 @@ krsaustralia.com.au, 1 krsvrs.nl, 1 krti.com.ua, 1 krtl.eu.org, 1 -krtl.top, 1 krubik.tk, 1 kruchefssensors.azurewebsites.net, 1 kruchheartbeatdev.azurewebsites.net, 1 @@ -80099,6 +80034,7 @@ kryshodel.ml, 1 krystal-framework.ml, 1 krytykawszystkiego.com, 1 krytykawszystkiego.pl, 1 +kryx.de, 1 krzeslaonline.pl, 1 ks-19.com, 1 ks-39.com, 1 @@ -80133,7 +80069,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 @@ -80410,7 +80345,6 @@ kumpali.com, 1 kumpula.tk, 1 kumu.live, 1 kumuwiki.de, 1 -kunadomowa.pl, 1 kunaki.com, 1 kunalchakate.tk, 1 kunaldesai.blog, 1 @@ -81096,7 +81030,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 @@ -81959,7 +81892,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 @@ -82067,7 +81999,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 @@ -82233,8 +82164,9 @@ ldemb.com, 1 ldesignweb.com, 1 ldgardenservices.co.uk, 1 ldiesel.ca, 1 -ldjb.jp, 0 +ldjb.jp, 1 ldlcorrentes.com.br, 1 +ldlorangecountylocksmith.com, 0 ldm2468.com, 1 ldsvoicesoftherestoration.com, 1 ldtborovina.cz, 1 @@ -82276,9 +82208,9 @@ lea.pet, 0 lead2022.academy, 1 leadbook.ru, 1 leadbox.cz, 1 -leadcricket.com, 1 leadercreative.ga, 1 leaderfreight.tk, 1 +leadergamer.com.tr, 1 leaderinnetflow.com, 1 leaderoftheresistance.com, 0 leaderoftheresistance.net, 0 @@ -82482,7 +82414,7 @@ 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 @@ -82735,7 +82667,6 @@ legowerewolf.net, 1 legrand-ia.gov, 1 legrandvtc.fr, 1 legro.tk, 1 -legrub.net, 1 legtech.lu, 1 legterm.cz, 1 leguano-barfusspark.eu, 1 @@ -83040,6 +82971,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 @@ -83081,7 +83013,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 @@ -83490,7 +83421,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 @@ -84492,7 +84422,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 @@ -85482,7 +85412,6 @@ londonkan.jp, 1 londonkeyholdingcompany.co.uk, 1 londonmoneyman.com, 1 londonnorthwesternrailway.co.uk, 1 -londonpropertymatch.com, 1 londonschool.mx, 1 londonseedcentre.co.uk, 1 londonsoccer.tk, 1 @@ -86238,7 +86167,6 @@ luckycastles.co.uk, 1 luckycloud.de, 1 luckydag.com, 1 luckydoglodge.net, 1 -luckyedward.com, 1 luckyemail.ml, 1 luckyfrog.hk, 1 luckymice.ml, 1 @@ -86283,6 +86211,7 @@ 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 @@ -86311,7 +86240,6 @@ 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 @@ -86588,7 +86516,6 @@ luxden.com, 1 luxe-in.gr, 1 luxe.digital, 1 luxebadkameraccessoires.nl, 1 -luxedentalfl.com, 1 luxegram.co, 1 luxehomecompany.com, 1 luxelyhome.com, 1 @@ -86655,7 +86582,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 @@ -87192,7 +87118,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 @@ -87346,7 +87272,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 @@ -88007,7 +87932,6 @@ 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 @@ -89084,6 +89008,7 @@ massagetherapyschoolsinformation.com, 1 massaggio.it, 1 massagik.ml, 1 massanews.com, 1 +massapothecary.com, 1 massauditor.gov, 1 massazh.cf, 1 massbank.eu, 1 @@ -89239,7 +89164,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 @@ -90484,7 +90408,6 @@ medec.ec, 1 medecinesalternatives-developpementspirituelcreatif.com, 1 medefield.com, 1 medeinos.lt, 0 -medelement.com, 1 medellinapartamentos.com, 1 medellinencanciones.tk, 1 medfind.link, 1 @@ -90854,7 +90777,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 @@ -90920,7 +90842,6 @@ meierhofer.net, 1 meiersmarkus.de, 1 meifacil.com, 1 meigetsuen1980.com, 1 -meijburg.com, 1 meikampf.de, 1 meikan.moe, 1 meiler.cf, 1 @@ -91445,7 +91366,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 @@ -92133,7 +92053,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 @@ -92154,7 +92073,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 @@ -92601,6 +92519,7 @@ millioncombolist.tk, 1 milliongrounds.com, 1 millionlearn.org, 1 millionseha.com, 1 +millistice.com, 1 millistream.com, 1 millix.com, 1 millnet.cloud, 1 @@ -93593,7 +93512,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 @@ -93783,7 +93701,6 @@ 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 @@ -94569,7 +94486,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 @@ -94843,7 +94759,6 @@ motorring.ru, 1 motorslopers.tk, 1 motorsplus.com, 0 motorsport-passion.com, 1 -motorst.dk, 1 motortg.it, 1 motortrend.com, 1 motorways.tk, 1 @@ -95054,7 +94969,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 @@ -95430,7 +95344,6 @@ 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 @@ -96202,7 +96115,6 @@ myaquaterra.tk, 1 myareaf2a.com, 1 myarentcar.com, 1 myarticlelibrary.cf, 1 -myarticles.io, 1 myartsjournal.com, 1 myasb.club, 1 myathena.ai, 1 @@ -96399,7 +96311,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 @@ -96447,7 +96358,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 @@ -97030,7 +96940,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 @@ -97320,7 +97229,6 @@ nakalabo.jp, 1 nakama.tv, 1 nakamastudios.com, 1 nakamochi.io, 1 -nakamuramudancas.com.br, 1 nakanishi-paint.com, 1 nakanocity-cashless.jp, 1 nakarkhana.com, 1 @@ -97826,7 +97734,6 @@ naturaprint.fr, 1 naturart.pt, 1 nature-avenue.com, 1 natureandculture.org, 0 -naturebar.co, 1 natureclaim.com, 1 naturedao.hk, 1 natureexplorer.is, 1 @@ -98107,7 +98014,6 @@ ncvps.gov, 1 ndaal.eu, 1 ndaccount.com, 1 ndarville.com, 1 -ndbilje.si, 1 ndcpolipak.com, 1 ndd.govt.nz, 1 ndeb-bned.ca, 1 @@ -98173,7 +98079,6 @@ neba.io, 1 nebeauty.it, 1 nebebra.stream, 1 nebelhauch.de, 1 -nebenan.de, 1 nebenbeiblog.ch, 1 nebix.tk, 1 nebohost.tk, 1 @@ -98343,7 +98248,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 @@ -98409,7 +98313,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 @@ -98633,7 +98536,6 @@ 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 @@ -99457,6 +99359,7 @@ ngc.gov, 0 ngclearing.com, 0 ngecezt.ddns.net, 1 ngefics.tk, 1 +ngegame.id, 1 ngelag.com, 1 ngergs.de, 1 ngetik.id, 1 @@ -99996,7 +99899,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 @@ -100789,7 +100691,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 @@ -100879,6 +100780,7 @@ notmyrealmail.com, 1 notnewz.tk, 1 notnize.net, 1 notnl.com, 1 +notofilia.com, 1 notokyc.com, 1 notomalayan.tk, 1 notonprem.com, 1 @@ -100988,6 +100890,7 @@ 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 @@ -101331,7 +101234,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 @@ -102861,7 +102764,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 @@ -103366,7 +103268,7 @@ onpointinsights.us, 0 onpointplugins.com, 1 onpopup.ga, 1 onporn.fun, 1 -onrealt.ru, 1 +onrealt.ru, 0 onrr.gov, 1 onsemediagroup.ml, 1 onsenlaichelesdoigts.be, 1 @@ -103816,7 +103718,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 @@ -104825,7 +104726,7 @@ oxigenoinformatica.tk, 1 oximedia.ga, 1 oximoron.tk, 1 oxinarf.pt, 1 -oxizonia.com, 1 +oxizonia.com, 0 oxlab.com.ar, 1 oxo.cloud, 0 oxona.eu, 1 @@ -105444,7 +105345,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 @@ -105483,6 +105383,7 @@ pando-market.com, 1 pandora-prestige.ru, 1 pandora-system.ru, 1 pandora.com.tr, 1 +pandoramutiara.id, 1 pandorarox.com, 1 pandorrah.nl, 1 pandorum.cf, 1 @@ -106281,7 +106182,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 @@ -107857,7 +107757,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 @@ -108071,7 +107970,6 @@ phoenixpower.tk, 1 phoenixsalon.eu, 1 phoenixurbanspaces.com, 1 phoenixville.online, 1 -phoenixwebsitedesign.com, 1 phographer.com, 1 pholio.com, 1 phone-service-center.de, 1 @@ -108120,7 +108018,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 @@ -108664,6 +108561,7 @@ pinklecfest.org, 1 pinklittlenotebook.com, 1 pinkmango.travel, 0 pinkoi.com, 1 +pinkoz.xyz, 1 pinkpearl.tk, 1 pinkplay.com.br, 1 pinkpop.nl, 1 @@ -108938,7 +108836,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 @@ -109199,7 +109096,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 @@ -109829,7 +109726,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 @@ -109867,7 +109763,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 @@ -109964,6 +109859,7 @@ poki.bg, 1 poki.by, 1 poki.ch, 1 poki.cn, 1 +poki.co.id, 1 poki.co.il, 1 poki.com, 1 poki.com.br, 1 @@ -110220,7 +110116,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 @@ -110245,7 +110140,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 @@ -110624,6 +110518,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 @@ -111007,7 +110902,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 @@ -111480,8 +111374,8 @@ primegeradores.com.br, 1 primegiftindia.com, 1 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 @@ -111491,7 +111385,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 @@ -111599,7 +111492,6 @@ priorityelectric-moorpark.com, 1 priorityelectric-newburypark.com, 1 priorityelectric-simivalley.com, 1 priorityelectric.biz, 1 -priorityelectric.mobi, 1 priorityelectric.net, 1 priorityessays.com, 1 priorityfakes.com, 1 @@ -111987,7 +111879,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 @@ -113446,7 +113337,6 @@ qetesh.de, 1 qetic.co.jp, 1 qewc.com, 1 qfes.qld.gov.au, 1 -qfinds.io, 1 qfjvv7f.xyz, 1 qform.ru, 1 qfurs.ru, 1 @@ -113499,6 +113389,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 @@ -113620,7 +113511,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 @@ -113889,7 +113779,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 @@ -114222,6 +114111,7 @@ rackoon.de, 1 raclet.co.uk, 1 raconconsulting.co.uk, 1 raconteurs.gent, 1 +racquetdepot.co.uk, 1 racsoft.cl, 1 ractf.co.uk, 1 racunalo.com, 1 @@ -114772,6 +114662,7 @@ 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 @@ -115057,6 +114948,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 @@ -115116,7 +115008,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 @@ -115130,9 +115021,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 @@ -115241,6 +115129,7 @@ rcsacessoria.online, 1 rcsda.net, 1 rcslt.org, 1 rcsolutions.nl, 0 +rcsscontractors.com, 1 rct-chair.com, 1 rct.sk, 0 rct.uk, 1 @@ -115473,7 +115362,6 @@ reallight.ge, 1 reallinux.tk, 1 reallivingcc.com, 1 reallovetab.ga, 1 -really-simple-ssl.com, 1 reallyangryaboutchipshops.com, 1 reallybadidea.tk, 1 reallycooljobs.ga, 1 @@ -115531,6 +115419,7 @@ reaven.nl, 0 rebajasoferta.com, 1 rebalancenyc.com, 1 rebaltica.lv, 1 +rebane2001.com, 1 rebargroup.org, 1 rebase.com.tr, 1 rebatekey.com, 1 @@ -116172,6 +116061,7 @@ regtech.tk, 1 regtify.com, 1 regtify.org, 1 regtransfers.co.uk, 1 +reguanli.com, 1 reguladordevoltagem.com.br, 1 regularizaboti.com.br, 1 regularlabs.com, 1 @@ -116447,7 +116337,6 @@ remonto.tk, 1 remontpc.cf, 1 remontpc.tk, 1 remontportal.tk, 1 -remontstrong.ru, 1 remonttikauppa.com, 1 remontuks.ru, 1 remora.tk, 1 @@ -116639,7 +116528,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 @@ -116702,7 +116590,6 @@ reprorights.gov, 1 repsltd.co.uk, 1 repstalent.com, 1 reptieleninfo.tk, 1 -reptilepoint.com, 1 reptrax.com, 1 republic.gg, 1 republic.gr, 1 @@ -117060,7 +116947,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 @@ -117354,7 +117240,6 @@ riceadvice.info, 1 ricecountymn.gov, 1 ricedust.com, 1 ricelasvegas.com, 1 -ricettesemplicieveloci.altervista.org, 1 rich-good.com, 0 richadams.me, 1 richandsteph.co.uk, 1 @@ -118249,7 +118134,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 @@ -118332,7 +118217,6 @@ roll-bakery.com.tw, 1 roll.hockey, 1 roll9.com, 1 rollatorweb.nl, 1 -rollbackdiabetes.com, 1 rolledout.info, 1 rollerderbycollection.ga, 1 rollerderbywines.ga, 1 @@ -118558,6 +118442,7 @@ 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 @@ -118634,7 +118519,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 @@ -119065,7 +118949,6 @@ ru-acyclopedia.cf, 1 ru-adv.tk, 1 ru-auto.tk, 1 ru-e-business.com, 1 -ru-m.org, 1 ru-robot.tk, 1 ru-sale.tk, 1 ru-sprachstudio.ch, 1 @@ -119522,7 +119405,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 @@ -119761,6 +119643,7 @@ 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 @@ -120371,7 +120254,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 @@ -120978,7 +120860,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 @@ -121141,7 +121022,6 @@ savicki.cz, 1 savicki.sk, 1 savilleassessment.com, 1 savin.ga, 1 -savin.in, 1 savinggoliath.com, 1 savingmoses.org, 1 savingsbondwizard.gov, 1 @@ -122385,7 +122265,6 @@ secured.vote, 1 secureddocumentshredding.com, 1 securedrop.org, 1 securedsigning.com, 1 -secureenduserconnection.se, 1 securefiletransfer.nl, 1 securegovernment.us, 1 securehugs.com, 1 @@ -122473,7 +122352,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 @@ -122643,6 +122521,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 @@ -122692,7 +122571,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 @@ -122789,7 +122667,6 @@ semobr.cf, 1 semops.gq, 1 semox.de, 1 semparar.com.br, 1 -semperincorde.sk, 1 sempersolaris.com, 1 semplicementelight.com, 1 sempoctet.ca, 1 @@ -123265,6 +123142,7 @@ serverlein.com, 1 serverlog.net, 1 servermacher.de, 1 servermaster.sk, 1 +servernerds.net, 1 serverninja.tk, 1 serveroffline.net, 1 serverpedia.de, 1 @@ -123532,6 +123410,7 @@ sexspb.love, 1 sexswing.com, 0 sextacy.tk, 1 sextapegermany.com, 1 +sextoysproductstore.com, 1 sextreffendeutschland.com, 1 sextubespot.com, 1 sextw.net, 1 @@ -124422,6 +124301,7 @@ shoppe561.com, 1 shopperexperts.com, 1 shopperexpertss.com, 1 shoppersdepuertorico.com, 1 +shoppersvineyard.com, 1 shoppies.tk, 1 shopping-cart-migration.com, 1 shopping-il.org.il, 1 @@ -124460,7 +124340,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 @@ -125097,7 +124976,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 @@ -125117,7 +124995,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 @@ -125420,7 +125297,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 @@ -125798,7 +125675,7 @@ 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 @@ -125877,7 +125754,6 @@ skaiman.ga, 1 skaitliukas.tk, 1 skalcollective.com, 1 skalec.org, 1 -skalis-portage.com, 1 skamper.tk, 1 skankofamerica.com, 1 skarke.se, 1 @@ -125888,6 +125764,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 @@ -127260,7 +127137,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 @@ -127659,7 +127535,6 @@ 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 @@ -128148,7 +128023,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 @@ -128247,7 +128121,6 @@ soyezonline.fr, 1 soyladani.com, 1 soylemeztrading.com, 1 soytusitio.com, 1 -soyunperro.com, 1 soyuznik.ml, 1 soyvigilante.com, 1 sozai-good.com, 1 @@ -128266,7 +128139,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 @@ -128512,7 +128384,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 @@ -128800,7 +128672,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 @@ -130055,6 +129926,7 @@ steinibox.de, 1 steinmassl.org, 1 steinmetz.cloud, 1 stekelenburg.me, 1 +steklein.de, 1 stelem.com, 1 stelfox.net, 1 stelga.ca, 1 @@ -131698,7 +131570,7 @@ suncity8668.com, 1 suncity8998.com, 1 suncitycinemas.com, 1 suncloud.ch, 0 -suncoastdisplays.com, 1 +suncoastdisplays.com, 0 suncoastrebuilding.com, 1 suncomegrain.ga, 1 sundanceusa.com, 1 @@ -132013,6 +131885,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 @@ -132265,6 +132138,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 @@ -132366,7 +132240,6 @@ svse.global, 1 svseglobal.com, 1 svsewerut.gov, 1 svswebmarketing.com, 1 -svtemplemn.org, 1 svtl.ch, 1 svtr.de, 1 svtv.org, 1 @@ -132439,7 +132312,7 @@ swedishforces.tk, 1 swedishhost.com, 1 swedishhost.se, 1 sweep-me.net, 1 -sweep-staging.com, 1 +sweep-staging.com, 0 sweep.net, 1 sweet-spatula.com, 1 sweet64.fr, 1 @@ -132486,7 +132359,7 @@ swentr.site, 1 swerve-media-testbed-03.co.uk, 1 swet.com.ua, 1 swetrust.com, 1 -swey.net, 1 +swey.net, 0 swfmax.com, 1 swgoh4.life, 1 swha.xyz, 1 @@ -134159,11 +134032,8 @@ teambalinge.tk, 1 teambanzai.tk, 1 teambeam.at, 0 teambeam.ch, 0 -teambeam.com, 0 teambeam.es, 0 -teambeam.eu, 0 teambeam.fr, 0 -teambeam.it, 0 teambeam.ru, 0 teambee.tk, 1 teambim.eu, 1 @@ -134331,6 +134201,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 @@ -134843,7 +134714,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 @@ -134877,7 +134747,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 @@ -134941,7 +134810,6 @@ teleogistic.net, 1 telephonedirectories.us, 1 telephoni-cdma.tk, 1 telepilote-academy.fr, 1 -telepizza.es, 1 telepok.com, 1 telepons.com, 1 teleport.com.br, 1 @@ -135838,7 +135706,6 @@ 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 @@ -135879,6 +135746,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 @@ -135961,6 +135829,7 @@ thechallenge.fit, 1 thechandigarhcity.com, 1 thechargertimes.com, 1 thechatlinenumbers.com, 1 +thechauffeur-international.com, 1 thechavs.xyz, 1 thecheapairlinetickets.com, 1 thecheat.tk, 1 @@ -136361,7 +136230,6 @@ thekitchngic.com, 1 thekitsunesden.com, 1 thekittivibe.com, 1 thekliniquehotdeal.com, 1 -theknightrider.com, 1 theknittingnetwork.co.uk, 1 theknockout.tk, 1 theknowitguy.com, 1 @@ -136509,7 +136377,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 @@ -136848,7 +136715,6 @@ 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 @@ -136906,7 +136772,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 @@ -137003,7 +136868,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 @@ -137138,7 +137002,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 @@ -137728,7 +137591,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 @@ -138250,7 +138113,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 @@ -138366,7 +138228,6 @@ toddmclauchlin.ml, 1 toddmissiontx.gov, 1 toddvbanks.com, 1 todeva.com, 1 -todmordendigital.co.uk, 1 todo-securitywerkstuk.azurewebsites.net, 1 todo.is, 0 todobus.tk, 1 @@ -138428,7 +138289,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 @@ -139628,7 +139488,11 @@ toysplace.ml, 1 toystory3.ga, 1 toyventure.ga, 1 tozdev.com, 1 +tp-events.co.uk, 1 tp-genie.com, 1 +tp-properties.co.uk, 1 +tp-shipping.co.uk, 1 +tp-technology.co.uk, 1 tpa.or.th, 1 tpala-pg.fr, 1 tpark.jp, 1 @@ -139868,6 +139732,7 @@ trainingproviderresults.gov, 1 trainings-handschuhe-test.de, 1 trainingsalicante.tk, 1 trainingscatalogus.nl, 1 +trainingsecke.de, 1 trainingstore.fish, 1 trainingswiese.at, 1 trainline.io, 1 @@ -139989,7 +139854,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 @@ -140311,7 +140175,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 @@ -140322,6 +140185,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 @@ -140437,7 +140301,7 @@ 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 treurtransport.tk, 1 @@ -141355,6 +141219,7 @@ tunbiya.com, 1 tuncelimezaryapimi.com.tr, 1 tunder.tk, 1 tundermadar.hu, 1 +tundrawear.ru, 1 tune-web.de, 1 tunenet.ml, 1 tuner.cloud, 1 @@ -141460,6 +141325,7 @@ turkcechat.tk, 1 turkcedizin.tk, 1 turkceingilizce.gen.tr, 1 turkcoder.tk, 1 +turkdevs.net, 1 turkey-portal.tk, 1 turkeyfiles.tk, 1 turkeymistress.tk, 1 @@ -141574,7 +141440,6 @@ tutarot.club, 1 tutdevki.tk, 1 tuteepdf.com, 1 tutiendard.ga, 1 -tutierra.net, 1 tutima.com, 1 tuto-craft.com, 1 tutocursos.com, 1 @@ -141725,7 +141590,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 @@ -141749,7 +141613,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 @@ -142310,7 +142173,7 @@ uiberlay.cz, 1 uicchy.com, 1 uid0.pl, 1 uidrafter.com, 1 -uiharu.top, 1 +uiharu.top, 0 uinst.tk, 1 uinvest.ml, 1 uinvest.tk, 1 @@ -142621,6 +142484,7 @@ undergrounder.ga, 1 undergroundiron.tk, 1 undergroundmusic.tk, 1 underlined.fr, 1 +undernet.org, 1 undernet.uy, 0 undershoping.tk, 1 underskatten.tk, 1 @@ -142903,7 +142767,6 @@ universe.wtf, 1 universehistory.net, 1 universehk.tk, 1 universeinform.com, 1 -universeit.mx, 1 universellafredsdanser.se, 1 universellesleben.tk, 1 universemasterplan.com, 1 @@ -143057,7 +142920,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 @@ -144198,7 +144061,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 @@ -144613,7 +144475,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 @@ -145654,7 +145515,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 @@ -145856,7 +145716,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 @@ -145972,7 +145832,6 @@ virtualvaults.com, 0 virtualx.de, 1 virtubox.net, 1 virtubroker.com.mx, 1 -virtuele-dataroom.nl, 1 virtueturkey.ga, 1 virtuology.com, 1 virtus-group.com, 1 @@ -146040,7 +145899,6 @@ visiondetails.ru, 1 visiondigitalpe.com, 1 visiondigitalsog.com, 1 visiondrivers.com, 0 -visionduweb.fr, 1 visioned.net, 1 visioneducation.tk, 1 visionexpress.com, 1 @@ -146164,7 +146022,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 @@ -146302,7 +146159,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 @@ -146464,7 +146321,7 @@ vm-0.com, 1 vm.co.mz, 0 vm.ee, 0 vm0.eu, 1 -vm88.top, 1 +vm88.top, 0 vmagadane.tk, 1 vmath.my.id, 1 vmautorajkot.com, 1 @@ -147097,7 +146954,6 @@ vsevkusno.tk, 1 vsevolod.tk, 1 vsgcommunity.nl, 1 vshipit.com, 1 -vsimosvita.com, 1 vsl-defi.ch, 0 vsl.de, 1 vsmcomunicacao.com.br, 1 @@ -147144,7 +147000,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 @@ -147479,7 +147334,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 @@ -148021,7 +147875,6 @@ waupacawi.gov, 1 wausharacountywi.gov, 1 wauwatosa.gov, 1 wav-productions.com, 1 -wav.tv, 1 wave-cockpit.de, 1 wave-electronics.com, 0 wave-inc.co.jp, 1 @@ -148367,7 +148220,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 @@ -148857,7 +148709,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 @@ -149072,7 +148923,6 @@ 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 @@ -149851,7 +149701,6 @@ wikimiasr.com, 1 wikimilk.org, 1 wikimir.tk, 1 wikimirror.org, 1 -wikinbiography.com, 1 wikinews.com, 1 wikinews.de, 1 wikinews.org, 1 @@ -150051,7 +149900,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 @@ -150918,8 +150767,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 @@ -151897,7 +151744,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 @@ -151918,6 +151764,7 @@ x77nn.com, 1 x77pp.com, 0 x77qq.com, 0 x77ww.com, 0 +x7sevenusa.com, 1 x81vv.com, 1 x82365.com, 1 x86.co.kr, 1 @@ -152129,6 +151976,9 @@ xcompany.one, 1 xcraftsumulator.ru, 1 xcspy.org, 1 xcupidon.com, 1 +xcw8886.net, 1 +xcw8888.net, 0 +xcw8889.net, 0 xcxmiku.com, 0 xd.cm, 1 xd.gd.cn, 1 @@ -152536,7 +152386,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 @@ -152747,6 +152596,7 @@ 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 @@ -152754,8 +152604,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 @@ -152833,7 +152681,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 @@ -153155,13 +153002,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 @@ -153321,7 +153163,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 @@ -153869,7 +153710,6 @@ ycherbonnel.fr, 1 ycl.org.uk, 1 yclan.net, 1 ycnrg.org, 1 -ycnxp.com, 1 ycodendauteradio.net, 1 yd.io, 1 yd163.cc, 1 @@ -154020,6 +153860,7 @@ yezi.ga, 1 yezishurb.site, 1 yf128.cc, 1 yfeer.com, 0 +yfh.me, 1 yggdar.ga, 1 yggdrasildice.com, 1 ygm.org.uk, 1 @@ -154849,7 +154690,6 @@ z-konzept-nutrition.ru, 1 z-pc.net, 1 z-rejstejna.cz, 1 z-vector.com, 1 -z.cash, 1 z.is, 1 z.md, 1 z.mom, 1 @@ -155033,7 +154873,6 @@ 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 @@ -155647,7 +155486,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 @@ -155793,7 +155631,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 @@ -156036,7 +155873,6 @@ znjc.top, 1 znowuwrocisz.pl, 1 znwvw.net, 1 zobraz.cz, 1 -zobworks.com, 1 zochowskiplasticsurgery.com, 1 zockenbiszumumfallen.de, 1 zocode.tk, 1 @@ -156046,6 +155882,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 diff --git a/services/settings/dumps/blocklists/addons-bloomfilters.json b/services/settings/dumps/blocklists/addons-bloomfilters.json index d7e5462dfe1de..79e7e55e2eb79 100644 --- a/services/settings/dumps/blocklists/addons-bloomfilters.json +++ b/services/settings/dumps/blocklists/addons-bloomfilters.json @@ -1,5 +1,140 @@ { "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": [ @@ -3260,5 +3395,5 @@ "last_modified": 1690223886167 } ], - "timestamp": 1704285358567 + "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 615b5e96f150d..41b17b6250935 100644 --- a/services/settings/dumps/main/cookie-banner-rules-list.json +++ b/services/settings/dumps/main/cookie-banner-rules-list.json @@ -1,5 +1,194 @@ { "data": [ + { + "click": { + "optIn": "[data-cookieman-accept-all]", + "optOut": "[data-cookieman-accept-none]", + "presence": "#cookieman-modal" + }, + "schema": 1704727928035, + "domains": [ + "hfm-frankfurt.de" + ], + "id": "5FF5EEB9-1045-4ACF-8A12-0630B71063F6", + "last_modified": 1704881609345 + }, + { + "click": {}, + "schema": 1704727928035, + "cookies": { + "optOut": [ + { + "name": "paydirektCookieAllowed", + "value": "false" + }, + { + "name": "paydirektCookieAllowedPWS", + "value": "{%22necessary%22:true,%22analytics%22:false}" + } + ] + }, + "domains": [ + "paydirekt.de" + ], + "id": "769dcf5b-afd1-438d-940d-3069ff4b2f51", + "last_modified": 1704881609341 + }, + { + "click": { + "optIn": "button.iubenda-cs-accept-btn", + "optOut": "button.iubenda-cs-reject-btn", + "presence": "div#iubenda-cs-banner" + }, + "schema": 1704727928035, + "cookies": {}, + "domains": [ + "giallozafferano.it", + "virgilio.it", + "upfit.de", + "treedom.net" + ], + "id": "65638975-8222-425c-9be0-3f41a51db13c", + "last_modified": 1704881609336 + }, + { + "click": { + "optIn": "button#didomi-notice-agree-button", + "optOut": "button#didomi-notice-disagree-button", + "presence": "div#didomi-host" + }, + "schema": 1704727928035, + "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", + "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": "690aa076-4a8b-48ec-b52c-1443d44ff008", + "last_modified": 1704881609332 + }, + { + "click": { + "optIn": ".cc-btn.cc-allow", + "optOut": ".cc-btn.cc-deny", + "presence": ".cc-window.cc-banner" + }, + "schema": 1704727928035, + "cookies": { + "optOut": [ + { + "name": "cookieconsent_status", + "value": "deny" + } + ] + }, + "domains": [ + "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": "8f401b10-02b6-4e05-88fa-c37012d4c8c0", + "last_modified": 1704881609328 + }, + { + "click": { + "optOut": "#zdf-cmp-deny-btn", + "presence": ".zdf-cmp-modal-content" + }, + "schema": 1704727928035, + "cookies": {}, + "domains": [ + "zdf.de", + "3sat.de" + ], + "id": "91484461-01AD-4D78-9ED8-D17C688F47E7", + "last_modified": 1704881609324 + }, + { + "click": { + "optIn": ".root__OblK1:not(.secondaryButton__N1rJw)", + "optOut": ".root__OblK1.secondaryButton__N1rJw", + "presence": ".root__XMKIj" + }, + "schema": 1704727928035, + "cookies": {}, + "domains": [ + "forbes.com" + ], + "id": "30293090-f064-473a-ae0f-cd390507c1c7", + "last_modified": 1704881609320 + }, + { + "click": { + "optIn": "[href=\"#accept\"]", + "optOut": "[href=\"#refuse\"]", + "presence": "div#cookie-consent-banner" + }, + "schema": 1704727928035, + "cookies": { + "optOut": [ + { + "name": "cck1", + "value": "%7B%22cm%22%3Atrue%2C%22all1st%22%3Afalse%2C%22closed%22%3Atrue%7D" + } + ] + }, + "domains": [ + "europa.eu" + ], + "id": "0c74749a-8c53-4bb0-b31a-ab2f89b7f493", + "last_modified": 1704881609316 + }, { "click": { "optIn": ".CookieBanner_buttonContainer__NOZxH:nth-child(1) button", @@ -1057,22 +1246,6 @@ "id": "23710ccf-85e6-450e-953d-7ffc3f80bbf0", "last_modified": 1702633230618 }, - { - "click": { - "optIn": "button.iubenda-cs-accept-btn", - "optOut": "button.iubenda-cs-reject-btn", - "presence": "div#iubenda-cs-banner" - }, - "schema": 1702598407647, - "cookies": {}, - "domains": [ - "giallozafferano.it", - "virgilio.it", - "upfit.de" - ], - "id": "65638975-8222-425c-9be0-3f41a51db13c", - "last_modified": 1702633230611 - }, { "click": { "optIn": "button#popin_tc_privacy_button_2", @@ -1111,77 +1284,6 @@ "id": "9e4d932a-eaf9-44e4-a3ac-55861d66a7c3", "last_modified": 1702633230599 }, - { - "click": { - "optIn": "button#didomi-notice-agree-button", - "optOut": "button#didomi-notice-disagree-button", - "presence": "div#didomi-host" - }, - "schema": 1702598407647, - "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", - "france24.com" - ], - "id": "690aa076-4a8b-48ec-b52c-1443d44ff008", - "last_modified": 1702633230591 - }, - { - "click": { - "optIn": ".cc-btn.cc-allow", - "optOut": ".cc-btn.cc-deny", - "presence": ".cc-window.cc-banner" - }, - "schema": 1702598407647, - "cookies": { - "optOut": [ - { - "name": "cookieconsent_status", - "value": "deny" - } - ] - }, - "domains": [ - "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-gas.com", - "omv-gas.at", - "omv-gas.be", - "omv-gas.de", - "omv-gas.hu", - "omv-gas.nl", - "omv-gas.com.tr", - "omvpetrom.com", - "petrom.ro", - "petrom.md" - ], - "id": "8f401b10-02b6-4e05-88fa-c37012d4c8c0", - "last_modified": 1702633230587 - }, { "click": {}, "schema": 1700826062965, @@ -1493,19 +1595,6 @@ "id": "0EAF9E99-36C6-4165-87BE-A62EF1751E1D", "last_modified": 1700826062722 }, - { - "click": { - "optOut": "#zdf-cmp-deny-btn", - "presence": ".zdf-cmp-modal-content" - }, - "schema": 1700313507200, - "cookies": {}, - "domains": [ - "zdf.de" - ], - "id": "91484461-01AD-4D78-9ED8-D17C688F47E7", - "last_modified": 1700826062719 - }, { "click": { "optIn": "[data-testid=\"accept-all-cookies-button\"]", @@ -7137,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", @@ -7250,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, @@ -8867,5 +8929,5 @@ "last_modified": 1670498155641 } ], - "timestamp": 1702633230760 + "timestamp": 1704881609345 } diff --git a/services/settings/dumps/security-state/intermediates.json b/services/settings/dumps/security-state/intermediates.json index 77a56bf521e72..9603b2837dc7a 100644 --- a/services/settings/dumps/security-state/intermediates.json +++ b/services/settings/dumps/security-state/intermediates.json @@ -1,5 +1,41 @@ { "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=", @@ -29647,5 +29683,5 @@ "last_modified": 1559865884636 } ], - "timestamp": 1704470223072 + "timestamp": 1704923823508 } From 22cc0454edcfc78c93cd3c2c762132a56399cfec Mon Sep 17 00:00:00 2001 From: Ryan VanderMeulen <ryanvm@gmail.com> Date: Thu, 11 Jan 2024 16:26:32 -0500 Subject: [PATCH 37/46] No bug - Make perfdocs linter happy. a=NPOTB --- testing/perfdocs/generated/raptor.rst | 4001 ++----------------------- testing/perfdocs/generated/talos.rst | 1415 +-------- 2 files changed, 270 insertions(+), 5146 deletions(-) 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**: `<https://accounts.google.com>`__ + * **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**: `<https://m.imdb.com/title/tt0083943/>`__ + * **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**: `<https://medium.com/s/coincidences-are-a-lie/could-america-have-also-been-the-birthplace-of-impressionism-cb3d31a2e22d>`__ + * **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**: `<https://accounts.google.com>`__ + * **test url**: `<https://www.nytimes.com/2020/02/19/opinion/surprise-medical-bill.html>`__ * **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**: `<https://m.imdb.com/title/tt0083943/>`__ - * **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**: `<https://medium.com/s/coincidences-are-a-lie/could-america-have-also-been-the-birthplace-of-impressionism-cb3d31a2e22d>`__ - * **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**: `<https://www.nytimes.com/2020/02/19/opinion/surprise-medical-bill.html>`__ - * **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**: `<https://rumble.com/v3c44t-foxes-jumping-on-my-trampoline.html>`__ - * **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**: `<https://rumble.com/v3c44t-foxes-jumping-on-my-trampoline.html>`__ + * **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**: `<http://www.espn.com/nba/story/_/page/allstarweekend25788027/the-comparison-lebron-james-michael-jordan-their-own-words>`__ - * **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**: `<http://www.espn.com/nba/story/_/page/allstarweekend25788027/the-comparison-lebron-james-michael-jordan-their-own-words>`__ + * **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**: `<https://www.youtube.com/watch?v=COU5T-Wafa4>`__ - * **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**: `<https://www.youtube.com/watch?v=COU5T-Wafa4>`__ + * **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**: `<https://www.google.com/search?hl=en&q=barack+obama&cad=h>`__ * **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** - - ✅ - - ✅ - - ❌ - - ✅ From 5517bc0a9d62392989dc93b8cf860ca61b0a232d Mon Sep 17 00:00:00 2001 From: Andrew Osmond <aosmond@mozilla.com> Date: Wed, 10 Jan 2024 12:48:15 -0500 Subject: [PATCH 38/46] Bug 1873701. a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D198046 --- dom/canvas/DrawTargetWebgl.cpp | 4 ++ gfx/2d/DrawTargetD2D1.cpp | 19 +++++---- gfx/2d/DrawTargetRecording.cpp | 10 ++--- gfx/2d/DrawTargetSkia.cpp | 15 +++++-- gfx/2d/RecordedEvent.h | 6 +-- gfx/2d/RecordedEventImpl.h | 63 +++++++++++++++++++---------- gfx/layers/ipc/CanvasTranslator.cpp | 14 ++----- gfx/layers/ipc/CanvasTranslator.h | 4 +- 8 files changed, 82 insertions(+), 53 deletions(-) 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/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<const ConicGradientPattern*>(&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<ID2D1Brush> DrawTargetD2D1::CreateBrushForPattern( const LinearGradientPattern* pat = static_cast<const LinearGradientPattern*>(&aPattern); - GradientStopsD2D* stops = static_cast<GradientStopsD2D*>(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<ID2D1Brush> DrawTargetD2D1::CreateBrushForPattern( return CreateTransparentBlackBrush(); } + GradientStopsD2D* stops = static_cast<GradientStopsD2D*>(pat->mStops.get()); + mDC->CreateLinearGradientBrush( D2D1::LinearGradientBrushProperties(D2DPoint(pat->mBegin), D2DPoint(pat->mEnd)), @@ -2106,9 +2108,8 @@ already_AddRefed<ID2D1Brush> DrawTargetD2D1::CreateBrushForPattern( const RadialGradientPattern* pat = static_cast<const RadialGradientPattern*>(&aPattern); - GradientStopsD2D* stops = static_cast<GradientStopsD2D*>(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<ID2D1Brush> DrawTargetD2D1::CreateBrushForPattern( return CreateTransparentBlackBrush(); } + GradientStopsD2D* stops = static_cast<GradientStopsD2D*>(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<FilterNode> DrawTargetRecording::CreateFilter( FilterType aType) { RefPtr<FilterNode> retNode = new FilterNodeRecording(mRecorder); - mRecorder->RecordEvent(RecordedFilterNodeCreation(retNode, aType)); + mRecorder->RecordEvent(RecordedFilterNodeCreation(this, retNode, aType)); return retNode.forget(); } @@ -617,7 +617,7 @@ already_AddRefed<DrawTarget> 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<GradientStops> DrawTargetRecording::CreateGradientStops( GradientStop* aStops, uint32_t aNumStops, ExtendMode aExtendMode) const { RefPtr<GradientStops> 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<PathRecording> 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<const LinearGradientPattern&>(aPattern); GradientStopsSkia* stops = - static_cast<GradientStopsSkia*>(pat.mStops.get()); + pat.mStops && pat.mStops->GetBackendType() == BackendType::SKIA + ? static_cast<GradientStopsSkia*>(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<const RadialGradientPattern&>(aPattern); GradientStopsSkia* stops = - static_cast<GradientStopsSkia*>(pat.mStops.get()); + pat.mStops && pat.mStops->GetBackendType() == BackendType::SKIA + ? static_cast<GradientStopsSkia*>(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<const ConicGradientPattern&>(aPattern); GradientStopsSkia* stops = - static_cast<GradientStopsSkia*>(pat.mStops.get()); + pat.mStops && pat.mStops->GetBackendType() == BackendType::SKIA + ? static_cast<GradientStopsSkia*>(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<FilterNodeSoftware*>(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<GradientStops> 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<RecordedCreateSimilarDrawTarget> { 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<RecordedDrawFilter> { class RecordedPathCreation : public RecordedEventDerived<RecordedPathCreation> { 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<RecordedPathCreation> { private: friend class RecordedEvent; + ReferencePtr mDT; ReferencePtr mRefPtr; FillRule mFillRule; RefPtr<PathRecording> mPath; @@ -962,8 +965,10 @@ class RecordedExternalSurfaceCreation class RecordedFilterNodeCreation : public RecordedEventDerived<RecordedFilterNodeCreation> { 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<RecordedGradientStopsCreation> { 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> 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 <class S> 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 <class S> 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> 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 <class S> 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 <class S> 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> 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 <class S> 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 <class S> 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<GradientStops> src = - aTranslator->GetOrCreateGradientStops(mStops, mNumStops, mExtendMode); + aTranslator->GetOrCreateGradientStops(dt, mStops, mNumStops, mExtendMode); aTranslator->AddGradientStops(mRefPtr, src); return true; } template <class S> 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 <class S> 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/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<gfx::SourceSurface> CanvasTranslator::LookupExternalSurface( } already_AddRefed<gfx::GradientStops> 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<gfx::GradientStop> rawStopArray(aRawStops, aNumStops); - RefPtr<DrawTarget> 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<gfx::GradientStops> 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. From 8c9b3019d44bd045331e31559b94457c0b1f76d8 Mon Sep 17 00:00:00 2001 From: Mike Hommey <mh+mozilla@glandium.org> Date: Thu, 11 Jan 2024 21:43:55 +0000 Subject: [PATCH 39/46] Bug 1874269 - Downgrade home for a smaller MSRV when building cargo-apk. r+a=RyanVM This works around the lack of Cargo.lock. Differential Revision: https://phabricator.services.mozilla.com/D198324 --- taskcluster/scripts/misc/wrench-deps-vendoring.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 From eacc607ef7f5f1a0d357921e3dc70ed4132b077d Mon Sep 17 00:00:00 2001 From: Rob Wu <rob@robwu.nl> Date: Wed, 13 Dec 2023 13:57:42 +0000 Subject: [PATCH 40/46] Bug 1865689 - Clarify access checks in devtools.inspectedWindow.eval r=rpl,devtools-reviewers,ochameau, a=dmeehan and report a static error instead of including the URL in the message. Differential Revision: https://phabricator.services.mozilla.com/D196133 --- .../addon/webextension-inspected-window.js | 99 +++--- .../inspected-window/tests/browser.ini | 8 + .../browser_webextension_inspected_window.js | 42 --- ...er_webextension_inspected_window_access.js | 315 ++++++++++++++++++ 4 files changed, 377 insertions(+), 87 deletions(-) create mode 100644 devtools/shared/commands/inspected-window/tests/browser_webextension_inspected_window_access.js 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..1904a2dbdd3f2 100644 --- a/devtools/shared/commands/inspected-window/tests/browser.ini +++ b/devtools/shared/commands/inspected-window/tests/browser.ini @@ -8,4 +8,12 @@ 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] \ 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": `<!DOCTYPE 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": `<!DOCTYPE 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(); +}); From 8ca3278b1d4c6b13c2752fa3be4bcec47aa98ec7 Mon Sep 17 00:00:00 2001 From: donal meehan <dmeehan@mozilla.com> Date: Mon, 15 Jan 2024 09:53:24 -0500 Subject: [PATCH 41/46] Bug 1865689 - ESR115 change test exceptations. a=test-only --- devtools/shared/commands/inspected-window/tests/browser.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/devtools/shared/commands/inspected-window/tests/browser.ini b/devtools/shared/commands/inspected-window/tests/browser.ini index 1904a2dbdd3f2..d3b5ce5fbce77 100644 --- a/devtools/shared/commands/inspected-window/tests/browser.ini +++ b/devtools/shared/commands/inspected-window/tests/browser.ini @@ -16,4 +16,5 @@ prefs = extensions.webextensions.restrictedDomains=test2.example.com [browser_webextension_inspected_window.js] -[browser_webextension_inspected_window_access.js] \ No newline at end of file +[browser_webextension_inspected_window_access.js] +skip-if = http3 \ No newline at end of file From 36e7e70a690627c4b041a90685bb385229676fe9 Mon Sep 17 00:00:00 2001 From: Tom Schuster <tschuster@mozilla.com> Date: Fri, 5 Jan 2024 14:50:16 +0000 Subject: [PATCH 42/46] Bug 1764343 - ESR115: Remove steps in Document::Open not derived from spec. r=dveditz, a=dmeehan Differential Revision: https://phabricator.services.mozilla.com/D197783 --- dom/base/Document.cpp | 11 -- dom/security/test/csp/file_bug1764343.html | 11 ++ dom/security/test/csp/mochitest.ini | 2 + dom/security/test/csp/test_bug1764343.html | 116 ++++++++++++++++++ ...val-blocked-in-about-blank-iframe.html.ini | 4 - 5 files changed, 129 insertions(+), 15 deletions(-) create mode 100644 dom/security/test/csp/file_bug1764343.html create mode 100644 dom/security/test/csp/test_bug1764343.html delete mode 100644 testing/web-platform/meta/content-security-policy/unsafe-eval/eval-blocked-in-about-blank-iframe.html.ini diff --git a/dom/base/Document.cpp b/dom/base/Document.cpp index f5832590ced32..3a1575b7df9a0 100644 --- a/dom/base/Document.cpp +++ b/dom/base/Document.cpp @@ -9649,17 +9649,6 @@ Document* Document::Open(const Optional<nsAString>& /* 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<nsIContentSecurityPolicy> csp = callerDoc->GetCsp(); - if (csp) { - RefPtr<nsCSPContext> cspToInherit = new nsCSPContext(); - cspToInherit->InitFromOther(static_cast<nsCSPContext*>(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); 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 @@ +<!DOCTYPE HTML> +<html> +<head> + <meta charset="utf-8"> + <title>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/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 From fcce64b4cc46b7505272410054acd286273c861e Mon Sep 17 00:00:00 2001 From: donal meehan Date: Mon, 15 Jan 2024 11:31:07 -0500 Subject: [PATCH 43/46] Bug 1873927. r=gfx-reviewers,lsalzman, a=dmeehan Differential Revision: https://phabricator.services.mozilla.com/D198163 --- gfx/ipc/CanvasManagerParent.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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; } From 163a4a84cfdfb797d22a660de658ec71acf5dd7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Fri, 12 Jan 2024 16:41:02 +0000 Subject: [PATCH 44/46] Bug 1873002 - Make the richlistbox contents not grow the richlistbox. r=Gijs, a=dmeehan This matches the behavior of XUL trees, and also what we did for the languages listboxes and bug 1860214. This is enough to fix the bug, but more in-depth fix incoming too. Differential Revision: https://phabricator.services.mozilla.com/D198395 --- security/manager/pki/resources/content/certManager.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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, From 9dfec3d7063e360648cd09320909a12839876ec5 Mon Sep 17 00:00:00 2001 From: ffxbld Date: Mon, 15 Jan 2024 10:55:20 +0000 Subject: [PATCH 45/46] No Bug, mozilla-esr115 repo-update HSTS HPKP remote-settings - a=repo-update, r=dmeehan Differential Revision: https://phabricator.services.mozilla.com/D198526 --- security/manager/ssl/StaticHPKPins.h | 2 +- security/manager/ssl/nsSTSPreloadList.inc | 506 +++++------------- .../main/devtools-compatibility-browsers.json | 47 +- 3 files changed, 158 insertions(+), 397 deletions(-) diff --git a/security/manager/ssl/StaticHPKPins.h b/security/manager/ssl/StaticHPKPins.h index f30fd3b02d5cd..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(1713437457302000); +static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1713783018573000); diff --git a/security/manager/ssl/nsSTSPreloadList.inc b/security/manager/ssl/nsSTSPreloadList.inc index b56777c97da6c..6a057c767d289 100644 --- a/security/manager/ssl/nsSTSPreloadList.inc +++ b/security/manager/ssl/nsSTSPreloadList.inc @@ -8,7 +8,7 @@ /*****************************************************************************/ #include -const PRTime gPreloadListExpirationTime = INT64_C(1715856653796000); +const PRTime gPreloadListExpirationTime = INT64_C(1716202214765000); %% 0--1.de, 1 0-0.io, 1 @@ -66,7 +66,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715856653796000); 0047552.com, 1 00484.com, 1 0057552.com, 1 -0066.in, 0 +0066.in, 1 0067552.com, 1 007d88.com, 1 007kf.com, 1 @@ -894,7 +894,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715856653796000); 12356.xyz, 1 12365t.com, 1 123apps.com, 1 -123apps.net, 1 123birthdaygreetings.com, 1 123comparer.be, 1 123comparer.fr, 1 @@ -2348,7 +2347,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715856653796000); 2or3.tk, 1 2pi.finance, 1 2pi.network, 1 -2q.ru, 0 2rsc.com, 1 2rsc.net, 1 2sendai.net, 1 @@ -2389,7 +2387,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715856653796000); 30375533.com, 1 3056999.com, 1 305westendassistedliving.com, 1 -3078i.com, 1 +3078i.com, 0 308274.com, 1 3090.eu, 1 30bet365.com, 1 @@ -4549,7 +4547,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715856653796000); 759419.com, 1 759675.com, 1 75codes.com, 1 -75dr.com, 1 75refer.tk, 1 76.to, 1 761.com, 1 @@ -5214,7 +5211,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715856653796000); 8900d.com, 1 890238.com, 1 8906d.com, 1 -890789d.com, 1 +890789d.com, 0 8908d.com, 1 8921d.com, 1 8925d.com, 1 @@ -5318,8 +5315,8 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715856653796000); 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 @@ -5792,45 +5789,29 @@ const PRTime gPreloadListExpirationTime = INT64_C(1715856653796000); 9397b.com, 1 9397bb.com, 0 9397c.com, 1 -9397cc.com, 0 9397dd.com, 0 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 @@ -6739,6 +6720,7 @@ a122.cc, 1 a12k.nz, 0 a163.top, 1 a1bouncycastlehire.com, 1 +a1cashforcar.com.au, 1 a1cdrinks.com, 1 a1cookingequipment.com.au, 1 a1demolitionhauling.com, 1 @@ -6816,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 @@ -7347,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 @@ -7423,6 +7403,7 @@ academiasdemodelos.com, 0 academic-master.com, 1 academica.nl, 1 academicassignmentexperts.com, 1 +academichealthscience.net, 1 academichelp.gq, 1 academie-angoumois.org, 1 academie-de-police.ch, 0 @@ -7661,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 @@ -9238,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 @@ -9374,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 @@ -9388,7 +9366,6 @@ ahd.com, 0 ahealthyjourney.ca, 1 ahegaoroulette.com, 1 ahelos.tk, 1 -ahero4all.org, 1 ahezu.com, 1 ahg-offices.fr, 1 ahhcomfortshoes.com, 1 @@ -9647,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 @@ -11524,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 @@ -11680,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 @@ -11928,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 @@ -12019,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 @@ -13202,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 @@ -13375,7 +13346,6 @@ 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 @@ -13642,7 +13612,7 @@ 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 @@ -13812,6 +13782,7 @@ anyplant.ga, 1 anyprime.net, 1 anyquestions.govt.nz, 1 anyradio.ga, 1 +anyrisk.ru, 1 anyrose.ga, 1 anysale.ga, 1 anyshapemusic.com, 1 @@ -15388,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 @@ -15514,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 @@ -15619,6 +15588,7 @@ asccontracts.com, 1 ascenderhcm.com, 1 ascendix.com, 1 ascension.run, 1 +ascensiongt.com, 1 ascensionnyc.org, 1 ascensionparishla.gov, 1 ascensori.biz, 1 @@ -16055,7 +16025,6 @@ 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 @@ -16579,7 +16548,6 @@ audio.servemp3.com, 1 audiobit.es, 1 audioblackmagic.com, 1 audiobone.com, 1 -audiobookss.com, 1 audiobookstudio.com, 1 audioboom.com, 1 audioboomers.ga, 1 @@ -16928,7 +16896,6 @@ 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 @@ -17688,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 @@ -17739,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 @@ -18519,7 +18486,6 @@ badboyz.org, 1 badboyzclub.de, 1 badcarma.tk, 1 badcomputer.tk, 1 -baddielatina.com, 1 baddrones.llc, 1 badeand.net, 1 badekappen.com, 1 @@ -19048,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 @@ -19140,7 +19105,6 @@ baravalle.com, 1 baraxolka.ga, 1 baraxolka.ml, 1 barbaderespeito.com.br, 1 -barbara-bertagnolli.co.uk, 1 barbara-fuchs-gruene-fuerth.de, 1 barbarabowersrealty.com, 1 barbarabryce.com, 1 @@ -19514,7 +19478,6 @@ batiburrillo.net, 1 batiim.co.il, 1 batipiscine.com, 1 batipresta.ch, 0 -batitrakya.org, 1 batiweb.tv, 1 batiwebgroup.com, 0 batka-stealer.tk, 1 @@ -19835,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 @@ -20954,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 @@ -21295,6 +21256,7 @@ bestpornpictures.com, 1 bestportablegeneratorratings.com, 1 bestpost.org, 1 bestpressurewashingchicago.com, 1 +bestprofessionalchainsaw.com, 1 bestpsychologydegrees.com, 1 bestpsychologydegrees.org, 1 bestreleases.tk, 1 @@ -21791,6 +21753,7 @@ bezpiecznyiphone.pl, 1 bezpiecznykierowca.info, 1 bezposrednio.net.pl, 1 bezpredel.tk, 1 +bf-foto.eu, 1 bf2statistics.eu, 1 bfam.tv, 1 bfas237blog.com, 1 @@ -21868,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 @@ -21995,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 @@ -22252,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 @@ -22335,7 +22295,6 @@ billywig.stream, 1 biloxihistoricalsociety.org, 0 biloxisportfishing.com, 1 bilsho.com, 1 -bim.finance, 1 bim.physio, 1 bim0s.com, 1 bimacitizen.com, 1 @@ -22549,6 +22508,7 @@ biomodra.cz, 1 bionic-karnage.tk, 1 bionicman.name, 1 bionovanaturalpools.com, 1 +biontech24.pl, 1 biontechworld.com, 1 biopreferred.gov, 1 biopro-st.com, 1 @@ -22800,6 +22760,7 @@ bitcoinstock.ga, 1 bitcointask.net, 1 bitcointech.ga, 1 bitcointransfer.tk, 1 +bitcointv.com, 1 bitcoinwalletscript.tk, 1 bitcoinx.ro, 1 bitcork.io, 1 @@ -23148,6 +23109,7 @@ bkin-42740.xyz, 1 bkin-43450.xyz, 1 bkin-46680.xyz, 1 bkk24.de, 1 +bkkf.at, 1 bkkposn.com, 1 bklaindia.com, 1 bkmexpress.com.tr, 1 @@ -23467,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 @@ -23493,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 @@ -23520,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 @@ -24186,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 @@ -24856,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 @@ -24871,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 @@ -26408,6 +26366,7 @@ bulldogmarketinggroup.com, 1 bulldogs-sipoo.tk, 1 bulledair-savons.ch, 0 bulledart.ga, 1 +bullesdeculture.com, 1 bullesdelaube.com, 1 bulletbabu.com, 0 bulletfrog.tk, 1 @@ -27228,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 @@ -27620,6 +27578,7 @@ cafead.de, 1 cafeamazon.tk, 1 cafeapple.com, 1 cafebab.com, 1 +cafebeauty.com, 1 cafebeirut.tk, 1 cafecentraal.tk, 1 cafecentral.tk, 1 @@ -27690,6 +27649,7 @@ caibi.io, 1 caic.com.sg, 1 caidao.com, 1 caifan.com, 1 +caihuan.com, 1 caijunyi.net, 0 caikuai.com, 1 caillou.eu, 1 @@ -27998,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 @@ -28141,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 @@ -29155,6 +29113,7 @@ cases.lu, 1 casetech.com, 1 casewarecloud.com, 1 caseycapitalpartners.com, 1 +casgp.com, 0 cash-bot.tk, 1 cash-generator.tk, 1 cash-pos.com, 1 @@ -29742,6 +29701,7 @@ 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 @@ -29779,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 @@ -30301,12 +30260,14 @@ certevia.com, 1 certfa.com, 1 certfica4u.com, 1 certidao-nascimento-pt.org, 1 +certidaonc.com.br, 1 certificados.edu.do, 1 certificatedetails.com, 1 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 @@ -30390,7 +30351,6 @@ cevt.ar, 1 cewek.ml, 1 cewood.xyz, 1 cexplorer.io, 1 -ceyhanmolla.com, 1 ceyizlikelisleri.com, 1 ceylontea.org, 1 cezdent.com, 1 @@ -31020,7 +30980,6 @@ checkme.ml, 1 checkmedia.org, 1 checkmin.cf, 1 checkmk.com, 1 -checkmyessays.com, 1 checkmyhttps.net, 1 checkmypsoriasis.com, 1 checknetworks.com.au, 1 @@ -31372,7 +31331,6 @@ china-online-news.tk, 1 chinabank.ph, 1 chinabelt.com, 1 chinablows.com, 1 -chinacbd.com, 1 chinacdn.org, 1 chinacheers.com, 1 chinadream404.com, 1 @@ -31867,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 @@ -33310,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 @@ -33686,7 +33642,6 @@ 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 @@ -33780,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 @@ -33877,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 @@ -34636,7 +34591,6 @@ computer-world.pro, 1 computer-worlds.tk, 1 computer4me.tk, 1 computeradvance.tk, 1 -computerandaccessories.com, 1 computerbas.nl, 1 computerbase.de, 1 computerforum.tk, 1 @@ -34834,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 @@ -34885,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 @@ -34957,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 @@ -35463,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 @@ -35567,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 @@ -35681,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 @@ -35940,7 +35888,7 @@ 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, 1 @@ -36023,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 @@ -36156,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 @@ -36694,6 +36640,7 @@ crsvina.com, 1 crt.cloud, 1 crt.sh, 1 crt2014-2024review.gov, 1 +crtalleres.com, 1 crti.dz, 1 crti.tech, 1 crtified.me, 1 @@ -36759,6 +36706,7 @@ crypted.chat, 0 crypteianetworks.com, 1 cryptenet.com, 1 crypterium.com.br, 1 +cryptex.net, 1 crypticdeath.tk, 1 crypticface.tk, 1 crypticonseattle.com, 1 @@ -37212,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 @@ -37952,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 @@ -38788,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 @@ -38810,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 @@ -38942,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 @@ -39149,6 +39093,7 @@ davimun.org, 1 davinamccall.tk, 1 davinciwaldorfschool.org, 1 davisboroga.gov, 1 +daviscannabisco.com, 1 daviscountyelectionsutah.gov, 1 daviscountyiowa.gov, 1 davisdieselandautorepair.com, 1 @@ -39389,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 @@ -40054,6 +39998,7 @@ delphine.dance, 1 delprete.me, 1 delpuertohealth.gov, 1 delrayengineering.ca, 1 +delsfranchise.com, 1 delsolphotography.com, 1 delta-data.ch, 1 delta-electric.net, 1 @@ -40698,7 +40643,6 @@ destroysilence.ml, 1 destruction-frelon-asiatique.com, 1 destructive-revolution.tk, 1 destructoradepapel.com.es, 1 -destruktiveridingkrew.com, 1 destudio.org.ua, 1 destuurmanskolk.nl, 1 destyntek.com, 1 @@ -41259,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 @@ -41510,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 @@ -43095,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 @@ -43963,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 @@ -44555,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 @@ -45956,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 @@ -46147,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 @@ -46297,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 @@ -46472,6 +46414,7 @@ educaestado.com, 1 educanada.in, 1 educard.co.at, 1 educasis.tk, 1 +educatek.es, 1 educatie.tk, 1 education-colleges.com, 1 education-info.cf, 1 @@ -46569,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 @@ -47413,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 @@ -47543,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 @@ -47654,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 @@ -47727,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 @@ -48378,22 +48316,11 @@ endviolence.gc.ca, 1 enecivilela.com, 1 enefit.com, 1 enefit.ee, 1 -enefit.lv, 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.eu, 1 -enefitvolt.fi, 1 -enefitvolt.lv, 1 -enefitvolt.pl, 1 -enefitvolt.se, 1 enefix.eu, 1 eneko.com, 1 enekogarrido.com, 0 @@ -48518,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 @@ -48633,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 @@ -49004,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 @@ -49374,6 +49301,7 @@ esbuilders.co.nz, 0 esc-romania.tk, 1 esc-turkey.tk, 1 esc18.net, 1 +esc3.net, 1 esc9.net, 1 escae.ml, 1 escael.org, 1 @@ -49436,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 @@ -49499,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 @@ -49582,7 +49508,6 @@ espoonkumi.fi, 0 esport-agency.fr, 1 esport-brande.dk, 1 esporters.it, 1 -esporters.today, 1 esportsbattles.ga, 1 espower.com.sg, 1 espressonews.gr, 1 @@ -49606,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 @@ -49781,7 +49705,6 @@ etath.com, 1 etaxigraz.com, 1 etccooperative.org, 0 etch.co, 1 -etch44.com, 1 etcivil.com, 1 etctop.tk, 1 etdcampus.com, 1 @@ -50238,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 @@ -50418,7 +50340,6 @@ evhoeft.com, 1 eviction.cf, 1 evidecor.com.br, 1 evidenceusa.com.br, 1 -evidenciamidiasdigitais.com.br, 1 evidencija.ba, 1 evies.tk, 1 evil-empire.tk, 1 @@ -50811,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 @@ -50851,7 +50771,6 @@ exploreeurope.de, 1 exploregulf.ga, 1 exploreit.online, 1 exploretock.com, 1 -exploretravellife.com, 1 exploretsp.gov, 1 exploring-memory.org, 1 exploringmorocco.tours, 1 @@ -51252,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 @@ -51296,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 @@ -51748,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 @@ -51948,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 @@ -52069,6 +51985,7 @@ fastbob.ga, 1 fastbob.gq, 1 fastbob.ml, 1 fastbob.tk, 1 +fastbuilder.pro, 1 fastcash.com.br, 1 fastcast.ga, 1 fastcats.tk, 1 @@ -52247,6 +52164,7 @@ fbihr.gov, 1 fbiic.gov, 1 fbijobs.gov, 1 fbilab.gov, 1 +fbk.moe, 1 fbmedia-ckl.com, 1 fbo.gov, 1 fbo.network, 1 @@ -52484,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 @@ -52562,6 +52481,7 @@ felixsanchez.tk, 1 felixschuermeyer.de, 1 felixseele.de, 1 felixsworld.tk, 1 +felixturgeon.ca, 1 felixvelarde.com, 1 felixweb.tk, 1 feliz.tk, 1 @@ -53858,6 +53778,7 @@ fishystuff.cf, 1 fisinfomanagerdr.com, 1 fisio-clinics.com, 1 fisiobox.eu, 1 +fisiodomiciliargoiania.com.br, 1 fisioterapia-online.com, 1 fisioterapiaalquimia.com, 1 fisioterapialanchares.com, 1 @@ -54301,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 @@ -55222,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 @@ -55404,7 +55325,6 @@ fortress.sk, 1 fortresslinux.com, 1 fortresslinux.nl, 1 fortresslinux.org, 1 -fortressofsolitude.co.za, 0 fortricks.in, 1 fortuna-apotheke-lahnstein.de, 1 fortuna-loessnitz.de, 1 @@ -55481,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 @@ -56154,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 @@ -56168,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 @@ -56223,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 @@ -56656,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 @@ -56670,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 @@ -57210,7 +57124,6 @@ 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 @@ -57416,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 @@ -57601,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 @@ -57618,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 @@ -57629,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 @@ -57988,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 @@ -58479,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 @@ -58536,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 @@ -58571,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 @@ -58661,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 @@ -59392,6 +59299,7 @@ getjadedlocal.com, 1 getjms.com, 1 getlaminas.org, 1 getlantern.org, 0 +getlawnbuddy.com, 1 getlawyered.com.au, 1 getleanflorida.gov, 1 getlessgivemore.com, 1 @@ -59809,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 @@ -61583,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 @@ -61694,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 @@ -61734,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 @@ -61744,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 @@ -61993,6 +61897,7 @@ gregproffit.com, 1 gregscloud.com, 1 greizer.tk, 1 grekiskagudar.tk, 1 +grekos.com.pl, 1 gremagol.xyz, 1 gremlinsmountain.tk, 1 grenade.ga, 1 @@ -62005,7 +61910,6 @@ grenfell.org.au, 1 grenfellinternetcentre.com.au, 1 grengine.ch, 1 grenlan.com, 1 -grenlandkiropraktor.no, 1 grenoblepartners.com, 1 grepable.com, 1 grepular.com, 1 @@ -62030,7 +61934,7 @@ greycrane.net, 1 greydesign.tk, 1 greyhackcentral.gq, 1 greyhash.se, 1 -greyheads.cat, 0 +greyheads.cat, 1 greyline.tk, 1 greymatteroffline.tk, 1 greymattertechs.com, 1 @@ -63221,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 @@ -63362,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 @@ -63457,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 @@ -64814,6 +64715,7 @@ heartsucker.com, 0 hearttruth.gov, 1 heartview.com.br, 1 heartwoodart.com, 1 +heartwoodrefuge.org, 0 hearty.blog, 1 hearty.eu.org, 0 hearty.ga, 1 @@ -64897,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 @@ -64933,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 @@ -65665,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 @@ -67220,7 +67120,6 @@ hospitalsineachstate.com, 1 hospitalviladaserra.com.br, 1 hossi.pro, 0 hossien.tk, 1 -hossleylps.com, 1 host-heberg.com, 1 host-morezar.ml, 1 host-stage.net, 1 @@ -67563,6 +67462,7 @@ housese.at, 1 housesmartdecore.tk, 1 housesumo.com, 1 housetories.com, 1 +housevertising.nl, 1 housing.com, 1 housingauctions.net, 1 housingcenter.com, 1 @@ -68121,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 @@ -68550,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 @@ -68688,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 @@ -69076,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 @@ -70478,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 @@ -71424,6 +71319,7 @@ intelalumni.org, 1 intelcapital.com, 1 intelekta.es, 1 intelhost.com.br, 1 +intelics.com.au, 1 intelius.cf, 1 intellar.com, 1 intellect-ls.com, 1 @@ -71895,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 @@ -71923,6 +71818,7 @@ inyr.hu, 0 inzdr.com, 1 inzeitinteractive.tk, 1 inzelabs.com, 1 +inzeni.pl, 1 inzernettechnologies.com, 1 inzestfreunde.de, 1 inzichtmeditatie.nl, 1 @@ -72380,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 @@ -72949,7 +72844,6 @@ itmustbee.com, 1 itmx.cc, 0 itnet.com.ua, 1 itnota.com, 1 -itnow.ng, 1 itnsusa.com, 1 itoady.com, 1 itochan.jp, 1 @@ -73012,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 @@ -73051,7 +72944,6 @@ itssolidest.ga, 1 itsstefan.eu, 1 itstartswithme.ca, 1 itstatic.tech, 1 -itstimetravel.com, 1 itsuitsyou.co.za, 1 itsuka-world.com, 1 itsundef.in, 0 @@ -73272,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 @@ -73360,7 +73253,6 @@ j82365.com, 1 j8jp.com, 0 j9.ag, 0 j9297.co, 1 -j9297.com, 0 j9507.com, 0 j9508.com, 0 j9514.com, 0 @@ -73504,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 @@ -73604,7 +73495,6 @@ jakereynolds.co, 1 jakeross.me, 1 jakerullman.com, 0 jakeslab.tech, 1 -jaketremper.com, 0 jakewales.com, 1 jakincode.army, 1 jako.tk, 1 @@ -75167,6 +75057,7 @@ johannes-sprink.de, 0 johannes-zinke.de, 1 johannes.io, 1 johannes.wtf, 1 +johannesen.tv, 1 johannfritsche.de, 1 johanpeeters.com, 1 johansf.tech, 0 @@ -75370,6 +75261,7 @@ jonin.tk, 1 jonin2.tk, 1 jonincharacter.com, 1 jonipuhakka.fi, 1 +jonizatorywody24.pl, 1 jonkerkamman.tk, 1 jonkermedia.nl, 0 jonkpl.com, 1 @@ -76181,7 +76073,6 @@ justsandro.tk, 1 justsellmycar.com, 1 justshare.tk, 1 justt-watch-now.xyz, 1 -justtalk.site, 1 justupdate.me, 1 justweather.org, 1 justwikipedia.com, 1 @@ -76863,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 @@ -77775,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 @@ -77927,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 @@ -78038,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 @@ -78919,7 +78807,7 @@ 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 @@ -79036,7 +78924,6 @@ knop.info, 0 knorrnet.de, 1 knotenpunkt-nbg.de, 1 knottcountyky.gov, 1 -knovator.com, 1 know.cf, 1 know2protect.gov, 1 knowbook.org, 1 @@ -79209,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 @@ -79446,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 @@ -79977,6 +79864,7 @@ krsaustralia.com.au, 1 krsvrs.nl, 1 krti.com.ua, 1 krtl.eu.org, 1 +krtl.top, 1 krubik.tk, 1 kruchefssensors.azurewebsites.net, 1 kruchheartbeatdev.azurewebsites.net, 1 @@ -80032,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 @@ -80223,6 +80111,7 @@ ktw.lv, 0 ku-7.club, 1 ku-niederwinkling.de, 1 ku.ag, 1 +kua.com, 0 kuaforumden.com, 1 kuairead.com, 0 kuaishou.cf, 1 @@ -80345,6 +80234,7 @@ kumpali.com, 1 kumpula.tk, 1 kumu.live, 1 kumuwiki.de, 1 +kunadomowa.pl, 1 kunaki.com, 1 kunalchakate.tk, 1 kunaldesai.blog, 1 @@ -80718,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 @@ -81363,6 +81252,7 @@ langapi.com, 1 langatang.com, 1 langauto.hu, 1 langbein.org, 1 +langcom.org, 1 langenberg.tk, 1 langenu.tk, 1 langer-bauwerk.de, 1 @@ -81388,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 @@ -82208,6 +82098,7 @@ lea.pet, 0 lead2022.academy, 1 leadbook.ru, 1 leadbox.cz, 1 +leadcricket.com, 1 leadercreative.ga, 1 leaderfreight.tk, 1 leadergamer.com.tr, 1 @@ -82376,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 @@ -82667,6 +82557,7 @@ legowerewolf.net, 1 legrand-ia.gov, 1 legrandvtc.fr, 1 legro.tk, 1 +legrub.net, 1 legtech.lu, 1 legterm.cz, 1 leguano-barfusspark.eu, 1 @@ -82958,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 @@ -83494,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 @@ -83794,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 @@ -83831,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 @@ -84250,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 @@ -84602,7 +84488,6 @@ live-tv-channels.org, 1 live-z-rejstejna.cz, 1 live.ac.cn, 1 live2play.ml, 1 -live2travelmore.us, 1 live4k.media, 1 live8811.com, 1 live8899.cn, 1 @@ -84792,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 @@ -84825,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 @@ -85078,7 +84961,6 @@ 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 @@ -85412,6 +85294,7 @@ londonkan.jp, 1 londonkeyholdingcompany.co.uk, 1 londonmoneyman.com, 1 londonnorthwesternrailway.co.uk, 1 +londonpropertymatch.com, 1 londonschool.mx, 1 londonseedcentre.co.uk, 1 londonsoccer.tk, 1 @@ -85586,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 @@ -85830,7 +85714,6 @@ lousoyolos.fr, 1 loutro.tk, 1 louwlemmer.com, 1 louyu.cc, 1 -lov4affiliate.com, 1 lovcasino.com, 1 love-and-hate.cf, 1 love-books.ga, 1 @@ -85893,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 @@ -86211,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 @@ -86613,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 @@ -86694,6 +86574,7 @@ 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 @@ -86744,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 @@ -86752,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 @@ -87217,6 +87096,7 @@ magicorama.com, 1 magicorange.com, 1 magicpaper.net, 1 magicpill.com.au, 1 +magicpowertissue.com, 1 magicsms.pl, 1 magicspaceninjapirates.de, 1 magicstay.com, 1 @@ -88546,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 @@ -89014,7 +88893,6 @@ massazh.cf, 1 massbank.eu, 1 massconsultores.com, 1 masse.org, 1 -massflix.com, 1 massfone.com, 1 masshost.tk, 1 masshpc.gov, 1 @@ -89195,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 @@ -89949,7 +89825,6 @@ mdjobsite.com, 1 mdlayher.com, 1 mdleom.com, 1 mdma.net, 1 -mdmck10.xyz, 1 mdmed.clinic, 1 mdns.eu, 1 mdosch.de, 1 @@ -90408,6 +90283,7 @@ medec.ec, 1 medecinesalternatives-developpementspirituelcreatif.com, 1 medefield.com, 1 medeinos.lt, 0 +medelement.com, 1 medellinapartamentos.com, 1 medellinencanciones.tk, 1 medfind.link, 1 @@ -90470,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 @@ -90842,6 +90719,7 @@ meierhofer.net, 1 meiersmarkus.de, 1 meifacil.com, 1 meigetsuen1980.com, 1 +meijburg.com, 1 meikampf.de, 1 meikan.moe, 1 meiler.cf, 1 @@ -92028,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 @@ -92379,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 @@ -92487,7 +92365,6 @@ millburyma.gov, 1 millcreekut.gov, 1 millcreekwa.gov, 1 millefleurs.eu, 1 -millenn.photos, 1 millennium-thisiswhoweare.net, 1 millenniumfalcon.org, 1 millenniumhotels.com, 1 @@ -92519,7 +92396,6 @@ millioncombolist.tk, 1 milliongrounds.com, 1 millionlearn.org, 1 millionseha.com, 1 -millistice.com, 1 millistream.com, 1 millix.com, 1 millnet.cloud, 1 @@ -92707,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 @@ -92807,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 @@ -93057,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 @@ -94274,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 @@ -94418,6 +94290,7 @@ moort.be, 1 moosic.co, 1 moosikapp.ml, 1 moosikapp.tk, 1 +moosmann-moehrle.de, 1 moosmaus.tk, 1 moot-info.co.za, 1 moov.tk, 1 @@ -94759,6 +94632,7 @@ motorring.ru, 1 motorslopers.tk, 1 motorsplus.com, 0 motorsport-passion.com, 1 +motorst.dk, 1 motortg.it, 1 motortrend.com, 1 motorways.tk, 1 @@ -95232,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 @@ -95344,6 +95217,7 @@ 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 @@ -95463,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 @@ -96021,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 @@ -96038,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 @@ -96115,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 @@ -97034,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 @@ -97979,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 @@ -98014,6 +97880,7 @@ ncvps.gov, 1 ndaal.eu, 1 ndaccount.com, 1 ndarville.com, 1 +ndbilje.si, 1 ndcpolipak.com, 1 ndd.govt.nz, 1 ndeb-bned.ca, 1 @@ -98079,6 +97946,7 @@ neba.io, 1 nebeauty.it, 1 nebebra.stream, 1 nebelhauch.de, 1 +nebenan.de, 1 nebenbeiblog.ch, 1 nebix.tk, 1 nebohost.tk, 1 @@ -98536,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 @@ -99059,7 +98928,6 @@ news12elite.tk, 1 news17.tk, 1 news24rus.tk, 1 news29.tk, 1 -news47ell.com, 0 news53today.tk, 1 news54.tk, 1 news5cleveland.com, 1 @@ -99504,7 +99372,6 @@ 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, 0 @@ -100349,7 +100216,6 @@ 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 @@ -100890,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 @@ -101626,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 @@ -101882,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 @@ -102194,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 @@ -102655,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 @@ -102675,6 +102538,7 @@ omag.gov, 1 omaha.com, 1 omaha.gov, 1 omahachapterone.org, 1 +omahagutterandsiding.com, 1 omaharoofpros.com, 1 omahcoin.com, 1 omal.info, 1 @@ -103268,7 +103132,7 @@ onpointinsights.us, 0 onpointplugins.com, 1 onpopup.ga, 1 onporn.fun, 1 -onrealt.ru, 0 +onrealt.ru, 1 onrr.gov, 1 onsemediagroup.ml, 1 onsenlaichelesdoigts.be, 1 @@ -103977,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 @@ -104023,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 @@ -104535,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 @@ -105437,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 @@ -105565,6 +105425,7 @@ parachute.gov, 1 parachute.live, 1 parachutes.tk, 1 parachuteteam.co.uk, 1 +paracomer.es, 1 parade-nootdorp.nl, 1 paradex.io, 1 paradies-baar.ch, 1 @@ -105600,7 +105461,6 @@ 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 @@ -105909,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 @@ -106047,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 @@ -107777,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 @@ -107970,6 +107827,7 @@ phoenixpower.tk, 1 phoenixsalon.eu, 1 phoenixurbanspaces.com, 1 phoenixville.online, 1 +phoenixwebsitedesign.com, 1 phographer.com, 1 pholio.com, 1 phone-service-center.de, 1 @@ -108455,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 @@ -108804,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 @@ -109421,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 @@ -109975,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 @@ -110032,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 @@ -110152,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 @@ -110692,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 @@ -110708,7 +110561,6 @@ powerpc.pt, 1 powerpilot.co.za, 1 powerplan.com, 1 powerplantmall.com, 1 -powerplatform.istanbul, 1 powerplay.com, 1 powerplay.xyz, 1 powerplayer.tk, 1 @@ -110778,6 +110630,7 @@ pozitiffchik.tk, 1 pozitiv.gq, 1 pozitone.com, 1 poziworld.com, 1 +poznajrynek.pl, 1 poznavatelno.ml, 1 pozzitiv.ro, 1 pp.es, 1 @@ -110787,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 @@ -111776,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 @@ -112204,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 @@ -112370,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 @@ -113337,10 +113186,10 @@ qetesh.de, 1 qetic.co.jp, 1 qewc.com, 1 qfes.qld.gov.au, 1 +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 @@ -113465,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 @@ -113813,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 @@ -114994,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 @@ -115362,6 +115208,7 @@ reallight.ge, 1 reallinux.tk, 1 reallivingcc.com, 1 reallovetab.ga, 1 +really-simple-ssl.com, 1 reallyangryaboutchipshops.com, 1 reallybadidea.tk, 1 reallycooljobs.ga, 1 @@ -115737,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 @@ -116061,7 +115907,6 @@ regtech.tk, 1 regtify.com, 1 regtify.org, 1 regtransfers.co.uk, 1 -reguanli.com, 1 reguladordevoltagem.com.br, 1 regularizaboti.com.br, 1 regularlabs.com, 1 @@ -116337,6 +116182,7 @@ remonto.tk, 1 remontpc.cf, 1 remontpc.tk, 1 remontportal.tk, 1 +remontstrong.ru, 1 remonttikauppa.com, 1 remontuks.ru, 1 remora.tk, 1 @@ -116590,6 +116436,7 @@ reprorights.gov, 1 repsltd.co.uk, 1 repstalent.com, 1 reptieleninfo.tk, 1 +reptilepoint.com, 1 reptrax.com, 1 republic.gg, 1 republic.gr, 1 @@ -117213,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 @@ -117240,6 +117086,7 @@ riceadvice.info, 1 ricecountymn.gov, 1 ricedust.com, 1 ricelasvegas.com, 1 +ricettesemplicieveloci.altervista.org, 1 rich-good.com, 0 richadams.me, 1 richandsteph.co.uk, 1 @@ -117376,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 @@ -117702,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 @@ -117969,7 +117816,6 @@ rock4life.be, 1 rocka.me, 1 rockabilly-sinners.tk, 1 rockadocious.com, 1 -rockagogo.com, 1 rockandroll.tk, 1 rockbandparty.com, 1 rockbankland.com.au, 1 @@ -118217,6 +118063,7 @@ roll-bakery.com.tw, 1 roll.hockey, 1 roll9.com, 1 rollatorweb.nl, 1 +rollbackdiabetes.com, 1 rolledout.info, 1 rollerderbycollection.ga, 1 rollerderbywines.ga, 1 @@ -118442,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 @@ -118795,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 @@ -118949,6 +118794,7 @@ ru-acyclopedia.cf, 1 ru-adv.tk, 1 ru-auto.tk, 1 ru-e-business.com, 1 +ru-m.org, 1 ru-robot.tk, 1 ru-sale.tk, 1 ru-sprachstudio.ch, 1 @@ -119158,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 @@ -119255,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 @@ -119322,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 @@ -119794,7 +119638,6 @@ 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 @@ -119852,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 @@ -120117,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 @@ -120204,7 +120045,6 @@ 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 @@ -120356,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 @@ -120370,7 +120208,6 @@ 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 @@ -120480,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 @@ -121055,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 @@ -122265,6 +122100,7 @@ secured.vote, 1 secureddocumentshredding.com, 1 securedrop.org, 1 securedsigning.com, 1 +secureenduserconnection.se, 1 securefiletransfer.nl, 1 securegovernment.us, 1 securehugs.com, 1 @@ -122427,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 @@ -122653,7 +122490,6 @@ 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 @@ -122774,13 +122610,13 @@ 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 @@ -123347,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 @@ -123363,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 @@ -123379,18 +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 -sexonr.com, 1 sexonwax.com, 0 sexorzn.xyz, 1 sexosintabues30.com, 1 @@ -123405,8 +123223,6 @@ 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 @@ -123419,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 @@ -123917,6 +123731,7 @@ shelterrealestate.com.au, 1 sheltieplanet.com, 1 sheltongrp.com, 1 sheltonvirtual.com, 1 +shelvacu.com, 1 shemaleflick.com, 1 shemalehub.com, 1 shemalepictures.net, 1 @@ -125274,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 @@ -125754,6 +125568,7 @@ skaiman.ga, 1 skaitliukas.tk, 1 skalcollective.com, 1 skalec.org, 1 +skalis-portage.com, 1 skamper.tk, 1 skankofamerica.com, 1 skarke.se, 1 @@ -126244,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 @@ -126577,7 +126391,6 @@ smartlogstock.com, 0 smartlogtower.com, 1 smartlooks.es, 1 smartmachine.com, 1 -smartmail.io, 1 smartmail24.de, 1 smartme.pl, 1 smartmeal.ru, 1 @@ -126645,7 +126458,7 @@ 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 @@ -127163,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 @@ -128112,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 @@ -128121,6 +127932,7 @@ soyezonline.fr, 1 soyladani.com, 1 soylemeztrading.com, 1 soytusitio.com, 1 +soyunperro.com, 1 soyuznik.ml, 1 soyvigilante.com, 1 sozai-good.com, 1 @@ -129046,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 @@ -129926,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 @@ -130426,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 @@ -130461,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 @@ -130835,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 @@ -130960,7 +130767,6 @@ 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 @@ -131423,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 @@ -131548,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 @@ -131570,7 +131374,7 @@ suncity8668.com, 1 suncity8998.com, 1 suncitycinemas.com, 1 suncloud.ch, 0 -suncoastdisplays.com, 0 +suncoastdisplays.com, 1 suncoastrebuilding.com, 1 suncomegrain.ga, 1 sundanceusa.com, 1 @@ -131763,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 @@ -131932,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 @@ -132099,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 @@ -132240,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 @@ -132312,7 +132115,7 @@ swedishforces.tk, 1 swedishhost.com, 1 swedishhost.se, 1 sweep-me.net, 1 -sweep-staging.com, 0 +sweep-staging.com, 1 sweep.net, 1 sweet-spatula.com, 1 sweet64.fr, 1 @@ -133226,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 @@ -133247,6 +133049,7 @@ talentplatform.ca, 1 talentplatform.com, 1 talentplatform.eu, 1 talentplatform.us, 1 +talentsplit.com, 1 talentstimuleren.nl, 1 talentuar.com, 1 talentwall.io, 1 @@ -134030,10 +133833,6 @@ teamawesome.ga, 1 teamb.nl, 1 teambalinge.tk, 1 teambanzai.tk, 1 -teambeam.at, 0 -teambeam.ch, 0 -teambeam.es, 0 -teambeam.fr, 0 teambeam.ru, 0 teambee.tk, 1 teambim.eu, 1 @@ -134405,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 @@ -135008,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 @@ -135204,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 @@ -135368,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 @@ -136027,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 @@ -136230,6 +136026,7 @@ thekitchngic.com, 1 thekitsunesden.com, 1 thekittivibe.com, 1 thekliniquehotdeal.com, 1 +theknightrider.com, 1 theknittingnetwork.co.uk, 1 theknockout.tk, 1 theknowitguy.com, 1 @@ -136340,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 @@ -136676,7 +136472,6 @@ theserver.ml, 1 theserver201.tk, 1 theserviceyouneed.com, 1 thesession.org, 1 -thesettravelgroup.com, 1 thesetwohands864.com, 1 theshaker.com.au, 1 thesharedbrain.ch, 0 @@ -138065,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 @@ -138514,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 @@ -138785,7 +138578,6 @@ topgshop.ru, 1 tophat.studio, 1 tophatpuffin.com, 0 tophighnorldiet.gq, 1 -tophomeappliancerepair.com, 1 tophr.kz, 1 topicalnet.de, 1 topicdesk.com, 1 @@ -138943,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 @@ -138996,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 @@ -139182,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 @@ -139795,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 @@ -140451,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 @@ -140580,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 @@ -140785,6 +140570,7 @@ truetraveller.com, 1 truetrophies.com, 1 truetype.tech, 1 truewateraustralia.com, 1 +trueweb.es, 1 truewinter.net, 1 truework.com, 1 trueworlds.net, 1 @@ -140851,7 +140637,6 @@ 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 @@ -140947,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 @@ -141401,6 +141185,7 @@ turpinpesage.fr, 1 turquoisetassel.com, 1 turretlabs.io, 1 tursa.com.au, 1 +tursiae.org, 1 turteka.com, 1 turtle.ai, 0 turtleduckstudios.com, 1 @@ -141440,6 +141225,7 @@ tutarot.club, 1 tutdevki.tk, 1 tuteepdf.com, 1 tutiendard.ga, 1 +tutierra.net, 1 tutima.com, 1 tuto-craft.com, 1 tutocursos.com, 1 @@ -141815,6 +141601,7 @@ typingcheck.ga, 1 typist.tech, 1 typo3.com, 1 typosphere.fr, 1 +typr.com, 1 tyr0wl.com, 1 tyrael.eu, 1 tyraga.ga, 1 @@ -142173,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 @@ -143583,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 @@ -143793,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 @@ -143916,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 @@ -144031,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 @@ -144867,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 @@ -145223,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 @@ -145826,12 +145608,12 @@ virtualsanity.com, 1 virtualscoutschool.com, 1 virtualsex.ga, 1 virtualshell.ml, 1 -virtualspeech.com, 1 virtualtabletop.io, 1 virtualvaults.com, 0 virtualx.de, 1 virtubox.net, 1 virtubroker.com.mx, 1 +virtuele-dataroom.nl, 1 virtueturkey.ga, 1 virtuology.com, 1 virtus-group.com, 1 @@ -146108,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 @@ -146348,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 @@ -146471,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 @@ -146620,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 @@ -146723,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 @@ -146954,6 +146733,7 @@ vsevkusno.tk, 1 vsevolod.tk, 1 vsgcommunity.nl, 1 vshipit.com, 1 +vsimosvita.com, 1 vsl-defi.ch, 0 vsl.de, 1 vsmcomunicacao.com.br, 1 @@ -146980,7 +146760,6 @@ vtbs.moe, 1 vtcourts.gov, 1 vtech.com, 1 vtescebu.com, 1 -vtexpayments.com.br, 1 vtipe-vylez.cz, 0 vtivision.com, 1 vtjud.gov, 1 @@ -147081,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 @@ -147158,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 @@ -147268,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 @@ -147299,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 @@ -147672,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 @@ -147875,6 +147648,7 @@ waupacawi.gov, 1 wausharacountywi.gov, 1 wauwatosa.gov, 1 wav-productions.com, 1 +wav.tv, 1 wave-cockpit.de, 1 wave-electronics.com, 0 wave-inc.co.jp, 1 @@ -148413,6 +148187,7 @@ webmasterhall.com, 1 webmax.cloud, 1 webmediaclick.com, 1 webmediaprint.at, 1 +webmediums.com, 1 webmedpharmacy.co.uk, 1 webmeister.org, 1 webmenedzser.hu, 1 @@ -148641,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 @@ -148841,7 +148615,6 @@ wellness-bonbon.de, 0 wellness-gutschein.de, 1 wellness-spa-suedtirol.com, 1 wellnesscheck.net, 1 -wellnesslifestyletravel.com, 1 wellnessmama.com, 1 wellnessmassage-eitorf.de, 1 welloca.com, 1 @@ -149494,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 @@ -149593,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 @@ -149697,7 +149468,6 @@ wikimediafoundation.com, 1 wikimediafoundation.info, 1 wikimediafoundation.net, 1 wikimediafoundation.org, 1 -wikimiasr.com, 1 wikimilk.org, 1 wikimir.tk, 1 wikimirror.org, 1 @@ -149943,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 @@ -150620,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 @@ -151025,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 @@ -151529,7 +151296,6 @@ www.dropbox.com, 1 www.dropcam.com, 0 www.edu.tw, 1 www.eternalgoth.co.uk, 1 -www.etsy.com, 1 www.evernote.com, 0 www.facebook.com, 0 www.fastmail.com, 1 @@ -151680,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 @@ -151819,7 +151586,6 @@ xavio-design.com, 1 xavy.fr, 1 xayah.net, 1 xaydungnamcuong.com, 0 -xaydungphunguyen.com, 1 xaynhachothue.vn, 1 xb008.com, 1 xb053.com, 1 @@ -152521,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 @@ -152596,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 @@ -152741,7 +152505,6 @@ 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 @@ -152942,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 @@ -153415,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 @@ -153429,7 +153190,6 @@ 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 @@ -153860,7 +153620,6 @@ yezi.ga, 1 yezishurb.site, 1 yf128.cc, 1 yfeer.com, 0 -yfh.me, 1 yggdar.ga, 1 yggdrasildice.com, 1 ygm.org.uk, 1 @@ -153910,7 +153669,6 @@ yiguan.me, 1 yigujin.cn, 1 yiheng.moe, 0 yihome.com.tw, 1 -yihome.tw, 1 yihouse.tw, 1 yijia.support, 1 yijingying.com, 0 @@ -154039,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 @@ -154461,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 @@ -154807,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 @@ -154875,7 +154630,6 @@ zahari.tk, 1 zahirdanzavila.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 @@ -155298,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 @@ -155721,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 diff --git a/services/settings/dumps/main/devtools-compatibility-browsers.json b/services/settings/dumps/main/devtools-compatibility-browsers.json index 1216cf02e0d7b..3c52aa686741c 100644 --- a/services/settings/dumps/main/devtools-compatibility-browsers.json +++ b/services/settings/dumps/main/devtools-compatibility-browsers.json @@ -1,5 +1,32 @@ { "data": [ + { + "name": "Edge", + "schema": 1705104306985, + "status": "planned", + "version": "123", + "browserid": "edge", + "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, @@ -189,15 +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": "Node.js", "schema": 1700957104515, @@ -216,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, @@ -316,5 +325,5 @@ "last_modified": 1665656484764 } ], - "timestamp": 1704181096583 + "timestamp": 1705307946112 } From 0178cdad3824f4809de4b063276c6fe1baaeac5d Mon Sep 17 00:00:00 2001 From: Mozilla Releng Treescript Date: Mon, 15 Jan 2024 21:18:19 +0000 Subject: [PATCH 46/46] No bug - Tagging 980ec32f825b2f54c05d16057a6e60d5b62d2ee2 with FIREFOX_115_7_0esr_BUILD1 a=release CLOSED TREE DONTBUILD --- .hgtags | 1 + 1 file changed, 1 insertion(+) diff --git a/.hgtags b/.hgtags index 4349e7d6a365a..9e84336304de2 100644 --- a/.hgtags +++ b/.hgtags @@ -4393,3 +4393,4 @@ bf2f656d025836975b7bf6aeb16901a037a01923 FIREFOX_115_2_0esr_RELEASE 8a02a7c43f1eddfd18926f0266d188b4f359c0aa FIREFOX_115_5_0esr_RELEASE aa9f02961b2bbb92e17fea5d6b8fd14c097baf72 FIREFOX_115_6_0esr_BUILD1 aa9f02961b2bbb92e17fea5d6b8fd14c097baf72 FIREFOX_115_6_0esr_RELEASE +980ec32f825b2f54c05d16057a6e60d5b62d2ee2 FIREFOX_115_7_0esr_BUILD1