diff --git a/icecat/CLOBBER b/icecat/CLOBBER
index 35d272e691..248a8a5c14 100644
--- a/icecat/CLOBBER
+++ b/icecat/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 2025-05-26
\ No newline at end of file
+Merge day clobber 2025-06-23
\ No newline at end of file
diff --git a/icecat/browser/app/permissions b/icecat/browser/app/permissions
index 1c72a96de8..fe018a08c7 100644
--- a/icecat/browser/app/permissions
+++ b/icecat/browser/app/permissions
@@ -8,12 +8,12 @@
# See PermissionManager.cpp for more...
# UITour
-# Bug 1557153: www.mozilla.org gets a special workaround in UITourChild.sys.mjs
-# Bug 1837407: support.mozilla.org gets a special workaround for similar reasons.
origin uitour 1 https://www.mozilla.org
origin uitour 1 https://support.mozilla.org
origin uitour 1 about:home
origin uitour 1 about:newtab
+# Bug 1942328: firefox.com needs the same privileges as mozilla.org
+origin uitour 1 https://www.firefox.com
# XPInstall
origin install 1 https://addons.mozilla.org
diff --git a/icecat/browser/components/search/test/unit/test_search_telemetry_config_validation.js b/icecat/browser/components/search/test/unit/test_search_telemetry_config_validation.js
index d14f7a3918..0af9dfc10d 100644
--- a/icecat/browser/components/search/test/unit/test_search_telemetry_config_validation.js
+++ b/icecat/browser/components/search/test/unit/test_search_telemetry_config_validation.js
@@ -116,10 +116,9 @@ add_task(async function test_search_config_codes_in_search_telemetry() {
`Should have the base partner code ${engine.base.partnerCode} listed in the search telemetry 'taggedCodes'`
);
} else {
- Assert.equal(
- telemetryEntry.telemetryId,
- "baidu",
- "Should only not have a base partner code for Baidu"
+ Assert.ok(
+ ["google", "baidu"].includes(telemetryEntry.telemetryId),
+ "Should only not have a base partner code for Google and Baidu"
);
}
diff --git a/icecat/browser/config/version.txt b/icecat/browser/config/version.txt
index 4b14f3791f..052d7980eb 100644
--- a/icecat/browser/config/version.txt
+++ b/icecat/browser/config/version.txt
@@ -1 +1 @@
-128.12.0
+128.13.0
diff --git a/icecat/browser/config/version_display.txt b/icecat/browser/config/version_display.txt
index cd2bdd50b4..d22345fe2b 100644
--- a/icecat/browser/config/version_display.txt
+++ b/icecat/browser/config/version_display.txt
@@ -1 +1 @@
-128.12.0esr
+128.13.0esr
diff --git a/icecat/browser/confvars.sh b/icecat/browser/confvars.sh
index 8e730c2fea..1c1cd8f568 100755
--- a/icecat/browser/confvars.sh
+++ b/icecat/browser/confvars.sh
@@ -45,7 +45,7 @@ MOZ_DEVTOOLS=all
MOZ_APP_BASENAME=IceCat
MOZ_APP_UA_NAME=Firefox
MOZ_APP_VENDOR=GNU
-MOZ_APP_VERSION=128.12.0
+MOZ_APP_VERSION=128.13.0
MOZ_APP_PROFILE=mozilla/icecat
MOZ_PAY=0
MOZ_SERVICES_HEALTHREPORT=0
diff --git a/icecat/config/milestone.txt b/icecat/config/milestone.txt
index 9d02d717e6..d434c2c9f0 100644
--- a/icecat/config/milestone.txt
+++ b/icecat/config/milestone.txt
@@ -10,4 +10,4 @@
# hardcoded milestones in the tree from these two files.
#--------------------------------------------------------
-128.12.0
+128.13.0
diff --git a/icecat/debian/changelog b/icecat/debian/changelog
index 32bc894a71..5318db2a51 100644
--- a/icecat/debian/changelog
+++ b/icecat/debian/changelog
@@ -1,3 +1,9 @@
+icecat (128.13.0-1gnu1+build1-0.12.0) ecne; urgency=medium
+
+ * New upstream stable release (icecat-128.13.0-1gnu1)
+
+ -- Capitulo Mexicano de Software Libre Thu, 07 Aug 2025 14:18:35 -0600
+
icecat (128.12.0-1gnu1+build1-0.12.0) ecne; urgency=medium
* Initial packaging for Trisquel GNU/Linux and new upstream IceCat
diff --git a/icecat/debian/icecat.postinst.in b/icecat/debian/icecat.postinst.in
index 2a75c76e0b..7960cd2225 100644
--- a/icecat/debian/icecat.postinst.in
+++ b/icecat/debian/icecat.postinst.in
@@ -1,14 +1,13 @@
-if [ "" = "configure" ] || [ "" = "abort-upgrade" ] ; then
+if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] ; then
[ -f /usr/bin/firefox-esr ] || ln -s /usr/bin/icecat /usr/bin/firefox-esr
-for HOMEDIR in /home/cups-pk-helper
-/home/ark
+for HOMEDIR in $(grep :/home/ /etc/passwd |grep -v usbmux |grep -v syslog|cut -d : -f 6)
do
- [ -d /.mozilla/icecat ] && continue || true
- [ -d /.mozilla/firefox-esr ] || continue
- echo Linking /.mozilla/firefox-esr into /.mozilla/icecat
- ln -s /.mozilla/firefox-esr /.mozilla/icecat
+ [ -d $HOMEDIR/.mozilla/icecat ] && continue || true
+ [ -d $HOMEDIR/.mozilla/firefox-esr ] || continue
+ echo Linking $HOMEDIR/.mozilla/firefox-esr into $HOMEDIR/.mozilla/icecat
+ ln -s $HOMEDIR/.mozilla/firefox-esr $HOMEDIR/.mozilla/icecat
done
fi
exit 0
diff --git a/icecat/devtools/client/netmonitor/test/browser_net_curl-utils.js b/icecat/devtools/client/netmonitor/test/browser_net_curl-utils.js
index ef98d85b15..2cb188f478 100644
--- a/icecat/devtools/client/netmonitor/test/browser_net_curl-utils.js
+++ b/icecat/devtools/client/netmonitor/test/browser_net_curl-utils.js
@@ -344,7 +344,7 @@ function testEscapeStringWin() {
const newLines = "line1\r\nline2\r\rline3\n\nline4";
is(
CurlUtils.escapeStringWin(newLines),
- '^"line1^\n\nline2\r\rline3^\n\n^\n\nline4^"',
+ '^"line1^\n\nline2^\n\n^\n\nline3^\n\n^\n\nline4^"',
"Newlines should be escaped."
);
@@ -365,7 +365,7 @@ function testEscapeStringWin() {
const evilCommand = `query=evil\r\rcmd" /c timeout /t 3 & calc.exe\r\r`;
is(
CurlUtils.escapeStringWin(evilCommand),
- '^"query=evil\r\rcmd\\" /c timeout /t 3 & calc.exe\r\r^"',
+ '^"query=evil^\n\n^\n\ncmd\\" /c timeout /t 3 & calc.exe^\n\n^\n\n^"',
"The evil command is escaped properly"
);
}
diff --git a/icecat/devtools/client/shared/curl.js b/icecat/devtools/client/shared/curl.js
index b5194571a9..948cc0824b 100644
--- a/icecat/devtools/client/shared/curl.js
+++ b/icecat/devtools/client/shared/curl.js
@@ -484,7 +484,7 @@ const CurlUtils = {
// Lastly we replace new lines with ^ and TWO new lines because the first
// new line is there to enact the escape command the second is the character
// to escape (in this case new line).
- .replace(/\r?\n/g, "^\n\n") +
+ .replace(/\r?\n|\r/g, "^\n\n") +
encapsChars
);
},
diff --git a/icecat/dom/base/crashtests/344882-1.html b/icecat/dom/base/crashtests/344882-1.html
deleted file mode 100644
index 6a8dd69d5b..0000000000
--- a/icecat/dom/base/crashtests/344882-1.html
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
-
@@ -37,11 +34,6 @@ function doPrincipalTest(id) {
"Wrong principal for document in node with id='" + id + "'");
}
-function doContentTest(id) {
- is($(id).contentDocument.documentElement.textContent, "PASS",
- "Script executed in wrong context in node with id='" + id + "'");
-}
-
function checkPrincipal() {
ok(SpecialPowers.call_Instanceof(SpecialPowers.wrap(document).nodePrincipal, SpecialPowers.Ci.nsIPrincipal),
"Should be a principal");
@@ -54,10 +46,6 @@ addLoadEvent(function() {
doPrincipalTest(i);
}
- for (i of [ "five", "six" ]) {
- doContentTest(i);
- }
-
SimpleTest.finish();
});
diff --git a/icecat/dom/security/nsCSPContext.cpp b/icecat/dom/security/nsCSPContext.cpp
index b9675e39fc..738e2d86c0 100644
--- a/icecat/dom/security/nsCSPContext.cpp
+++ b/icecat/dom/security/nsCSPContext.cpp
@@ -921,7 +921,7 @@ void nsCSPContext::logToConsole(const char* aName,
/**
* Strip URI for reporting according to:
- * https://w3c.github.io/webappsec-csp/#security-violation-reports
+ * https://w3c.github.io/webappsec-csp/#strip-url-for-use-in-reports
*
* @param aSelfURI
* The URI of the CSP policy. Used for cross-origin checks.
@@ -936,34 +936,41 @@ void nsCSPContext::logToConsole(const char* aName,
void StripURIForReporting(nsIURI* aSelfURI, nsIURI* aURI,
const nsAString& aEffectiveDirective,
nsACString& outStrippedURI) {
- // If the origin of aURI is a globally unique identifier (for example,
- // aURI has a scheme of data, blob, or filesystem), then
- // return the ASCII serialization of uri’s scheme.
bool isHttpOrWs = (aURI->SchemeIs("http") || aURI->SchemeIs("https") ||
aURI->SchemeIs("ws") || aURI->SchemeIs("wss"));
+ // Step 1. If url’s scheme is not an HTTP(S) scheme, then return url’s scheme.
+ // https://github.com/w3c/webappsec-csp/issues/735: We also allow WS(S) schemes.
if (!isHttpOrWs) {
- // not strictly spec compliant, but what we really care about is
- // http/https. If it's not http/https, then treat aURI
- // as if it's a globally unique identifier and just return the scheme.
aURI->GetScheme(outStrippedURI);
return;
}
+ // Step 2. Set url’s fragment to the empty string.
+ // Step 3. Set url’s username to the empty string.
+ // Step 3. Set url’s password to the empty string.
+ nsCOMPtr
stripped;
+ if (NS_FAILED(NS_MutateURI(aURI).SetRef(""_ns).SetUserPass(""_ns).Finalize(stripped))) {
+ // Mutating the URI failed for some reason, just return the scheme.
+ aURI->GetScheme(outStrippedURI);
+ return;
+ }
+
+ // Non-standard: https://github.com/w3c/webappsec-csp/issues/735
// For cross-origin URIs in frame-src also strip the path.
// This prevents detailed tracking of pages loaded into an iframe
// by the embedding page using a report-only policy.
if (aEffectiveDirective.EqualsLiteral("frame-src") ||
aEffectiveDirective.EqualsLiteral("object-src")) {
nsIScriptSecurityManager* ssm = nsContentUtils::GetSecurityManager();
- if (NS_FAILED(ssm->CheckSameOriginURI(aSelfURI, aURI, false, false))) {
- aURI->GetPrePath(outStrippedURI);
+ if (NS_FAILED(ssm->CheckSameOriginURI(aSelfURI, stripped, false, false))) {
+ stripped->GetPrePath(outStrippedURI);
return;
}
}
- // Return aURI, with any fragment component removed.
- aURI->GetSpecIgnoringRef(outStrippedURI);
+ // Step 4. Return the result of executing the URL serializer on url.
+ stripped->GetSpec(outStrippedURI);
}
nsresult nsCSPContext::GatherSecurityPolicyViolationEventData(
diff --git a/icecat/dom/xml/nsXMLPrettyPrinter.cpp b/icecat/dom/xml/nsXMLPrettyPrinter.cpp
index 4a386e92fb..198e0535f7 100644
--- a/icecat/dom/xml/nsXMLPrettyPrinter.cpp
+++ b/icecat/dom/xml/nsXMLPrettyPrinter.cpp
@@ -65,7 +65,8 @@ nsresult nsXMLPrettyPrinter::PrettyPrint(Document* aDocument,
nsCOMPtr xslDocument;
rv = nsSyncLoadService::LoadDocument(
- xslUri, nsIContentPolicy::TYPE_XSLT, nsContentUtils::GetSystemPrincipal(),
+ xslUri, nsIContentPolicy::TYPE_XSLT, nullptr,
+ nsContentUtils::GetSystemPrincipal(),
nsILoadInfo::SEC_ALLOW_CROSS_ORIGIN_SEC_CONTEXT_IS_NULL, nullptr,
aDocument->CookieJarSettings(), true, ReferrerPolicy::_empty,
getter_AddRefs(xslDocument));
diff --git a/icecat/dom/xslt/xml/txXMLParser.cpp b/icecat/dom/xslt/xml/txXMLParser.cpp
index 1d576cdbac..9cc1b3b465 100644
--- a/icecat/dom/xslt/xml/txXMLParser.cpp
+++ b/icecat/dom/xslt/xml/txXMLParser.cpp
@@ -36,10 +36,9 @@ Result txParseDocumentFromURI(const nsAString& aHref,
SyncOperationBehavior::eSuspendInput);
rv = nsSyncLoadService::LoadDocument(
documentURI, nsIContentPolicy::TYPE_INTERNAL_XMLHTTPREQUEST_SYNC,
- loaderDocument->NodePrincipal(),
- nsILoadInfo::SEC_REQUIRE_CORS_INHERITS_SEC_CONTEXT, loadGroup,
- loaderDocument->CookieJarSettings(), true,
- loaderDocument->GetReferrerPolicy(), getter_AddRefs(theDocument));
+ loaderDocument, nullptr,
+ nsILoadInfo::SEC_REQUIRE_CORS_INHERITS_SEC_CONTEXT, loadGroup, nullptr,
+ true, loaderDocument->GetReferrerPolicy(), getter_AddRefs(theDocument));
if (NS_FAILED(rv)) {
aErrMsg.AppendLiteral("Document load of ");
diff --git a/icecat/dom/xslt/xslt/txMozillaStylesheetCompiler.cpp b/icecat/dom/xslt/xslt/txMozillaStylesheetCompiler.cpp
index 205d54b5a5..61c832ea85 100644
--- a/icecat/dom/xslt/xslt/txMozillaStylesheetCompiler.cpp
+++ b/icecat/dom/xslt/xslt/txMozillaStylesheetCompiler.cpp
@@ -532,29 +532,24 @@ nsresult txSyncCompileObserver::loadURI(const nsAString& aUri,
nsresult rv = NS_NewURI(getter_AddRefs(uri), aUri);
NS_ENSURE_SUCCESS(rv, rv);
- nsCOMPtr referrerUri;
- rv = NS_NewURI(getter_AddRefs(referrerUri), aReferrerUri);
- NS_ENSURE_SUCCESS(rv, rv);
-
- nsCOMPtr referrerPrincipal =
- BasePrincipal::CreateContentPrincipal(referrerUri, OriginAttributes());
- NS_ENSURE_TRUE(referrerPrincipal, NS_ERROR_FAILURE);
+ nsCOMPtr window =
+ do_QueryInterface(mProcessor->GetParentObject());
+ NS_ENSURE_TRUE(window, NS_ERROR_FAILURE);
+ nsCOMPtr loaderDoc = window->GetExtantDoc();
+ NS_ENSURE_TRUE(loaderDoc, NS_ERROR_FAILURE);
// This is probably called by js, a loadGroup for the channel doesn't
// make sense.
- nsCOMPtr source;
- if (mProcessor) {
- source = mProcessor->GetSourceContentModel();
- }
+ nsCOMPtr source = mProcessor->GetSourceContentModel();
dom::nsAutoSyncOperation sync(source ? source->OwnerDoc() : nullptr,
dom::SyncOperationBehavior::eSuspendInput);
nsCOMPtr document;
rv = nsSyncLoadService::LoadDocument(
- uri, nsIContentPolicy::TYPE_XSLT, referrerPrincipal,
- nsILoadInfo::SEC_REQUIRE_CORS_INHERITS_SEC_CONTEXT, nullptr,
- source ? source->OwnerDoc()->CookieJarSettings() : nullptr, false,
- aReferrerPolicy, getter_AddRefs(document));
+ uri, nsIContentPolicy::TYPE_XSLT, loaderDoc,
+ /* aLoaderPrincipal */ nullptr,
+ nsILoadInfo::SEC_REQUIRE_CORS_INHERITS_SEC_CONTEXT, nullptr, nullptr,
+ false, aReferrerPolicy, getter_AddRefs(document));
NS_ENSURE_SUCCESS(rv, rv);
rv = handleNode(document, aCompiler);
diff --git a/icecat/gfx/thebes/gfxFontEntry.cpp b/icecat/gfx/thebes/gfxFontEntry.cpp
index cebec682bf..8b05ac0d5e 100644
--- a/icecat/gfx/thebes/gfxFontEntry.cpp
+++ b/icecat/gfx/thebes/gfxFontEntry.cpp
@@ -412,14 +412,15 @@ bool gfxFontEntry::TryGetColorGlyphs() {
class gfxFontEntry::FontTableBlobData {
public:
explicit FontTableBlobData(nsTArray&& aBuffer)
- : mTableData(std::move(aBuffer)), mHashtable(nullptr), mHashKey(0) {
+ : mTableData(std::move(aBuffer)), mFontEntry(nullptr), mHashKey(0) {
MOZ_COUNT_CTOR(FontTableBlobData);
}
~FontTableBlobData() {
MOZ_COUNT_DTOR(FontTableBlobData);
- if (mHashtable && mHashKey) {
- mHashtable->RemoveEntry(mHashKey);
+ if (mFontEntry && mHashKey) {
+ AutoWriteLock lock(mFontEntry->mLock);
+ mFontEntry->GetFontTableCache()->RemoveEntry(mHashKey);
}
}
@@ -431,16 +432,15 @@ class gfxFontEntry::FontTableBlobData {
// Tell this FontTableBlobData to remove the HashEntry when this is
// destroyed.
- void ManageHashEntry(nsTHashtable* aHashtable,
- uint32_t aHashKey) {
- mHashtable = aHashtable;
+ void ManageHashEntry(gfxFontEntry* aFontEntry, uint32_t aHashKey) {
+ mFontEntry = aFontEntry;
mHashKey = aHashKey;
}
// Disconnect from the HashEntry (because the blob has already been
// removed from the hashtable).
void ForgetHashEntry() {
- mHashtable = nullptr;
+ mFontEntry = nullptr;
mHashKey = 0;
}
@@ -455,9 +455,10 @@ class gfxFontEntry::FontTableBlobData {
// The font table data block
nsTArray mTableData;
- // The blob destroy function needs to know the owning hashtable
- // and the hashtable key, so that it can remove the entry.
- nsTHashtable* mHashtable;
+ // The blob destroy function needs to know the owning font entry
+ // so that it can take the font-entry's lock while modifying the
+ // hashtable; and the hashtable key, so that it can remove the entry.
+ gfxFontEntry* mFontEntry;
uint32_t mHashKey;
// not implemented
@@ -465,7 +466,7 @@ class gfxFontEntry::FontTableBlobData {
};
hb_blob_t* gfxFontEntry::FontTableHashEntry::ShareTableAndGetBlob(
- nsTArray&& aTable, nsTHashtable* aHashtable) {
+ nsTArray&& aTable, gfxFontEntry* aFontEntry) {
Clear();
// adopts elements of aTable
mSharedBlobData = new FontTableBlobData(std::move(aTable));
@@ -483,7 +484,7 @@ hb_blob_t* gfxFontEntry::FontTableHashEntry::ShareTableAndGetBlob(
// Tell the FontTableBlobData to remove this hash entry when destroyed.
// The hashtable does not keep a strong reference.
- mSharedBlobData->ManageHashEntry(aHashtable, GetKey());
+ mSharedBlobData->ManageHashEntry(aFontEntry, GetKey());
return mBlob;
}
@@ -565,7 +566,7 @@ hb_blob_t* gfxFontEntry::ShareFontTableAndGetBlob(uint32_t aTag,
return nullptr;
}
- return entry->ShareTableAndGetBlob(std::move(*aBuffer), cache);
+ return entry->ShareTableAndGetBlob(std::move(*aBuffer), this);
}
already_AddRefed gfxFontEntry::GetCMAPFromFontInfo(
diff --git a/icecat/gfx/thebes/gfxFontEntry.h b/icecat/gfx/thebes/gfxFontEntry.h
index 305bb23ec7..d764ab806b 100644
--- a/icecat/gfx/thebes/gfxFontEntry.h
+++ b/icecat/gfx/thebes/gfxFontEntry.h
@@ -872,11 +872,10 @@ class gfxFontEntry {
// Transfer (not copy) elements of aTable to a new hb_blob_t and
// return ownership to the caller. A weak reference to the blob is
- // recorded in the hashtable entry so that others may use the same
- // table.
- hb_blob_t* ShareTableAndGetBlob(
- nsTArray&& aTable,
- nsTHashtable* aHashtable);
+ // recorded in the font entry's table cache so that others may use
+ // the same table.
+ hb_blob_t* ShareTableAndGetBlob(nsTArray&& aTable,
+ gfxFontEntry* aFontEntry);
// Return a strong reference to the blob.
// Callers must hb_blob_destroy the returned blob.
@@ -1076,7 +1075,7 @@ class gfxFontFamily {
// This is a no-op in cases where the family is explicitly populated by other
// means, rather than being asked to find its faces via system API.
virtual void FindStyleVariationsLocked(FontInfoData* aFontInfoData = nullptr)
- MOZ_REQUIRES(mLock){};
+ MOZ_REQUIRES(mLock) {};
void FindStyleVariations(FontInfoData* aFontInfoData = nullptr) {
if (mHasStyles) {
return;
diff --git a/icecat/gfx/thebes/gfxGDIFont.cpp b/icecat/gfx/thebes/gfxGDIFont.cpp
index 2053b33727..6419a96b4c 100644
--- a/icecat/gfx/thebes/gfxGDIFont.cpp
+++ b/icecat/gfx/thebes/gfxGDIFont.cpp
@@ -125,7 +125,7 @@ void gfxGDIFont::Initialize() {
LOGFONTW logFont;
- if (mAdjustedSize == 0.0) {
+ if (mAdjustedSize <= 0.0) {
mAdjustedSize = GetAdjustedSize();
if (FontSizeAdjust::Tag(mStyle.sizeAdjustBasis) !=
FontSizeAdjust::Tag::None) {
diff --git a/icecat/js/src/jit-test/tests/asm.js/testControlFlow.js b/icecat/js/src/jit-test/tests/asm.js/testControlFlow.js
index 40711cd6ce..bef7f12e84 100644
--- a/icecat/js/src/jit-test/tests/asm.js/testControlFlow.js
+++ b/icecat/js/src/jit-test/tests/asm.js/testControlFlow.js
@@ -148,11 +148,11 @@ var exp = asmLink(asmCompile(USE_ASM + "var x=0; function a() { return x|0 } fun
assertEq(exp.c(10), undefined);
assertEq(exp.a(), 10);
-var f = asmLink(asmCompile(USE_ASM + "function f(i) { i=i|0; switch(i|0) { case 1: i=-1; break; case 133742: i=2; break; default: i=42; break } return i|0 } return f"));
+var f = asmLink(asmCompile(USE_ASM + "function f(i) { i=i|0; switch(i|0) { case 1: i=-1; break; case 65520: i=2; break; default: i=42; break } return i|0 } return f"));
assertEq(f(1), -1);
assertEq(f(2), 42);
-assertEq(f(133742), 2);
-assertEq(f(133743), 42);
+assertEq(f(65520), 2);
+assertEq(f(65521), 42);
var f = asmLink(asmCompile(USE_ASM + "function f(i) { i=i|0; switch(i|0) { case 1: i=42; break; default: i=13 } return i|0 } return f"));
assertEq(f(-1), 13);
diff --git a/icecat/js/src/jit/CodeGenerator.cpp b/icecat/js/src/jit/CodeGenerator.cpp
index 80c89611cf..58c0c58440 100644
--- a/icecat/js/src/jit/CodeGenerator.cpp
+++ b/icecat/js/src/jit/CodeGenerator.cpp
@@ -10108,6 +10108,37 @@ void CodeGenerator::visitWasmStoreSlot(LWasmStoreSlot* ins) {
emitWasmValueStore(ins, type, narrowingOp, src, addr);
}
+void CodeGenerator::visitWasmStoreStackResult(LWasmStoreStackResult* ins) {
+ const LAllocation* value = ins->value();
+ Address addr(ToRegister(ins->stackResultsArea()), ins->offset());
+
+ switch (ins->type()) {
+ case MIRType::Int32:
+ masm.storePtr(ToRegister(value), addr);
+ break;
+ case MIRType::Float32:
+ masm.storeFloat32(ToFloatRegister(value), addr);
+ break;
+ case MIRType::Double:
+ masm.storeDouble(ToFloatRegister(value), addr);
+ break;
+#ifdef ENABLE_WASM_SIMD
+ case MIRType::Simd128:
+ masm.storeUnalignedSimd128(ToFloatRegister(value), addr);
+ break;
+#endif
+ case MIRType::WasmAnyRef:
+ masm.storePtr(ToRegister(value), addr);
+ break;
+ default:
+ MOZ_CRASH("unexpected type in ::visitWasmStoreStackResult");
+ }
+}
+
+void CodeGenerator::visitWasmStoreStackResultI64(LWasmStoreStackResultI64* ins) {
+ masm.store64(ToRegister64(ins->value()), Address(ToRegister(ins->stackResultsArea()), ins->offset()));
+}
+
void CodeGenerator::visitWasmStoreElement(LWasmStoreElement* ins) {
MIRType type = ins->type();
MNarrowingOp narrowingOp = ins->narrowingOp();
diff --git a/icecat/js/src/jit/LIROps.yaml b/icecat/js/src/jit/LIROps.yaml
index dccb455302..f667f38638 100644
--- a/icecat/js/src/jit/LIROps.yaml
+++ b/icecat/js/src/jit/LIROps.yaml
@@ -3350,6 +3350,21 @@
offset: size_t
maybeTrap: MaybeTrapSiteInfo
+- name: WasmStoreStackResult
+ operands:
+ value: WordSized
+ stackResultsArea: WordSized
+ arguments:
+ offset: size_t
+ type: MIRType
+
+- name: WasmStoreStackResultI64
+ operands:
+ value: Int64
+ stackResultsArea: WordSized
+ arguments:
+ offset: size_t
+
- name: WasmStoreElement
operands:
base: WordSized
diff --git a/icecat/js/src/jit/Lowering.cpp b/icecat/js/src/jit/Lowering.cpp
index 67dd168898..52018568f1 100644
--- a/icecat/js/src/jit/Lowering.cpp
+++ b/icecat/js/src/jit/Lowering.cpp
@@ -6123,13 +6123,12 @@ void LIRGenerator::visitWasmStoreStackResult(MWasmStoreStackResult* ins) {
LInstruction* lir;
if (value->type() == MIRType::Int64) {
lir = new (alloc())
- LWasmStoreSlotI64(useInt64Register(value), useRegister(stackResultArea),
- offs, mozilla::Nothing());
+ LWasmStoreStackResultI64(useInt64Register(value), useRegister(stackResultArea),
+ offs);
} else {
- MOZ_ASSERT(value->type() != MIRType::WasmAnyRef);
lir = new (alloc())
- LWasmStoreSlot(useRegister(value), useRegister(stackResultArea), offs,
- value->type(), MNarrowingOp::None, mozilla::Nothing());
+ LWasmStoreStackResult(useRegister(value), useRegister(stackResultArea), offs,
+ value->type());
}
add(lir, ins);
}
diff --git a/icecat/js/src/vm/AsyncIteration.cpp b/icecat/js/src/vm/AsyncIteration.cpp
index 90af49b59d..19c3a4e013 100644
--- a/icecat/js/src/vm/AsyncIteration.cpp
+++ b/icecat/js/src/vm/AsyncIteration.cpp
@@ -312,9 +312,6 @@ AsyncGeneratorRequest* AsyncGeneratorRequest::create(
// Stesp 10-13.
[[nodiscard]] static bool AsyncGeneratorYield(
JSContext* cx, Handle generator, HandleValue value) {
- // Step 13.a.
- generator->setSuspendedYield();
-
// Step 10. Perform
// ! AsyncGeneratorCompleteStep(generator, completion, false,
// previousRealm).
@@ -322,6 +319,9 @@ AsyncGeneratorRequest* AsyncGeneratorRequest::create(
return false;
}
+ // Step 13.a.
+ generator->setSuspendedYield();
+
// Steps 11-13.
return AsyncGeneratorDrainQueue(cx, generator);
}
diff --git a/icecat/js/src/wasm/WasmConstants.h b/icecat/js/src/wasm/WasmConstants.h
index 726ee1f23c..d00df167c3 100644
--- a/icecat/js/src/wasm/WasmConstants.h
+++ b/icecat/js/src/wasm/WasmConstants.h
@@ -1168,7 +1168,7 @@ static_assert(uint64_t(MaxArrayPayloadBytes) <
// These limits pertain to our WebAssembly implementation only.
static const unsigned MaxTryTableCatches = 10000;
-static const unsigned MaxBrTableElems = 1000000;
+static const unsigned MaxBrTableElems = 65520;
static const unsigned MaxCodeSectionBytes = MaxModuleBytes;
static const unsigned MaxBranchHintValue = 2;
diff --git a/icecat/js/src/wasm/WasmIonCompile.cpp b/icecat/js/src/wasm/WasmIonCompile.cpp
index c17d083b5f..048392e2a9 100644
--- a/icecat/js/src/wasm/WasmIonCompile.cpp
+++ b/icecat/js/src/wasm/WasmIonCompile.cpp
@@ -2554,17 +2554,9 @@ class FunctionCompiler {
const ABIResult& result = iter.cur();
if (result.onStack()) {
MOZ_ASSERT(iter.remaining() > 1);
- if (result.type().isRefRepr()) {
- auto* store = MWasmStoreRef::New(
- alloc(), instancePointer_, stackResultPointer_,
- result.stackOffset(), values[i], AliasSet::WasmStackResult,
- WasmPreBarrierKind::None);
- curBlock_->add(store);
- } else {
- auto* store = MWasmStoreStackResult::New(
- alloc(), stackResultPointer_, result.stackOffset(), values[i]);
- curBlock_->add(store);
- }
+ auto* store = MWasmStoreStackResult::New(
+ alloc(), stackResultPointer_, result.stackOffset(), values[i]);
+ curBlock_->add(store);
} else {
MOZ_ASSERT(iter.remaining() == 1);
MOZ_ASSERT(i + 1 == values.length());
diff --git a/icecat/modules/libpref/init/StaticPrefList.yaml b/icecat/modules/libpref/init/StaticPrefList.yaml
index de1b5035a6..68e15b1e44 100644
--- a/icecat/modules/libpref/init/StaticPrefList.yaml
+++ b/icecat/modules/libpref/init/StaticPrefList.yaml
@@ -13964,6 +13964,14 @@
value: false
mirror: always
+# Whether we directly use the system print dialog to collect the user's print
+# settings rather than using the tab-modal print preview dialog.
+# Note: `print.always_print_silent` overrides this.
+- name: print.prefer_system_dialog
+ type: RelaxedAtomicBool
+ value: false
+ mirror: always
+
# Whether we attempt to generate links in Save As PDF output.
- name: print.save_as_pdf.links.enabled
type: RelaxedAtomicBool
diff --git a/icecat/modules/libpref/init/all.js b/icecat/modules/libpref/init/all.js
index c40a73eea1..75c3a5c33c 100644
--- a/icecat/modules/libpref/init/all.js
+++ b/icecat/modules/libpref/init/all.js
@@ -746,11 +746,6 @@ pref("browser.fixup.fallback-to-https", true);
// used in this case. See nsPrintSettingsService::InitPrintSettingsFromPrefs
// for the restrictions on which prefs can act as defaults.
-// Whether we directly use the system print dialog to collect the user's print
-// settings rather than using the tab-modal print preview dialog.
-// Note: `print.always_print_silent` overrides this.
-pref("print.prefer_system_dialog", false);
-
// Print/Preview Shrink-To-Fit won't shrink below 20% for text-ish documents.
pref("print.shrink-to-fit.scale-limit-percent", 20);
diff --git a/icecat/netwerk/dns/effective_tld_names.dat b/icecat/netwerk/dns/effective_tld_names.dat
index 59da23aa3f..91bf51b044 100644
--- a/icecat/netwerk/dns/effective_tld_names.dat
+++ b/icecat/netwerk/dns/effective_tld_names.dat
@@ -5,8 +5,8 @@
// Please pull this list from, and only from https://publicsuffix.org/list/public_suffix_list.dat,
// rather than any other VCS sites. Pulling from any other URL is not guaranteed to be supported.
-// VERSION: 2025-06-12_21-09-57_UTC
-// COMMIT: a01fe523d7359fc523d8b164bcb16834a4f2d8ba
+// VERSION: 2025-07-09_15-23-09_UTC
+// COMMIT: c38a2f8e8862ad65d91af25dee90002c61329953
// Instructions on pulling and using this list can be found at https://publicsuffix.org/list/.
@@ -6792,7 +6792,7 @@ org.zw
// newGTLDs
-// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2025-06-07T15:17:54Z
+// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2025-07-09T15:20:49Z
// This list is auto-generated, don't edit it manually.
// aaa : American Automobile Association, Inc.
// https://www.iana.org/domains/root/db/aaa.html
@@ -7006,7 +7006,7 @@ arab
// https://www.iana.org/domains/root/db/aramco.html
aramco
-// archi : Identity Digital Limited
+// archi : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/archi.html
archi
@@ -7186,7 +7186,7 @@ best
// https://www.iana.org/domains/root/db/bestbuy.html
bestbuy
-// bet : Identity Digital Limited
+// bet : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/bet.html
bet
@@ -7214,11 +7214,11 @@ bing
// https://www.iana.org/domains/root/db/bingo.html
bingo
-// bio : Identity Digital Limited
+// bio : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/bio.html
bio
-// black : Identity Digital Limited
+// black : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/black.html
black
@@ -7238,7 +7238,7 @@ blog
// https://www.iana.org/domains/root/db/bloomberg.html
bloomberg
-// blue : Identity Digital Limited
+// blue : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/blue.html
blue
@@ -8334,7 +8334,7 @@ glass
// https://www.iana.org/domains/root/db/gle.html
gle
-// global : Identity Digital Limited
+// global : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/global.html
global
@@ -8410,7 +8410,7 @@ graphics
// https://www.iana.org/domains/root/db/gratis.html
gratis
-// green : Identity Digital Limited
+// green : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/green.html
green
@@ -8818,7 +8818,7 @@ kia
// https://www.iana.org/domains/root/db/kids.html
kids
-// kim : Identity Digital Limited
+// kim : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/kim.html
kim
@@ -8946,7 +8946,7 @@ lego
// https://www.iana.org/domains/root/db/lexus.html
lexus
-// lgbt : Identity Digital Limited
+// lgbt : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/lgbt.html
lgbt
@@ -9002,7 +9002,7 @@ live
// https://www.iana.org/domains/root/db/living.html
living
-// llc : Identity Digital Limited
+// llc : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/llc.html
llc
@@ -9038,7 +9038,7 @@ london
// https://www.iana.org/domains/root/db/lotte.html
lotte
-// lotto : Identity Digital Limited
+// lotto : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/lotto.html
lotto
@@ -9482,7 +9482,7 @@ oracle
// https://www.iana.org/domains/root/db/orange.html
orange
-// organic : Identity Digital Limited
+// organic : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/organic.html
organic
@@ -9542,7 +9542,7 @@ pay
// https://www.iana.org/domains/root/db/pccw.html
pccw
-// pet : Identity Digital Limited
+// pet : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/pet.html
pet
@@ -9606,7 +9606,7 @@ pin
// https://www.iana.org/domains/root/db/ping.html
ping
-// pink : Identity Digital Limited
+// pink : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/pink.html
pink
@@ -9646,7 +9646,7 @@ pnc
// https://www.iana.org/domains/root/db/pohl.html
pohl
-// poker : Identity Digital Limited
+// poker : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/poker.html
poker
@@ -9686,7 +9686,7 @@ prof
// https://www.iana.org/domains/root/db/progressive.html
progressive
-// promo : Identity Digital Limited
+// promo : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/promo.html
promo
@@ -9758,7 +9758,7 @@ realty
// https://www.iana.org/domains/root/db/recipes.html
recipes
-// red : Identity Digital Limited
+// red : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/red.html
red
@@ -10074,7 +10074,7 @@ shell
// https://www.iana.org/domains/root/db/shia.html
shia
-// shiksha : Identity Digital Limited
+// shiksha : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/shiksha.html
shiksha
@@ -10114,7 +10114,7 @@ singles
// https://www.iana.org/domains/root/db/site.html
site
-// ski : Identity Digital Limited
+// ski : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/ski.html
ski
@@ -10686,7 +10686,7 @@ wanggou
// https://www.iana.org/domains/root/db/watch.html
watch
-// watches : Identity Digital Limited
+// watches : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/watches.html
watches
@@ -10866,7 +10866,7 @@ xin
// https://www.iana.org/domains/root/db/xn--5tzm5g.html
网站
-// xn--6frz82g : Identity Digital Limited
+// xn--6frz82g : Identity Digital Domains Limited
// https://www.iana.org/domains/root/db/xn--6frz82g.html
移动
@@ -14668,6 +14668,10 @@ is-local.org
// Submitted by Alexander Varwijk
opensocial.site
+// OpenAI : https://openai.com
+// Submitted by Thomas Shadwell
+*.oaiusercontent.com
+
// OpenCraft GmbH : http://opencraft.com/
// Submitted by Sven Marnach
opencraft.hosting
@@ -15122,32 +15126,53 @@ logoip.com
logoip.de
// Scaleway : https://www.scaleway.com/
-// Submitted by Rémy Léone
+// Submitted by Scaleway PSL Maintainer
fr-par-1.baremetal.scw.cloud
fr-par-2.baremetal.scw.cloud
nl-ams-1.baremetal.scw.cloud
cockpit.fr-par.scw.cloud
+ddl.fr-par.scw.cloud
+dtwh.fr-par.scw.cloud
fnc.fr-par.scw.cloud
functions.fnc.fr-par.scw.cloud
+ifr.fr-par.scw.cloud
k8s.fr-par.scw.cloud
nodes.k8s.fr-par.scw.cloud
+kafk.fr-par.scw.cloud
+mgdb.fr-par.scw.cloud
+rdb.fr-par.scw.cloud
s3.fr-par.scw.cloud
s3-website.fr-par.scw.cloud
+scbl.fr-par.scw.cloud
whm.fr-par.scw.cloud
priv.instances.scw.cloud
pub.instances.scw.cloud
k8s.scw.cloud
cockpit.nl-ams.scw.cloud
+ddl.nl-ams.scw.cloud
+dtwh.nl-ams.scw.cloud
+ifr.nl-ams.scw.cloud
k8s.nl-ams.scw.cloud
nodes.k8s.nl-ams.scw.cloud
+kafk.nl-ams.scw.cloud
+mgdb.nl-ams.scw.cloud
+rdb.nl-ams.scw.cloud
s3.nl-ams.scw.cloud
s3-website.nl-ams.scw.cloud
+scbl.nl-ams.scw.cloud
whm.nl-ams.scw.cloud
cockpit.pl-waw.scw.cloud
+ddl.pl-waw.scw.cloud
+dtwh.pl-waw.scw.cloud
+ifr.pl-waw.scw.cloud
k8s.pl-waw.scw.cloud
nodes.k8s.pl-waw.scw.cloud
+kafk.pl-waw.scw.cloud
+mgdb.pl-waw.scw.cloud
+rdb.pl-waw.scw.cloud
s3.pl-waw.scw.cloud
s3-website.pl-waw.scw.cloud
+scbl.pl-waw.scw.cloud
scalebook.scw.cloud
smartlabeling.scw.cloud
dedibox.fr
@@ -15647,8 +15672,8 @@ dnsupdate.info
// Submitted by Gavin Brown
us.org
-// V.UA Domain Administrator : https://domain.v.ua/
-// Submitted by Serhii Rostilo
+// V.UA Domain Registry: https://www.v.ua/
+// Submitted by Serhii Rostilo
v.ua
// Val Town, Inc : https://val.town/
@@ -15673,6 +15698,10 @@ now.sh
// Submitted by Adnan RIHAN
v-info.info
+// VistaBlog : https://vistablog.ir/
+// Submitted by Hossein Piri
+vistablog.ir
+
// Viva Republica, Inc. : https://toss.im/
// Submitted by Deus Team
deus-canvas.com
diff --git a/icecat/security/manager/ssl/StaticHPKPins.h b/icecat/security/manager/ssl/StaticHPKPins.h
index f1e10c2238..5308cc33c4 100644
--- a/icecat/security/manager/ssl/StaticHPKPins.h
+++ b/icecat/security/manager/ssl/StaticHPKPins.h
@@ -736,4 +736,4 @@ static const TransportSecurityPreload kPublicKeyPinningPreloadList[] = {
static const int32_t kUnknownId = -1;
-static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1758539902731000);
+static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1760959658369000);
diff --git a/icecat/security/manager/ssl/nsSTSPreloadList.inc b/icecat/security/manager/ssl/nsSTSPreloadList.inc
index ea9fa11b3c..1e9a131c28 100644
--- a/icecat/security/manager/ssl/nsSTSPreloadList.inc
+++ b/icecat/security/manager/ssl/nsSTSPreloadList.inc
@@ -8,7 +8,7 @@
/*****************************************************************************/
#include
-const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
+const PRTime gPreloadListExpirationTime = INT64_C(1763378854229000);
%%
0--1.de, 1
0-0.io, 1
@@ -25,7 +25,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
0000031.xyz, 1
00010110.nl, 1
0007552.com, 1
-0008.life, 1
000a1.com, 1
000a2.com, 1
000a3.com, 1
@@ -104,7 +103,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
01form.net, 1
01seguridad.com.ar, 1
01smh.com, 1
-01tools.com, 1
01up.co.za, 1
022367.com, 1
022391.com, 1
@@ -179,7 +177,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
059958.com, 1
06006.vip, 0
060579.com, 1
-060757.com, 1
060798.com, 1
06091994.xyz, 1
06365t.com, 1
@@ -199,7 +196,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
074758.com, 1
076.ne.jp, 1
078663.com, 1
-078895.com, 1
0788yh.com, 1
0792112.com, 1
0798rcw.com, 0
@@ -234,7 +230,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
089818.com, 1
08detaxe.fr, 1
09000113.nl, 1
-090124.xyz, 1
0906-clan.tk, 1
09115.com, 0
0935792342.tw, 1
@@ -261,6 +256,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
0i0.nl, 1
0ii0.cf, 1
0ii0.eu.org, 1
+0iq.moe, 1
0iz.net, 1
0knowledge.de, 1
0lt.de, 1
@@ -276,7 +272,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
0r3.de, 1
0rap.tk, 1
0system.tk, 1
-0trust.cloud, 1
0trust.pro, 1
0ut3r.space, 1
0verall.tk, 1
@@ -293,6 +288,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
0x.cx, 1
0x.sk, 1
0x0.li, 1
+0x0.network, 1
0x00ff00ff.com, 1
0x0a.team, 1
0x1.ink, 1
@@ -310,6 +306,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
0x52.net, 1
0x52.org, 1
0x53.de, 1
+0x58.de, 1
0x5d.de, 1
0x5f3759df.net, 1
0x7.io, 0
@@ -335,6 +332,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
0xspa.de, 1
0xword.com, 1
0yen.org, 1
+1-123hp.com, 0
1-2-3bounce.co.uk, 1
1-800-mattress.com, 1
1-inv.com, 1
@@ -381,7 +379,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
100bib.ru, 1
100fast.com, 1
100fss.marketing, 1
-100kb.club, 1
100kraz.ga, 1
100mani.it, 1
100nome.com, 1
@@ -403,7 +400,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
100visits.tk, 1
100voprosov.tk, 1
100zakladok.tk, 1
-10101.io, 1
+10101.io, 0
101010.hopto.org, 1
101010.pl, 1
10161997.xyz, 1
@@ -423,13 +420,11 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
1020320.com, 1
10218app10218.com, 1
10218b.com, 0
-10218c.com, 0
10218cj.com, 1
10218e.com, 0
10218f.com, 0
10218g.com, 0
10218h.com, 0
-10218i.com, 0
1024.ee, 1
1024.kr, 1
1025.ga, 1
@@ -470,6 +465,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
10jahre-govet.international, 1
10ktotalent.com, 1
10mach.com, 1
+10mb.net, 1
10media.ru, 1
10mijlvanijmuiden.tk, 1
10milionu.cz, 1
@@ -480,7 +476,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
10pearls.com, 0
10ppm.com, 1
10sou.eu, 1
-10ten.study, 1
10thmagnitude.com, 1
10thstreetcapital.com, 1
10tv.in, 1
@@ -499,7 +494,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
110838.com, 1
110cl.com, 1
110na.com, 1
-111011.xyz, 1
1110a24.com, 1
1111365t.com, 1
1111systems.com, 1
@@ -737,7 +731,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
1220348.com, 1
1220349.com, 1
1220350.com, 1
-1222z6.com, 1
1223.tk, 1
123-d.com, 1
123-ticketsystem.com, 1
@@ -797,7 +790,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
12go.asia, 1
12go.co, 1
12gramu.cz, 1
-12grid.co.jp, 1
+12grid.co.jp, 0
12l.nl, 1
12lasee.com, 1
12nomos.tk, 1
@@ -842,13 +835,13 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
1395kj.com, 1
13ag8.com, 1
13cloudmike.duckdns.org, 1
+13gustafwasa.se, 1
13th-dover.uk, 1
13th.gg, 1
13u15.com, 1
141145.com, 0
14159.gb.net, 1
142552.com, 0
-142710.com, 1
144chan.ml, 1
1453914078.rsc.cdn77.org, 1
1459.io, 1
@@ -1017,6 +1010,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
1683659.com, 1
16836599.com, 1
168365t.com, 1
+1688zp.xyz, 1
168esb.com, 1
16974.cc, 1
169xpj.com, 1
@@ -1110,6 +1104,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
17901.com, 1
17920.com, 1
17921.com, 1
+17dbz.org, 1
17experience.com.br, 1
17hats.com, 0
17kpw.com, 1
@@ -1275,6 +1270,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
1a-diamantscheiben.de, 1
1a-hyp.de, 1
1a-media.com, 1
+1a-umzugsprofis.de, 1
1a-werkstattgeraete.de, 1
1ab-machinery.com, 1
1abcicka.ru, 1
@@ -1304,6 +1300,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
1chan.pl, 1
1chancerylane.com, 1
1choicegaragedoor.com, 1
+1coast.com.au, 1
1codex.online, 1
1cover.co.nz, 1
1cover.com.au, 1
@@ -1324,6 +1321,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
1earn.com, 1
1er-secours.ch, 0
1f123.net, 1
+1f616emo.xyz, 1
1fastcourse.com, 1
1fc0.org, 1
1firstbank.com, 1
@@ -1357,6 +1355,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
1me.cz, 1
1mgt.ru, 1
1montre.fr, 1
+1my.me, 1
1nf.me, 1
1nian.vip, 1
1node.site, 1
@@ -1367,7 +1366,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
1onehouse.com, 1
1onestrong.com, 1
1p.cl, 1
-1pair.com, 1
1panorama.ru, 1
1password.ca, 1
1password.com, 1
@@ -1397,8 +1395,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
1st-community.de, 1
1st-online-academy.com, 1
1st2bounce.com, 1
-1stcalldfw.com, 1
-1stcalldfwd.com, 1
1stcalldwfw.com, 1
1stcallfdw.com, 1
1stcheltenhamscouts.co.uk, 1
@@ -1412,12 +1408,14 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
1sttix.org, 1
1ticks.com, 1
1tomplumber.com, 1
+1tpt.com, 1
1und1.ag, 1
1up.it, 1
1url.site, 1
1v-lsd.eu, 1
1v9.im, 1
1v9.io, 1
+1viemeilleure.eu, 1
1voz.org, 1
1vpns.com, 1
1vs2.by, 1
@@ -1687,12 +1685,10 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
20sights.tk, 1
21.co.uk, 1
2113.ch, 1
-213k8.com, 1
214701.xyz, 1
21566365.com, 0
216digital.com, 1
21ce.com, 1
-21eb.com, 0
21er.com, 1
21expo.com, 1
21football.com, 1
@@ -1776,7 +1772,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
22yyqq.com, 1
22yyrr.com, 1
22yyss.com, 1
-22yytt.com, 1
22zt.com, 1
230beats.com, 1
232192.com, 1
@@ -1827,7 +1822,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
242552.com, 1
2444.cf, 1
245990.xyz, 1
-245meadowvistaway.com, 0
+245meadowvistaway.com, 1
246060.ru, 1
247a.co.uk, 1
247analsex.com, 1
@@ -1916,6 +1911,8 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
259885.com, 1
25api.com, 1
25friday.com, 1
+25genomes.org.uk, 1
+25genomes.uk, 1
25lotto.co.ke, 1
25lotto.com, 1
25may.tk, 1
@@ -2052,13 +2049,11 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
2nains.ch, 0
2ndtivertonscouts.tk, 1
2nerds1bit.com, 1
-2nodez.com, 1
2of.me, 1
2or3.tk, 1
2pi.finance, 1
2pi.network, 1
2rad-prumbaum.de, 1
-2rings.net, 1
2rodeo.com, 1
2rsc.net, 1
2sendai.net, 1
@@ -2072,12 +2067,12 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
2todrive.nl, 0
2travel8.world, 1
2ugaming.com, 1
-2up.site, 1
2url.link, 1
2ustyle.com, 1
2value.com, 1
2vnews.com, 1
2vp-an.online, 1
+2wth.com, 1
2x.nu, 1
2xgraphik.com, 1
2y.fi, 1
@@ -2096,7 +2091,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
301.one, 0
301.sh, 1
301.technology, 1
-301334.com, 1
30375500.com, 1
30375533.com, 1
3056999.com, 1
@@ -2144,7 +2138,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
31fss.marketing, 1
31fss.net, 1
31fss.support, 1
-320281.net, 1
+320281.net, 0
321666365.com, 1
321live.nl, 1
321livestream.nl, 1
@@ -2189,8 +2183,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
3433bet.com, 1
34365t.com, 1
3444.cf, 1
-345404.xyz, 1
-3455bet.com, 1
3456666365.com, 0
345678365.com, 1
3456789365.com, 1
@@ -2238,7 +2230,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
360cycling.com.br, 1
360degreecloud.com, 1
360dental.com, 1
-360dialog.com, 1
+360dialog.com, 0
360e-commerce.net, 1
360ecogroup.com, 0
360ecommerce.net, 1
@@ -2487,7 +2479,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
3bet86.com, 1
3bigking.com, 1
3blazing.cf, 1
-3candy.com, 1
3cbalance.pl, 1
3cc365.com, 1
3changtrai.com, 1
@@ -2547,7 +2538,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
3dstoragellc.com, 1
3dstore.dk, 1
3dsupplies.be, 1
-3dtech.pt, 1
3dvf.com, 1
3dvisual.studio, 1
3dzip.org, 1
@@ -2580,6 +2570,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
3logic.ru, 1
3lot.ru, 1
3marilynthemedia.cf, 1
+3mediaweb.com, 1
3mind-solutions.com, 1
3ml.org.uk, 0
3moorcrescent.online, 1
@@ -2618,7 +2609,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
3r3n.xyz, 1
3rabsite.tk, 1
3rd.fi, 1
-3rdplanet.uk, 1
3rr0r.com, 1
3rr0r.net, 1
3rr0r.org, 1
@@ -2655,6 +2645,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
3wid.com.br, 1
3wideclub.com, 1
3wincorp.com, 1
+3xceler.com.br, 1
3xx.click, 1
3xx.link, 1
3z4m.stream, 1
@@ -2671,7 +2662,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
4005365.com, 1
4008810.com, 0
400yaahc.gov, 1
-401202.xyz, 1
401ksecure.com, 1
401ksite.com, 1
4025360.com, 1
@@ -2835,7 +2825,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
4cloud.cf, 1
4creative.net, 1
4cut.tk, 1
-4daagse.nl, 1
+4daagse.nl, 0
4dbuild.net, 1
4dclub.com, 1
4devs.com.br, 1
@@ -2881,6 +2871,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
4lock.com.br, 1
4mama.ua, 1
4maniacos.tk, 1
+4marry.com, 1
4mm.org, 1
4n3.net, 1
4n6.io, 1
@@ -2925,7 +2916,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
4voip.ru, 1
4web-hosting.com, 1
4wrd.cc, 1
-4x.fi, 1
4x4-27mc.nl, 1
4x4.lk, 1
4x4coatingen.nl, 1
@@ -3045,7 +3035,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
51aifuli.com, 1
51cls.tw, 1
51club8.com, 1
-51dinghuo.com, 1
51fishing.com, 1
51flower.com, 1
51free.com, 1
@@ -3141,7 +3130,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
5533445.com, 1
55365t.com, 1
5536z.com, 1
-555554.xyz, 1
5557552.com, 1
555bet86.com, 1
555btt.com, 1
@@ -3265,7 +3253,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
5e.tools, 1
5eki.jp, 0
5elementostudio.co, 1
-5f4.info, 1
5fm.nu, 1
5francs.com, 1
5g.co.uk, 1
@@ -3347,7 +3334,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
632144.com, 1
632148.com, 0
632174.com, 0
-632365.com, 1
633663.net, 1
633663.vip, 1
635-888.com, 1
@@ -3383,7 +3369,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
6396sss.com, 0
6396ttt.com, 1
6396vvv.com, 0
-6396www.com, 0
6396xxx.com, 0
6396yyy.com, 1
6396zzz.com, 0
@@ -3475,6 +3460,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
6660111.ru, 1
6661.cf, 1
666111bet.com, 1
+666119.xyz, 1
666222bet.com, 1
666333bet.com, 0
666365ios.com, 0
@@ -3678,8 +3664,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
6play.fr, 1
6t-montjoye.org, 1
6thmarch.com, 1
-6wbz.com, 1
-6y666y6yy66.xyz, 1
7-chord.com, 1
7-it.ml, 1
7-zip.de, 1
@@ -3693,7 +3677,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
704533.com, 0
705994.com, 1
708090.ru, 1
-709611.com, 1
70mpg.org, 1
7100.cf, 1
712kb.com, 1
@@ -3723,12 +3706,10 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
740424.ml, 1
740660.com, 1
740cashbuyers.com, 1
-743365.com, 1
74365365.com, 1
7444.cf, 1
7478vip1.cc, 0
7478vip2.cc, 1
-74d88.com, 1
74dy.org, 1
74th.jp, 1
750375.com, 1
@@ -3838,6 +3819,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
7extranews.tk, 1
7f.is, 1
7gr.uk, 1
+7graus.pt, 1
7h12.com, 1
7heavencr.com, 1
7hills.us, 1
@@ -3849,7 +3831,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
7kvadratov.by, 1
7l00p.com, 1
7magicinc.com, 1
-7matic.net, 1
7money.co, 1
7net.uk, 1
7nets.com, 1
@@ -3934,7 +3915,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
8113d.com, 1
8115d88.com, 1
8116d88.com, 1
-811fsspentagon.com, 1
8121d.com, 1
8121d88.com, 1
8128d.com, 1
@@ -4121,7 +4101,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
86metro.ru, 1
86pest.com, 1
870.cc, 0
-870718.xyz, 1
872291.com, 0
8722ph.com, 1
8722usa.com, 1
@@ -4159,7 +4138,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
8869ks.com, 0
886k8.com, 0
886z6.com, 1
-8871d.com, 1
8872d.com, 1
88740e.com, 1
88740f.com, 1
@@ -4534,7 +4512,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
91d83.com, 1
91d85.com, 0
91dh.cc, 0
-91fashion.com, 1
91fldz.com, 1
91imh.com, 1
91news.tk, 1
@@ -4700,7 +4677,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
9341.cf, 1
9342.cf, 1
9343.cf, 1
-934365.com, 1
9344.cf, 1
9345.cf, 1
9347.cf, 1
@@ -4799,6 +4775,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
9507.cf, 1
9508.cf, 1
9509.cf, 1
+950z.cn, 1
9510.cf, 1
95105.com, 1
95107.com, 1
@@ -4915,7 +4892,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
9617.cf, 1
9617818.net, 1
9618.cf, 1
-96181.com, 1
9619.cf, 1
9620.cf, 1
96200.com, 1
@@ -4935,7 +4911,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
9632.cf, 1
9633.cf, 1
96448.com, 1
-964515.com, 1
96577.com, 1
96605.com, 1
96606.com, 1
@@ -5199,7 +5174,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
998wei.com, 1
998wns.com, 1
9990058.com, 1
-999026.xyz, 1
999031.xyz, 1
999048.xyz, 1
999051.xyz, 1
@@ -5230,27 +5204,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
99bt.com, 1
99buffets.com, 1
99dog.com, 1
-99fffbb.com, 1
-99fffee.com, 1
-99fffgg.com, 1
-99fffhh.com, 1
-99fffii.com, 1
-99fffkk.com, 1
-99fffmm.com, 1
-99fffqq.com, 1
-99fffuu.com, 1
-99fffvv.com, 1
-99ffggg.com, 1
-99ffjjj.com, 1
-99ffmmm.com, 1
-99ffnnn.com, 1
-99ffppp.com, 1
-99ffrrr.com, 1
-99ffsss.com, 1
-99ffttt.com, 1
-99ffuuu.com, 1
-99ffvvv.com, 1
-99ffxxx.com, 1
99furnitureideasandtips.gq, 1
99furnitureideasexamples.ga, 1
99laptops.com, 1
@@ -5262,7 +5215,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
99rst.org, 1
99spokes.com, 1
99wxt.com, 1
-9ag88.com, 1
9articles.org, 1
9baka.top, 1
9bet86.com, 1
@@ -5365,6 +5317,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000);
9pkfz.com, 1
9point6.com, 1
9ranks.com, 1
+9sw.de, 1
9tailedkitsune.com, 1
9to5linux.com, 1
9to5notes.in, 1
@@ -5390,7 +5343,6 @@ a-frique.com, 1
a-gokan.com, 1
a-h-p.de, 0
a-hitoduma.com, 1
-a-invest.de, 1
a-kang.com, 1
a-lexx.de, 1
a-little-linux-box.at, 1
@@ -5470,7 +5422,6 @@ a5197.co, 1
a632079.me, 1
a6729.co, 1
a6957.co, 1
-a6s.live, 1
a6s.me, 1
a6s.tech, 1
a6stech.com, 1
@@ -5486,6 +5437,7 @@ a9721.com, 1
a9728.co, 1
a9l.im, 1
aa-security.be, 1
+aa.cx, 1
aa43d.cn, 1
aa5197.co, 1
aa6688.net, 0
@@ -5598,6 +5550,7 @@ aarvinproperties.com, 1
aarwer.com, 1
aarwer.jp, 1
aaryas-tt.com, 1
+aasdepot.com, 1
aaskolnick.com, 1
aasumitro.id, 1
aasvets.co.uk, 1
@@ -5614,6 +5567,7 @@ aavawhistlerhotel.com, 1
aave.com, 1
aavgo.com, 1
aavienna.com, 1
+aayamresorts.com, 1
aayan.com, 1
ab-design.tk, 1
ab-pflege.de, 1
@@ -5903,7 +5857,6 @@ abolitionist-project.com, 1
abolitionist-society.com, 1
abolitionist.co.uk, 1
abolitionist.com, 1
-abolitionist.net, 1
abolitionist.us, 1
abolitionistproject.com, 1
abolitionistsociety.com, 1
@@ -5916,6 +5869,7 @@ abonentka.tk, 1
aborla.net, 1
abormez.es, 1
abort-report.eu, 1
+abortionfaq.org, 1
abortionpill.sg, 1
aborto.tk, 1
abos.eu, 0
@@ -5995,10 +5949,10 @@ abox-kb.com, 1
abpages.com, 1
abpis.hr, 1
abplive.com, 1
+abplusz.hu, 1
abpoolsub.com, 1
abqbiotechincubator.com, 1
abr.ru, 1
-abra.bg, 1
abracadabramagicas.com.br, 1
abrah.am, 1
abrahamboray.tk, 1
@@ -6080,6 +6034,7 @@ abu-auftrag.ch, 1
abu-nour.tk, 1
abuahmed.ga, 1
abulanov.com, 1
+abulhuda.com, 1
abun-motorsport.tk, 1
abundent.com, 1
abusamraphotography.tk, 1
@@ -6091,7 +6046,6 @@ abuse.io, 1
abusive-host.tk, 1
abvlbasketviganello.ch, 0
aby-action.com, 1
-abyaction.net, 1
abys.se, 1
abysra.com, 1
abyss.moe, 1
@@ -6110,6 +6064,7 @@ ac.milan.it, 1
ac0g.dyndns.org, 1
ac2amedoc.com, 1
ac8.es, 1
+aca.gov.ly, 1
aca.om, 1
acab.love, 1
acachau.synology.me, 1
@@ -6133,6 +6088,7 @@ academy-awards.ml, 1
academyonlinetoyou.tk, 1
acadeven.com, 1
acadiate.com, 1
+acadlly.com, 0
acadolimited.com, 1
acafcantabria.es, 1
acafellas.com, 1
@@ -6151,6 +6107,7 @@ acapellalanguage.tk, 1
acapetahua.tk, 1
acaptureservices.com, 1
acara.edu.au, 1
+acarkentescortw.com, 1
acaro.it, 1
acasadavella.tk, 1
acasadoprodutor.com.br, 1
@@ -6193,6 +6150,7 @@ accentwebs.ie, 1
accesdirectmarketing.ca, 1
accesdirectmarketing.com, 1
accesloges.com, 1
+acceso25.es, 1
accesoriiutilaje.ro, 1
access-board.gov, 1
access-nl.org, 1
@@ -6203,7 +6161,6 @@ access-token.tk, 1
access.beer, 1
access2employment.com, 1
accessacab.co.uk, 1
-accessansweringservices.com, 1
accessauto-occasions.be, 0
accessauto.co.uk, 1
accessbankplc.com, 1
@@ -6227,6 +6184,7 @@ accessories-for-women.tk, 1
accessoriesautoparts.tk, 1
accessoripersmartphone.it, 1
accesspress.org, 1
+accesstive.com, 1
accesstosystem.cf, 1
accey.cz, 1
acchan-fun.com, 1
@@ -6256,6 +6214,7 @@ accpl.co, 1
accreditamento.net, 1
accreditedbuildingservices.com, 1
accretech.vn, 1
+accs-scale.co.uk, 1
accsaber.com, 1
acct-affiliate.com, 1
accubitsdemo.ml, 1
@@ -6274,7 +6233,6 @@ accustomedicals.ga, 1
accutone.com.mx, 1
acdc-tech.eu, 1
acdc-tech.lv, 1
-acdesignsolution.com, 1
acdk2.de, 1
ace-aegon.cloud, 1
ace-clan.tk, 1
@@ -6297,11 +6255,13 @@ acedstudy.com, 1
aceenergy.com.tw, 1
acefishing.tk, 1
acefront.co.uk, 1
+acegear.pl, 1
acegroup.org.tw, 1
aceinflatables.com, 1
aceinstituteonline.com, 1
aceitesencantados.com, 1
acejunkpros.com, 1
+acekit-create.com, 1
aceleracaodigital.com, 1
aceleraguria.com.br, 1
acelpb.com, 1
@@ -6319,7 +6279,6 @@ acepi.pt, 1
acer.edu.au, 1
acer.org, 1
acercapartners.com, 1
-aceroofsystems.com, 1
acesaware.org, 1
aceshop702.com, 1
acetaiavaleri.it, 1
@@ -6404,7 +6363,6 @@ acklandstainless.com.au, 1
acl.gov, 1
aclandia.fr, 1
aclassgrass.co.uk, 1
-aclhire.com, 1
aclinjury.sg, 1
aclipt.com, 0
acloud.one, 1
@@ -6436,6 +6394,7 @@ acompanhantes.com.pt, 1
acomplia20mg.cf, 1
acopatableware.com, 1
acordes.online, 1
+acorespro.com, 1
acorn.works, 1
acorncastles.co.uk, 1
acornli.com, 1
@@ -6469,7 +6428,6 @@ acquireit.com.au, 1
acquireoil.com, 1
acquisition.gov, 1
acquisitiongateway.gov, 1
-acrackstreams.ws, 1
acraftedpassion.com, 1
acrealamendolara.tk, 1
acreinfoco.com, 1
@@ -6490,7 +6448,6 @@ acronis.org, 0
acronis.work, 1
acrorock.tk, 1
across-community.tk, 1
-acrossgw.com, 1
acroteam.tk, 1
acroyoga-nuernberg.de, 1
acrplus.org, 1
@@ -6503,9 +6460,7 @@ acsb.ro, 0
acsbbs.org, 1
acsc.gov.au, 1
acsd-az.gov, 1
-acse.net, 1
acsemb.org, 1
-acsihostingsolutions.com, 0
acsiresearch.com, 1
acsmuhendislik.com.tr, 1
acsports.ca, 1
@@ -6556,13 +6511,12 @@ actionphototours.com, 1
actionraingutters.com, 1
actions.today, 1
actionsack.com, 1
-actionsandreactions.com, 1
actionsecuritycameras.com, 1
actionverb.com, 1
actisgolf.com, 1
actiumhealth.com, 0
activat3rs.com, 1
-activate.swiss, 0
+activate.swiss, 1
activated.win, 1
activatenow.com, 1
activators.ml, 1
@@ -6686,7 +6640,6 @@ ad-bp.top, 1
ad-disruptio.fr, 0
ad-education.com, 1
ad-notam.asia, 1
-ad-notam.ch, 1
ad-notam.co.uk, 1
ad-notam.com, 1
ad-notam.de, 1
@@ -6739,7 +6692,6 @@ adamfontenot.com, 1
adamgian.com, 1
adamh.us, 1
adamj.eu, 1
-adamjeelukmanjee.com, 1
adamjoycegames.co.uk, 1
adamkissee.com, 1
adamkostecki.de, 1
@@ -6749,10 +6701,8 @@ adamoutler.com, 0
adamov.tk, 1
adamradocz.com, 1
adamraoof.tk, 1
-adamricheimer.com, 1
adams-gonczi.fun, 1
adamsandle.uk, 1
-adamschmuck.de, 1
adamscountyco.gov, 1
adamscountycoelections.gov, 1
adamscountyemsoh.gov, 1
@@ -6780,7 +6730,6 @@ adaptimmune.com, 1
adaptiv.ltd, 1
adaptivecards.io, 1
adaptivecenter.net, 1
-adaptiveexercisegroup.com, 1
adaptiveicons.com, 1
adaptivemachiningcnc.com, 1
adaptivemechanics.edu.au, 1
@@ -6801,6 +6750,7 @@ adata-c.kz, 1
adata.kz, 1
adatitleiii.com, 1
adativos.com.br, 1
+adats.com, 1
adawolfa.cz, 1
adbexcavation.ca, 1
adbglobal.com, 1
@@ -6892,7 +6842,6 @@ adelightfulglow.com, 1
adelina.com.br, 0
adelinemerrick.com, 1
adelonline.tk, 1
-adelphiawines.com, 1
ademaulana.tk, 1
adenergetics.tech, 1
adenhurra.cf, 1
@@ -6944,7 +6893,6 @@ adiaf.com, 1
adib.family, 1
adictosdominantescdls.tk, 1
adidas-2020-spring.com, 1
-adiehard.party, 1
adiesyndrome.tk, 1
adigolifestyle.com, 1
adiguezel-bau-gmbh.de, 1
@@ -6964,8 +6912,8 @@ adiph.fr, 1
adiph.org, 1
adiprospero.it, 1
adiraku.co.id, 1
-adiscorduser.com, 1
adit.com, 1
+aditumconsulting.com, 1
adityadees.com, 1
adityaes.eu.org, 1
adiyamandanal.com, 1
@@ -7001,7 +6949,6 @@ admin-gator.net, 1
admin-rbb-ugc-prod.azurewebsites.net, 1
admin-rbb-ugc.azurewebsites.net, 1
admin-serv.net, 1
-admin-smolensk.ru, 1
admin-wp.com, 1
admin-wp.pl, 1
admin.academy, 1
@@ -7028,6 +6975,7 @@ adminova.tk, 1
adminplus.bg, 1
adminresurs.tk, 1
adminrezo.fr, 1
+adminsbscdev.azurewebsites.net, 1
admirable.pro, 1
admiralcloud.com, 1
admody.com, 1
@@ -7061,7 +7009,6 @@ adonizer.science, 1
adonnante.com, 0
adontenchambers.com, 1
adoperator.com, 1
-adopt-dont-shop.de, 1
adopt.tk, 1
adoptabeehive.co.uk, 1
adoptabeehive.com, 1
@@ -7071,7 +7018,7 @@ adopting.tk, 1
adoption.tk, 1
adoptionpregnancycenter.com, 1
adoptionpregnancycenter.net, 1
-adoptium.net, 1
+adoptium.net, 0
adorade.ro, 0
adorai.tk, 1
adoran.ga, 1
@@ -7097,7 +7044,6 @@ adreaminsteel.tk, 1
adreana.com, 1
adregain.com, 1
adregain.ru, 1
-adrenajump.com.br, 1
adrenalin.is, 1
adrenalin.od.ua, 0
adrenalinbeach.com, 1
@@ -7119,7 +7065,6 @@ adrianbrad.com, 1
adriancitu.com, 1
adriancostin.ro, 1
adrianfeliciano.com, 0
-adrianiacobus.com, 1
adrianjamesnutrition.com, 1
adrianjensen.com, 1
adrianmasella.com.br, 1
@@ -7198,6 +7143,7 @@ adultdvdparadise.com, 1
adulteducation.org.uk, 1
adultforum.gr, 0
adultgames.pro, 1
+aduro.com.tr, 1
adurra.com, 1
adutoras.com.br, 1
adv-geosci.net, 1
@@ -7231,7 +7177,7 @@ advanceddisposables.co.uk, 0
advancedelectricalservicesqld.com.au, 1
advancedfueladditives.com, 1
advancedhealthmedical.com.au, 0
-advancedinteg.com, 1
+advancedinteg.com, 0
advancedkiosks.com, 1
advancedmanagement.net, 1
advancedmd.com, 1
@@ -7251,11 +7197,7 @@ advances.in, 1
advancetitan.com, 1
advanceworx.com, 1
advania.info, 1
-advanpath.com, 1
-advanpath.net, 1
-advanpath.org, 1
advanpathbpo.com, 1
-advanpathgroup.com, 1
advanqi.se, 1
advantage.com.sa, 1
advantage.sa, 1
@@ -7299,7 +7241,6 @@ adventurecreators.com, 1
adventuredogranch.net, 1
adventuredrives.com, 1
adventureforest.nz, 1
-adventureoutrvpark.com, 1
adventureprooutdoors.com, 1
adventureprovisionco.com, 1
adventures.com, 1
@@ -7316,8 +7257,6 @@ adverganda.de, 1
adversus-test.tk, 0
adversus-web-staging.tk, 0
advertise-ment.tk, 1
-advertise.cn, 1
-advertisebwd.co.uk, 1
advertising-design.tk, 1
advertisingcompany.tk, 1
advertisingindustry.ga, 1
@@ -7339,7 +7278,6 @@ advinans.io, 1
advinans.se, 1
advinix.fr, 1
advirk.tk, 1
-advise.cn, 1
advisertula.ru, 1
advisorperspectives.com, 1
advmaster.cf, 1
@@ -7383,7 +7321,6 @@ advritujeph.in, 1
advtran.com, 0
advu.no, 1
adware.pl, 0
-adwokat-kielce.com.pl, 1
adwokatkosterka.pl, 1
adwokatzdunek.pl, 1
adworldglobal.com, 1
@@ -7402,6 +7339,7 @@ adzuna.com.au, 1
adzuna.com.br, 1
adzuna.de, 1
adzuna.fr, 1
+adzuna.in, 1
adzuna.it, 1
adzuna.nl, 1
adzuna.pl, 1
@@ -7469,7 +7407,6 @@ aelia.im, 1
aelia.is, 1
aelintx.com, 1
aelisya.net, 0
-aelurus.com, 1
aelyapi.com, 1
aenahome.com, 1
aenes.com, 1
@@ -7518,6 +7455,7 @@ aerolog.co, 0
aeromot.com, 1
aeron.aero, 1
aeronautix.com, 1
+aeronote.net, 1
aeropetz.com.br, 1
aeroplan.tk, 1
aeropole.de, 1
@@ -7581,6 +7519,7 @@ aewin.cn, 1
aextron.com, 1
aextron.de, 1
aextron.org, 1
+aezone.com, 1
af-clan.tk, 1
af.link, 1
af2c.org, 1
@@ -7594,7 +7533,6 @@ afanias.org, 0
afas-apps.nl, 1
afasim.tk, 1
afasstatus.nl, 1
-afbouw-gevelsupport.nl, 1
afbrunswick.com, 1
afcea.de, 1
afcmrstest.org, 0
@@ -7630,12 +7568,12 @@ affaire.com, 1
affairemateriaux.fr, 1
affairs.com, 1
affarsnatverk.nu, 0
-affcdn.net, 1
affclick.io, 1
affcreations.com, 1
affect3d.com, 1
affect3dstore.com, 1
affectionate.tk, 1
+affectnet.com, 1
affengine.com, 1
affengine.net, 1
affibody.se, 1
@@ -7670,7 +7608,7 @@ affittialmare.it, 1
affittibreviliguria.it, 1
affittisalento.it, 1
affle.com, 1
-afflelou.com, 1
+afflelou.com, 0
afflictedquarter.tk, 1
affordable.icu, 1
affordableasphaltcompany.com, 1
@@ -7757,6 +7695,7 @@ africantourer.com, 1
africaone-publishing.com, 1
afrijet.ga, 1
afrimarket.ci, 1
+afriqiyah.aero, 1
afrique.buzz, 1
afriregister.com.ss, 1
afriregister.et, 1
@@ -7830,7 +7769,7 @@ ag68ks.com, 0
ag69000.com, 1
ag72.vip, 1
ag8-game.com, 1
-ag8.im, 1
+ag8.im, 0
ag8.vip, 1
ag80808.com, 1
ag80880.com, 0
@@ -7838,8 +7777,6 @@ ag812.tv, 1
ag819.tv, 1
ag82011.vip, 1
ag82018.com, 1
-ag8500.com, 1
-ag8600.com, 1
ag88.com, 1
ag880.win, 1
ag8808.com, 1
@@ -7850,17 +7787,14 @@ ag8859.com, 0
ag8876.com, 1
ag888818.com, 1
ag889.com, 1
-ag8890.com, 1
ag8891.com, 1
ag88ks.com, 0
ag8vip.com, 1
-ag9100.com, 1
ag918.cc, 0
ag918.co, 1
ag918.top, 1
ag96.win, 1
ag98.tv, 0
-ag9800.com, 1
ag98ks.com, 0
ag9999.co, 1
ag9ks.com, 1
@@ -7966,9 +7900,12 @@ agenda-loto.net, 0
agenda21senden.de, 1
agendadelvolo.info, 1
agendaedu.com, 1
+agendamotor.es, 1
agendamuslim.tk, 1
agendaspectacles.fr, 1
agendatrad.org, 1
+agendavalencia.es, 1
+agender.me, 1
agendominoq.tk, 1
agent-007.tk, 1
agent-grow.com, 1
@@ -7987,6 +7924,7 @@ agentprovocateur.com, 1
agentrisk.com, 0
agentsmith.tk, 1
agentum.ga, 1
+agentur-haas.com, 1
agentur-pottkinder.de, 1
agentur-publik.de, 1
agentz.ga, 1
@@ -7994,6 +7932,7 @@ agenux.org, 1
agenziapubblicitaria.roma.it, 1
agenziefunebri.it, 1
ageofreason.tk, 1
+agerton.lt, 1
ages-its.de, 1
ages-service.de, 1
agesofarda.net, 1
@@ -8044,8 +7983,6 @@ agiotadinheiro.com, 1
agiotaemprestimo.com, 1
agirc-arrco.fr, 1
agirlknows.com, 1
-agitmedia.ru, 1
-agk.co.com, 1
agks02.com, 1
agks1.com, 1
agks116.com, 1
@@ -8147,6 +8084,7 @@ agrifoodtoday.it, 1
agrifutures.com.au, 1
agrigentonotizie.it, 1
agrikulturchic.com, 1
+agrimet.com.br, 1
agrinous.com, 0
agrinous.com.au, 0
agrinstands.com, 1
@@ -8162,6 +8100,7 @@ agro-dom.solutions, 1
agro-ferma.tk, 1
agro-forestry.net, 1
agro-market24.ru, 1
+agro-parts.bg, 1
agrobank.uz, 0
agrobaza.com.ua, 1
agrocabildo.org, 1
@@ -8176,7 +8115,6 @@ agroenos.com, 1
agroequipos.com.mx, 1
agrofind.com.br, 1
agrogrup79.com, 1
-agroguia.com.co, 1
agrohim.com, 1
agroinsider.com, 1
agrokomi.tk, 1
@@ -8194,7 +8132,7 @@ agropark.tk, 1
agroplas.cf, 1
agropool.tk, 1
agropotter.com.ua, 1
-agroquimicosubeda.com, 1
+agrosantos.com.br, 1
agrosanus.pt, 0
agrospan.ga, 1
agrosvit.kz, 1
@@ -8275,6 +8213,7 @@ ahlaejaba.com, 1
ahli-antenatv.tk, 1
ahli.io, 1
ahlibank.com.qa, 1
+ahlstrandsbegravning.se, 1
ahlz.sk, 1
ahm.com.au, 1
ahmadfathy.ml, 1
@@ -8299,12 +8238,14 @@ ahmetshina.tk, 1
ahmettoraman.com.tr, 1
ahmu.com, 1
ahmud.net, 1
+ahnastro.net, 1
ahoeheng.com, 1
ahoj.email, 1
ahoj.hu, 1
ahomeconcept.com, 1
ahornblatt.org, 1
ahorrocoop.cl, 1
+ahorroenergeticoenhogares.es, 1
ahosamuel.com, 1
ahosi.com, 1
ahouansou.cz, 1
@@ -8315,7 +8256,6 @@ ahrora.com, 1
ahrq.gov, 1
ahs.com, 1
ahsanautos.pk, 1
-ahsboca.com, 1
ahscarolinas.com, 1
ahsinsaleem.tk, 1
ahstrem.com, 1
@@ -8343,6 +8283,7 @@ ai1989.com, 1
ai2-jp.com, 1
ai5.me, 1
aiaccinu.eu.org, 1
+aiag.org, 1
aiainiu.com, 1
aianetwork.net, 1
aianipid.ee, 1
@@ -8373,11 +8314,13 @@ aicial.co.uk, 1
aickelin.eu, 1
aicontent.vn, 1
aicpastore.com, 1
+aicredit.ro, 1
aicta.ro, 1
aid-web.ch, 1
aida.org.au, 1
aidablanco.tk, 1
aidaccess.org, 1
+aidanamavi.com, 1
aidanmitchell.uk, 0
aidanmontare.net, 1
aidanpr.com, 1
@@ -8393,7 +8336,6 @@ aidenoliver.au, 1
aidez-moi.eu, 1
aidhan.net, 1
aidi-ahmi.com, 1
-aidigital.top, 1
aidliveers.ga, 1
aido.gq, 1
aidoc.com, 1
@@ -8401,7 +8343,6 @@ aidoru.net, 1
aidoru.top, 1
aids-dissidents.tk, 1
aids.gov, 1
-aidventurers.com, 1
aie.de, 1
aiesecarad.ro, 1
aievaluare.ro, 1
@@ -8482,6 +8423,7 @@ aimotive.com, 1
aimplas.es, 1
aimreply.com, 1
aimrom.org, 1
+aimvancouver.com, 1
aimwa.com, 1
aina.moi, 1
ainaishi.com, 1
@@ -8495,7 +8437,6 @@ ainong.com, 1
ainsa.tk, 1
aintfeelingit.com, 1
ainutrition.co.uk, 1
-ainvest.de, 1
ainzu.net, 1
aioboot.com, 0
aiois.com, 1
@@ -8523,7 +8464,6 @@ aiprime.solutions, 1
aipulse.org, 1
aiqinggu.com, 1
aiqingli.com, 1
-aiquile.com, 1
air-business.tk, 1
air-clan.tk, 1
air-contact.com, 1
@@ -8624,7 +8564,6 @@ aircraftnoisemodel.org, 1
aircraftspruce.ca, 1
aircraftspruce.com, 1
aircrewportpages.com, 1
-aircs.racing, 1
airday.tk, 1
airdeer.com, 1
airdropics.com, 1
@@ -8672,10 +8611,8 @@ airgun.tk, 1
airgundepot.com, 1
airhelp.com, 1
airhorn.de, 1
-airi-tabei.com, 1
airi.ga, 1
airicy.com, 1
-airikai.com, 1
airism.com, 1
airit.de, 1
airjet.cf, 1
@@ -8704,7 +8641,6 @@ airlinechicago.com, 1
airlinedallas.com, 1
airlinedenmark.com, 1
airlinedomestic.com, 1
-airlineeconomy.com, 1
airlinefarecheap.com, 1
airlinefarediscount.com, 1
airlinefarelow.com, 1
@@ -8836,6 +8772,7 @@ airnzcode.com, 1
airnzevents.nz, 1
airobotvision.com, 1
airoldi.swiss, 1
+airparana.com.br, 0
airpark-roissy.fr, 1
airplaneairline.com, 1
airplanepictures.tk, 1
@@ -9034,6 +8971,7 @@ ajoliveira.net, 1
ajoliveira.org, 1
ajoneuvokeskitys.fi, 1
ajop.loan, 1
+ajpappas.net, 1
ajramos.tk, 1
ajsb85.com, 1
ajscred.online, 1
@@ -9069,7 +9007,6 @@ akademiawellbeing.pl, 1
akademicka.pl, 1
akademie-frankfurt.de, 1
akadseguros.com.br, 0
-akaiclinic-yokohama.com, 1
akaike.co.jp, 1
akamon.ac.jp, 1
akamsg.com, 1
@@ -9079,6 +9016,7 @@ akamsnetworksetup.com, 1
akamspairyourphone.com, 1
akamsphonelink.com, 1
akamu.de, 0
+akaphonelink.com, 1
akaratasker.com, 1
akari.net, 1
akarisoftware.co.uk, 1
@@ -9110,6 +9048,7 @@ akcevybuch.cz, 1
akconciergerie.fr, 1
akcpetinsurance.com, 1
akcs.one, 1
+akdenizecza.com, 1
akdenizecza.com.tr, 1
akdenizim.tk, 1
akdm.com.au, 1
@@ -9167,8 +9106,6 @@ akko.wtf, 1
akkoniq.com, 1
akkordeon-livemusik.de, 1
akkordy-skachat.ga, 1
-akkoremaji.club, 1
-akkorturizm.com, 1
akkumulator-kereso.hu, 1
akl.city, 1
aklagare.se, 1
@@ -9177,6 +9114,7 @@ akmens.id, 1
ako.gl, 1
akoben.cloud, 1
akoch.net, 1
+akode.in, 1
akoestischafbouwen.nl, 1
akonlineworks.tk, 1
akordeoiak.tk, 1
@@ -9231,7 +9169,10 @@ aktiv.pl, 1
aktivace.eu, 1
aktive-arbeitslose.at, 1
aktivierungscenter.de, 1
+aktivitetatil.com, 1
aktivpark-lumdatal.de, 1
+aktmedurna.com, 1
+aktmedurna.se, 1
aktransmission.com, 1
aktuel-urunler.com, 1
aktuelleprospekte.at, 1
@@ -9504,6 +9445,7 @@ alcatrazeast.com, 1
alcatraztourtickets.com, 1
alcazaar.com, 1
alchakov.tk, 1
+alchemicallabs.com, 1
alchemist-heaven.tk, 1
alchemisten.tk, 1
alchemiya.ru, 1
@@ -9674,7 +9616,6 @@ alexander-van-nieuwenhoven.tk, 1
alexander.dk, 1
alexanderandwilks.co.uk, 1
alexanderb.info, 1
-alexanderdagrape.com, 1
alexandererber.com, 0
alexanderfiss.de, 1
alexanderg.tk, 1
@@ -9784,7 +9725,6 @@ alextsang.net, 1
alextweewielers.tk, 1
alexustinoff.cf, 1
alexvdveen.nl, 1
-alexveil.com, 1
alexvetter.de, 0
alexweber.tk, 1
alexwiremesh.com, 1
@@ -9819,6 +9759,7 @@ alfambra.tk, 1
alfapack-shop.com, 1
alfaproweb.fr, 1
alfardanexchange.com, 1
+alfarisi.com, 1
alfastone.com.ua, 1
alfatar-milk.com, 1
alfateks.com.ua, 1
@@ -9884,6 +9825,7 @@ algorytm.tk, 1
algosec.com, 1
algotest.in, 1
alhamedeia.tk, 1
+alhayes.com, 1
alhomaidani.com, 1
alhost.ml, 1
alhs-archives.com, 1
@@ -9897,7 +9839,6 @@ aliads.com, 1
aliakpoyraz.com, 1
alialkurdy.tk, 1
aliamakeup.com, 1
-aliancadesentupidora.com.br, 1
alianet.org, 1
aliansinews.id, 1
aliantsoft.pl, 1
@@ -9917,14 +9858,12 @@ alice-memorial.de, 1
alice.tw, 1
alicebaldenegro.tk, 1
aliceboyle.net, 1
-alicecastle.com, 0
aliceforchildren.it, 1
alicehairstyling.tk, 1
-alicehartley.com, 1
alicekinkycat.net, 1
alicestudio.it, 1
alicetone.net, 1
-alicevardel.fr, 1
+alicevardel.fr, 0
alicia-carvalho.com, 1
alicialab.org, 1
alida.com, 1
@@ -9963,7 +9902,6 @@ aliim.gdn, 1
alikarslanov.tk, 1
alikasimoglu.com, 1
alikgriffin.com, 0
-alikulov.me, 1
alila.dog, 1
alilepro.cf, 1
alilialili.ga, 1
@@ -9980,7 +9918,6 @@ alimeta.it, 1
alimtyaz.estate, 1
alimwilliams.tk, 1
alinalamour.com, 1
-alinasmusicstudio.com, 1
alinatinen.cf, 1
alinatinen.gq, 1
aline-cannabis.com, 1
@@ -9993,7 +9930,6 @@ alinode.com, 1
alio.lt, 1
aliorange.com, 1
aliosmanyuksel.com.tr, 1
-alipub.com, 1
aliqorbani.ir, 1
alireza2love.tk, 1
alirezahesari.com, 1
@@ -10002,6 +9938,7 @@ alis-test.tk, 1
alisblog.ml, 1
alisceon.com, 1
alisearch.com, 1
+alisecure.com, 1
alishanova.tk, 1
alishapiro.com, 1
alisoft.gq, 1
@@ -10024,11 +9961,13 @@ alisy.de, 1
alisync.com, 1
alitabergert.tk, 1
alitajran.com, 1
+alitec.it, 0
alitpedia.ga, 1
alittledelightful.com, 1
aliud.be, 1
aliv.biz, 1
aliveinside.org, 1
+aliwuliu.com, 1
alix-board.de, 1
alixarmour.com, 1
aliyasin.org, 1
@@ -10039,6 +9978,7 @@ aljaspod.com, 1
aljaspod.hu, 1
aljaspod.net, 1
aljaspod.org, 1
+aljeel.ly, 1
aljfinance.com, 1
aljullusims.tk, 1
aljweb.com, 1
@@ -10050,6 +9990,7 @@ alkanbelgelendirme.com.tr, 1
alkel.info, 1
alkemy.mx, 1
alkesznevelde.hu, 1
+alkibiades-gc.de, 1
alko-centr.ru, 1
alko-stop.cf, 1
alko-stop.ml, 1
@@ -10226,12 +10167,10 @@ allerlei-havelte.nl, 1
allerstorfer.at, 1
allerzeiten.com, 1
allerzieleninhetvondelpark.nl, 1
-alles-kan.be, 1
alles-nur-ge.cloud, 1
alles.cx, 1
allesisgezondheid.nl, 1
allesisonline.nl, 1
-alleskan.gent, 1
alleskomtgoed.org, 1
allesmartphonehoesjes.nl, 1
allesovercrypto.nl, 0
@@ -10239,12 +10178,12 @@ allesoverdieren.tk, 1
allesoverhondentraining.tk, 1
allesoversport.nl, 1
allesrocknroll.de, 1
-allesuitdekast.be, 1
allesvoorbeton.be, 1
allesvoorniets.tk, 1
alletattoo.de, 1
allette.com.au, 1
allevamentoticinella.tk, 1
+alleventsrentals.com, 1
alleyread.com, 1
allfaithsfoodbank.org, 1
allfashionews.tk, 1
@@ -10254,7 +10193,6 @@ allfoodrecipes.ga, 1
allforex.ml, 1
allforhon.tk, 1
allforlocal.com, 1
-allform.se, 1
allfortips.com, 1
allfundsconnect.com, 1
allfur.love, 1
@@ -10286,7 +10224,6 @@ allianceblock.io, 1
allianceborderservices.com, 1
allianceforafreesociety.com, 1
allianceforafreesociety.net, 1
-allianceforafreesociety.org, 1
alliances-globalsolutions.com, 0
alliancesolutionsgrp.com, 1
allianskyrkan.se, 1
@@ -10305,7 +10242,6 @@ allindiajobs.ga, 1
allindiatanzeem.ml, 1
allindustriessolutions.com.au, 1
allinform.ga, 1
-allinformaura.com, 1
allinoutfits.com, 1
allinpdf.com, 1
allinsuranceinformation.com, 1
@@ -10366,7 +10302,6 @@ allpornvids.com, 1
allpost.co, 1
allprices.world, 1
allprints.tk, 1
-allproformation.com, 1
allproptonline.com, 1
allrad-buck.de, 1
allram.info, 1
@@ -10562,6 +10497,7 @@ alonsoluzgas.es, 1
alonuocsuoi.com, 1
aloo.ga, 1
aloomic.com.au, 1
+aloop.cloud, 1
alopezlawfirm.com, 1
alorimusic.es, 1
aloris-controle.fr, 1
@@ -10632,6 +10568,7 @@ alphadance.tk, 1
alphadefense.co.za, 1
alphadetroit.com.au, 1
alphadronten.tk, 1
+alphaenglish.net, 1
alphaetomega3d.fr, 1
alphagames.tk, 1
alphahosting.hu, 1
@@ -10643,6 +10580,7 @@ alphalibraries.com, 1
alphamosa.fr, 1
alphanodes.com, 1
alphapengu.in, 1
+alphaplastic.ru, 1
alphapoker.ru, 1
alphapoulsbo.org, 1
alphaprotech.com, 1
@@ -10676,13 +10614,11 @@ alpine-holiday.de, 1
alpinebank.com, 1
alpinedentalhealth.com, 1
alpinehighlandrealty.com, 1
-alpinenursinghome.com, 1
alpineplanet.com, 1
alpinepubliclibrary.org, 1
alpinestarmassage.com, 1
alpinewy.gov, 1
alplogopedia.it, 1
-alpparts.com, 1
alpstar.kiev.ua, 1
alqalamsch.com, 1
alqimia.org, 1
@@ -10692,11 +10628,12 @@ alquran-online.tk, 1
alr-photography.com, 1
alrahman.ch, 1
alrahman.de, 1
-alrashid-law.com, 1
alre-outillage.fr, 1
+alredaldaem.com, 1
alredho.com, 1
alrehmantech.tk, 1
alrioart.com, 1
+alriyada.ly, 1
alrobotics.net, 1
alroniks.com, 0
alrowadexchange.com, 1
@@ -10704,7 +10641,6 @@ alruknalswissre.com, 1
alsaagency.tk, 1
alsabil.tk, 1
alsace-informatique.shop, 1
-alsetat.com, 1
alsgourmetsausages.com, 1
alshabab.tk, 1
alshamil.tk, 1
@@ -10724,7 +10660,6 @@ alt-wien.com, 1
alt.org, 1
alta-densidad.tk, 1
alta-ict.nl, 1
-altaadhod.com, 1
altabadia.com, 1
altabadia.it, 1
altabash.tk, 1
@@ -10733,6 +10668,7 @@ altabg.com, 1
altabib.me, 1
altabooks.ga, 1
altacomunicazione.tk, 1
+altaef-group.com, 1
altahrim.net, 1
altai-info.ga, 1
altai-voyage.tk, 1
@@ -10754,7 +10690,6 @@ altametrics.com, 1
altana.com, 1
altana.de, 1
altaplana.be, 1
-altaroc.pe, 1
altartop.com, 1
altasierra.co.uk, 1
altavaldinon.com, 1
@@ -10769,9 +10704,7 @@ altdubai.com, 1
alte-wassermuehle-friesoythe.de, 1
altea.it, 1
altec.pl, 1
-altecgmbh.de, 1
altenagala.nl, 1
-altenahr.de, 1
alteralife.eu, 1
alteraro.com, 1
alteraro.org, 1
@@ -10858,7 +10791,6 @@ altmedicine.tk, 1
altmetric.com, 1
altoa.cz, 1
altodemo.de, 1
-altoinsuranceagency.com, 1
altoona-wi.gov, 1
altoonawater.gov, 1
altopartners.com, 0
@@ -10933,7 +10865,7 @@ alvastonauto.fi, 1
alves-avocat.com, 1
alviano.com, 0
alvicom.hu, 1
-alviere.com, 1
+alviere.com, 0
alvies-laufbus.de, 1
alvimedika.com.ua, 1
alvinalvelino.com, 1
@@ -10982,6 +10914,7 @@ am-executive-consulting.com, 1
am-i-on-am-i-on-drugs-dot-com.com, 1
am-i-on-drugs.com, 1
am-liaotian.com, 0
+am-pool.ru, 1
am-schlossgarten.haus, 1
am-sonnenblick.de, 1
am-sonnengarten.de, 1
@@ -11022,6 +10955,7 @@ amalfipositanoboatrental.com, 1
amalgaamvrij.tk, 1
amalgaamziekte.tk, 1
amalgamma.ml, 1
+amalgrp.com, 1
amalou-photografie.de, 1
amambebe.com, 1
amanaccept.com, 1
@@ -11136,6 +11070,7 @@ amberstudent.com, 1
ambertears.tk, 1
ambiance.work, 1
ambident.cz, 1
+ambience.sk, 1
ambient.digital, 1
ambientskies.tk, 1
ambigramasdecarmela.tk, 1
@@ -11195,9 +11130,7 @@ ameego.it, 1
ameego.net, 1
ameego.nl, 1
ameego.org, 1
-ameen.tech, 1
ameeradubai.com, 1
-ameerbaksh.cloud, 1
amees.me, 0
ameeventos.pt, 0
amefrec.co.jp, 1
@@ -11232,7 +11165,6 @@ americafamilylawcenter.org, 1
americafc.tk, 1
americahealthcare.tk, 1
americamilitar.com, 1
-american-auctioneers.com, 1
american-automotive.tk, 1
american-school-search.com, 1
americanaatbrand.com, 1
@@ -11261,7 +11193,6 @@ americanmessaging.net, 1
americanmusical.com, 0
americannationaldogregistry.org, 1
americanpointer.co, 1
-americanpop.be, 1
americanpridefund.com, 1
americanreels.com, 1
americanreservations.us, 1
@@ -11328,6 +11259,7 @@ amiabot.com, 1
amianto.milano.it, 1
amianto.roma.it, 1
amiatlanticare.com, 1
+amibistro.nl, 1
amica-travel.com, 1
amicalecanyon.ch, 0
amicare-france.com, 1
@@ -11445,7 +11377,6 @@ amoliogames.com, 1
amollare.com.br, 1
amon.tech, 1
among-us.me, 0
-amongtheflora.com, 1
amongus-guru.ru, 1
amongusmerch.co, 1
amoozesh98.ir, 1
@@ -11460,7 +11391,6 @@ amoresexo.pt, 1
amorgos-aegialis.com, 1
amorgosrentandgo.gr, 1
amorim.ca, 1
-amorloo.com, 1
amoroso-vivace.ch, 1
amorph.aero, 1
amorphis.tk, 1
@@ -11473,6 +11403,7 @@ amoryurgentcare.com, 1
amos.ovh, 1
amosca.tk, 1
amotarget.com, 0
+amotive.shop, 1
amoursucre.com, 1
amoxicillin-500mg.ga, 1
amoxicillin.cf, 1
@@ -11494,6 +11425,7 @@ ampedairsoft.com, 1
amper.kharkov.ua, 0
ampersandnbspsemicolon.com, 1
ampersandsmallbusiness.com, 1
+amperwatt.ch, 1
ampetronic.com, 1
ampflower.gay, 1
ampgroep.nl, 1
@@ -11540,7 +11472,6 @@ amsel305nc.ddnss.de, 1
amsev.de, 1
amsmart.hu, 1
amsochile.cl, 1
-amst.io, 1
amstelradio.tk, 1
amstelveentje.nl, 1
amsterdam.nl, 1
@@ -11583,11 +11514,9 @@ amvisualgraphics.com, 1
amwager.com, 1
amwine.ru, 1
amxm.aero, 1
-amxpj888.com, 0
amy-nichols.ga, 1
amyapets.tk, 1
amyfoundhermann.com, 1
-amyknickerbocker.com, 1
amymabel.com, 1
amymargolislcsw.com, 1
amymartiraphotography.com, 1
@@ -11665,6 +11594,7 @@ analisi-logica.it, 1
analisi-periodo.it, 1
analisi.roma.it, 1
analisiambientale.it, 1
+analisichimica.it, 1
analitik.ml, 1
analizator.tk, 1
analogfreeers.ga, 1
@@ -11785,8 +11715,10 @@ ancientlorevillage.com, 1
ancientnorth.com, 1
ancientnorth.nl, 1
anclarma.fr, 1
+anco.ly, 1
ancolies-andre.com, 0
anconatoday.it, 1
+ancuong.com, 1
and-stuff.nl, 1
and-tax.jp, 1
andain.com, 1
@@ -11869,10 +11801,10 @@ andreamcnett.com, 0
andreapalermo.tk, 1
andreapavone.com, 1
andreas-hildebrandt.com, 1
-andreas-kluge.eu, 1
andreas-kurtz.de, 1
andreaseracleous.com, 0
andreasfeusi.ch, 1
+andreasfotakis.com, 1
andreashartmann.net, 1
andreashellkvist.tk, 1
andreasjanker.de, 1
@@ -11908,7 +11840,6 @@ andresgarciapersonal.com, 1
andresgarciapersonal.es, 1
andresgarzon.net, 1
andresguiarealtor.com, 1
-andresparra.com.ar, 1
andrespaz.com, 1
andrespr.es, 1
andressaflores.com.br, 1
@@ -11932,21 +11863,19 @@ andrewglucas.net, 1
andrewhillphotography.com, 1
andrewimeson.com, 1
andrewin.ru, 1
-andrewjphotography.com, 1
andrewledwith.com, 1
andrewlloydwebberfoundation.com, 1
andrewmcfarlane.tk, 1
andrewmichaelsmith.com, 1
andrewmichaud.me, 1
andrewnet.net, 1
-andrewpeng.net, 1
andrewpucci.com, 0
andrewrdaws.com, 1
+andrewreaganm.com, 1
andrewrgoss.com, 1
andrewryno.com, 1
andrewsfasteners.uk, 1
andrewsnc.gov, 1
-andrewsoutar.com, 1
andrewsun.com, 1
andrewtasso.com, 1
andrewtaylor.eu, 1
@@ -11984,6 +11913,7 @@ androidfactory.io, 1
androidfinal.com, 1
androidgaming.tk, 1
androidhack.tk, 1
+androidham.com, 1
androidhry.cz, 1
androidioswindows18378.ml, 1
androidkatalog.cz, 1
@@ -12030,7 +11960,6 @@ andyclark.io, 0
andyconcreting.com.au, 1
andycraftz.eu, 1
andycrockett.io, 1
-andydominiquerak.com, 1
andyduong.work, 0
andyhost.no, 1
andyjohnsonart.com, 1
@@ -12154,6 +12083,7 @@ angie-webdesign.ch, 0
angiejones.com, 1
angielynx.net, 1
angiesite.tk, 1
+angioclinic.ch, 1
angiolinikids.it, 1
angione.ca, 1
angione.se, 1
@@ -12215,6 +12145,7 @@ anievo.id, 0
aniforprez.net, 1
anightmareonelmstreet.tk, 1
anihilated.tk, 1
+anihime.com, 1
anihonetwallpaper.com, 1
anikajulie.com, 1
anikaras.ga, 1
@@ -12314,7 +12245,6 @@ animelandia.tk, 1
animelatino.tk, 1
animelesson.ga, 1
animelime.ru, 1
-animemotivation.com, 1
animeonsen.xyz, 1
animepahe.ru, 0
animeplus1.tk, 1
@@ -12347,7 +12277,6 @@ anip.icu, 1
anipassion.com, 0
aniplus.cf, 1
aniplus.gq, 1
-anirutme.info, 1
anishathalye.com, 1
anishnayak.com, 1
anisimov.ml, 1
@@ -12371,7 +12300,6 @@ anjansundaram.com, 1
anjara.eu, 1
anjiurine.top, 1
anjocerdena.com, 1
-anjoola.com, 1
anjtransportsolutions.com.au, 1
anjunexpress.com.br, 1
ankam.com, 1
@@ -12414,6 +12342,7 @@ ankitpati.in, 1
ankitverma.me, 1
ankiuser.net, 1
ankiweb.net, 1
+anklepainclinic.sg, 1
ankos.cf, 1
ankosofttech.com, 1
ankosofttech.de, 1
@@ -12438,7 +12367,6 @@ anna-soriano.fr, 1
anna.info, 1
annaaurora.eu, 1
annabelmassina.net, 1
-annabet.com, 1
annadebrux.cf, 1
annadebrux.ga, 1
annadebrux.gq, 1
@@ -12464,7 +12392,7 @@ annavissi.tk, 1
annawagner.pl, 1
annaweb.tk, 1
annazweglinska.pl, 1
-anne-gb.ch, 0
+anne-gb.ch, 1
anne-marie.tk, 1
annechristinebrunel.fr, 1
anneeden-porn.com, 1
@@ -12491,6 +12419,7 @@ anney-life.com, 1
anniangel-porn.com, 1
annicascakes.nl, 1
anniecloth.com, 1
+anniegagnonphotographie.com, 1
anniekheffache.com, 1
anniesdollhouse.com, 1
annihilation-squad.tk, 1
@@ -12505,6 +12434,7 @@ annonces34.tk, 1
annonline.com, 1
annonseringonline.se, 1
announcement.tk, 1
+annovasolutions.com, 1
annoyinggui.de, 1
annoyingguide.de, 1
anns.eu, 1
@@ -12523,7 +12453,6 @@ annuncisesso.tk, 1
annyaurora.net, 1
annygraces.com, 1
annymail.com, 1
-anohana.org, 1
anokacountybuys.gov, 1
anokawineandspirits.gov, 1
anol.loan, 1
@@ -12585,7 +12514,6 @@ anp.it, 1
anpaju.gq, 1
anpigabon.ga, 1
anquankongjian.com, 1
-anquanssl.com, 1
anrworldwide.com, 1
ans-ge.ch, 0
ans-solutions.com, 1
@@ -12603,11 +12531,12 @@ ansgarsonntag.de, 1
anshar.eu, 1
anshdigiinfoways.com, 1
anshlag.co.il, 1
+anshulg.com, 1
ansibeast.net, 1
ansichtssache.at, 1
ansoffmatrix.com, 1
ansogning-sg.dk, 1
-anson.ru, 1
+anson.ru, 0
ansoncountync.gov, 1
ansperformance.eu, 1
ansrivarr.net, 1
@@ -12686,6 +12615,7 @@ anthonyellis.com, 1
anthonyellis.uk, 1
anthonyfontanez.com, 1
anthonylaberge.tk, 1
+anthonyloop.com, 1
anthonymineo.com, 0
anthonymrugacz.com, 1
anthonymrugacz.net, 1
@@ -12732,13 +12662,13 @@ anticonceptieportaal.nl, 0
anticorruption.tk, 1
anticoruptie.md, 1
antics.tk, 1
-antidayton.com, 0
antidepressants.tk, 1
antidopamine.com, 1
antidope.tk, 1
antidoping.tk, 1
antidotehealth.co.uk, 1
antidott.fr, 1
+antie.info, 1
antiekboerderijgraafland.nl, 1
antielectoral.tk, 1
antifa-bernau.tk, 1
@@ -12780,6 +12710,7 @@ antinatalism.com, 1
antinazi.org, 1
antincendio.it, 1
antincendio.roma.it, 1
+antinfortunistica.roma.it, 1
antipa.ch, 1
antipodi.ga, 1
antipolygraph.org, 1
@@ -12792,6 +12723,7 @@ antiquesinvestorsest.ga, 1
antireklams.tk, 1
antirepressionbayarea.com, 1
antiseptik.me, 1
+antishell.ru, 1
antisocialist.tk, 1
antispeciesism.com, 1
antispeciesist.com, 1
@@ -12800,6 +12732,7 @@ antistate.ch, 1
antistatik.tk, 1
antisystem.tk, 1
antitabak.tk, 1
+antitarlo.it, 1
antiuser.tk, 1
antivandal.tk, 1
antivigilancia.tk, 1
@@ -12866,7 +12799,6 @@ ants-and-me.ml, 1
ants-carte-grise.fr, 1
antsa.cc, 1
antsa.duckdns.org, 1
-antsiferov.eu, 1
antstoolbox.com, 1
antti.codes, 1
antts.uk, 1
@@ -12875,7 +12807,6 @@ antunes.com, 1
anturis.com, 1
antwerpist.com, 1
antwire.net, 1
-antyblokada.pl, 1
antyware.pl, 1
anubandarage.com, 1
anubislinux.tk, 1
@@ -13153,7 +13084,6 @@ api.recurly.com, 1
api.saxo, 1
api.spa, 1
api.tr, 1
-api2cart.com, 1
api42.ch, 1
api6.cfd, 1
api64.com, 1
@@ -13162,6 +13092,7 @@ apiary.supplies, 1
apiary.supply, 1
apicep.com, 1
apico-fish.ru, 1
+apicoltore.it, 1
apiculture.net, 1
apidatasource.com, 1
apidatasource.net, 1
@@ -13195,20 +13126,18 @@ apitpc.com.br, 1
apiu.me, 1
apix-drive.com, 1
apix.se, 1
+apixconvex.com, 1
apixmessaging.com, 1
apixplatform.com, 1
apk-world.cf, 1
apk.li, 1
apk4fun.com, 1
apkclup.com, 1
+apkcunk.com, 1
apkdv.com, 0
-apkfame.com, 1
-apkfuse.com, 1
-apkindirsene.com, 1
apkmaze.com, 1
apkmint.co, 1
apkmody.io, 1
-apknut.com, 1
apkpokemongo.ga, 1
apkpokemongo.gq, 1
apkpokemongo.tk, 1
@@ -13251,12 +13180,12 @@ apocalypsje.ga, 1
apod.com.au, 1
apod.ml, 1
apodis.pro, 1
-apodyoopsis.com, 1
apogaea.com, 1
apogeephoto.com, 1
apoguide.de, 1
apoia.se, 1
apoiocoletivo.com, 1
+apoioterapeutico.com, 1
apokalipsis.tk, 1
apola.best, 1
apolitical.co, 1
@@ -13299,6 +13228,7 @@ apostalegal.pt, 1
apostascomvalor.com, 1
apostasdesportivas.tv, 1
apostasecasinos.pt, 1
+apostasolida.com, 1
apostillelondon.com, 1
apostrophe.pl, 1
apotex.com, 1
@@ -13318,7 +13248,6 @@ app-control-fcu.de, 1
app-internalapps-v1-uat-crd-hd.azurewebsites.net, 1
app-novusportal-uat-ae.azurewebsites.net, 1
app-online.cloud, 1
-app-scantech.com, 1
app-scope.com, 1
app-sharepoint-v1-pro-crd-hd.azurewebsites.net, 1
app.do, 1
@@ -13364,8 +13293,11 @@ appemployees.tk, 1
appengine.google.com, 1
appetia.io, 1
appetiser.com.au, 1
+appetto.co, 1
appfollow.io, 1
appgeek.com.br, 1
+appgrowing.cn, 1
+appgrowing.net, 1
appgrowth.com, 1
appgurus.com.au, 1
appian-cdn-gov.com, 1
@@ -13396,6 +13328,7 @@ apple.tf, 1
apple.wf, 1
apple77.net, 1
applebank.com, 1
+applebee1558.com, 1
applebees.com, 1
applecare.cz, 1
applecommunity.net, 1
@@ -13435,7 +13368,6 @@ appliancepronwi.com, 1
appliancerepairteodor.com, 1
appliances-for-home.tk, 1
applicablesecurity.net, 1
-application-travel.us.com, 1
applicationmanager.gov, 1
applicationtracker.com, 1
applied-anthropology.com, 1
@@ -13459,7 +13391,6 @@ appmania.cf, 1
appmania.gq, 1
appmedia.tk, 1
appmeucredito.com.br, 1
-appmobile.io, 1
appninjas.com, 1
appo.nl, 1
appodeal.com, 1
@@ -13483,6 +13414,7 @@ apprenticeships.gov, 1
apprentimillionnaire.com, 1
approbo.com, 1
approve.me, 1
+approvedbynemko.com, 1
approvedcashmax.com, 1
approvedlawyersers.ga, 1
approveme.com, 1
@@ -13493,7 +13425,6 @@ apps4all.sytes.net, 1
apps4inter.net, 0
appsafrica.com, 1
appsbd.com, 1
-appsbud.com, 1
appscan360.com, 1
appscan360.net, 1
appscan360.org, 1
@@ -13509,13 +13440,11 @@ appsimplex.pt, 1
appsmith.com, 1
appsoda.net, 1
appspcwiki.com, 1
-appsren.com, 1
appsruntheworld.com, 1
appsterdam.rs, 1
appstory.co.kr, 1
appt.ch, 0
appt.to, 1
-apptesters.com, 1
apptio.com, 1
apptokens.com, 1
apptoutou.com, 1
@@ -13556,12 +13485,12 @@ aprilspecialsest.ga, 1
aprimatic.msk.ru, 1
aprincesadolar.pt, 1
apriorit.com, 1
-aprizalputra.my.id, 1
aprofunda.art.br, 1
apropoaalst.be, 1
apropont.hu, 1
apropotv.ro, 0
apropotv.tk, 1
+aprosoftwaresolutions.com, 1
aprovatotal.com.br, 1
aprpullmanportermuseum.org, 0
aprsdroid.org, 1
@@ -13595,7 +13524,6 @@ aptekas.tk, 1
aptern.pt, 1
apthesys.com, 1
aptient.com, 1
-aptinjectiontraining.com, 1
aptitudetests.org, 1
aptos.com, 1
apu-board.de, 1
@@ -13664,7 +13592,6 @@ aqualogis.co.uk, 1
aqualysis.nl, 0
aquamarin.icu, 1
aquamart.tk, 1
-aquanedra.ru, 1
aquantia.com, 1
aquapets.tk, 1
aquaphor.com, 1
@@ -13701,7 +13628,6 @@ aquienguate.com, 1
aquigenbio.com, 1
aquila.co.uk, 1
aquila.earth, 1
-aquilapayments.net, 1
aquilo-it.com, 1
aquilo-it.de, 1
aquimisa.com, 1
@@ -13769,12 +13695,13 @@ aragotownshipmn.gov, 1
arais.com, 1
araizahoteles.com, 1
arakanis.tk, 1
-arakomputer.com, 1
+arakomputer.com, 0
aral.ml, 1
araluenvalleyhotel.ga, 1
aralun.net, 1
aralys.com, 1
aramido.de, 1
+aramleisure.com, 1
aramloebmd.com, 1
aramyayinevi.com, 1
aranc.it, 1
@@ -13838,7 +13765,6 @@ arbounie.nl, 1
arbousier.com, 1
arbs09.de, 1
arbschg.com, 1
-arbu.eu, 0
arc-relight.com, 1
arc.int, 1
arc.net, 1
@@ -13884,7 +13810,6 @@ archeton.ga, 1
archframe.net, 1
archi.ve.it, 1
archicgi.com, 1
-archief-ocmwgent.be, 1
archijobbtp.com, 1
archimede.ovh, 1
archined.nl, 1
@@ -13971,7 +13896,6 @@ arcza.net, 0
arda.nl, 1
ardabil.tk, 1
ardacar.com, 1
-ardadanal.com, 1
ardakannews.tk, 1
ardania.de, 1
ardaninmutfagi.com, 1
@@ -14052,7 +13976,7 @@ arete.net, 1
aretemusic.tk, 1
areteortho.com.sg, 1
arethsu.se, 1
-arevonenergy.com, 1
+arevonenergy.com, 0
arexsigorta.com.tr, 1
arezzonotizie.it, 1
arfulus.com, 1
@@ -14122,8 +14046,8 @@ aricabus.tk, 1
aricaluchalibre.tk, 1
aridhia.com, 1
aridhia.io, 1
+ariebassie.nl, 1
arielasher.cf, 1
-arielenergyhealer.com, 1
arielhr.ca, 1
arielpereira.tk, 1
ariens.com, 1
@@ -14248,7 +14172,6 @@ arlenitas.com, 1
arleo.eu, 1
arlingtonmn.gov, 1
arlingtonva.gov, 1
-arllab.co.nz, 1
arlon.com, 1
arm.gov, 1
arma3.com, 1
@@ -14308,8 +14231,8 @@ arminpech.de, 1
armleads.com, 0
armo.re, 1
armo.sk, 1
-armoedebeleidgent.be, 1
armond.tk, 1
+armorcoatings.net, 1
armorcommercialroofing.com, 1
armorsoft.fr, 1
armorynode.net, 1
@@ -14380,7 +14303,6 @@ arockets.ru, 1
arod.tk, 1
arofabric.com, 1
arogov.com, 1
-arolariu.ro, 1
aroma-therapy.tk, 1
aroma-wave.com, 1
aroma24.ml, 1
@@ -14399,6 +14321,7 @@ aromatraining.com, 1
aromex.ml, 1
aron.ws, 1
aroncull.de, 1
+aronra.com, 1
aroofing.net, 1
aroonchande.com, 0
arooshi.website, 1
@@ -14441,7 +14364,6 @@ array.com, 1
array.io, 1
arrazane.com.br, 1
arrazola.org, 1
-arrival.com, 1
arrive.by, 0
arrivedconsulting.com, 1
arriveguidelines.org, 1
@@ -14478,7 +14400,6 @@ arshia.cf, 1
arshidazarine.tk, 1
arshina.su, 1
arshistorica.it, 1
-arsigroup.com, 1
arsindecor.com, 1
arsingh.com, 1
arsk1.com, 1
@@ -14522,7 +14443,8 @@ artakids.tk, 1
artandiplawfirm.com, 1
artane.gq, 1
artapardaz.com, 1
-artaurium.com, 1
+artapisserie.fr, 1
+artaurium.com, 0
artbalsam.com, 1
artbild-fotografie.de, 1
artbizu.com, 1
@@ -14569,6 +14491,7 @@ artemiy-plus.com.ua, 1
artemiz.tk, 1
artemoon.ml, 1
artemweb.tk, 1
+artepic.sk, 1
artepinas.tk, 1
arteproducciones.tk, 1
arteq.ga, 1
@@ -14646,7 +14569,6 @@ artigianolegno.it, 1
artigoagency.com, 1
artikel5ev.de, 1
artikel9.com, 1
-artiltd.co.uk, 1
artinfo.tk, 1
artioml.net, 1
artionet.ch, 1
@@ -14727,7 +14649,6 @@ arts.gov, 1
artsalon.tk, 1
artsautomotive.com, 1
artscanvas.org, 1
-artsformation.eu, 1
artsinbushwick.org, 1
artslife.com, 1
artsmagazine.com, 1
@@ -14739,6 +14660,7 @@ artstudioweb.tk, 1
artsy.cloud, 1
artsygrl.ca, 1
arttel-media.ru, 1
+arttempo.re, 1
arttill.com, 1
artucation.eu, 1
artup.company, 1
@@ -14767,7 +14689,7 @@ arty.name, 1
artycoz.fr, 1
artyengine.com, 1
artyhouse.be, 0
-artyoomka.ru, 1
+aru.fi, 1
aruanaseguradora.com.br, 1
arul.io, 1
aruna.de, 1
@@ -14820,7 +14742,7 @@ as-evalar.ru, 1
as-sklep.pl, 1
as-teplo.ru, 0
as.roma.it, 1
-as0.it, 1
+as1030.com, 1
as136964.com, 1
as136964.net, 1
as198768.eu.org, 1
@@ -14839,14 +14761,12 @@ as400566.net, 1
as41073.net, 1
as41405.net, 1
as54148.net, 1
-as6369.net, 1
as8423.net, 1
as8888.com, 1
asabacortoscaseros.tk, 1
asadatec.de, 1
asaduddinowaisi.tk, 1
asafaweb.com, 1
-asafguttman.com, 0
asafilm.co, 1
asafomba.com, 0
asahi-tax.or.jp, 1
@@ -14861,6 +14781,7 @@ asana.plus, 1
asancharge.tk, 1
asandu.eu, 1
asankomara.tk, 1
+asanprop.com, 1
asansol.tk, 1
asantosdev.com, 1
asanuma-clinic.jp, 1
@@ -14877,7 +14798,6 @@ asart.bg, 1
asas-tn.org, 1
asasesoria.cl, 1
asastra.ovh, 1
-asatahvieh.com, 1
asato-jewelry.com, 1
asb-cam.com, 1
asb.edu.my, 0
@@ -14892,6 +14812,7 @@ asbestosthedarkarts.com, 1
asbf-rambouillet.fr, 1
asbhive.edu.my, 0
asbito.de, 1
+asbrands.co.uk, 0
asburyparkreporter.com, 1
asbweb.org, 1
asc.com.qa, 1
@@ -14929,10 +14850,8 @@ asd.gov.au, 0
asdchieti.tk, 1
asdetrifolium.com, 1
asdf.one, 1
-asdfghjkllove.net, 1
asdfqwerty.duckdns.org, 1
asdwfwqd.com, 1
-asdyx.de, 1
aseannow.com, 1
asecla.com, 1
asecus.ch, 1
@@ -15006,7 +14925,6 @@ ashkloud.com, 1
ashlandcountywi.gov, 1
ashlandoregon.gov, 1
ashlee-club.tk, 1
-ashley.host, 1
ashley.net.in, 1
ashleyadum.com, 1
ashleyanderson.co.uk, 1
@@ -15042,6 +14960,7 @@ asiaceo.com, 1
asiacommerce.id, 1
asiadirect.co.th, 1
asiafaninfo.net, 1
+asiaferguson.com, 1
asiafood-curator.com, 1
asiagate.ga, 1
asiagps.com, 1
@@ -15068,7 +14987,6 @@ asianlifestyledesign.com, 1
asianmain.com, 1
asianmoney.biz, 1
asianray.com, 1
-asianshop.com.pe, 1
asiansnus.com, 1
asiansongs.tk, 1
asianspa.co.uk, 1
@@ -15087,7 +15005,6 @@ asiaviews.com, 1
asiaville.in, 1
asiayuan.com, 1
asiba.com.au, 1
-asico.ae, 1
asicodevelopments.ae, 1
asicxchange.com, 1
asier.tk, 1
@@ -15106,15 +15023,11 @@ asisee.co.il, 1
asistencialegal.tk, 1
asistentecx.com, 1
asistko.si, 1
-asitanc.com, 1
asitanc.cz, 1
asiyasia.tk, 1
-ask.fi, 1
ask.stg.fedoraproject.org, 1
ask1.org, 1
askapkmod.com, 1
-askaret.cz, 1
-askart.com, 1
askartza.com, 1
askatechnicalquestion.com, 1
askatechnicalquestion.eu, 1
@@ -15127,7 +15040,9 @@ askcascade.com, 0
askdeliver.tk, 1
asker-massasje.no, 1
askerweb.cf, 1
+askeverythingonline.com, 1
askeygeek.com, 1
+askfoto.com, 1
askfront.com, 0
askgamblers.com, 1
askimsin.com, 1
@@ -15196,7 +15111,8 @@ asonaderi2002.tk, 1
asotpropertyservices.com.au, 0
asoziales-netzwerk.net, 1
asp-progress.tk, 1
-asp.net, 1
+asp.net, 0
+aspacedesignstudio.com, 1
aspaceib.org, 1
asparisagra.it, 1
aspec-mdl.de, 1
@@ -15206,7 +15122,6 @@ aspencat.tk, 1
aspenmedical.com, 1
aspenpsychologywy.com, 0
aspenvocational.com, 1
-aspera.com, 1
aspernallee.at, 1
asphaltfruehling.de, 1
asphaltsolutionsnc.com, 1
@@ -15315,11 +15230,13 @@ assistentesanitario.it, 1
assistenza.ca, 1
assistenzaferrodastiro.org, 1
assistenzafrigorifero.org, 1
+assistenzamedica.it, 1
assistenzamicroonde.org, 1
assistere-a-casa.it, 1
assistere-a-domicilio.it, 1
assistere-in-famiglia.it, 1
assistivebathing.co.uk, 1
+assistlink.io, 1
assistmedica.com, 1
assistouest.fr, 1
assistouest.net, 1
@@ -15333,6 +15250,7 @@ associationvision.com, 1
associazioneaisc.org, 1
associazionerimborsi.it, 1
associazioneterra.it, 1
+assoft.co, 1
assomydesk.fr, 1
assoservicesweb.org, 1
asspoop.com, 1
@@ -15355,7 +15273,6 @@ astana.cf, 1
astanainform.tk, 1
astanakz.tk, 1
astaninki.com, 1
-astano.ch, 1
astano.com, 1
astano.tk, 1
astanor.com, 1
@@ -15489,19 +15406,16 @@ astucas.com, 1
astucedirecte.tk, 1
astucewebmaster.com, 1
astuna.de, 1
-astur.camp, 1
astur.school, 1
astur.travel, 1
asturhackers.es, 1
astutetm.com, 1
-astutikhonda.com, 1
astutr.co, 1
astyork.com, 1
astypic.fr, 1
asual.com, 1
asuamaytinh.com, 1
asucrews.com, 1
-asufte.com, 1
asugsvsummit.com, 1
asuhornettribune.com, 1
asuikit.com, 1
@@ -15542,7 +15456,6 @@ at2-architecten.be, 1
at5.nl, 1
atabas.com.tr, 1
atabekandco.com, 1
-atabekkoleji.k12.tr, 1
ataber.pw, 1
atabor.tk, 1
atacado.com.vc, 1
@@ -15570,7 +15483,6 @@ ataton.ch, 0
atayatirim.com.tr, 1
atayia.com, 1
atbtaxi.com, 1
-atc-fr.com, 1
atc.cuneo.it, 1
atc.io, 0
atccareer.com, 1
@@ -15598,7 +15510,6 @@ atelier-naruby.cz, 1
atelier-rk.com, 1
atelier-viennois-cannes.fr, 1
atelierbeautebk.com, 1
-atelierbrunette.com, 1
atelierbw.com, 1
ateliercommerce.com, 1
atelierdelachaine.fr, 1
@@ -15607,6 +15518,7 @@ atelierdeloulou.fr, 1
atelierdesflammesnoires.fr, 1
atelierferro.be, 1
atelierhsn.com, 1
+atelierica.sk, 1
atelierjs.com, 1
atelierkuni.jp, 1
atelierlk.art, 1
@@ -15633,9 +15545,19 @@ atgseed.co.uk, 1
atgseed.uk, 1
atgweb.es, 0
atheism.org, 1
+atheismappreciationday.com, 1
+atheismeverywhere.com, 1
+atheismfaq.com, 1
+atheismhalloffame.com, 1
atheist-refugees.com, 1
+atheistappreciationday.com, 1
+atheistblogroll.com, 1
+atheistdoctrine.com, 1
atheistfoundation.org.au, 1
atheistfrontier.com, 1
+atheisthalloffame.com, 1
+atheisthelpline.com, 1
+atheistwisdom.com, 1
athekiu.com, 1
athelstanewiclerk.gov, 1
athena-security.net, 1
@@ -15661,7 +15583,6 @@ athleticstore.bg, 1
athlin.de, 1
athome-nextcloud.ddns.net, 1
athomedeco.fr, 1
-athomerealtyonline.com, 1
athoris.net, 1
athritisexplained.com, 1
atide.cf, 1
@@ -15702,10 +15623,8 @@ atl-paas.net, 0
atlacademy.org, 1
atlan.digital, 1
atlan.nl, 1
-atlanta-airport-parking.com, 1
atlantacustomfab.com, 1
atlantahealthcare.tk, 1
-atlantajewishconnector.com, 1
atlantajewishlifefestival.com, 1
atlantatai.org, 1
atlantclinical.com, 1
@@ -15728,6 +15647,7 @@ atlantikwall.ga, 1
atlantischild.hu, 1
atlantisdx.de, 1
atlantishop.si, 1
+atlantismd.com, 1
atlantistowingservice.com, 1
atlantiswaterproofing.com, 0
atlantium.tk, 1
@@ -15768,7 +15688,6 @@ atlassignsandplaques.com, 1
atlastax.ga, 1
atlastaxi.eu, 1
atlastravelvic.com.au, 1
-atlastrekexperience.com, 1
atlastube.com, 1
atlasuno.com, 1
atlaswu.com, 1
@@ -15777,6 +15696,7 @@ atlcranetrucks.com.au, 1
atletico-guacuano.tk, 1
atletika.hu, 1
atletismomacotera.tk, 1
+atlhypertensioninitiative.org, 0
atlucknow.com, 1
atm-bur.ru, 1
atm-erasmus.com, 1
@@ -15868,7 +15788,6 @@ atropos.co, 1
ats.net, 1
atsol.com, 1
atspeeds.com, 1
-att-lda.pt, 1
attac.us, 0
attanasioluigi.tk, 1
attatroll.de, 1
@@ -15907,6 +15826,7 @@ attogtech.com, 1
attorneybiographies.ga, 1
attorneybiographiesest.ga, 1
attorneyclark.com, 1
+attorneygeneral.gov.ly, 1
attosoft.tk, 1
attractant.com, 1
attractieparken.tk, 1
@@ -15919,6 +15839,7 @@ atuendomr.com, 1
atugan.com, 1
atuin.be, 1
atulhost.com, 1
+atumfire.ru, 1
atunel.tk, 1
atvirtual.at, 1
atvlifesaver.net, 1
@@ -15960,13 +15881,13 @@ aubepine-restaurant.com, 1
aubergegilly.ch, 0
aubi-plus.de, 1
aubio.org, 1
-aubry.org, 1
auburn-housekeeper.com, 1
auburnma.gov, 1
auburnmi.gov, 1
auburnpub.com, 1
auc.ch, 1
aucarresainteloi.com, 1
+aucc.com.ly, 1
aucc.org.nz, 1
aucem.com, 1
auchan.fr, 1
@@ -15989,10 +15910,12 @@ audible, 1
audiclubbahrain.com, 1
audifs.com, 0
audilio.it, 1
+audio-arte.pt, 1
audio-detector.com, 1
audio-extractor.net, 1
audio-joiner.com, 1
audio.servemp3.com, 1
+audioaidynamics.com, 1
audiobit.es, 1
audioblackmagic.com, 1
audiobone.com, 1
@@ -16015,7 +15938,6 @@ audiohub.de, 1
audiohub.fr, 1
audiokinetic.com, 1
audiolegendsny.com, 1
-audiolibri.org, 1
audiologistdirectory.com, 1
audiolot.com, 1
audiomedica.com, 1
@@ -16026,6 +15948,7 @@ audionpack.de, 1
audioonly.stream, 1
audiophiledirectory.com, 1
audioplugin.deals, 1
+audiorental.net, 1
audios.tk, 1
audioscenic.co.uk, 1
audioscenic.com, 1
@@ -16034,10 +15957,10 @@ audioschoolonline.com, 1
audiosite.net, 1
audioslave.tk, 1
audiotrace.tk, 1
-audioturret.com, 1
audiovegas.com, 1
audiovisualmurciano.tk, 1
audisto.com, 1
+audit.gov.ly, 1
audit.one, 1
audit.ovh, 1
audit.tw, 1
@@ -16058,6 +15981,7 @@ auerbach-verlag.de, 1
aufay.me, 1
aufeergroup.eu, 1
aufeerjob.cz, 1
+aufiowilauf.at, 1
aufmerksamkeitsstudie.com, 1
aufprise.de, 1
aufschieben.com, 1
@@ -16066,7 +15990,6 @@ auftragsfertigung.at, 1
aufwachzeit.at, 1
aufwachzeit.com, 1
aufwecken.dynu.net, 1
-augehost.com, 1
augendre.info, 1
augenklappe.com, 1
augenlaser-chemnitz.de, 1
@@ -16078,7 +16001,6 @@ augenlaserzentrum-dresden.eu, 1
augeo.pt, 1
augeomarketing.com, 1
augesen.tk, 1
-aughrs.com, 1
augix.net, 1
augmedia.com, 1
augmedix.com, 0
@@ -16087,7 +16009,7 @@ augmentin.ga, 1
augmentin.gq, 1
augmentines600.ga, 1
augredutemps.ca, 1
-augur.us, 1
+augur.us, 0
auguri-shop.ro, 1
august-hoegn.tk, 1
august.me, 1
@@ -16123,7 +16045,6 @@ aumc.net, 1
aumigona.com, 1
aumilieudumonde.gf, 1
aumpram.org, 1
-aunali1.com, 1
auntiesnorkel.com, 1
auntmia.com, 1
aunto.xyz, 1
@@ -16213,10 +16134,10 @@ ausgrants.com, 1
ausgrants.com.au, 1
ausics.net, 1
ausielogistics.com.au, 1
-ausim.com, 1
auskast.com, 1
auskate.tk, 1
auskunftsbegehren.at, 1
+ausl.mo.it, 1
auslandberatung-ausbildung.de, 1
auslandberatungausbildung.de, 1
auslandsberatung-ausbildung.de, 1
@@ -16229,7 +16150,6 @@ aussagen.com, 1
ausschreibungen-suedtirol.it, 1
ausset.me, 1
aussiebum.com, 1
-aussiefinances.com.au, 1
aussiefunadvisor.com, 0
aussiegrants.au, 1
aussiegrants.com, 1
@@ -16256,6 +16176,7 @@ austinlaw.co.uk, 1
austinonline.tk, 1
austinoutline.com, 1
austinoverheaddoorcompany.com, 0
+austinrifleclub.org, 1
austinsutphin.com, 1
austinuniversityhouse.com, 1
australiabusinessblog.com, 0
@@ -16267,7 +16188,7 @@ australianairbrushedtattoos.com.au, 1
australianallnaturalskincare.com.au, 1
australianattractions.com.au, 1
australiancattle.dog, 1
-australiancurriculum.edu.au, 1
+australiancurriculum.edu.au, 0
australiangeographictravel.com, 1
australiangold.it, 1
australiangold.net, 1
@@ -16299,7 +16220,6 @@ autenti.com, 1
autenticismo.tk, 1
autenticoperfumes.com.br, 1
autereband.tk, 1
-auth.adult, 1
auth.cool, 1
auth.mail.ru, 1
auth.tiaa.org, 1
@@ -16310,7 +16230,6 @@ authelia.com, 1
authenteak.com, 1
authenticate.computer, 1
authentication.directory, 1
-authenticbbw.com, 1
authenticfoodquest.com, 1
authentick.online, 1
authentick.systems, 1
@@ -16322,7 +16241,6 @@ authland.com, 1
author-it.com, 1
author.cn, 1
author24.info, 1
-authorbriannamacmahon.com, 1
authorise.computer, 1
authorise.network, 1
authoritysolutions.com, 1
@@ -16344,6 +16262,7 @@ auto-arsenal.tk, 1
auto-borse.tk, 1
auto-delchev.com, 1
auto-ecole-du-tursan.fr, 1
+auto-ecole-remparts.fr, 1
auto-help.tk, 1
auto-i-dat.ch, 1
auto-market.tk, 1
@@ -16369,8 +16288,6 @@ autoamericas.show, 1
autoamor.com.br, 1
autoangels.ga, 1
autoankaufen.com, 1
-autoanzeige.com, 1
-autoarena.fr, 1
autoauctionsarizona.com, 1
autoauctionsohio.com, 1
autoauctionsvirginia.com, 1
@@ -16409,7 +16326,6 @@ autocoder.chat, 1
autoconcept.ga, 1
autoconcept.tk, 1
autocorner.com, 1
-autocost.com, 1
autocross.tk, 1
autocrossfoto.tk, 1
autocrossonline.tk, 1
@@ -16434,6 +16350,7 @@ autoeet.cz, 1
autoelettricaperbambini.com, 1
autoentrepreneurinfo.com, 1
autoepc.ro, 1
+autoevolution.com, 1
autoexplore.ai, 1
autoexprez.com, 1
autofeliz.cl, 1
@@ -16449,13 +16366,11 @@ autogear.ga, 1
autogeizer.ru, 1
autoglascenter.com, 1
autoglasskobra.bg, 1
-autografer.com, 1
autograph.io, 1
autohaus-brueggemann.de, 1
autohaus.ink, 1
autohausmf-nord.de, 1
autohaussued.de, 0
-autohaussued.gmbh, 1
autohero.com.au, 1
autohit.ro, 1
autohomehub.com, 1
@@ -16468,10 +16383,10 @@ autoindustriya.com, 1
autoinfa.tk, 1
autoinkoop.tk, 1
autoinsurancehavasu.com, 1
-autoinsurancend.info, 1
autojur.com.br, 1
autokasko.tk, 1
autokino-sachsen.de, 1
+autoklub.cz, 1
autoknife.cf, 1
autokontinent.ml, 1
autokovrik-diskont.ru, 1
@@ -16484,6 +16399,7 @@ autoledky.sk, 1
autolet.tk, 1
autoline.link, 1
autologix.io, 1
+automa.biz, 1
automaatic.com, 1
automacro.com, 1
automagischeberegening.nl, 1
@@ -16683,7 +16599,6 @@ autopartsprime.com, 1
autopartsu.com, 1
autopaulito.pt, 0
autopecasjoaquinense.com.br, 1
-autopet.com, 1
autopilotapp.com, 1
autopinturasonline.com, 1
autopistadelitata.cl, 1
@@ -16694,6 +16609,7 @@ autoporn.com, 1
autoportal.tk, 1
autopril.com, 1
autoprogconsortium.ga, 1
+autops.ma, 1
autorabit.com, 1
autorai.nl, 1
autorama.cf, 1
@@ -16737,6 +16653,7 @@ autospurgo.it, 1
autospurgo.milano.it, 1
autospurgo.name, 1
autostationsest.ga, 1
+autostickere.ro, 1
autostodulky.cz, 1
autostop-occasions.be, 1
autostoresystem.com, 1
@@ -16791,7 +16708,6 @@ auts.fi, 0
autumnhungary.tk, 1
autumnmanor.com, 1
autya.ga, 1
-auverdrift.ovh, 1
auvernet.org, 1
auversum.com, 1
auvicom.nl, 1
@@ -16807,6 +16723,7 @@ auxilius.be, 1
auxion.net, 1
auxmode.com, 1
av-autoparts.gr, 1
+av-bracht.de, 1
av-dnepr.com.ua, 1
av-th.net, 1
av-yummy.com, 1
@@ -16819,7 +16736,6 @@ avaamo.com, 1
avaawards.com, 1
avaaz.org, 1
avabuswell.com, 1
-avacariu.me, 1
avacatossiu.tk, 1
avaclub.ga, 1
avacourcelles.com, 1
@@ -16865,7 +16781,6 @@ avanade.org, 1
avanadeblog.com, 1
avanadeconsulting.com, 1
avanadeonline.com, 1
-avancen.com, 1
avangard-tovar.tk, 1
avangard.tk, 1
avangardgold.com, 1
@@ -16896,6 +16811,8 @@ avatedu.com, 1
avature.net, 1
avaxprices.com, 1
avcd.by, 1
+avci.org.tr, 1
+avci.tr, 1
avcipets.com, 1
avdagic.net, 1
ave.zone, 1
@@ -16913,7 +16830,6 @@ avelinodiaz.gal, 1
avellinotoday.it, 1
aveloair.com, 1
avelon.cloud, 1
-avelux.ru, 1
avenad.com, 1
avenad.net, 1
avenade.com, 1
@@ -16928,7 +16844,7 @@ avenir-now.at, 1
avenir-now.ch, 1
avenir-now.com, 1
avenir-now.de, 1
-avensure.com, 0
+avensure.com, 1
avensurereviews.com, 1
aventabarbados.com, 1
aventajamaica.com, 1
@@ -16949,6 +16865,7 @@ avertoni.ru, 1
averywinters.org, 1
aves.asso.fr, 1
aveshost.com, 1
+avestabegravningsbyra.se, 1
avestagames.tk, 1
avevad.com, 1
avexis.com, 1
@@ -17040,7 +16957,6 @@ avlasov.tk, 1
avlover.com, 1
avm-multimedia.com, 1
avm99963.com, 1
-avmemo.com, 1
avmtn.net, 1
avmup.com, 1
avn-buses.tk, 1
@@ -17082,6 +16998,7 @@ avontuurlijk-natuurlijk.be, 1
avonvets.co.uk, 1
avoonix.com, 1
avounossoupes.be, 0
+avow.asia, 1
avp-emobility.de, 1
avpres.net, 0
avptp.org, 1
@@ -17117,7 +17034,6 @@ avtomaniya.ml, 1
avtomaniya.tk, 1
avtomarket.ru, 1
avtoobzor.tk, 1
-avtoskorost.com, 1
avtostolica.tk, 1
avtoucheba.tk, 1
avtours.gr, 1
@@ -17146,7 +17062,6 @@ awake-in.com, 1
awakengr.com, 0
awakening-guild.com, 1
awakenplace.tk, 1
-awakenplace.top, 1
awakenwow.ga, 1
awakinn.co.in, 1
awamally.com, 1
@@ -17167,6 +17082,7 @@ awaresec.com, 1
awaresec.no, 1
awareservices.com, 0
awaretrain.com, 1
+awarify.io, 1
awarity.be, 1
awaro.net, 1
awaua.nl, 0
@@ -17183,10 +17099,10 @@ awena.xyz, 1
awersomecreatorfromrussia.tk, 1
awesome-coconut-software.fr, 1
awesomebible.de, 1
+awesomegamesstudio.com, 1
awesomeindie.com, 1
awesomelifedeals.today, 1
awesomeperfumes.com, 1
-awesomepictures.me, 1
awesomesheep48.ca, 1
awesomesit.es, 0
awf0.xyz, 1
@@ -17202,12 +17118,12 @@ awo-bremen.de, 1
awo-sh.de, 1
awoau.com.au, 1
awomansplacenj.com, 1
+awqaf.gov.ly, 1
awrd.cz, 1
aws-cleaning.cc, 1
aws.com, 1
awsbs.de, 1
awscloudrecipes.com, 1
-awshirt.com, 1
awsl.blog, 1
awsl.tech, 0
awsnuke.com, 1
@@ -17217,7 +17133,7 @@ awsumchan.org, 1
awtogid.com, 1
awxg.com, 1
awxg.eu.org, 1
-awxg.net, 0
+ax.ax, 1
ax.mk, 1
ax4health.nl, 1
axa-mandiri.co.id, 1
@@ -17241,6 +17157,7 @@ axelname.ru, 1
axelr.me, 1
axeltheune.de, 1
axelvoss.eu, 0
+axelyum.com, 1
axendia.com, 1
axenhus.com, 1
axenhus.se, 1
@@ -17252,7 +17169,6 @@ axesslab.se, 1
axfootar.com, 1
axfr.se, 1
axg.io, 1
-axiadira.com, 1
axialhouse.cf, 1
axiam-pc.co.uk, 1
axiams.co.uk, 1
@@ -17293,11 +17209,10 @@ axitolending.com.au, 1
axl.net, 1
axmedmessi.tk, 1
axoftglobal.com, 1
-axoftglobal.ru, 1
axolotagencia.com, 1
axomatic.com, 0
axomatic.it, 1
-axome.com, 0
+axome.com, 1
axon-cable.in, 1
axon-toumpa.gr, 1
axon.link, 1
@@ -17330,6 +17245,7 @@ ayakatenshi.tk, 1
ayamchikchik.com, 1
ayanomimi.com, 1
ayanrp.com, 1
+ayari-yassine.com, 1
ayashev.kz, 1
ayatacademy.net, 1
ayatosuzuki.com, 1
@@ -17469,13 +17385,11 @@ az-moga.bg, 1
az-raven.com, 1
az-servisoken.cz, 1
az-vinyl-boden.de, 1
-az-wellness.com, 1
az.net.au, 1
az.search.yahoo.com, 0
az.st, 1
az.support, 1
az11018.com, 1
-az24saat.org, 1
aza.gg, 1
azadblog.tk, 1
azadliq.online, 1
@@ -17497,7 +17411,6 @@ azbuka-bp.com.ua, 1
azbuka-bp.ru, 0
azbuka-kharkov.com.ua, 1
azcensus2020.gov, 1
-azcontech.com, 1
azdailysun.com, 1
azdevsmartviewwebportal.azurewebsites.net, 1
aze.dk, 1
@@ -17517,7 +17430,6 @@ azeronline.tk, 1
azertyjobs.com, 1
azey.net, 1
azfreaks.tk, 1
-azgaragedoorsrepair.com, 1
azh-kunden.de, 1
azhamevents.com, 1
azhapasa.com, 1
@@ -17548,7 +17460,6 @@ aznaetelivy.ru, 1
azoft.com, 1
azon.gr, 1
azonicinfotech.com, 1
-azoogi.com.au, 1
azora.cf, 1
azorin.tk, 1
azort.com, 1
@@ -17632,6 +17543,7 @@ b-honey.gr, 1
b-institute.ml, 1
b-landia.net, 1
b-lenos.com, 1
+b-m-druck.de, 1
b-root-force.de, 1
b-services.net, 0
b-swiss.com, 1
@@ -17671,9 +17583,9 @@ b2bimmo.ch, 0
b2binpay.com, 0
b2bmail.ga, 1
b2bmuzikbank.com, 1
-b2bpartner.de, 1
b2bpoke.com, 1
b2btaz.com, 1
+b2c-engineering.com, 1
b2markt.de, 1
b2music.asia, 1
b2og.com, 1
@@ -17805,7 +17717,6 @@ ba7jcm.top, 1
ba7rain.tk, 1
baaam.se, 1
baac-dewellmed.com, 1
-baademarine.no, 1
baams.tk, 1
baaradvies.nl, 0
baas-becking.biology.utah.edu, 1
@@ -17833,7 +17744,6 @@ babb.is, 1
babbel.tk, 1
babbelchat.tk, 1
babbelforbusiness.com, 1
-babbelfuerunternehmen.de, 1
babblefeed.tk, 1
babehunt.tk, 1
babekids.tk, 1
@@ -17896,11 +17806,12 @@ babyhealthsummit.pt, 1
babyinthehouse.com.br, 1
babykappy.com, 1
babylonclub.cf, 1
-babymall.hk, 1
+babymall.hk, 0
babymasaze.cz, 1
babymozg.ga, 1
babynamen.nl, 1
babynames.net, 1
+babynamesdirect.com, 1
babynoise.tk, 1
babynow.org, 1
babypalooza.com, 1
@@ -17980,6 +17891,7 @@ backingtrackbrasil.com, 1
backinstockalerts.com, 1
backjump.tk, 1
backlashband.tk, 1
+backline.ai, 1
backlink-builder.tk, 1
backlink.gd, 1
backlinktr.tk, 1
@@ -18006,7 +17918,6 @@ backschues.net, 1
backseatbandits.com, 1
backslash-n.com, 1
backsliderz.uk, 1
-backstage.click, 1
backstienkboys.tk, 1
backstreetbrasil.tk, 1
backstreets-corner.tk, 1
@@ -18152,9 +18063,7 @@ baells.tk, 1
baer-concepts.de, 1
baer-holger.de, 0
baer.space, 1
-baerkarrer.ch, 1
baesystems-she.com, 1
-baeten.com, 0
baevserver.ddns.net, 1
bafito.com, 1
bafoeg-rechner.de, 1
@@ -18171,7 +18080,6 @@ baginfo.com, 1
bagiobella.com, 1
bagirahome.bg, 1
bagleytownshipmi.gov, 1
-bagmutskiy.com, 1
bagni-chimici.roma.it, 1
bagnichimici.milano.it, 1
bagnichimici.roma.it, 1
@@ -18215,7 +18123,6 @@ baic-versicherung.de, 1
baichi.cf, 1
baichi.ml, 1
baif.hr, 1
-baifin.com, 1
baifubao.com, 1
baija.it, 1
baikal-news.net, 1
@@ -18240,7 +18147,6 @@ bailonga.com, 1
baimail.com, 1
bain-savon.co.uk, 1
baindayman.com, 1
-baindetoile.fr, 1
bainnordiquebois.fr, 1
baipay.com, 1
baircentral.com, 1
@@ -18287,6 +18193,8 @@ bakaproxy.moe, 1
bakbi.tk, 1
bakchich.biz, 1
bakcor.com, 1
+bakeneko.academy, 1
+bakenekoacademy.com, 1
baker-street.tk, 1
bakerandfarmer.com.au, 1
bakercity.gov, 1
@@ -18297,7 +18205,6 @@ bakercounty911or.gov, 1
bakercountyor.gov, 1
bakercountysheriffor.gov, 1
bakerlawfirm.ca, 1
-bakersafari.co, 1
bakersfieldhomeoffer.com, 1
bakerviewdentalcentre.com, 1
bakerymazowsze.co.uk, 1
@@ -18309,7 +18216,6 @@ bakivaxti.az, 1
bakj.com, 1
bakkerij-janschrieks.nl, 1
bakkerinjebuurt.be, 1
-bakkerpanden.nl, 1
bakkersmolen.tk, 1
bakkerstraatfeesten.tk, 1
bakkt.com, 1
@@ -18368,8 +18274,6 @@ balboacapital.com, 1
balbus.tk, 1
balca.ga, 1
balcaonet.com.br, 1
-balconnet.com, 1
-balconsverdun.com, 0
balcony.cf, 1
baldinger.tk, 1
baldolinitraslochiroma.it, 1
@@ -18423,6 +18327,7 @@ ballast.tk, 1
ballblaster.co.nz, 1
ballbusting-cbt.com, 1
ballcancan.tk, 1
+balleagues.com, 0
ballejaune.com, 1
ballensiefen.net, 1
ballerkneipe.com, 1
@@ -18453,6 +18358,7 @@ balsamaiso.es, 1
balsara.com, 1
balski.com, 1
balslev.io, 1
+balsoftware.com, 1
balt.net, 1
balter.com, 1
balti.md, 1
@@ -18473,7 +18379,6 @@ bamaland.org, 1
bamasakht.com, 0
bambamthetanman.com, 0
bamberger-maelzerei.de, 1
-bambergerdatenschutz.de, 1
bamboehof.nl, 1
bamboo-team.online, 1
bambooagile.eu, 1
@@ -18509,7 +18414,6 @@ bananathrash.tk, 1
bananatreenews.today, 1
bananatrunkingprotocol.com, 1
bananavapes.com, 1
-bananavi.com, 1
bananenbr0t.de, 1
banania.fr, 1
bananice.moe, 1
@@ -18541,11 +18445,11 @@ bandarifamily.com, 1
bandaronline.ml, 1
bandarqonline.ga, 1
bandarqonline.ml, 1
-bandasdesenhadas.com, 1
bandaumnikov.ru, 1
bandbattle.tk, 1
bandbelievo.tk, 1
bandbwestport.com, 1
+bandconquista.com.br, 1
bandeaux.com, 1
bandeira1.com.br, 1
bandeiraeassociados.com.br, 1
@@ -18561,7 +18465,6 @@ bandidosmc.com, 1
bandiere-mondo.it, 1
bandiga.it, 1
bandirmaevdenevenakliyat.tk, 1
-bandjoun.com, 1
bandmentor.com, 1
bandmine.com, 1
bandnames.tk, 1
@@ -18578,7 +18481,6 @@ bandy2012.kz, 1
bandymasarna.tk, 1
baneh-academic.com, 1
banehunter.com, 0
-banensite.com, 1
banerka.tk, 1
banes-lab.com, 1
banes.ch, 1
@@ -18595,6 +18497,7 @@ bangbros.com, 1
bangdaiviet.tk, 1
bangedup.com, 1
bangers.cz, 1
+bangingtoolbox.com, 1
bangkok-thailand.org, 0
bangkokcookingclass.com, 1
bangkokflightservices.com, 1
@@ -18608,9 +18511,9 @@ banglatec.tk, 1
banglets.com, 1
bangsparks.com, 1
bangujero.tk, 1
-bangyu.wang, 1
banham.co.uk, 0
banham.com, 1
+banhphongtomquangtran.com, 1
bani-hashem.tk, 1
banijay.com, 1
banimarket.by, 0
@@ -18641,13 +18544,11 @@ banket-furshet-spb.ru, 1
banketbesteld.nl, 1
bankffin.kz, 0
bankfreeoffers.com, 1
-bankheadscandies.com, 1
bankheadvegetables.com, 1
bankhelp.gov, 1
bankid.com, 1
bankimsk.cf, 1
banking-services.tk, 1
-bankingadvisors.com, 1
bankingheralders.ga, 1
bankinter.pt, 1
bankiros.ru, 1
@@ -18662,26 +18563,15 @@ banknn.ru, 1
banknotesdelarue.com, 1
banknottakip.com, 1
bankofabbeville.com, 1
-bankofanhui.com, 1
-bankofbohai.com, 1
-bankofguangxi.com, 1
bankofguilin.com, 1
-bankofgulf.com, 1
-bankofhainan.com, 1
-bankofhankou.com, 1
bankofharbin.com, 1
-bankofhubei.com, 1
-bankoflanzhou.com, 1
bankofrealty.review, 1
bankofthesierra.com, 1
-bankofyunnan.com, 1
bankpolicies.com, 1
bankrbk.kz, 1
bankruptcy.ky, 1
bankruptcyattorneys.org, 1
-banksampoerna.com, 1
banksite.ga, 1
-banksmalaysia.com, 1
banksocial.io, 1
banksouthern.com, 0
banksulselbar.co.id, 1
@@ -18689,11 +18579,10 @@ banksynergy.com, 1
banktatigebon.cf, 1
banktender.ga, 1
banktool.com, 1
-bankvanbreda.be, 1
+bankvanbreda.be, 0
bankwithfidelity.com, 1
bankwithpioneer.com, 1
banland.net, 1
-banlinhdanong.com, 0
banmapvn.com, 1
banned-bitches.tk, 1
banner-design.tk, 1
@@ -18713,7 +18602,7 @@ bannockcounty.gov, 1
bannockcountyidaho.gov, 1
bannsecurity.com, 1
banquetestorrefuerte.com.mx, 1
-banquevanbreda.be, 1
+banquevanbreda.be, 0
banri.me, 1
bansalacademy.com, 1
bantaihost.com, 1
@@ -18734,7 +18623,6 @@ banzhuti.com, 1
bao-in.net, 1
baobabgroup.com, 1
baobaoquming.net, 0
-baobaoxiong.com, 1
baobiao.com, 1
baocheng.tech, 1
baofuzhuan.com, 1
@@ -18743,10 +18631,8 @@ baoge55.com, 1
baogiathicongnoithat.com, 1
baokhangfood.com, 1
baokhanhhoa.vn, 1
-baolu.com, 1
baoqiang.com, 1
baoquangninh.vn, 1
-baoshijie.com, 1
baoshun.com, 1
baoxiache.com, 1
baoxue5.com, 0
@@ -18818,7 +18704,7 @@ barcodelookup.com, 1
barcoder.tk, 1
barcodesinc.com, 1
barcodewiz.com, 1
-barcotrucks.com, 1
+barcotrucks.com, 0
bard-college.com, 1
bard-college.net, 1
bardak.ga, 1
@@ -18828,6 +18714,7 @@ bardes.org, 1
bardfarm.org, 1
bardian.net, 1
bardian.org, 1
+bardiharborow.com, 1
bardoferry.com, 1
bardtech.com, 1
barduschinamusic.org, 1
@@ -18888,6 +18775,7 @@ barnabycolby.io, 1
barnacional.com.au, 1
barnaul-altai.tk, 1
barnaul-news.net, 1
+barnesmoregapgreenway.ie, 1
barnesvilleohio.gov, 1
barneveldcentrum.nl, 1
barney-media.com, 1
@@ -18988,7 +18876,6 @@ bas.coffee, 1
bas.sh, 1
bas.surf, 1
bas.work, 1
-basano.com, 1
basauristudios.com, 1
basaveshwaraborewells.tk, 1
basculasconfiables.com, 1
@@ -19009,7 +18896,6 @@ baseballsavings.com, 1
basebyte.nl, 1
basecamp.cf, 1
basecampstudios.com, 1
-basechina.com, 1
baseconvert.com, 1
basecore.co, 1
based.gr, 1
@@ -19060,6 +18946,7 @@ basic.is, 1
basic.space, 1
basicapparel.de, 1
basicattentiontoken.org, 1
+basicblock.cz, 1
basicguitarlessons.com, 1
basicknowledge101.com, 1
basiclimits.tk, 1
@@ -19079,7 +18966,6 @@ basilm.co, 1
basilsys.com, 1
basirahang.com, 1
basis-online.eu, 1
-basisofcare.com, 1
basisonline.nl, 1
basisonlinefiles.nl, 1
basisschoolhundelgem.be, 1
@@ -19113,7 +18999,6 @@ bassdentistry.com, 1
basse-chaine.info, 1
bassethound.tk, 1
bassguy.tk, 1
-basshill.com, 1
bassislandline.com.au, 1
basskickers.tk, 1
bassment.org, 1
@@ -19123,7 +19008,6 @@ bassresource.com, 1
bassrhymeposse.tk, 1
bassrider.eu, 1
bassstraitmaritimecentre.com.au, 1
-bassus.com, 1
bassys.com.co, 1
bastakka.eu, 0
bastanet.tk, 1
@@ -19180,6 +19064,7 @@ batch-media.de, 1
batch.com, 0
batchfoundation.org, 1
batchroom.com, 1
+batdongsanmb.vn, 1
bateaux-sans-permis.com, 0
batechnic.dk, 1
batelco.com, 1
@@ -19225,7 +19110,6 @@ batonger.com, 1
bats.ch, 1
bats.gov, 1
batstrading.com, 1
-batswana.com, 1
batten-family.uk, 1
batten.eu.org, 1
batterie-au-top.com, 0
@@ -19238,12 +19122,12 @@ batteryreconditioning.ml, 1
battl-victory-records.com, 1
battle-arena.tk, 1
battle-game.com, 1
-battlebucks.com, 1
battlefield1942.tk, 1
battleforkhashuri.tk, 1
battlefrontoldschool.cf, 1
battlegroundproductions.org, 1
battleguard.net, 1
+battlemedialab.com, 1
battleofthegridiron.com, 1
battlerealms.cc, 1
battlerite.tk, 1
@@ -19262,9 +19146,6 @@ batwatt.com, 1
bau-holler.de, 1
bau.ua, 1
baubau.bg, 1
-baubeach.com, 1
-bauchon.com, 1
-bauchredner-zauberer.de, 1
bauchtanz.tk, 1
bauer-plus.de, 1
bauer-reininghorses.com, 1
@@ -19303,7 +19184,6 @@ baumansound.com, 1
baumbet.ro, 1
baumfreund.ch, 1
baumgarten-sanitaer.de, 1
-baumkataster-flensburg.de, 1
baumkletterschule.de, 1
baumkuchen-aus-dresden.de, 0
baummer.com.br, 1
@@ -19378,7 +19258,6 @@ bayrampasa.bel.tr, 1
bayreuth-wilhelmine.de, 1
bayridgesupplies.net, 1
bayrisch-fuer-anfaenger.de, 1
-bayrischzell.com, 1
bayscollisionrepairs.co.nz, 1
bayshore.ca, 1
baysidementalhealth.com, 1
@@ -19424,6 +19303,7 @@ bazos.pl, 1
bazos.sk, 1
bazziergraphik.com, 1
bb-aroundtheworld.se, 1
+bb-es.ca, 1
bb-vinimport.dk, 1
bb.church, 1
bb37roma.it, 1
@@ -19489,7 +19369,6 @@ bbschat.tk, 1
bbsec.xyz, 1
bbsis.org, 1
bbtk.com, 1
-bbunits.de, 1
bbusa.tk, 1
bbw-wrestling.com, 1
bbwanalsex.com, 1
@@ -19504,6 +19383,7 @@ bbxin9.net, 1
bbxy.buzz, 1
bc-bd.org, 0
bc-news.ru, 1
+bca-service.de, 1
bcaf.uk, 1
bcalabsokc.com, 1
bcalles.dk, 1
@@ -19518,6 +19398,7 @@ bccbank.coop, 1
bcccremeno.it, 1
bccx.eu.org, 1
bccxo.com, 1
+bcdelounge.nl, 1
bcdiesel.ca, 1
bcdn.me, 1
bcdonadio.com, 1
@@ -19553,6 +19434,7 @@ bcrook.com, 1
bcrypt.online, 1
bcs-talk.com, 1
bcschool.cn, 1
+bcsconsulting.it, 1
bcsnygroup.com, 1
bcsoverheaddoortx.com, 1
bcsytv.com, 0
@@ -19623,7 +19505,6 @@ be.ax, 1
be.search.yahoo.com, 0
be.st, 1
be2cloud.de, 1
-be9418.com, 1
be9418.info, 1
be9418.net, 1
be9418.org, 1
@@ -19719,7 +19600,6 @@ bearrecords.tk, 1
bearrun.com, 1
bearslakeinn.com, 1
bearzoutdoor.com, 1
-beas.dk, 0
beasel.biz, 1
beast-books.com, 1
beast.rent, 1
@@ -19729,8 +19609,8 @@ beastnet.xyz, 1
beastowner.com, 1
beastowner.li, 1
beatachoroszynska.pl, 1
+beatbikers.com, 1
beatbreaker.tk, 1
-beatcanning.xyz, 1
beatfeld.de, 1
beatfreaks.tk, 1
beatitudes.org, 1
@@ -19769,7 +19649,6 @@ beautiful-lingerie.tk, 1
beautiful.ai, 1
beautifulart.ml, 1
beautifulbicester.co.uk, 1
-beautifulcanvaspaintings.com, 0
beautifulplaces.tk, 1
beautifulreflectionsmedspa.com, 1
beautifulrussianwomen.cf, 1
@@ -19799,7 +19678,6 @@ beautybism.com, 1
beautybox.ro, 1
beautyboxes.net, 1
beautyby.tv, 1
-beautycabin.com, 1
beautycarepack.com.ng, 1
beautycoiffures.com, 1
beautycom.club, 1
@@ -19810,7 +19688,6 @@ beautyforce.bg, 1
beautyforceacademy.bg, 1
beautyiconnyc.com, 1
beautyindistress.tk, 1
-beautyinn.com, 1
beautyisfine.tk, 1
beautylodge.ro, 1
beautyoverture.com, 1
@@ -19821,7 +19698,6 @@ beautyspot.tk, 1
beautystudio-linda.com, 1
beautytechpro.ro, 1
beautytherapies.gr, 1
-beautywarriorathletics.com, 1
beaver-creek.ga, 1
beaver.com.br, 1
beavercityut.gov, 1
@@ -19877,8 +19753,6 @@ becallgroup.com, 1
because.co.il, 1
becausecapitalism.org, 1
becausewematterlv.org, 1
-becauseyou.com, 1
-becca-argenbright.com, 1
beccaanne.photography, 1
beccajoshwedding.com, 1
bech32.net, 1
@@ -19930,7 +19804,6 @@ bedful.com, 1
bedienungsanleitung-deutsch.de, 1
bedienungsanleitung24.de, 1
bedinfo.com, 1
-bedingungen.com, 1
bedlingtonterrier.com.br, 1
bedofcorpses.tk, 1
bedouille.com, 1
@@ -19940,14 +19813,12 @@ bedrijfs-feesten.nl, 1
bedrijfsfeest.nl, 1
bedrijfsfeesten.tk, 1
bedrijfsfotoreportages.nl, 1
-bedrijfskunde.com, 1
-bedrijfswagen.com, 1
bedrijfswasmachine.nl, 1
bedrockcommunity.ml, 1
bedrockdata.com, 1
bedrocklinux.org, 1
+bedrocksoftware.co.uk, 1
bedrockstreaming.com, 1
-bedruckung.com, 1
bedrukt.nl, 1
bedste-datingsites.dk, 1
bedstecasinobonusser.dk, 1
@@ -19986,9 +19857,7 @@ beekeeper.supply, 1
beekeeper.tools, 1
beekeepingfiji.com, 1
beeksnetwork.nl, 1
-beeldbankgent.be, 1
beeliarspirit.org, 1
-beelight.com, 1
beelikeus.pl, 1
beeline.am, 1
beelit.com, 0
@@ -19997,7 +19866,6 @@ beeming.au, 1
beeming.co.za, 1
beeming.com.au, 1
beeming.net, 1
-beeming.org, 1
beemprimelogistics.com, 1
beencrypted.com, 1
beenox.com, 1
@@ -20013,7 +19881,6 @@ beercast.co.uk, 1
beeremovaljohannesburg.co.za, 1
beeremovalpretoria.co.za, 1
beeremovalspretoria.co.za, 1
-beerflower.com, 1
beergifts.tk, 1
beerglasses.tk, 1
beerhouse.tk, 1
@@ -20061,7 +19928,6 @@ beffeet.com, 1
befoodsafe.gov, 1
beforeafter.gq, 1
beforethedawn.tk, 1
-beforethelaw.com, 1
beforeyoueatoc.com, 1
befreewifi.info, 1
befunddolmetscher.de, 1
@@ -20073,6 +19939,29 @@ begin-motorcycling.co.uk, 1
begleitung-zuhause.at, 1
begonias.tk, 1
begovel.shop, 1
+begravningaristockholm.se, 1
+begravningdirekt.se, 1
+begravningikyrkan.com, 1
+begravningikyrkan.se, 1
+begravningmedkista.com, 1
+begravningmedkista.se, 1
+begravningmedurna.com, 1
+begravningmedurna.se, 1
+begravningsbil.com, 1
+begravningsbil.nu, 1
+begravningsbilar.nu, 1
+begravningsbolaget.com, 1
+begravningsbolaget.net, 1
+begravningsbolaget.one, 1
+begravningsbolaget.se, 1
+begravningsbyra-stockholm.se, 1
+begravningsbyrahuddinge.se, 1
+begravningsbyranhumana.se, 1
+begravningsbyrauppsala.com, 1
+begravningspaket.com, 1
+begravningspaket.se, 1
+begravningsradgivare.com, 1
+begravningsradgivare.se, 1
begundal.tk, 1
behamepresrdce.sk, 1
behamzdarma.cz, 1
@@ -20093,15 +19982,12 @@ behemoth.cf, 1
beherebethefuture.nl, 1
beherit.pl, 1
behind-the-mask.tk, 1
-behindenemyminds.be, 1
-behindenemyminds.eu, 1
behindertenagentur.de, 1
behindthedesk.tk, 1
behindthemars.de, 1
behleem.tk, 1
behoerden-online-dienste.de, 1
behold.gq, 1
-beholding.com, 1
behomewithlove.com.br, 1
behoreal.cz, 1
behotelmalta.com, 1
@@ -20111,7 +19997,6 @@ behrer.se, 1
beiersdorf-svz.ch, 1
beihelsinki.de, 1
beijing.bj, 1
-beijingit.com, 1
beijinglug.club, 1
beijiquan.com, 1
beimchristoph.de, 1
@@ -20128,7 +20013,6 @@ beira.pt, 1
beiramar.tk, 1
beirasumos.pt, 1
beirel.ru, 1
-beistelltisch.com, 1
beitmidrashrambam.com, 1
beizsoft.co.uk, 1
bejago.com, 1
@@ -20170,7 +20054,7 @@ belastingmiddeling.nl, 1
belayarus.tk, 1
belbin.com, 1
belcanto.cz, 1
-belcoda.com, 1
+belcoda.com, 0
beleadsteam.com, 1
beleaf.cz, 1
belebey.city, 1
@@ -20199,7 +20083,6 @@ belgia.tk, 1
belgian-investor.be, 1
belgian-naturists.tk, 1
belgian-swimmers-united.tk, 1
-belgianbirdalerts.be, 1
belgianfilipinolovers.be, 1
belgiantennis.tk, 1
belgianwesthoekclassic.tk, 1
@@ -20283,7 +20166,6 @@ bellisima.com.co, 1
bellissime.tk, 1
belllabs.com, 1
bellmeadtx.gov, 1
-bellop.top, 1
belloweb.tk, 1
bellowsafs.marketing, 1
belloy.net, 0
@@ -20352,6 +20234,7 @@ ben.org.uk, 1
ben2.co.il, 1
benabbott.nz, 1
benabrams.it, 1
+benaddi.info, 1
benadryl.ml, 1
benadryld.tk, 1
benaldirma.net, 1
@@ -20443,7 +20326,6 @@ bengt.org, 1
benhamplateau.tk, 1
benhaney.com, 1
benhartmann.de, 0
-benhavenarchives.org, 1
benhocking.com, 1
benhoeg.com, 0
benia.cz, 1
@@ -20486,7 +20368,6 @@ benmack.net, 1
benmarron.co.uk, 1
benmatthews.com.au, 1
benmedia.nl, 1
-bennachie.com, 1
bennet.org, 0
bennettrainey.com, 1
bennettsbouncycastlehire.co.uk, 1
@@ -20521,8 +20402,6 @@ bensonhotel.com, 1
bensonvermont.gov, 1
bensoy.com, 1
benstevinson.com, 1
-bensvpn.ac, 1
-bensvpn.net, 1
bensvpn.us, 1
bensvriend.tk, 1
bent-nails.com, 1
@@ -20530,6 +20409,7 @@ bentallgreenoak.com, 0
bentcreekfarm.us, 1
bentebogholder.dk, 1
bentek.fr, 1
+bentermail.de, 1
bentertain.de, 0
benthanhtourist.com, 1
bentina.com, 1
@@ -20557,6 +20437,7 @@ benzblog.tk, 1
benzi.io, 1
benzieco.gov, 1
benzin.tk, 1
+benzo-master.ru, 1
benzonestore.tk, 1
benzou-space.com, 1
beocode.eu, 1
@@ -20589,13 +20470,11 @@ berdan.tk, 1
berdu.id, 1
berdyansk-news.ru, 1
bereaplumber.co.za, 1
-berechnen.com, 1
bereelcorporation.com, 1
bereginy.com.ua, 1
bereginya-lada.ru, 1
beregite-zdorovje.ru, 1
beregusha.com, 1
-bereikbaargent.be, 1
berekenen.nl, 1
berekenhet.nl, 1
berend.tk, 1
@@ -20729,7 +20608,6 @@ bernmail.ch, 1
bernoldi.com.ar, 1
berntmuurling.nl, 1
bernyweb.net, 1
-beroepenhuis.gent, 1
berr.yt, 1
berra.se, 1
berria.fi, 1
@@ -20803,7 +20681,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
@@ -20871,7 +20748,6 @@ bestaussiedoodles.com, 1
bestaustraliancasinosites.com, 1
bestautoinsurance.com, 1
bestbatteriesonline.com, 1
-bestbefore.com, 1
bestbernedoodles.com, 1
bestbestbitcoin.com, 1
bestbetcasino.com, 1
@@ -20937,6 +20813,7 @@ bestgoldendoodles.com, 1
bestgolftrips.ca, 1
besthemes.tk, 1
besthomeandgardenstuff.com, 1
+besthomegenerator.com, 1
besthost.cz, 1
besthouse.co.il, 1
besthumorsite.tk, 1
@@ -21143,8 +21020,10 @@ bestportablegeneratorratings.com, 1
bestpracticesleidraad.nl, 1
bestpressurewashingchicago.com, 1
bestpricelovers.com, 1
+bestproductreviews.my, 1
bestprofessionalchainsaw.com, 1
bestpromoving.com, 1
+bestratedremovals.co.uk, 1
bestratedtransport.com.au, 1
bestreleases.tk, 1
bestremote.io, 1
@@ -21169,6 +21048,7 @@ besttrade.tk, 1
besttrannytube.com, 1
besttraveluk.ga, 1
bestvape.ie, 1
+bestviolin.com, 1
bestvpnrating.com, 1
bestwebcams.ga, 1
bestwebcams.ml, 1
@@ -21262,7 +21142,6 @@ bet444425.com, 0
bet444426.com, 0
bet444429.com, 0
bet444430.com, 1
-bet4cash.com, 1
bet5119.com, 1
bet5234.com, 1
bet5757.com, 1
@@ -21319,7 +21198,6 @@ betadelivery.co.uk, 1
betadwarf.com, 1
betagro.com, 1
betahyp.de, 1
-betalgroup.com, 1
betandslots.com, 1
betandyou.com, 1
betandyou.mobi, 1
@@ -21376,7 +21254,6 @@ betleakbot.com, 1
betmobilenigeria.com, 1
betobaccofree.gov, 1
betolerant.fr, 1
-beton-vloer.nl, 1
beton.ie, 1
betonbewerkingsmachines.be, 1
betongereedschap.be, 1
@@ -21386,7 +21263,6 @@ betonmachines.be, 1
betonmarkets.info, 1
betonperkasa.com, 1
betonsport.ga, 1
-betonvloerpolijsten.com, 1
betop-lab.com, 1
betor.cz, 1
betor.sk, 1
@@ -21400,7 +21276,6 @@ betrimus.xyz, 1
betrisey.net, 1
betroffenen-netzwerk.de, 1
betrouwbarewifi.nl, 1
-betsafe.lt, 1
betseybuckheit.com, 1
betsfortoday.com, 1
betshoot.com, 1
@@ -21421,7 +21296,6 @@ better.com, 0
better.fyi, 1
betterbaseball.com, 1
betterbedding.com, 1
-betterbladders.com, 1
betterboards.net, 1
betterbuiltbasements.com, 1
betterbuiltkitchensandbathrooms.com, 1
@@ -21544,7 +21418,6 @@ bevmoir.com, 1
bevnut.com, 1
bevrijdingsmuseum.nl, 1
bewaredevapi.azurewebsites.net, 1
-bewegigsruum.ch, 1
bewegtes-lagern.at, 1
bewegtes-lagern.ch, 1
bewegtes-lagern.com, 1
@@ -21556,6 +21429,7 @@ bewegteslagern.de, 1
bewerbung.net, 1
bewerbungsfibel.de, 1
bewerbungsfoto-deinfoto.ch, 1
+bewerbungsfotos-goerlitz.de, 1
bewildered.gq, 1
bewire.be, 1
beworksite.com, 1
@@ -21583,10 +21457,10 @@ beylkin.tk, 1
beyond-destiny.tk, 1
beyond-rational.com, 1
beyond.ai, 0
-beyond3dview.com, 1
beyond3dviews.com, 1
beyondalderaan.net, 1
beyondauth.io, 1
+beyondbell.com, 1
beyondbounce.co.uk, 1
beyondbucharest.com, 1
beyonder.travel, 1
@@ -21599,7 +21473,6 @@ beyondpricing.com, 0
beyondqa.ai, 1
beyonds.fr, 1
beyondsoft.com, 1
-beyondtailor.com, 1
beyondthe3d.com, 1
beyondthecode.io, 1
beyondthecreek.com, 1
@@ -21614,6 +21487,7 @@ beyondzeroacademy-reservations.fr, 1
beyoung.in, 1
bezagentstva.cf, 1
bezbarier.org.pl, 1
+bezbednostnaradu.com, 1
bezbik.tk, 1
bezdech.tk, 1
bezdomny.tk, 1
@@ -21661,12 +21535,12 @@ bg-sexologia.com, 1
bg2kuj.com, 1
bga.de, 1
bgacaldeiras.com.br, 1
+bgadget.tech, 1
bgbaby.net, 1
bgbet365.com, 1
bgbhsf.top, 1
bgd-info.tk, 1
bgemi.net, 1
-bgeo.io, 1
bget.org.uk, 1
bgetfuel.co.uk, 1
bgfalconmedia.com, 1
@@ -21700,6 +21574,7 @@ bhacit.com, 0
bhameshwarigraphics.com, 1
bharam.be, 1
bharat-media.tk, 1
+bharat.in, 1
bharatanatyam-dancer.tk, 1
bharatbillpay.com, 1
bharath-g.in, 1
@@ -21718,7 +21593,6 @@ bhitti.in, 1
bhnnews.com, 1
bhodisoft.com, 1
bhogavati.tk, 1
-bhosted.nl, 1
bhpropco.com, 1
bhrc.wa.gov.au, 1
bhserralheria.com.br, 1
@@ -21732,12 +21606,10 @@ bhuttae.com, 1
bhuvanreddy.space, 1
bhvapers.com, 1
bhxch.moe, 1
-bi-file.ru, 1
bi-in-beeld.nl, 1
bi-jenny.net, 1
bi-medien.de, 1
bi.search.yahoo.com, 0
-bi0ha2a7d.co.uk, 1
bi1gif.radio, 1
bi4sb.com, 1
bi8cku.club, 1
@@ -21790,10 +21662,11 @@ bibleforchildren.ru, 1
biblegen.com, 1
bibleinsiderest.ga, 1
biblemesh.com, 0
+biblemobile.com, 1
biblereadlist.com, 1
biblesearch.tw, 1
biblesignposts.com, 1
-bibletower.net, 1
+bibletower.net, 0
bibleversesfordailyliving.com, 1
biblia.es, 1
bibliaon.com, 1
@@ -21831,11 +21704,11 @@ bibliotheka.tk, 1
bibloteka.com, 1
biblura.com, 1
biboran.ga, 1
+biboumail.fr, 1
bibox.schule, 1
bibra.bid, 1
bibun.gq, 1
bicaraviral.com, 1
-bicecontracting.com, 1
bicestore.cl, 1
bicha.net, 1
bichl.de, 1
@@ -21970,11 +21843,9 @@ bigboris.tk, 1
bigbouncebouncycastles.co.uk, 1
bigbouncetheory.co.uk, 1
bigbounceuk.com, 1
-bigbrake.com, 1
bigbrassblog.com, 1
bigbroeyes.com, 1
bigbunce.ru, 0
-bigbyte.com.np, 1
bigcakes.dk, 1
bigcedar.com, 0
bigchance.tk, 1
@@ -22089,11 +21960,9 @@ bigwest.org, 1
bigwicks.co.uk, 1
bigzoo.com.br, 1
biharhelp.in, 0
+biharujala.com, 1
bijlesbart.nl, 1
bijlesportal.nl, 1
-bijloke.gent, 1
-bijlokesite.be, 1
-bijlokesite.gent, 1
bijou.be, 1
bijoux-fantaisies.eu, 1
bijoux.com.br, 1
@@ -22101,6 +21970,7 @@ bijouxbrasil.com.br, 1
bijouxcherie.com, 1
bijralph.com, 1
bijzonderekoorprojecten.nl, 1
+bijzonderondernemen.nl, 1
bike-kurse.ch, 1
bike-liptov.tk, 1
bike-shack.com, 1
@@ -22215,6 +22085,8 @@ billiamsworld.com, 1
billiardmaster.com.ua, 1
billiebikes.com, 1
billigastehemsidan.se, 1
+billigbegravning.com, 1
+billigbegravningsbyra.com, 1
billiger-mietwagen.de, 1
billigerfinder.de, 1
billigesommerhuse.nu, 1
@@ -22246,6 +22118,7 @@ billy.pictures, 1
billybluerecords.com, 1
billybob.tk, 1
billycroan.com, 1
+billyimmo.ma, 1
billyjamrecords.com, 1
billykwok.me, 1
billyoh.com, 1
@@ -22255,7 +22128,6 @@ biltullen.com, 1
biltwisestructures.com, 1
bim.finance, 1
bim.physio, 1
-bim0s.com, 1
bimacitizen.com, 1
bimago.art, 1
bimago.at, 1
@@ -22278,7 +22150,6 @@ bimtec.jp, 1
bin-laden.org, 1
bina.az, 1
binaa.co.il, 1
-binafarma.com.br, 1
binairy.com, 1
binairy.nl, 1
binam.center, 0
@@ -22301,6 +22172,7 @@ binarypuzzle.nl, 1
binarysecurity.no, 1
binarystud.io, 1
binaryvision.tk, 1
+binas.com.br, 1
binbaz.org.sa, 1
binbin9.com, 1
binbo.cz, 1
@@ -22393,6 +22265,7 @@ biocarbonregistry.com, 1
biocentricinc.com, 1
biochart.ga, 1
biocheminee.com, 1
+bioclaudia.it, 1
biocomputingunit.es, 1
bioconnect.com, 0
biocorpsys.com, 1
@@ -22401,6 +22274,8 @@ biodaan.com, 1
biodieselbr.com, 1
biodieseldata.com, 1
biodieselpumps.com, 1
+biodiversitygenomics.life, 1
+biodiversitygenomicsconference.org, 1
biodobavki.tk, 1
biodots.at, 1
biodots.info, 1
@@ -22412,7 +22287,6 @@ bioenergy-solutions.eco, 1
bioetco.ch, 1
bioexistencialismo.tk, 1
bioexploratorium.pl, 1
-biofabio.info, 1
biofattorietoscane.it, 1
biofeedback-luzern.ch, 1
biofeedbackcalifornia.org, 1
@@ -22427,7 +22301,7 @@ biogecho.ch, 0
biogeist.de, 1
biogen.com, 0
biogen.de, 0
-biogenius.ca, 0
+biogenius.ca, 1
biogeosciences-discuss.net, 1
biogeosciences.net, 1
biogiardinaggio.it, 1
@@ -22435,7 +22309,7 @@ biographyseriesers.ga, 1
biographyseriesest.ga, 1
biohackingclinic.com.ua, 1
biohappiness.com, 1
-bioharmony.ca, 1
+bioharmony.ca, 0
biohazardland.tk, 1
biohazardonline.tk, 1
biohazardous.tk, 1
@@ -22457,11 +22331,16 @@ biolact.tk, 1
bioleev.sklep.pl, 1
biolegsanonims.tk, 1
biolekarnapchela.bg, 1
-bioligo.ch, 0
+biolibre.ar, 1
+biolibre.cl, 1
+biolibre.co, 1
+biolibre.mx, 1
+biolibre.pe, 1
+biolibre.uy, 1
biolika.ua, 1
-biolingzhipro.my.id, 1
biolink.vn, 1
biolinky.co, 0
+biolivre.com.br, 1
biolock.ai, 1
biologiaygeologia.tk, 1
biologie-seite.de, 1
@@ -22574,6 +22453,7 @@ birdwatchireland.ie, 1
birebirvilla.com, 1
birenbaum.se, 1
birgitandmerlin.com, 1
+birgitkratz.de, 1
birgulus.com, 1
birjdid.tk, 1
birkengarten.ch, 1
@@ -22741,7 +22621,6 @@ bitcoinheaders.org, 1
bitcoinindy.com, 1
bitcoinissafe.com, 1
bitcoinkaufen.news, 1
-bitcoinku.sh, 1
bitcoinkurs.news, 1
bitcoinkurs.world, 1
bitcoinmotionpro.com, 1
@@ -22751,7 +22630,6 @@ bitcoinnotbombs.com, 1
bitcoinprice.buzz, 1
bitcoinprice.international, 1
bitcoinprice.news, 1
-bitcoinprice.rocks, 0
bitcoinprice.world, 1
bitcoinreserve.com, 1
bitcoinseed.net, 1
@@ -22820,7 +22698,6 @@ bitmaincare.com.ua, 1
bitmaincare.ru, 1
bitmainwarranty.com.ua, 1
bitmainwarranty.ru, 1
-bitmart.com, 1
bitmessage.ch, 1
bitmexin.com, 1
bitmidi.com, 1
@@ -22901,13 +22778,13 @@ biuropulawy.pl, 1
bivg.ru, 0
bixbydevelopers.com, 1
biysk.ml, 1
-biz-academy.it, 1
biz-pak.ml, 1
biz-secrety.cf, 1
biz-secrety.ga, 1
biz-secrety.gq, 1
biz-secrety.ml, 1
biz-seecrets.gq, 1
+biz1.sk, 1
biz2x.com, 1
biz4solutions.com, 1
biz4x.com, 0
@@ -22921,15 +22798,12 @@ bizcope.com, 1
bizdemevcut.com.tr, 1
bizdir.tk, 1
bizeau.ch, 1
-bizedge.co.nz, 1
bizfavor.ml, 1
bizgo.nl, 1
-bizibusiness.com, 1
bizify.co.uk, 0
bizinet.cz, 1
bizlatinhub.com, 1
bizleal.com, 1
-bizmax.ltd, 1
bizmonthly.com, 1
bizneo.com, 1
biznes-bum.tk, 1
@@ -22942,7 +22816,6 @@ biznesowe.pl, 1
biznet.tk, 1
bizniskatalog.mk, 1
biznpro.ru, 1
-bizoneplan.com, 1
bizontrip.com, 1
bizophub.com, 1
bizopia.com, 1
@@ -23016,7 +22889,6 @@ bk1x.mobi, 1
bk1xbet.mobi, 1
bk27.ru, 1
bk622.com, 1
-bk725.com, 1
bkdgo.com, 0
bkdr.de, 1
bkentertainments.co.uk, 1
@@ -23130,7 +23002,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
bkli.me, 1
@@ -23143,7 +23014,6 @@ bkpsdmkku.id, 1
bksites.tk, 1
bkt.to, 1
bl-builder.tk, 1
-bl.uk, 1
bl0ck.org, 1
bl4ckb0x.biz, 1
bl4ckb0x.com, 1
@@ -23153,7 +23023,6 @@ bl4ckb0x.info, 1
bl4ckb0x.net, 1
bl4ckb0x.org, 1
blaa-arme.tk, 1
-blaarmeersen.be, 1
blaasmuziek-laarbeek.nl, 1
blaauwgeers.pro, 1
blaauwgeers.wiki, 1
@@ -23188,6 +23057,7 @@ black-magic-love-spells.com, 1
black-mail.nl, 1
black-market.ga, 1
black-pool.net, 1
+black-rider-studio.eu, 1
black-rosella.tk, 1
black-side.tk, 1
black.com, 1
@@ -23270,6 +23140,7 @@ blackmagicshaman.com, 1
blackmaleme.com, 1
blackmark.me, 1
blackmaskpro.gq, 1
+blackmesa.com, 1
blackmetalencyclopedia.tk, 1
blackmetalist.tk, 1
blackmetaller.tk, 1
@@ -23281,7 +23152,6 @@ blacknight.blog, 1
blackoutzone.tk, 1
blackpapermoon.de, 1
blackpayment.ru, 1
-blackphantom.de, 1
blackphoenix.de, 1
blackpi.dedyn.io, 1
blackpooltransport.com, 1
@@ -23299,7 +23169,6 @@ blackseals.net, 1
blacksega.ga, 1
blacksentry.io, 1
blackshark.cf, 1
-blacksheepsw.com, 1
blackslots.club, 1
blacksniffer.tk, 1
blackspark.tk, 1
@@ -23320,8 +23189,6 @@ blackswancompany.com, 1
blackswirl.com, 1
blacktemplars.tk, 1
blacktown.eu, 1
-blacktownbuildingsupplies.com.au, 1
-blacktube.pro, 1
blacktube.tv, 1
blacktubes.cf, 1
blacktubes.ga, 1
@@ -23342,6 +23209,9 @@ blackys-chamber.de, 0
blackzebra.audio, 1
blade-online.tk, 1
bladencountync.gov, 1
+bladweg.com, 1
+bladweg.eu, 1
+bladweg.nl, 1
blaetter.de, 1
blaeu.com, 1
blagger.tk, 1
@@ -23349,7 +23219,6 @@ blago-sostoyanie.ga, 1
blago-sostoyanie.gq, 1
blago-sostoyanie.ml, 1
blago.tk, 1
-blagomed.by, 1
blagosvet.ml, 1
blagovoniya-top.ru, 1
blague.tk, 1
@@ -23359,7 +23228,6 @@ blairmitchelmore.com, 1
blairtownshipmi.gov, 1
blaizer.tk, 1
blakecoin.org, 1
-blakecommagere.com, 1
blakekhan.com, 1
blakeminer.com, 1
blakenichols.com, 1
@@ -23435,7 +23303,6 @@ blavandbike.dk, 1
blavaty.tk, 1
blayne.me, 0
blayneallan.com, 0
-blazebd.com, 1
blazebit.com, 1
blazefire.tk, 1
blazelock.com, 1
@@ -23469,7 +23336,6 @@ blero.tk, 1
blessedgeeks.org, 1
blessedgeeks.social, 1
blessedguy.com, 1
-blessings24x7.com, 1
blessingtransportbromoijen.com, 1
blessmylife.com, 1
blessrank.com, 1
@@ -23488,6 +23354,7 @@ blicy.net, 1
blideobames.com, 1
blids.nl, 1
blieque.co.uk, 1
+bliesener.com, 1
blijfbij.com, 1
blijfbij.eu, 1
bliker.ga, 1
@@ -23516,6 +23383,7 @@ blindler.net, 1
blindpigandtheacorn.com, 1
blindscribblings.com, 1
blindsjoburg.com, 1
+blindsportssa.org.au, 1
blindspotstg.wpenginepowered.com, 1
blindstreet.com, 1
blingbusinessest.ga, 1
@@ -23524,7 +23392,6 @@ blink-security.com, 1
blink.global, 1
blink.mortgage, 1
blinkdir.tk, 1
-blinkdrivex.com, 1
blinken.co, 1
blinkenlight.com.au, 1
blinkhealth.com, 1
@@ -23542,7 +23409,6 @@ blissfulsmile.com, 1
blissplan.com, 1
blissque.com, 1
blissway.tk, 1
-blissy.com.br, 1
blisterreview.com, 1
blistertrackandtrace.com, 1
blitshift.com, 1
@@ -23598,9 +23464,6 @@ blockcheck.network, 1
blockcreams.com, 1
blocked.icu, 1
blockedservers.com, 1
-blockedyourcar.com, 1
-blockedyourcar.net, 1
-blockedyourcar.org, 1
blockexplorer.online, 1
blockified.io, 1
blockmomsest.ga, 1
@@ -23623,12 +23486,11 @@ blodeuyn.com, 1
bloeij.nl, 1
bloemendaalsamen.nl, 1
bloemendal.me, 1
-blog-club.org, 0
+blog-club.org, 1
blog-investimenti.it, 1
blog-ludmily.ml, 1
blog-page.tk, 1
blog-preview.ml, 1
-blog-sat.com, 1
blog-story.tk, 1
blog.fo, 1
blog.gov.uk, 1
@@ -23639,7 +23501,6 @@ blog.torproject.org, 0
blog.vu, 1
blogabout.ru, 1
blogabouthealthy.tk, 1
-blogabr.it, 1
blogaid.net, 1
bloganchoi.com, 1
blogaram.tk, 1
@@ -23714,11 +23575,14 @@ blokuhaka.fr, 1
blomberg.co.uk, 1
blomberg.name, 1
bloms.de, 1
+blomsbegravning.se, 1
blonde-hexe.net, 1
+blondeangels.com, 1
blondish.net, 0
bloob.io, 1
bloobasket.com, 1
blood-kirsche.tk, 1
+blood.club, 1
blood4pets.tk, 1
bloodandarmor.com, 1
bloodandbones.tk, 1
@@ -23751,7 +23615,7 @@ bloomnail.net, 1
bloomppm.com, 1
bloomroom-chicago.com, 1
bloomscape.com, 1
-blooprintcreation.com, 1
+bloor.co.uk, 1
bloorhomes.com, 1
blopezabogado.es, 1
blorbo.link, 1
@@ -23777,6 +23641,7 @@ bltc.net, 1
bltc.org, 1
bltc.org.uk, 1
bltdirect.com, 1
+blu.ee, 1
bluage.com, 1
bluavido.ml, 1
blubop.fr, 1
@@ -23793,7 +23658,7 @@ blue-python.tk, 1
blue-sky.capital, 1
blue1.com, 1
blue2purple.com, 1
-blue3investimentos.com.br, 1
+blue3investimentos.com.br, 0
blueangel.org.tw, 1
bluearrowrecords.com, 1
bluebahari.gq, 1
@@ -23814,7 +23679,6 @@ blued.moe, 1
bluedeck.org, 1
bluediamondresorts.com, 1
bluedivision.tk, 1
-bluedog-security.com, 1
blueenergy.tk, 1
blueeyesworld.tk, 1
bluefieldwv.gov, 1
@@ -23886,18 +23750,16 @@ bluescape.io, 1
bluescopezacs.vn, 1
blueshouse.ro, 1
blueskiesmassage.com, 1
-bluesky-it.uk, 1
blueskybrokerage.tk, 1
blueskycantina.com, 1
blueskycoverage.com, 1
blueskyeducation.co.in, 1
blueskyinsure.com, 1
blueskypapers.com, 1
-blueskywebdesign.net, 0
+blueskywebdesign.net, 1
bluesmagazine.nl, 0
bluesnews.tk, 1
bluesoap.com.au, 1
-bluespace.com.ng, 1
bluespace.ng, 1
bluespirit.com, 1
bluespotmedia.ro, 1
@@ -24070,11 +23932,11 @@ bo-rad.de, 1
bo.ke, 1
bo1689.com, 0
bo4tracker.com, 1
-boa.rw, 1
boam.nu, 1
boanastudio.com, 1
board-portal.org, 1
board-room.ca, 1
+board.com, 1
boardcloud.org, 1
boardex.com, 1
boardfree.tk, 1
@@ -24091,12 +23953,10 @@ boardspot.com, 1
boardusersers.ga, 1
boat-engines.eu, 1
boat-systems.pl, 0
-boatandsailboat.com, 1
boathut.com.au, 1
boatlyfe.com, 1
boats.com, 0
boatsandoats.com, 1
-boatseayacht.com, 1
boatseller.org, 1
boatsforveterans.org, 1
boatsnbeds.com, 1
@@ -24125,7 +23985,6 @@ bobcoffee.com.br, 1
bobconnolly.com, 1
bobcopeland.com, 1
bobek.cz, 1
-bobep.ru, 1
bobet.it, 1
bobfilm.ml, 1
bobigames.com, 1
@@ -24192,6 +24051,7 @@ bodlsc.com, 1
bodrumescmagazin.tk, 1
bodrus.com, 1
bodsch.com, 1
+bodumo.com, 1
bodusod.bg, 1
body-demo.tk, 1
bodyandfit.com, 1
@@ -24203,7 +24063,6 @@ bodybuildingstyle.tk, 1
bodybuildingsupplementsexplained.com, 1
bodybuildingworld.com, 1
bodyconcept-kfz.de, 1
-bodyfuelup.com, 1
bodygearguide.com, 1
bodyhealthcare.tk, 1
bodymassage.cf, 1
@@ -24238,8 +24097,6 @@ bof.fo, 1
bofashion.site, 1
boffin.tk, 1
bofplus.de, 1
-bofum.com, 1
-bogatirsk.ru, 1
bogatyizhenih.tk, 1
bogdanbiris.com, 1
bogdanepureanu.ro, 1
@@ -24280,7 +24137,6 @@ boissy-la-riviere.fr, 1
boizeau.fr, 1
bojan.tk, 1
bojanowskiszkolka.pl, 1
-bojanstef.com, 1
bojianpeng.com, 1
bojiu99.cc, 1
bojoproductions.tk, 1
@@ -24293,6 +24149,7 @@ bokhaldari.is, 1
bokhylle.eu, 1
bokkun.jp, 1
bokmassan.se, 1
+bokni.ng, 1
bokov.gq, 1
boksburgplumbing.co.za, 1
boksburgsolarsystems.co.za, 1
@@ -24324,7 +24181,6 @@ boletimtrendsce.com.br, 1
boletosdeavionbaratos.tk, 1
boletus.me, 1
boleyn.su, 1
-bolezni.info, 1
bolgarnyelv.hu, 1
bolgarus.ru, 0
bolha.one, 1
@@ -24380,6 +24236,7 @@ boma.ml, 1
bomanufacture.com, 1
bombard.ga, 1
bombe-lacrymogene.fr, 1
+bombeirostv.pt, 0
bomberosceuta.tk, 1
bomberus.de, 1
bombgame.tk, 1
@@ -24465,11 +24322,11 @@ bongloy.com, 1
bongo.cat, 1
bongocams.webcam, 1
bongoland.tk, 1
-bongoo.fr, 1
bonial.fr, 1
bonic.tk, 1
bonifatius-friedrich.de, 1
bonificaamianto.lazio.it, 1
+bonificareambiente.it, 1
bonify.de, 1
bonita.com.br, 1
bonitadesax.com, 1
@@ -24478,6 +24335,7 @@ bonitaslecturas.ml, 1
bonitasoft.com, 0
bonitech.co.uk, 1
bonito.pl, 1
+bonitrust.com, 1
bonjour-ratp.fr, 1
bonjour.cm, 1
bonjourimmo.tv, 1
@@ -24544,13 +24402,12 @@ bookameeting.se, 1
bookb.com, 1
bookbazar.co.in, 1
bookcheapairline.com, 1
-bookchums.com, 1
bookcreator.com, 1
-bookeatio.info, 1
bookeventz.com, 1
bookfirm.com, 1
bookgeek.ga, 1
booking.com, 1
+booking.site, 1
bookinghealth.com, 1
bookingkoala.com, 1
bookinglane.com, 1
@@ -24597,10 +24454,12 @@ booksoncamping.com, 1
bookstores.gq, 1
bookstrap.ga, 1
booksy.com, 1
+bookultra.com, 1
bookvuz.tk, 1
bookworld.gr, 1
bookwormstory.social, 1
bookyourdata.com, 0
+bookyoursmog.com, 1
bool.be, 1
boom2.network, 1
boombangcreditos.tk, 1
@@ -24613,7 +24472,6 @@ boomfestival.org, 1
boomfinity.xyz, 1
boomingnewtech.com, 1
boomingofthings.com, 1
-boomshadow.net, 1
boomshine.de, 1
boomsocial.com, 1
boomsoftware.nl, 1
@@ -24623,7 +24481,6 @@ boomtownevents.com, 1
boomtowntrail.com, 1
boomvm.pw, 1
boon-beauty.com, 1
-boone-schulz.de, 1
boonecountyar.com, 1
boonecountyfpdmo.gov, 1
boonecountyil.gov, 1
@@ -24642,7 +24499,6 @@ boop.icu, 1
booquiz.com, 1
booshka.ga, 1
boosinflatablegames.co.uk, 1
-boosman.nu, 1
boosmanpoolservice.com, 1
boost-collective.com, 0
boost-it-solutions.nl, 1
@@ -24653,14 +24509,12 @@ boostertonbusiness.com, 1
boostgame.win, 1
boostport.com, 1
boostport.com.au, 1
-boostroom.com, 1
boostsafety.com, 1
boostup.com.tr, 1
boot-berlin.de, 1
bootcampkatwijk.nl, 1
boothersandco.com, 0
boothillcasino.com, 1
-booths.cyou, 1
boots-shop.tk, 1
bootsa.ga, 1
bootsa.tk, 1
@@ -24671,7 +24525,6 @@ bootswinter.tk, 1
bootsy.org, 1
bootytube.net, 1
boozinyan.com, 1
-bopiweb.com, 1
boraarat.com, 1
boraboraphotos.com, 1
boracay.tk, 1
@@ -24719,6 +24572,9 @@ borein.cf, 1
boreo.si, 1
boresmail.ru, 1
borfin.com, 1
+borgerligabegravningsbyran.com, 1
+borglig.se, 1
+borgligbegravning.com, 1
borgmann-krankenfahrten.de, 1
borgmestervangen.xyz, 1
borgoaureo.com, 1
@@ -24754,7 +24610,6 @@ borntoraid.com, 1
borofamilylegal.com, 1
boros.party, 1
boros.tk, 1
-boroujerdi.info, 1
borraxeiros.tk, 1
borriquillacuenca.tk, 1
borsa2k.com.tr, 1
@@ -24825,6 +24680,7 @@ bostonrealestateinvestorsassociation.com, 1
bostonsportsmedicinemd.com, 1
bostonstylepizzapa.com, 1
bosun.io, 1
+bosvenssonbegravning.se, 1
boswellboropd-pa.gov, 1
bot-manager.pl, 1
bot.country, 1
@@ -24837,7 +24693,6 @@ botaniqlandscapeconsultants.com, 1
botanischer-garten-solingen.de, 1
botanischkunstenaarsnederland.nl, 1
botarticle.ga, 1
-botbls.com, 1
botbrother.ml, 1
botealis.ch, 0
botelegram.tk, 1
@@ -24908,7 +24763,6 @@ boulevard-ruijschenbergh.nl, 1
boulstory.ru, 1
boulzicourt.fr, 1
bouma.social, 1
-boumstudio.com, 1
bounce-a-roo.co.uk, 1
bounce-abouts.com, 1
bounce-n-go.co.uk, 1
@@ -24946,7 +24800,6 @@ bouncing4joy.co.uk, 1
bouncingbuzzybees.co.uk, 1
bouncinghigher.co.uk, 1
bouncingscotland.com, 1
-bouncourseplanner.net, 1
bouncy-castles-surrey.co.uk, 1
bouncy-tots.co.uk, 1
bouncybaileys.co.uk, 1
@@ -24995,6 +24848,8 @@ bounty.software, 1
bountyfactory.io, 0
bountyhunter.tk, 1
bountyhuntermetaldetector.tk, 1
+bouppteckningdalarna.se, 1
+bouppteckningstockholm.com, 1
bourangstudios.com, 1
bourasse.fr, 1
bourbo.net, 1
@@ -25015,7 +24870,7 @@ boutibag.com, 0
boutique-box-internet.fr, 0
boutique-opinioes.pt, 1
boutique-pcland.fr, 1
-boutiquecarerecovery.com, 1
+boutiquecoureurdesbois.ca, 1
boutiquedecanetas.com.br, 1
boutiquedelhogar.cl, 1
boutiquedoartista.com.br, 1
@@ -25027,7 +24882,6 @@ bouvier-des-flanders.com, 1
bouwbedrijfdesmet.be, 1
bouwbedrijfjstam.nl, 1
bouwbedrijfkorstanje.nl, 1
-bouwklikshop.nl, 1
bouwklikweb.nl, 1
bouwma.nl, 1
bouwplaatscheckin.nl, 1
@@ -25044,13 +24898,11 @@ bowdens.me, 1
bowdoinmaine.gov, 1
bowelcontroltherapy.com, 1
bowenrealty.com, 1
-boweryandvine.com, 1
bowhill.me, 1
bowhunter-ahorn.de, 0
bowlcake.fr, 1
bowldirectoryest.ga, 1
bowlidex.com, 1
-bowling.com, 1
bowmanvilleveterinaryclinic.com, 1
bowmanwilliams.com, 0
bowmar.gov, 1
@@ -25098,7 +24950,6 @@ boxview.com, 1
boy.gp, 1
boyard.tk, 1
boyarscabinets.com, 1
-boyceca.com, 1
boyceville.gov, 1
boycewire.com, 1
boydcorp.com, 1
@@ -25258,6 +25109,7 @@ brainstarling.com, 1
brainstew.tk, 1
brainstorm-audit.bg, 1
brainstormproductions.tk, 1
+brainstreams.ca, 1
braintensive.com, 1
braintonus.tk, 1
braintree.gov.uk, 1
@@ -25358,7 +25210,6 @@ brandweerbarboek.nl, 1
brandweercapcodes.tk, 1
brandweeredam.tk, 1
brandweerfraneker.nl, 1
-brandweergent.be, 1
brandweergrijpskerk.tk, 1
brandweerhalsteren.tk, 1
brandweermodelbouw.tk, 1
@@ -25455,7 +25306,6 @@ brawin.cf, 1
brawnyblenders.com, 1
braxtoncountywv.gov, 1
braxtonehle.com, 1
-braxtonfair.com, 1
braychappell.com, 1
brayden.gq, 1
braynblog.ml, 1
@@ -25500,8 +25350,8 @@ breakfree.tk, 1
breakingdeal.fr, 1
breakingnewskenya.tk, 1
breakingthesilence.org.il, 1
+breakingvap.fr, 1
breakinoutpr.com, 1
-breakmaps.net, 1
breakofdawn.tk, 1
breakpoint.at, 1
breaksome.tech, 1
@@ -25540,6 +25390,7 @@ breezyapp.hu, 1
breezypointmn.gov, 1
breffa.pl, 1
brefy.com, 1
+brega.ly, 1
brege.org, 1
breger.fr, 1
bregmanfance.com, 1
@@ -25552,7 +25403,7 @@ breinify.ai, 1
breinify.com, 1
breitband.bz.it, 1
breizh.pm, 1
-breizhetho.com, 1
+breizhetho.com, 0
breizhpuffy.org, 1
breket.ml, 1
breketi-sofia.com, 1
@@ -25565,7 +25416,6 @@ bremerfriedensforum.de, 1
breml.com, 1
bremsscheiben.com, 1
brendabecker.com, 1
-brendanbatliner.com, 1
brendancroker.tk, 1
brendanfarmer.ga, 1
brendanscherer.com, 1
@@ -25619,7 +25469,7 @@ brewerybarbotley.com, 1
brewin.ml, 1
brewmovers.com, 1
brewsouth.com, 1
-brewspark.co, 0
+brewspark.co, 1
brex.pw, 1
brexit.tk, 1
breyerslakeshoreresort.com, 1
@@ -25645,7 +25495,6 @@ brianalawayconsulting.com, 1
briancorriganphotography.com, 1
briandwells.com, 0
brianerickson.net, 1
-brianfanzo.com, 1
brianfoshee.com, 1
briangarcia.ga, 1
brianjohnson.co.za, 1
@@ -25737,6 +25586,7 @@ bridgetownrecords.tk, 1
bridgetroll.org, 1
bridgewaterma.gov, 1
bridholm.se, 1
+brie.tech, 1
brief.law, 1
briefassistant.com, 1
briefbiz-news.tk, 1
@@ -25762,6 +25612,7 @@ brightbock.net, 1
brightbock.org, 1
brightbock.tw, 1
brightbock.uk, 1
+brightcrest.ca, 1
brightday.bz, 1
brightendofleasecleaning.com.au, 0
brighter.ai, 1
@@ -25797,7 +25648,6 @@ brigittaseasons.com, 1
brigittaspromise.org, 1
brigittebutt.tk, 1
brigittefontaine.tk, 1
-brignier.com, 1
brilalux.pe, 1
brileytownshipmi.gov, 1
brili.com, 1
@@ -25862,7 +25712,6 @@ britanniawellness.com, 1
britelocate.com, 1
british-assessment.co.uk, 1
britishairlinesflights.com, 1
-britishantiquefurniture.co.uk, 1
britishbee.org.uk, 1
britishbee.uk, 1
britishbeef.com, 1
@@ -25930,6 +25779,7 @@ brnohra.cz, 1
brnohra.online, 1
brnr.link, 1
brntn.me, 1
+broad-path.com, 1
broadax.ml, 1
broadbandchoices.co.uk, 1
broadbandexposed.co.uk, 1
@@ -25950,7 +25800,6 @@ broadwayva.gov, 1
broadwayvets.co.uk, 1
broansunited.tk, 1
broca.dk, 1
-brocanteur-debarras-paris.fr, 1
brocc-myanmar.com, 1
brock.guide, 1
brockenhurstguide.com, 1
@@ -25978,7 +25827,6 @@ broeselmaschine.de, 1
brogan.com, 1
broilertrade.com, 1
brojagraphics.de, 1
-broke.network, 1
brokeinkorea.tk, 1
brokenbiz-news.tk, 1
brokenbowokpd.gov, 1
@@ -25989,6 +25837,7 @@ brokenminds.tk, 1
brokenneckgang.com, 1
brokenrevolution.com, 1
brokenships.com, 1
+brokensofa.com.ua, 1
brokensword.tk, 1
brokentoaster.com, 1
brokentoaster.tk, 1
@@ -26086,7 +25935,7 @@ brownforces.org, 1
brownie.gg, 1
brownie.plus, 1
brownietoy.com, 1
-brownpipe.app.br, 1
+brownpipe.app.br, 0
brownshotels.com, 1
brownstownmi.gov, 1
brownsville360.org, 1
@@ -26178,6 +26027,7 @@ brunorogerioadvocacia.com.br, 1
brunroom.tk, 1
brunswick.com, 0
brunswickcove.com, 1
+brunswickfyr.ca, 1
brunswickme.gov, 1
brunswickncsheriff.gov, 1
brunswickohio.gov, 1
@@ -26240,7 +26090,6 @@ brztec.com, 1
bs-facilityservice.ch, 0
bs-network.net, 1
bs-paderborn-senne.de, 1
-bs-security.com, 1
bs.sb, 1
bs.to, 1
bs09.de, 1
@@ -26280,11 +26129,13 @@ bserved.de, 0
bseuc.eu, 1
bsf-knowledgecity.com, 1
bsfamily.tr, 1
+bsg-mag.ro, 1
bsg.ro, 1
bsgamanet.ro, 1
bsgcredit.com, 1
bsgcredit.ro, 1
bsgexchange.ro, 1
+bsgmag.ro, 1
bsidesf.com, 1
bsidessf.com, 1
bskhq.tk, 1
@@ -26335,7 +26186,7 @@ bszh.cn, 1
bszpy.de, 1
bt-kc.de, 1
bt121.com, 0
-bt123.xyz, 1
+bt123.xyz, 0
bt24.ro, 1
bt780.com, 1
bt85.cn, 0
@@ -26378,13 +26229,11 @@ btpritikin.com, 1
btrade.io, 1
btrans.by, 1
btraviswright.com, 1
-btraviswrightmps.com, 1
btraviswrightmps.org, 1
btrb.ml, 1
btsapem.com, 1
btsline.co.id, 1
btsoft.eu, 1
-btsou.org, 1
btsource.tk, 1
btssiou.xyz, 1
btssl.com, 1
@@ -26452,6 +26301,7 @@ buchananga.gov, 1
buchanantwpmi.gov, 1
buchangroupinc.com, 1
bucharestbachelorparty.com, 1
+buchbinderei-schaumann.de, 1
buchdata.it, 0
buchenheinrich.de, 1
buchhaltung-muehelos.de, 1
@@ -26512,7 +26362,6 @@ buddyme.me, 1
budeanu.com, 1
budejce.cz, 1
budejovickakarta.cz, 1
-budelivery.com, 1
buderus-family.be, 1
budget-box.com, 1
budget-cuts.tk, 1
@@ -26521,6 +26370,7 @@ budget.gov, 1
budget.gov.au, 1
budget.ie, 1
budgetapp.me, 1
+budgetglasscranbourne.com, 1
budgetheatingorders.com, 1
budgetimize.com, 1
budgetlob.gov, 1
@@ -26553,9 +26403,11 @@ buenavistava.gov, 1
buenavistava.org, 1
buendnis-deutschland.de, 1
buenosairesconnect.com, 1
+buenosairesrunway.com, 1
buentaller.com, 1
bueny.com, 1
bueny.net, 1
+buergerinitiative-pronatur.de, 1
buergerwehr-ettlingen.de, 1
buero13-design.de, 1
bueroplus.de, 1
@@ -26594,6 +26446,7 @@ bugaim.com, 1
bugalert.org, 1
bugbounty.ch, 1
bugburn.com.br, 1
+bugbyebye.com, 1
bugcrowd.com, 0
bugfender.com, 1
bugfuzz.com, 1
@@ -26771,7 +26624,6 @@ bulutimza.com, 1
bulutimza.com.tr, 1
bulutkey.com, 1
bulvar.tk, 1
-bulyaz.com, 1
bumag.ro, 1
bumastemra.nl, 1
bumble.com, 1
@@ -26852,7 +26704,6 @@ burb.social, 1
burbaguena.tk, 1
burbankdental.com, 1
burberry-outlet.cf, 1
-burberrysunglasses.us, 0
burcevo.info, 1
burchfabrics.com, 0
burdo.nl, 1
@@ -26868,7 +26719,6 @@ bureauwbtv.nl, 1
bureauwsnp.nl, 1
bureauzelfstandigenfryslan.nl, 1
burenservice.nl, 1
-burenvoorburen.gent, 1
burevestnik.tk, 1
burewala.com, 1
burewala.tk, 1
@@ -26901,7 +26751,6 @@ burishops.com, 1
burke.services, 1
burkebarclaylawoffice.com, 1
burkhardt.at, 0
-burkitech.com, 1
burkoff.tk, 1
burkow.ru, 1
burlaka.net, 1
@@ -26917,6 +26766,7 @@ burmania.tk, 1
burmeister-gmbh.de, 1
burmesecatscare.com, 1
burmesepythonpet.com, 1
+burn.to, 1
burncorp.org, 1
burndy.com, 1
burndyt3.com, 1
@@ -26933,6 +26783,7 @@ burningbase.com, 0
burningbooks.org, 1
burningflame.tk, 1
burningflipside.com, 0
+burningro.me, 1
burnit.tk, 1
burnsfunding.com, 1
burnsidestratford.co.uk, 1
@@ -27170,7 +27021,6 @@ businesskanada.tk, 1
businesskayak.ga, 1
businesskiss.ga, 1
businessknight.ga, 1
-businesslabs.space, 1
businesslead.tk, 1
businessleadsworld.com, 1
businesslegacy.ga, 1
@@ -27244,7 +27094,6 @@ businesssparkle.ga, 1
businessspicy.ga, 1
businesssplash.ga, 1
businessstamp.ga, 1
-businesssupports.xyz, 1
businesssurreal.ga, 1
businesstalking.tk, 1
businesstexas.tk, 1
@@ -27343,7 +27192,6 @@ butserdocumentary.tk, 1
buttedesmortssd1wi.gov, 1
butter.horse, 1
butter.ml, 1
-butterflytigress.com, 1
butterhost.ga, 1
buttermilk.cf, 1
butternutbox.com, 1
@@ -27366,6 +27214,7 @@ buurtbusboskoop.nl, 1
buurtgenotencollectief.nl, 1
buurtkeukens.nl, 1
buurtpreventiefraneker.nl, 1
+buurtpreventiewaalwijk.nl, 1
buurtschapdemarkt.tk, 1
buvik.gov.in, 1
buviva.com, 1
@@ -27597,7 +27446,6 @@ bwp-zeitschrift.de, 1
bws16.de, 1
bx-n.de, 1
bx49.cc, 1
-bxctrust.com, 1
bxdj3.com, 1
bxin.de, 1
bxp40.at, 1
@@ -27641,7 +27489,6 @@ bygonegames.com, 1
bygoselink.nl, 1
byhe.me, 1
byhenryvera.com, 1
-byhoag.com, 0
byisha.com, 1
byjamesrush.com, 1
byji.com, 1
@@ -27720,7 +27567,6 @@ bytheswordinc.com, 1
bytrain.net, 1
byuro.org, 1
byzhihuo.com, 1
-bzaz.au, 1
bzbet365.com, 1
bzh.tf, 1
bzhserv.ovh, 1
@@ -27735,9 +27581,9 @@ bztech.ru, 1
bztraveler.com, 1
bztraveler.net, 1
bzv-fr.eu, 1
-c-137.me, 1
c-14.de, 1
c-3po.fr, 1
+c-a-c.com.au, 1
c-aeroconsult.com, 1
c-c-europeen.org, 1
c-cdn.net, 1
@@ -27764,6 +27610,7 @@ c.im, 1
c.lu, 1
c.sk, 1
c.sl, 1
+c.sv, 1
c.wtf, 1
c057cl7.com, 1
c0d3m4513r.com, 1
@@ -27797,7 +27644,6 @@ c19study.com, 1
c19sv.com, 1
c19vitamind.com, 1
c19zinc.com, 1
-c1n.top, 1
c21first.co.il, 1
c2athletics.com, 1
c2cdn.xyz, 1
@@ -27849,6 +27695,7 @@ ca.sk, 1
ca3ahhet.tk, 1
ca5.de, 1
caa.ca, 1
+caa.gov.ly, 1
caa.hr, 1
caa.lk, 1
caarecord.org, 1
@@ -27862,6 +27709,7 @@ cabale.fr, 1
cabalistic.tk, 1
caball.com, 1
caballeroalba.cf, 1
+caballeros-smerald.com, 1
caballerosdeltablero.tk, 1
cabanactf.com, 1
cabaretadanowskyfan.tk, 1
@@ -27885,6 +27733,7 @@ cabinetlm.com, 1
cabinetm.com, 1
cabinetoumaima.tk, 1
cabinetselect.com, 1
+cabinetvoyance.fr, 1
cable-bg.com, 1
cable360.de, 1
cableatierra.tk, 1
@@ -27897,7 +27746,6 @@ cablesandkits.com, 1
cabletiesunlimited.com, 1
cablogrammes.fr, 1
cabodream.ml, 1
-caboleisurerealestate.com, 1
cabooneconstruction.com, 1
caboose.app, 1
cabosaferide.com, 1
@@ -27915,7 +27763,6 @@ cac-ua.com, 1
cacao-besos.com, 1
cacao-chocolate.com, 1
cacao-gang.ml, 1
-cacao.supply, 1
cacaobesos.bg, 1
cacaobesos.ro, 1
cacaolalina.com, 1
@@ -27925,6 +27772,8 @@ caccc.com, 1
cachacasantaterezinha.com.br, 1
cachaceros.tk, 1
cache-checker.com, 1
+cache22.eu, 1
+cache22.nl, 1
cachecounty.gov, 1
cachemosquito.gov, 1
cachepreload.com, 1
@@ -27982,6 +27831,8 @@ cadiskitchen.ca, 1
cadmail.nl, 1
cadman.pw, 1
cadman.uk, 1
+cadmanlaw.ca, 1
+cadmanlaw.com, 1
cadmechanic.com, 1
cadoganhall.com, 1
cadonau.net, 1
@@ -28006,9 +27857,7 @@ caesegatos.com.br, 1
caetanoflotas.es, 1
caetanoretail.pt, 0
caetanotec.pt, 1
-caf.es, 1
caf.milano.it, 1
-caf.net, 1
cafe-bg.com, 1
cafe-cliche.tk, 1
cafe-georges.cf, 1
@@ -28019,11 +27868,9 @@ cafe-service.ru, 0
cafead.de, 1
cafeah.com, 1
cafeamazon.tk, 1
-cafeamore.com.br, 1
cafeapple.com, 1
cafebab.com, 1
cafebalkanaz.com, 1
-cafebeauty.com, 1
cafebeirut.tk, 1
cafecentraal.tk, 1
cafecentral.tk, 1
@@ -28083,7 +27930,6 @@ cagranollers.tk, 1
cagrierdogdu.com, 1
cagrimerkezinumarasi.com, 1
cahabadigital.com, 0
-cahfee.com, 1
cahier-reutilisable.fr, 1
cahill.com, 1
cahn-achn.ca, 0
@@ -28098,7 +27944,6 @@ caibi.io, 1
caic.com.sg, 1
caidao.com, 1
caifan.com, 1
-caihuan.com, 1
caijunyi.net, 0
caikuai.com, 1
caileb.com, 1
@@ -28123,7 +27968,7 @@ caissefrancaisedefinancementlocal.fr, 0
caiteecooper.com, 1
caivps.com, 1
caiwenjian.xyz, 1
-caixideal-serralharia.pt, 0
+caixideal-serralharia.pt, 1
caiyi.com, 1
caiyou.com, 1
caizx.com, 0
@@ -28192,7 +28037,6 @@ calcionews24.com, 1
calcioragusa.tk, 1
calcioweb.eu, 1
calcnow.co, 1
-calconcontractors.com, 1
calcoolator.pl, 1
calcsoft.tk, 1
calcsub.net, 1
@@ -28231,6 +28075,7 @@ caleaders.cf, 1
caleatoxic.org, 1
caledoniaoh.gov, 1
caledonie.tech, 1
+calefon.uy, 1
calefones-electricos.com, 1
calendar.cf, 0
calendar.google.com, 1
@@ -28255,6 +28100,7 @@ calhouncountyflsheriff.gov, 1
calhouncountyil.gov, 1
calhounfalls.gov, 1
calhounmi911.gov, 1
+calibarber.com, 1
caliber.to, 1
calibermind.com, 1
calibrationrecall.com, 1
@@ -28288,6 +28134,7 @@ calista-directinvestors.eu, 1
calisteniaperu.ga, 1
calistogaca.gov, 1
calitateavietii-ardeal.ro, 1
+call-plumbers.com, 1
call2counter.com, 0
calla.pl, 1
callabs.net, 1
@@ -28307,16 +28154,17 @@ callcriteria.com, 1
calldeedee.com, 1
callear.org, 1
callerstrom.se, 1
-calleveryday.com, 1
+callertech.com, 1
callflex.com.br, 1
callfordataspeakers.com, 1
callforkunst.de, 0
-callhappyhive.com, 1
callhippo.com, 1
callhome.link, 1
callhub.io, 1
+calliari.org, 1
calligraph.gq, 1
calligraphychic.com, 1
+calliope.sk, 1
callipeg.com, 1
callisabel.fr, 1
callmewatkins.com, 1
@@ -28328,6 +28176,7 @@ callowaycountyky.gov, 1
callrail.com, 0
callsign.com, 0
callsigns.ca, 1
+calltoar.ms, 1
callum.au, 1
callummoore.au, 1
callumsilcock.me, 1
@@ -28359,6 +28208,7 @@ calvanderkooi.com, 1
calvario.tk, 1
calvarychapel.nl, 1
calvaryhospital.org, 1
+calverley.church, 1
calverleyparish.church, 1
calvertcityky.gov, 1
calverttx.gov, 1
@@ -28368,13 +28218,13 @@ calvisisistemi.it, 1
calvusconsultancy.nl, 1
calystral.com, 1
calyxinstitute.org, 1
-calyxlms.com, 1
calzadonline1.com, 1
calzaturesira.it, 1
camag.com, 1
camanoislandpilates.com, 1
camaradecomerciosiguatepeque.hn, 1
camaras.uno, 1
+camargoprime.com.br, 1
camarilla.tk, 1
camaronazo.com, 1
camarzanadetera.tk, 1
@@ -28480,7 +28330,6 @@ campaign-center.net, 1
campaign.gov.scot, 1
campaign.gov.uk, 1
campaigner.gq, 1
-campaignlake.com, 1
campaignwiki.org, 1
campaignzee.com, 1
campalhilal.org, 1
@@ -28539,14 +28388,12 @@ camptonnh.gov, 1
camptuk.org, 1
campula.cz, 1
campuscom.jp, 1
-campuscore.eu, 1
campusdrugprevention.gov, 1
campusidzmx.com, 1
campuskota.com, 1
campusmedop.es, 1
campuspodsers.ga, 1
campuspodsest.ga, 1
-campusvoteproject.org, 1
campvana.com, 1
campwoodsw.com, 1
camrecord.ml, 1
@@ -28563,7 +28410,6 @@ camslurp.org, 1
camsupplier.ml, 1
camsupplierers.ga, 1
camtor.ml, 1
-camtu.com, 1
camunaslab.org, 1
camunda.com, 0
camunda.org, 1
@@ -28592,12 +28438,13 @@ canadapet.club, 1
canadapets.club, 1
canadapost-postescanada.ca, 1
canadapropertyexpert.ca, 1
-canadasteroiddepot.is, 1
canadianarcticproducers.com, 1
+canadianatheist.ca, 1
canadianatheists.ca, 1
canadianatheists.com, 1
canadianbic.ca, 1
canadianbusiness.com, 1
+canadianemail.ca, 1
canadianfriendsofyadsarah.com, 1
canadiangriefalliance.ca, 1
canadianlandscapeart.ca, 1
@@ -28656,6 +28503,7 @@ canceraid.coach, 1
canceraid.com.au, 1
canceraid.io, 1
cancerdata.nhs.uk, 1
+cancerrxgene.org, 1
cancersintomas.com, 1
cancertherapy.tk, 1
cancomputers.hn, 1
@@ -28708,6 +28556,7 @@ candysamira.org, 1
candytip.ru, 1
candywings.com, 1
candyxs.org, 1
+cane.bg, 1
canek.es, 1
canelaimobiliaria.com.br, 1
canellayachts.com, 1
@@ -28896,7 +28745,6 @@ capicibera.tk, 1
capike.cf, 1
capillary.io, 1
capimlimaoflores.com.br, 1
-capisame.info, 1
capitainebaggy.ch, 0
capitains.tk, 1
capital-electronics.ml, 1
@@ -28997,7 +28845,6 @@ captainsinn.com, 1
captainsonic.com, 1
captainsunshine.tk, 1
captavio.com, 1
-captcha.tools, 1
captchafox.com, 1
captify.ca, 1
captivationscience.com, 1
@@ -29054,10 +28901,12 @@ caraudiostore.tk, 1
caraudioworx.nl, 1
caravaca.tk, 1
caravansciences.tk, 1
+caravanwise.co.uk, 1
caravelairclub.tk, 1
caraz.tk, 1
carballeira.tk, 1
carbaza.ru, 1
+carbcleantrucktest.com, 1
carberra.io, 1
carberra.xyz, 1
carbeso.co.network, 1
@@ -29271,6 +29120,7 @@ carinsuranceliveest.ga, 1
carinthia.eu, 1
carinzo.com, 1
carioca-romania.ro, 1
+cariocabelos.com.br, 1
cariproperti.com, 1
carisenda.com, 1
carissa.de, 1
@@ -29317,7 +29167,6 @@ carlons.cf, 1
carlos-moreira.com, 1
carlosabarbamd.com, 0
carlosbronze.com.br, 0
-carloscar.art, 1
carloscar.co, 1
carloscar.com, 1
carloscar.se, 1
@@ -29336,6 +29185,7 @@ carlospiga.fr, 1
carlostaibo.com, 1
carlosvelezmarketing.com, 1
carlot-j.com, 1
+carlowsouthernreliefroad.ie, 1
carls-fallout-4-guide.com, 1
carlsbadluxuryhotels.ga, 1
carlshamnbageri.com, 1
@@ -29355,6 +29205,7 @@ carltonmanufacturing.co.uk, 1
carltontownfc.tk, 1
carlvanderlaan.com, 1
carlysgarden.net, 1
+carmagazine.co.uk, 1
carmageddon.tk, 1
carmarthenradiocontrolledcarclub.tk, 1
carmela.co.uk, 1
@@ -29378,7 +29229,6 @@ carnationwa.gov, 1
carnavaldeltoro.tk, 1
carnavales.tk, 1
carnavalinrothem.tk, 1
-carneddau.cymru, 1
carnedelmercado.com, 1
carnell.com, 1
carnet-du-voyageur.com, 1
@@ -29415,6 +29265,7 @@ carolineball.com, 1
carolinebazin.fr, 1
carolineeball.com, 1
carolinegirvan.com, 1
+carolinehoule.com, 1
carolineovercash.com, 1
carolinepleuvret.fr, 1
carolmolinari.tk, 1
@@ -29433,6 +29284,7 @@ carpeleo.mobi, 1
carpeleo.se, 1
carpenters.org, 1
carpentersvilleil.gov, 1
+carpentry-shop.pl, 1
carpetandhardwoodflooringpros.com, 1
carpetcleanerswilmington.com, 1
carpetcleaning-cypress.com, 1
@@ -29497,6 +29349,7 @@ carsdbshop.ru, 1
carseatchecks.ca, 1
carshippingcarriers.com, 1
carshop.bg, 1
+carsiceland.com, 1
carsinsuranceis.com, 1
carsmate.com, 1
carsoft.tk, 1
@@ -29531,7 +29384,6 @@ cartegrise.com, 1
cartegrise.xyz, 1
carteles.tk, 1
cartelloni.roma.it, 1
-carteltec.com, 1
cartenova.co, 1
cartercountymo.gov, 1
carterdan.net, 1
@@ -29562,7 +29414,6 @@ cartooncollections.com, 1
cartoonlists.com, 1
cartoonstock.com, 1
cartoontube69.com, 1
-cartoonvibe.com, 1
cartoonwap.tk, 1
cartoradio.fr, 1
cartorio4oficiojuazeiro.com.br, 1
@@ -29655,6 +29506,7 @@ casamientos.com.ar, 1
casamodesta.pt, 1
casandraemge.tk, 1
casanovafishtacos.com, 1
+casanovamilano.nl, 1
casanuova.tk, 1
casaoggidomani.it, 1
casapalla.com.br, 1
@@ -29662,7 +29514,6 @@ casapedra.tk, 1
casaplorer.com, 1
casapuravidahostel.com, 1
casaruralsantamaria.tk, 1
-casasacapulcodiamante.com, 1
casasbandeirantes.com.br, 1
casascomdesign.com, 1
casasdeapuestasdeportivas.cl, 1
@@ -29692,6 +29543,7 @@ case4you.bg, 1
case4you.ro, 1
casebydemani.com, 1
casecurity.org, 1
+caseflowmanager.com, 1
caseform.de, 1
caseificio.roma.it, 1
caselemnbarat.ro, 1
@@ -29732,6 +29584,7 @@ cash-generator.tk, 1
cash.app, 1
cash.me, 1
cash.nyc, 1
+cash1loans.com, 1
cashamerican.tk, 1
cashati.com, 1
cashbackcow.us, 1
@@ -29739,7 +29592,6 @@ cashbacksummit.com, 1
cashblog.ga, 1
cashbook.co.tz, 1
cashbot.sk, 1
-cashbox.hu, 1
cashcode.ga, 1
cashcoin.tk, 1
cashconverters.co.uk, 1
@@ -29752,6 +29604,7 @@ cashewmanufacturers.com, 1
cashflowstrategist.com, 0
cashforcarremovalsipswich.com.au, 1
cashfortulsahouses.com, 1
+cashify.gg, 1
cashline.tk, 1
cashlink.de, 1
cashlogic.ch, 0
@@ -29907,7 +29760,6 @@ casinofinder.ca, 1
casinofollower.com, 1
casinoleader.com, 1
casinolistings.com, 1
-casinologin.pl, 1
casinologinaustralia.com, 1
casinomucho.com, 1
casinomucho.se, 1
@@ -30061,6 +29913,7 @@ catalonia.tk, 1
catalyseurs-territoriaux.org, 1
catalyst-ecommerce.com, 1
catalystapp.co, 1
+catalyzr.info, 1
catandmoonalchemy.com.au, 1
cataniatoday.it, 1
catanzarotoday.it, 1
@@ -30107,7 +29960,6 @@ catego.info, 1
catenacondos.com, 1
caterbing.com, 1
catering-fantasia.tk, 1
-catfish.gq, 1
catfishworld.tk, 1
catflap.org, 1
catfood.cf, 1
@@ -30118,7 +29970,6 @@ catfun-foto.de, 1
catgarden.tk, 1
catgirl.center, 0
catgirl.cloud, 1
-catgirl.enterprises, 1
catharinalingeries.com.br, 1
catharinaparkieten.tk, 1
catharinaziekenhuis.nl, 1
@@ -30154,7 +30005,6 @@ cathy.lgbt, 1
cathy.link, 1
cathy.website, 1
cathyfitzpatrick.com, 1
-cathygoodwin.com, 1
cathyjf.ca, 1
cathyjf.com, 1
cathyjf.net, 1
@@ -30170,8 +30020,6 @@ cativa.net, 1
catl.st, 1
catland.club, 1
catlettsburgky.gov, 1
-catlicking.com, 1
-catlive.com, 1
catlovingcare.com, 1
catlowe.com, 1
catmash.tk, 0
@@ -30181,7 +30029,6 @@ catmonad.xyz, 1
catmoose.ca, 1
catmoz.fr, 1
catnetworks.co.jp, 1
-catnippery.com, 1
catnmeow.com, 1
catphysics.com, 1
catpic.xyz, 1
@@ -30189,6 +30036,7 @@ catplay.tk, 1
catpowered.net, 1
catprincess.com.tw, 1
catprint.com, 1
+catrepeller.com, 1
catrinasporelmundo.com, 1
catrins-kunst.de, 1
catsarch.co, 1
@@ -30225,6 +30073,8 @@ caulfieldeastapartments.com.au, 1
caulong-ao.net, 1
caumont-normandie.fr, 0
cauquenes.tk, 1
+cautela.io, 1
+cautela.us, 1
cautron.com, 1
cavac.at, 1
cavalassur.com, 1
@@ -30246,13 +30096,14 @@ cavsconnect.com, 1
cavzodiaco.com.br, 1
caw.be, 1
cawagiras.ga, 1
+cawsandbayguitarfest.co.uk, 1
caycehouse.com, 1
caylercapital.com, 1
caymanchem.com, 0
cayugacounty.gov, 1
cazadordebuenaonda.com, 1
cazaviajes.es, 1
-cazenovecapital.com, 1
+cazenovecapital.com, 0
cazfire.gov, 1
cazizi.com, 1
cazoo.co.uk, 0
@@ -30370,7 +30221,6 @@ ccc.gov, 1
ccc.org, 1
ccc.xxx, 1
cccadvocate.com, 1
-cccba.org, 1
cccc.loan, 1
cccera.gov, 1
cccglp.com, 1
@@ -30417,6 +30267,7 @@ ccoo.cat, 1
ccorca.org, 1
ccpaas.net, 1
ccparishwilmington.org, 1
+ccpdata.org, 1
ccpe.net, 1
ccpgmpo.gov, 1
ccpinturas.com, 1
@@ -30432,8 +30283,13 @@ ccsk.training, 1
ccskills.org.uk, 1
ccsrv.eu, 1
ccsys.com, 1
+cct1d.com, 1
cctassetmanagement.com, 1
+cctld.blog, 1
cctld.com, 1
+cctld.wiki, 1
+cctldnames.com, 1
+cctldnames.net, 1
ccts-cprst.ca, 0
cctv-camera.cf, 1
cctv-supraveghere.ro, 1
@@ -30471,7 +30327,7 @@ cdc.cx, 1
cdc.gov, 1
cdcflix.xyz, 1
cdcpartners.gov, 1
-cdd.go.th, 0
+cdd.go.th, 1
cdda.ch, 0
cdeeply.com, 1
cdf.fyi, 1
@@ -30494,6 +30350,7 @@ cdlaserena.tk, 1
cdlinares.tk, 1
cdlnaturals.com, 1
cdm.guru, 1
+cdmcalsace.com, 1
cdmdisinfestazioni.it, 1
cdmhp.org.nz, 1
cdmon.tech, 1
@@ -30539,6 +30396,7 @@ ce-agentur.de, 0
ce-design.eu, 1
ce-na.ru, 1
ce-webdesign.de, 1
+ce43.com, 1
cea.ru, 1
ceafinney.com, 1
ceakumal.org, 1
@@ -30638,7 +30496,7 @@ celebritysrit.tk, 1
celebritytopnews.tk, 1
celebrityviralbug.com, 1
celebrow.com, 1
-celebxx.com, 1
+celectricos.com, 1
celectro-pro.com, 1
celendo.ga, 1
celenephotography.com, 1
@@ -30669,11 +30527,13 @@ cellmart.ru, 1
cellnatsci.com, 1
cellonline.org, 1
cellopasorobles.com, 1
+cellphonedb.org, 1
cellrg.org, 1
cellsheet.me, 1
cellsys.pl, 1
celltek-server.de, 1
celltraders.ga, 1
+celltypist.org, 1
cellufit.ga, 1
cellul19.com, 1
cellulare.tk, 1
@@ -30736,7 +30596,6 @@ centerforinterfaithrelations.org, 1
centergate.se, 0
centerhancockin.gov, 1
centerharbornh.gov, 1
-centermk.ru, 1
centernur.kz, 1
centeronhunger.org, 0
centerpoint.ovh, 1
@@ -30761,8 +30620,6 @@ centralclinic.science, 1
centralcoasthomeloans.com.au, 1
centralconvergence.com, 1
centralcountiesservices.org, 0
-centraldegovernanca.com.br, 1
-centraldeseguro.com.br, 1
centraldoencanador.com.br, 1
centrale-vapeur.pro, 1
centralebigmat.eu, 1
@@ -30861,7 +30718,6 @@ century-properties.com, 1
century21.es, 0
century21.pt, 0
centurycarwashinglewood.com, 1
-centurycommercialroofing.com, 1
centuryfighters.tk, 1
centuryforum.tk, 1
centurykiaparts.com, 1
@@ -30877,7 +30733,6 @@ cephalexincapsules.tk, 1
cephalexine.gq, 1
cepheid.com, 0
ceprenomnexistepas.ovh, 1
-cepsychologie.com, 1
cepxuo.tk, 1
ceramic-glazes.com, 1
ceramica.roma.it, 1
@@ -30944,6 +30799,7 @@ certaqa.com, 1
certcenter.com, 0
certfa.com, 1
certi.photo, 1
+certible.com, 1
certidao-nascimento-pt.org, 1
certificadodigitalpari.com.br, 1
certificados.edu.do, 1
@@ -30958,7 +30814,6 @@ certificato-prevenzione-incendi.it, 1
certificazione.it, 1
certificazioni-energetiche.it, 1
certifiedbb.com, 1
-certifiedchimneyconnecticut.com, 1
certifiedfieldassociate.com, 1
certifiedmerchandiseest.ga, 1
certifiednurses.org, 1
@@ -31010,7 +30865,9 @@ ceska-elita.cz, 1
ceska-polygraficka.cz, 1
ceska-polygraficka.eu, 1
ceskasit.cz, 1
+ceskydj.cz, 1
ceslasvegasnews.com, 1
+cesmet.mil.do, 1
cesobaly.cz, 1
cesonia.io, 0
cespedes.fr, 1
@@ -31049,7 +30906,6 @@ cewood.xyz, 1
cexplorer.io, 1
ceyhanmolla.com, 1
ceyizlikelisleri.com, 1
-ceylondigital.co.uk, 1
cezannehr.com, 1
cezdent.com, 1
cf-ide.de, 1
@@ -31074,7 +30930,6 @@ cfdi-servicios.com, 1
cfdtrading.com, 1
cfenns.ath.cx, 1
cfent.xyz, 1
-cffveterans.com, 1
cfgllc.us, 1
cfh.com, 1
cfigura.com, 1
@@ -31086,8 +30941,12 @@ cfo.gov, 1
cfoaonline.com, 1
cforesources.group, 1
cfotech.asia, 1
+cfotech.ca, 1
cfotech.co.nz, 1
+cfotech.co.uk, 1
cfotech.com.au, 1
+cfotech.in, 1
+cfotech.news, 1
cfpa-formation.fr, 1
cfpa.gov, 1
cfpb.gov, 1
@@ -31112,8 +30971,6 @@ cg.al, 1
cg.search.yahoo.com, 0
cgal.org, 1
cgan.pw, 1
-cgarchives.com, 1
-cgaro.cloud, 1
cgbassurances.ch, 0
cgbf.org, 1
cgbh3.gq, 1
@@ -31124,11 +30981,11 @@ cgdct.moe, 1
cgelves.com, 1
cges.xyz, 1
cgestiona.com, 0
+cgeventoseturismo.com.br, 1
cggs.vic.edu.au, 1
cggsaquatic.com.au, 1
cgha.us, 1
cgionline.tk, 1
-cgiq.ca, 1
cgknieuwpoort.nl, 1
cglib.xyz, 1
cgmllc.net, 1
@@ -31231,6 +31088,7 @@ challengeskins.com, 1
chalons-agglo.fr, 1
chalonsenchampagne.fr, 1
chalov.ml, 1
+chama.gr, 1
chamanga.store, 1
chamartin.tk, 1
chamath.co.uk, 1
@@ -31257,6 +31115,7 @@ champaigncountyclerkil.gov, 1
champaigncountyil.gov, 1
champdogs.co.uk, 1
champdogs.com, 1
+champion-yandare.ru, 1
championcastles.ie, 1
championnat-romand-cuisiniers-amateurs.ch, 1
champions.co, 1
@@ -31272,7 +31131,6 @@ chamsocial.com, 1
chamudi.lk, 1
chamudi.net, 1
chamurliyski.com, 1
-chancecomdeus.com, 1
chanddriving.co.uk, 1
chanderson.com.au, 1
chandleraz.gov, 1
@@ -31285,12 +31143,14 @@ chandradeepdey.com, 1
chandramani.tk, 1
change-coaching-gmbh.ch, 1
change10000lives.com.ph, 1
+changeactivation.com, 1
changeanalytics.us, 1
changechecker.org, 1
changecopyright.ru, 1
changeforfuture.cf, 1
changemywifipassword.com, 1
changenow.io, 1
+changeofownershipsmog.com, 1
changeplan.co, 1
changesfor.life, 1
changethislater.com, 1
@@ -31305,8 +31165,12 @@ channel, 1
channel-7.net, 1
channelingranny.com, 1
channelist.tk, 1
+channellife.ca, 1
channellife.co.nz, 1
+channellife.co.uk, 1
channellife.com.au, 1
+channellife.in, 1
+channellife.news, 1
channelpro.es, 1
channelprogram.com, 1
channingmotorsport.tk, 1
@@ -31314,7 +31178,6 @@ chanska.com, 1
chantage.tk, 1
chantellbeauty.co.uk, 1
chantierjob.com, 1
-chantuong.org, 1
chanty.com, 1
chanz.com, 1
chaos-darmstadt.de, 1
@@ -31355,7 +31218,6 @@ chapmanstreeservice.com, 1
chapstick.life, 1
chaqueteros.tk, 1
char.press, 1
-charbonnel.eu, 1
charcoal-gray.com, 1
charcoal.pro, 1
chardik.tk, 1
@@ -31367,7 +31229,6 @@ chargebacks911.com, 1
chargehound.com, 1
chargeincluded.eu, 1
chargifi.com, 1
-chargify.com, 1
chariot.works, 1
chariots.tk, 1
charisma.ai, 1
@@ -31442,7 +31303,6 @@ charlubermensch.com, 1
charlws.com, 1
charlylou.de, 1
charmander.me, 1
-charmandglam.com, 1
charmanterelefant.at, 1
charmcitytech.com, 1
charming-powers.tk, 1
@@ -31475,7 +31335,6 @@ chase.co.nz, 1
chase4toy.com, 1
chaseandzoey.de, 1
chasebenefits.com, 1
-chasecorp.com, 0
chasecountyne.gov, 1
chasetrails.co.uk, 1
chaskafire.gov, 1
@@ -31525,6 +31384,7 @@ chateaulabrede.com, 1
chateaulacordeliere.fr, 1
chatedit.org.uk, 1
chatelaine.com, 1
+chatero.pl, 1
chateroids.com, 1
chatforskning.no, 1
chatfreespeech.com, 1
@@ -31583,6 +31443,7 @@ chatzimanolis.com, 0
chatzimanolis.gr, 1
chaudierecogeneration.com, 1
chauffage-budget.fr, 1
+chauffeurandbeyond.com, 1
chaumiere.ddns.net, 0
chaurocks.com, 1
chaussenot.net, 1
@@ -31704,8 +31565,6 @@ checkfreescore.com, 1
checkfresh.com, 1
checkiday.com, 1
checkingfinder.com, 1
-checkjehuis.be, 1
-checkjehuis.gent, 1
checkjelinkje.nl, 1
checklistbuilder.herokuapp.com, 1
checklistinsider.com, 1
@@ -31798,6 +31657,7 @@ chelyabinsk-news.net, 1
chema.ga, 1
chemapool.bg, 1
chemaxon.com, 1
+chemengzone.com, 1
chemgenes.com, 1
chemica-us.com, 1
chemical-shark.de, 1
@@ -31856,6 +31716,7 @@ cherie-belle.com, 1
cherie-eyelash.com, 1
cherienoir.net, 1
cheriny.com, 1
+cherished.ie, 1
cherkasskiy.ml, 1
cherkassy-news.ru, 1
cherkassy.ml, 1
@@ -31882,7 +31743,7 @@ cherrycreeknorth.com, 1
cherryjimbo.sucks, 1
cherrynova.live, 1
cherryonit.com, 0
-cherrypixel.com, 1
+cherrypink.no, 1
cherubicsoft.com, 1
cheryforum.net, 1
cheryls.com, 1
@@ -31894,9 +31755,10 @@ chesapeakeopticallab.com, 1
chesapeakewv.gov, 1
cheshirex.com, 0
chesolar.cz, 1
-chesslovin.com, 1
+chess.katowice.pl, 1
chesspoint.ch, 1
chesstempo.com, 1
+chessustron.pl, 1
chessveterinary.co.uk, 1
chesswiki.org, 1
chester-law.com, 1
@@ -31987,6 +31849,7 @@ chicorec.gov, 1
chicospanico.tk, 1
chicurrichi.com, 1
chief.tools, 1
+chiefaircraft.com, 1
chieffamilyofficer.info, 1
chiefsluauhawaii.com, 1
chiefworks.com, 1
@@ -32072,22 +31935,26 @@ chiltonwi.gov, 1
chimaeraconsulting.eu, 1
chimaira.tk, 1
chimcanhcut.tk, 1
+chime.com, 1
chimebank.com, 1
chimera.sh, 1
chimerity.com, 1
chimesmusic.com, 1
chimesnewspaper.com, 1
chimm.cc, 1
+chimneytec.se, 1
chimpanzee.cf, 1
chimpanzee.net, 1
chimpmatic.com, 1
china-midas.net, 1
china-online-news.tk, 1
china-ru.ru, 1
+china.gs, 1
chinabank.ph, 1
chinacbd.com, 1
chinacdn.org, 1
chinacheers.com, 1
+chinacolour.com, 1
chinadiy.com, 1
chinadream404.com, 1
chinadrilling.com, 1
@@ -32103,6 +31970,7 @@ chinainluxury.com, 1
chinajingkun.com, 1
chinalike.com, 1
chinalosers.com, 1
+chinamemo.com, 1
chinaneed.com, 1
chinanurse.com, 1
chinaoptionsfund.cn, 1
@@ -32120,7 +31988,6 @@ chinavegan.com, 1
chinavicharana-mole.uk, 0
chinawhale.com, 1
chinchillas.tk, 1
-chindy.com, 1
chinees.restaurant, 1
chinefrancophonie.fr, 1
chinen-hs41.com, 1
@@ -32231,7 +32098,6 @@ chnbilling.com, 1
chngold.com, 1
chnj.gov, 1
chobitool.com, 1
-chobotsonline.com, 1
choccychox.com, 1
chochol.io, 1
chochos.tk, 1
@@ -32294,7 +32160,6 @@ chopperforums.com, 1
chopradionet.tk, 1
choptheknife.com, 1
chordiant.com, 1
-chordify.net, 1
chordmag.com, 1
chordpage.com, 1
chordu.com, 1
@@ -32315,6 +32180,9 @@ chosentrends.com, 1
choservices.com, 1
chosting.dk, 1
chou-chinois.com, 1
+choufei.com, 1
+choukou.com, 1
+choushe.com, 1
chowtime.chat, 1
choylifut.tk, 1
choyri.com, 1
@@ -32331,6 +32199,7 @@ chrisaitch.com, 1
chrisandian.com, 1
chrisballam.com, 1
chrisbrockdiving.com, 1
+chrisbrowntherapies.co.uk, 1
chrisbryant.me.uk, 1
chrisbulow.uk, 1
chrisburnell.com, 1
@@ -32341,7 +32210,6 @@ chrisdasie.com, 1
chrisdavidphoto.com, 0
chrisfinazzo.com, 0
chrisgieger.com, 1
-chrishnireshekaron.co.uk, 1
chrisirwin.ca, 1
chrisjean.com, 1
chriskthomas.com, 1
@@ -32468,11 +32336,9 @@ christopherjohnphotography.com, 1
christopherkennelly.com, 1
christophermark.photography, 1
christopherpritchard.co.uk, 1
-christophersfunerals.co.uk, 1
christopherterryweddings.co.uk, 1
christophertruncer.com, 1
christopherwilkinson.co.uk, 1
-christopherzoukis.com, 1
christophfink.com, 1
christophheich.me, 1
christophkranebitter.at, 1
@@ -32705,13 +32571,13 @@ ciceron.cloud, 1
cicerony.gov, 1
ciceronypd.gov, 1
cicery.com, 1
+cicgroup.ca, 1
ciclimattio.com, 1
ciclismoyrendimiento.com, 0
ciclista.roma.it, 1
ciclodekrebs.com, 1
ciclodelcarbono.com, 1
ciclohidrologico.com, 1
-ciclopico.it, 1
ciclosis.com, 1
cidaut.es, 1
cidcca.com, 1
@@ -32722,7 +32588,6 @@ cidikit.tk, 1
cidones.tk, 1
cie-theatre-montfaucon.ch, 0
cie.nl, 1
-ciecompraenlinea.com, 1
ciekawi.com, 1
ciekwestronki.cf, 1
ciekwestronki.ga, 1
@@ -32730,7 +32595,6 @@ ciekwestronki.gq, 1
ciekwestronki.ml, 1
ciel.coffee, 1
ciel.si, 1
-ciele.com, 1
cielo-thefilm.com, 1
cienciasempresariais.pt, 1
cienegaspa.com, 1
@@ -32760,7 +32624,6 @@ cile.cf, 1
cile.tk, 1
cilin.net, 1
cilipa.com, 1
-cilku.cloud, 1
cilt.tk, 1
ciltskillnet.ie, 0
cim.se, 1
@@ -32787,13 +32650,11 @@ cincosf.com, 1
cincy.gov, 1
cinderstravels.com, 1
cindey.io, 1
-cindy.cn, 1
cine-music.de, 1
cine-passion16.fr, 1
cine.to, 1
cineassist.jp, 1
cinecat.de, 1
-cinechai.in, 1
cinecolombia.com, 1
cinedarkwolf.tk, 1
cinefilia.tk, 1
@@ -32819,12 +32680,10 @@ cinemotion.by, 1
cinemysticism.com, 1
cinenote.link, 1
cineping.com, 1
-cineplex.my, 1
cineramen.gr, 1
cinerariosgruporosete.com, 1
cinet.jp, 1
cineterror.tk, 1
-cineworld.co.in, 1
cinexilio.tk, 1
cinicloud.com, 1
cinicostudio.com, 1
@@ -32858,7 +32717,7 @@ cionir.fr, 1
cioscloud.com, 1
cioudways.pro, 1
cioxhealth.com, 1
-cip.md, 1
+cip.md, 0
cipartyhire.co.uk, 1
cipcda.org, 1
cipher.team, 1
@@ -32869,6 +32728,7 @@ ciphermail.com, 1
ciphermining.com, 1
ciphersuite.info, 1
ciphertech.com.tw, 1
+cipherwizards.com, 1
ciplerli.st, 1
cippus.tk, 1
cipri.com, 1
@@ -32882,7 +32742,6 @@ ciprocess.com, 1
ciprofloxacin.cf, 1
ciprofloxacin.ga, 1
ciprogeneric.gq, 1
-ciproo.online, 1
ciptaiwan.com, 1
cipy.com, 1
cir.is, 1
@@ -32892,6 +32751,7 @@ cirasync.com, 1
circara.com, 1
circle-people.com, 1
circle.so, 1
+circle6maildrop.com, 1
circlebox.rocks, 1
circleci.com, 1
circlelytics.com, 1
@@ -32903,16 +32763,16 @@ circlewe.co, 1
circlewe.life, 1
circlewelife.com, 1
circoeia.com, 0
-circolopizza.es, 0
circu.ml, 0
circues.com, 1
circuit.co.uk, 1
circuitcityelectricaladelaide.com.au, 1
circuitclerkmarioncountyms.gov, 1
circular-economy.earth, 1
-circularcityfundingguide.eu, 1
+circularcityfundingguide.eu, 0
circulosocial77.com, 1
circumcision.org, 1
+circumcisionfaq.com, 1
circumstances.ir, 1
circus-maximus.de, 1
circusdays.tk, 1
@@ -32935,6 +32795,7 @@ cirurgicavirtual.com.br, 1
cis.at, 1
cisa.gov, 1
cisabroad.com, 0
+cisalpinatours.it, 1
cisco-training.net, 1
ciscoasanetflow.com, 1
ciscobrewers.com, 1
@@ -32968,7 +32829,6 @@ ciszewskiciesielstwo.pl, 1
citace.com, 1
citacepro.com, 1
citadelle.be, 1
-citadelpark.be, 1
citae.ga, 1
citafogasa.es, 1
citafun.tk, 1
@@ -33029,11 +32889,6 @@ city.kharkov.ua, 1
cityam.com, 1
cityapparels.com, 1
citycalculator.ml, 1
-citycardgand.com, 1
-citycardgante.com, 1
-citycardgent.be, 1
-citycardgent.com, 1
-citycardghent.com, 1
citycarremovals.com.au, 1
citycell.ml, 1
cityconsultants.tk, 1
@@ -33155,7 +33010,6 @@ cityofpage.org, 1
cityofpagedalemo.gov, 1
cityofpalmdaleca.gov, 1
cityofpearidgear.gov, 1
-cityofpeople.gent, 1
cityofperris.gov, 1
cityofpetersburgwv.gov, 1
cityofpevelymo.gov, 1
@@ -33229,7 +33083,6 @@ citywalkr.com, 1
citywidealarms.com, 1
citywidechimneysweephouston.com, 1
citywindsor.ca, 1
-citywinecellar.com, 1
citywisdom.tk, 1
cityworksonline.com, 1
ciubotaru.tk, 1
@@ -33429,7 +33282,6 @@ clariti-health.com, 1
claritician.com, 1
claritin.gq, 1
claritin.ml, 1
-clarity-c2ced.appspot.com, 1
claritydesignworks.com, 1
clarityforspas.com, 1
clarkassociatesinc.biz, 1
@@ -33466,7 +33318,6 @@ clase3.tk, 1
clash-movies.de, 1
clash.taipei, 1
clashclans.pl, 1
-clashclub.com, 1
clashersrepublic.com, 1
clashoflights.ga, 1
clashpost.com, 1
@@ -33476,7 +33327,6 @@ class.com.au, 1
class66.tk, 1
classbasic.com, 1
classbasics.com, 0
-classcreator.io, 1
classdesignhome.com, 1
classdojo.com, 1
classentials.com, 1
@@ -33486,7 +33336,6 @@ classic-diva.ml, 1
classic-literature.com, 1
classic-literature.net, 1
classic-literature.org, 1
-classic.cn, 1
classicalchaos.tk, 1
classicalpilates.ca, 1
classicbakes.com, 1
@@ -33513,11 +33362,11 @@ classicprague.com, 1
classicprague.cz, 1
classicprague.sk, 1
classicpraha.com, 1
-classics.io, 1
classicstories.tk, 1
classificacaogeral.com.br, 1
classificadostodaoferta.tk, 1
classificazionerifiuti.it, 1
+classifieds.ae, 1
classifiedsgulf.com, 1
classifiedspoint.tk, 1
classifylanka.com, 0
@@ -33541,7 +33390,6 @@ claude.me, 1
claude.photo, 1
claude.site, 1
claudearpi.in, 1
-claudearpi.net, 1
claudeleveille.com, 0
claudenougaro.fr, 1
claudia-halfter.de, 1
@@ -33577,7 +33425,6 @@ claytonwinnebagowi.gov, 1
claytwp-hamin.gov, 1
claytwpmi.gov, 1
clazzor.eu, 1
-clb.org.hk, 1
clbmconsultancy.com, 1
clcakes.au, 1
clcakes.com.au, 1
@@ -33617,6 +33464,7 @@ cleanmymattress.ie, 1
cleanmyupholstery.ie, 1
cleanpeakmascot.com.au, 1
cleanpouches.com, 1
+cleanpowerbg.com, 1
cleanrun.com, 1
cleansheetsaz.com, 1
cleanshelf.com, 1
@@ -33639,11 +33487,11 @@ clearbridgebranding.com, 1
clearchatsandbox.com, 1
clearcreekcountyco.gov, 1
clearcreekcountydronepilot.com, 1
+cleared-4-takeoff.com, 1
cleared.io, 1
clearer.cloud, 1
clearfieldcountypa.gov, 1
clearfieldpa.gov, 1
-cleargage.com, 1
cleargoals.com, 1
cleargrain.com.au, 1
clearhumor.tk, 1
@@ -33654,7 +33502,6 @@ clearklima.hu, 1
clearlake.com, 1
clearlinux.org, 1
clearmatics.com, 1
-clearpathtechnology.co.uk, 1
clearpay.co.uk, 1
clearpoint.org, 1
clearpointcreditcounselingsolutions.org, 1
@@ -33705,7 +33552,6 @@ clendeninwv.gov, 1
cleo.com, 1
cleocinonline.gq, 1
cleova.com, 1
-clep.cn, 1
clerkie.io, 1
cles-asso.fr, 1
cles.jp, 1
@@ -33771,6 +33617,7 @@ clevyrvr.com, 1
cleysense.com, 0
clgp.jp, 1
clgraphix.com, 1
+clial.com, 1
clic-music.com, 1
clica.net, 1
click-7979.com, 1
@@ -33782,7 +33629,9 @@ clickandclaim.me, 1
clickapro.com, 1
clickarmy.com, 1
clickatell.com, 1
+clickbizhub.com, 1
clickcell.tk, 1
+clickclickmedia.com.au, 1
clickclock.cc, 1
clickcollect.boutique, 1
clickdebateest.ga, 1
@@ -33803,6 +33652,7 @@ clickmeeting.com, 1
clicknbook.de, 1
clickotine.com, 1
clickpeak.digital, 1
+clickpharmacy.co.uk, 1
clickphobia.ga, 1
clickpress.tk, 1
clickrecados.tk, 1
@@ -33848,7 +33698,6 @@ clim-past.net, 1
clima-techservices.co.uk, 1
climaencusco.com, 1
climaffaires.com, 1
-climall.com, 1
climarte.org, 1
climate-film.com, 1
climate-of-the-past.net, 1
@@ -33861,10 +33710,10 @@ climatecrafters.com, 1
climatejustice.nyc, 1
climatesafepensions.org, 1
climatesmart.ie, 1
-climatetax.com, 1
climatgate.tk, 1
climaticequipment.tk, 1
-climatizzatore.it, 0
+climatizacionyeficiencia.es, 1
+climatizzatore.it, 1
climatizzatore.roma.it, 1
climatizzatoriprezzi.it, 1
climatizzazione.roma.it, 1
@@ -33873,7 +33722,6 @@ climaverde.gr, 1
climb4achild.org, 1
climbernews.com, 1
climbing.tk, 1
-climbinggear.info, 1
climbinghouse.com, 1
climbingmounttoubkal.com, 1
climeradar.com, 1
@@ -33893,8 +33741,6 @@ clingout.com, 1
clinic-manager.academy, 1
clinica.zapto.org, 1
clinicaarques.es, 1
-clinicabelve.com.br, 1
-clinicadeesteticacontagem.com.br, 1
clinicadeesteticaembh.com, 1
clinicadentalados.com, 1
clinicadentalaravena.com, 1
@@ -33922,6 +33768,7 @@ clinicasmedicas.com.br, 1
clinicasoma.pt, 1
clinicastoma.com, 1
clinicatorino.com.br, 1
+clinicelham.com, 1
clinichq.com, 1
clinicortinascali.com, 1
clinicos.cl, 1
@@ -33952,6 +33799,7 @@ clintontwpnj.gov, 1
clintonvillewi.gov, 1
cliomi.gov, 1
clip-hair.net, 1
+clip-reisen.com, 1
clipboard.com.tr, 1
clipclip.com, 1
clipertrucado.com, 1
@@ -33973,6 +33821,7 @@ clnc.to, 1
clnlboard.co.uk, 1
clnnet.ch, 1
clnshrk.club, 0
+cloaker.ru, 0
clochix.net, 1
clock3.com, 1
clockcaster.com, 1
@@ -33987,7 +33836,6 @@ clodeartgallery.it, 1
clodo.it, 1
clodoteam.ga, 1
clog.rocks, 1
-clojurefactory.io, 1
clokdways.com, 1
clomid100mg.ga, 1
clomid50mg.cf, 1
@@ -34000,7 +33848,6 @@ cloneprint.com, 1
cloneuniverse.com, 1
cloneuniverse.de, 1
clonidine-hydrochloride.ga, 1
-clonidine.best, 1
clonix.tk, 1
clonoe.tk, 1
clontarfcricket.com, 1
@@ -34044,7 +33891,6 @@ cloud.fail, 1
cloud.google.com, 1
cloud.gov, 1
cloud1.nl, 1
-cloud10.io, 1
cloud10solutions.technology, 1
cloud24.kz, 1
cloud24x7.us, 1
@@ -34054,7 +33900,6 @@ cloud66.com, 1
cloud9bouncycastlehire.com, 1
cloudads.ga, 1
cloudads.ml, 1
-cloudalice.com, 1
cloudalice.net, 1
cloudapps.digital, 1
cloudatabases.com, 1
@@ -34088,6 +33933,7 @@ cloudeasy-dl.com, 1
cloudeezy.com, 1
cloudera.com, 0
cloudevolutionforum.com.br, 1
+cloudfactory-sftp.com, 1
cloudfast.cf, 1
cloudficient.cloud, 1
cloudficient.com, 1
@@ -34138,6 +33984,7 @@ cloudpingtest.com, 1
cloudplan.nl, 1
cloudplayy.com, 1
cloudpole.de, 1
+cloudpractitionerhelp.com, 1
cloudpublic.pro, 1
cloudrepo.io, 1
cloudrexx.com, 1
@@ -34170,6 +34017,7 @@ cloudstoragecompare.com, 1
cloudstored.nl, 1
cloudstorm.me, 1
cloudstress.ga, 1
+cloudsvibe.com, 1
cloudsweeper.com, 1
cloudsweeper.de, 1
cloudsys.dnsalias.net, 1
@@ -34193,7 +34041,6 @@ cloudwayc.com, 1
cloudwayds.com, 1
cloudwayq.com, 1
cloudways.cm, 1
-cloudwebservices.nl, 1
cloudwellmarketing.com, 1
cloudwithlightning.net, 1
cloudykingdom.com, 1
@@ -34250,7 +34097,6 @@ club-soul.tk, 1
club.zj.cn, 1
club10x.com, 1
clubanimal.cl, 1
-clubapk.com, 1
clubatleticonacionalpotosi.tk, 1
clubauto.guru, 1
clubbers-comtois.tk, 1
@@ -34370,7 +34216,6 @@ cm-law.eu, 1
cm-loures.pt, 1
cm-montemorvelho.pt, 1
cm-penalvadocastelo.pt, 1
-cm-pombal.pt, 1
cm-portimao.pt, 1
cm-ribeiragrande.pt, 1
cm-viladobispo.pt, 1
@@ -34378,7 +34223,6 @@ cm-vizela.pt, 1
cm-vpaguiar.pt, 1
cm1xbet.com, 1
cm91.de, 1
-cmaa.it, 1
cmadeangelis.it, 1
cmagazine.org, 1
cmalet-avocat.fr, 1
@@ -34413,6 +34257,11 @@ cmngroupe.com, 0
cmo.im, 1
cmogus.com, 1
cmonlien.fr, 1
+cmotech.asia, 1
+cmotech.ca, 1
+cmotech.in, 1
+cmotech.news, 1
+cmotech.uk, 1
cmperalta.tk, 1
cmplainpalais.ch, 1
cmprecisiontech.com, 1
@@ -34443,6 +34292,8 @@ cmtk.cloud, 1
cmtportal.co.uk, 1
cmtso.com, 1
cmv.gr, 1
+cmx-survey.com, 1
+cn.fo, 1
cn.search.yahoo.com, 0
cn2euportugal.com, 1
cn8522.com, 1
@@ -34484,6 +34335,7 @@ cnopera.com, 1
cnp.ovh, 1
cnpkg.org, 1
cnpy.gdn, 1
+cnsbordercellatlas.org, 1
cnslub.ru, 1
cnss.gob.do, 1
cntr.fr, 1
@@ -34516,8 +34368,8 @@ coaches-website.de, 1
coachfoundation.com, 1
coachinfopreneur.com, 1
coaching-aus-leidenschaft.com, 1
-coaching-harmonique.fr, 1
coaching-impulse.ch, 0
+coaching-in-veenendaal.nl, 1
coaching-oberhavel.de, 1
coachingforleaders.com, 1
coachingsantcugat.cat, 1
@@ -34614,7 +34466,6 @@ coco-line.ch, 1
cocoa-job.jp, 1
cocoafl.gov, 1
cocoalife.org, 1
-cocoamexico.com, 1
cocobollo-sallanches.com, 1
cocobrother.ddnss.de, 1
cocodroid.com, 1
@@ -34631,7 +34482,6 @@ cocoscastles.co.uk, 1
cocosunbeds.co.uk, 1
cocowine.com, 1
cocresa.tk, 1
-cocula.net, 1
cocyou.ooo, 1
cocytus.services, 1
cod-ggw.ml, 1
@@ -34669,7 +34519,6 @@ code.golf, 1
code.google.com, 1
code.gov, 1
code4rena.com, 1
-code9000.be, 1
code972.com, 1
codeactive.fr, 1
codeactive.net, 1
@@ -34814,7 +34663,6 @@ codifi.com, 1
codific.com, 1
codifique.tk, 1
codigodelbonusbet365.com, 1
-codigoexactodearea.com, 1
codigojose.com, 1
codigomusical.tk, 1
codigosddd.com.br, 1
@@ -34823,14 +34671,12 @@ coding-basic.tk, 1
coding-treff.de, 1
coding.lv, 1
coding.net, 1
-codingale.com, 1
codingame.com, 1
codingame.eu, 1
codingblog.org, 1
codingforspeed.com, 1
codingfromhell.net, 1
codinggirl.com, 1
-codinggirl.net, 1
codinghomeworkhelp.net, 1
codinginfinity.me, 1
codingnbb.com, 1
@@ -34839,6 +34685,7 @@ codingpedia.org, 1
codingwithvera.com, 1
codish.ml, 1
codista.com, 1
+cododigital.co.uk, 1
codowned.com, 1
codriiiasilor.ro, 1
codsan.com, 1
@@ -34870,6 +34717,7 @@ coffeeandjunk.com, 1
coffeebarometer.org, 1
coffeebean.cf, 1
coffeebeanstudios.tk, 1
+coffeebreak.bg, 1
coffeechi.ir, 1
coffeeciel.com, 1
coffeeciel.com.tr, 1
@@ -34918,7 +34766,6 @@ cogolloelegante.com, 1
cogsquad.house, 1
cogstate.com, 1
cogumelosmagicos.org, 1
-coharushika.com, 1
cohassetfirema.gov, 1
cohassetma.gov, 1
cohassetpolicema.gov, 1
@@ -34927,6 +34774,7 @@ cohob.de, 1
coiffbot.fr, 1
coiffeurschnittstelle.ch, 1
coiffure-website.de, 1
+coiga.org, 1
coignard.org, 1
coiin.ai, 1
coil.gov, 1
@@ -34935,6 +34783,7 @@ coimmvest.com, 1
coin-money.tk, 1
coin.dance, 1
coin.space, 1
+coin4hub.com, 1
coinamount.com, 0
coinauctionshelp.com, 1
coinbase.com, 1
@@ -34959,10 +34808,10 @@ coinmotion.com, 1
coinnector.com, 1
coinnewspulse.com, 1
coinpaprika.com, 1
+coinpedia.org, 1
coinplay.com, 1
coinrule.com, 1
coins2001.ru, 1
-coinsales.net, 1
coinscatalog.net, 1
coinsconnect.co.uk, 1
coinsmat.com, 1
@@ -35053,7 +34902,6 @@ coliffe.it, 1
coligo.fr, 1
colinasdog.com.br, 1
colincogle.name, 1
-colinemadral.com, 0
colinespinas.com, 0
colinhouston.com, 1
colinhowells.com, 1
@@ -35086,6 +34934,7 @@ collaborativedrug.com, 1
collabornation.net, 1
collacott.org, 1
collage.me, 1
+collagenoriginal.com, 1
collagepartners.com, 1
collalloc.com, 1
collar.place, 1
@@ -35107,6 +34956,7 @@ collectif-laicite-yallah.be, 0
collectif85.com, 1
collectifpinceoreilles.com, 1
collectionru.com, 1
+collectiontardivel.com, 1
collective-conciousness.monster, 1
collective-incubator.de, 1
collectivecorruption.com, 1
@@ -35146,7 +34996,6 @@ colley.tk, 1
collezione.it, 1
collide.be, 1
collideascope.co, 1
-colliechatter.com, 1
collierlittler.com, 1
collierlunaire.fr, 1
colliervotes.gov, 1
@@ -35185,6 +35034,7 @@ colloquio.tk, 1
colmcille.org, 1
colnevalleyvets.co.uk, 1
colo-tech.com, 1
+colo.io, 1
colocolochile.tk, 1
coloffmedia.com, 1
cologix.com, 1
@@ -35278,6 +35128,7 @@ columbialawreview.org, 1
columbiamemorialhealth.org, 1
columbiamspd.gov, 1
columbiascaffolding.com, 1
+columbiatax.ca, 1
columbiathreadneedle.com, 1
columbiatwpmi.gov, 1
columbuscoffeefest.com, 1
@@ -35288,7 +35139,6 @@ columbustelegram.com, 1
columbustwpmi.gov, 1
columbusunderground.com, 1
columbuswi.gov, 1
-columbuswines.com, 1
colwichks.gov, 1
colwyn.me, 1
colwynfm.com, 1
@@ -35328,7 +35178,6 @@ combron.nl, 1
combustion.tk, 1
comcenter.com, 1
comchezmeme.com, 1
-comcirrus.com, 1
comcol.nl, 1
comdirect.de, 1
comdmedias.fr, 1
@@ -35383,7 +35232,6 @@ comfintouch.com, 0
comfipark.com, 1
comfis.nl, 1
comfitsweets.co.uk, 1
-comflores.com.br, 1
comfortablelife.tk, 1
comfortcareconnection.com, 1
comfortdelgro.com, 1
@@ -35425,7 +35273,6 @@ comm-works.com, 1
comm.cx, 1
comma-store.eu, 1
commagere.com, 1
-commandeleven.com, 1
commanderone.net, 1
commanderx.cf, 1
commanderx.ml, 1
@@ -35460,6 +35307,7 @@ commercialzone.ga, 1
commercialzone.ml, 1
commeunamour.com, 1
commeunefleche.com, 1
+commeunprintemps.com, 1
commfortchat.tk, 1
commissaris-vraagbaak.nl, 1
commissionagenda.com, 1
@@ -35467,15 +35315,13 @@ commissionaires.ca, 1
commissioner.tk, 1
commitsandrebases.com, 1
commloan.com, 1
+commodore64.ca, 1
commodorecoveimprovementdistrict.gov, 1
commonapp.org, 1
-commoncode.com.au, 0
-commoncode.io, 0
commoncog.com, 1
commoncore4kids.com, 1
commongoodit.com, 1
commongrave.tk, 1
-commoninf.com, 1
commonlit.org, 1
commonroom.io, 1
commons-mayflower.tk, 1
@@ -35523,6 +35369,7 @@ communitypreventionpartnership.org, 1
communitysafety.us, 1
communitysouth.net, 1
communitytraining.com.au, 1
+communityvision.ca, 1
commuty.net, 1
commvnion.com, 1
comnaviosaka.com, 1
@@ -35534,7 +35381,6 @@ comodo.nl, 1
comodosslstore.com, 1
comoentrenarperros.tk, 1
comofidelizarclientes.com.br, 1
-comogene.com, 0
comohacerblog.net, 1
comohacerpara.com, 1
comologia.com, 1
@@ -35570,8 +35416,10 @@ companycam.com, 1
companyintranet.au, 1
companyintranet.com.au, 1
companywebcast.com, 0
+comparamejor.com, 0
comparatif-moto.fr, 1
comparativ.net, 1
+comparativadetarifasenergeticas.es, 1
compare-energie.fr, 1
compareairfaredeals.com, 1
compareer.com, 1
@@ -35591,6 +35439,7 @@ compass-security.com, 1
compassbest.com, 1
compassdirectportal.com, 1
compassfinance.com, 1
+compassintladv.com, 1
compassionate-biology.com, 1
compassionatehlt.com, 1
compasslos.com, 1
@@ -35664,13 +35513,11 @@ comprarlomejor.com, 1
comprarpapelhigienico.online, 1
comprascuba.online, 1
comprauncelular.com, 1
-comprebrindes.com.br, 1
compree.com, 1
comprehensiveihc.com, 1
compress.cafe, 1
compressor.io, 1
comprising.de, 1
-comprocanal.com, 1
comprofacil.es, 1
compromis-promesse-vente.fr, 1
compservice.in.ua, 1
@@ -35691,6 +35538,7 @@ compumasapp.com, 1
compunet.biz, 1
compunetics.com, 1
compunetix.com, 1
+compuseguridad.com, 1
compusrit.tk, 1
compustore.pe, 1
compustuff.tk, 1
@@ -35795,7 +35643,6 @@ conceptatelier.de, 1
conceptec.de, 1
conceptfoundation.org, 1
conceptground.com, 1
-conceptofhouse.uk, 1
conceptual.ga, 1
concern.cloud, 1
concert.ga, 1
@@ -35824,6 +35671,7 @@ conclusive.co.za, 1
concor.ne.jp, 1
concord.sh, 1
concordance.bible, 1
+concrefy.com, 1
concretedreamsoftexas.com, 1
concretehermit.com, 0
concretemachines.be, 1
@@ -35905,8 +35753,10 @@ confidentielsn.com, 1
confidentliving.gq, 1
confidentliving.tk, 1
config.schokokeks.org, 1
+configcast.eu, 1
+configcast.net, 1
+configcast.org, 1
configcat.com, 1
-configpoint.group, 1
configserverfirewall.com, 1
configurat.cf, 1
configurat.tk, 1
@@ -35968,7 +35818,6 @@ conkret.mobi, 1
conmatic.tk, 1
connactz.com, 1
connect-again.com, 1
-connect-me.com, 1
connect.facebook.net, 1
connect.gov, 1
connect.net.pk, 1
@@ -36065,6 +35914,7 @@ conseildesarts.ca, 1
conseilgouz.com, 1
conseiller-juridique.ca, 1
conseils-immo.fr, 1
+conseilsmarketing.com, 1
consejoescolardecanarias.org, 1
conselljoventutillesbalears.org, 1
consens.us.org, 1
@@ -36081,6 +35931,7 @@ consigli.it, 1
consiglidisalute.com, 1
consiliarioltd.com, 1
consilio.com, 1
+consilium-ifa.co.uk, 1
consilium-vitae.ch, 1
consiliumvitae.ch, 1
consoe.com, 1
@@ -36133,7 +35984,6 @@ constructionmichelouellet.com, 1
constructionnews.ie, 1
constructionskillstest.com, 1
constructionstudent.uk, 1
-constructive.men, 1
constructoraisaba.com, 1
construguia.co, 1
construred.tk, 1
@@ -36147,8 +35997,8 @@ consulentedellavoro.it, 1
consulenza.pro, 1
consulimp.com.br, 1
consult-altius.co.uk, 1
-consultadepsicoterapia.com, 1
consultancyistanbul.com, 1
+consultar.io, 1
consultation.ai, 1
consultation.biz.tr, 1
consultaveiculopelaplaca.com.br, 1
@@ -36159,7 +36009,6 @@ consultinghero.es, 1
consultinghouse.tk, 1
consultinghousenet.tk, 1
consultingnurseest.ga, 1
-consultoresrey.cl, 1
consultoriaandrade.com.br, 1
consultoriadelactancia.com, 1
consultoriadeseguranca.com.br, 1
@@ -36170,7 +36019,7 @@ consultpetkov.com, 1
consultum.com, 1
consulvation.com, 1
consumatore.it, 1
-consumer.ee, 1
+consumer.ee, 0
consumer.gov, 1
consumer.gov.au, 1
consumer.gq, 1
@@ -36222,6 +36071,7 @@ contemplativeeducation.org, 1
contemptevoke.com, 1
contenedoresdereciclaje.online, 1
contenized.com, 0
+contentcaching.com, 1
contentpass.io, 1
contentpass.net, 1
contents.ga, 1
@@ -36230,6 +36080,7 @@ contessa32experience.com, 0
contestreviewest.ga, 1
contextolog.cf, 1
conti-profitlink.co.uk, 1
+contiinex.com, 1
continuedpath.ca, 1
continuernom.tk, 1
continuousimprovementonline.com, 1
@@ -36262,6 +36113,7 @@ contrastchecker.online, 1
contrastecolombia.com, 1
contrastly.com, 1
contrastsecurity.com, 1
+contratasegurosalud.com, 1
contratderatisation.net, 1
contratti.it, 1
contrattipubblici.org, 1
@@ -36273,7 +36125,6 @@ contro.ga, 1
contro.gq, 1
contro.ml, 1
contro.tk, 1
-control.cn, 1
controladores.net, 1
controlbooth.com, 1
controld.com, 1
@@ -36287,6 +36138,7 @@ controlewiki.be, 1
controlit.eu, 1
controllertech.com, 1
controllingchemsex.com, 1
+controlpad.com, 1
controlpro.mx, 1
controlshiftlabs.com, 1
controltvpodcast.tk, 1
@@ -36308,11 +36160,11 @@ convent-mensing.de, 1
convergence.fi, 1
convergencela.com, 1
convergent.tn, 1
+convergenza.roma.it, 1
convergnce.com, 1
conversationexchange.com, 1
conversatis.cf, 1
converser.tk, 1
-conversiepartners.nl, 1
conversionsciences.com, 1
conversive.nl, 1
convert-fast.photos, 1
@@ -36337,6 +36189,7 @@ conwaysc.gov, 1
conwood.best, 1
conwood.my.id, 1
conxcon.de, 1
+coo.ooo, 1
cooalliance.com, 1
coobis.com, 1
coochiehacks.io, 1
@@ -36367,15 +36220,16 @@ cookingbooks.es, 1
cookingiseasy.tk, 1
cookingperfected.com, 1
cookingperformancegroup.com, 1
-cookinsumos.com, 1
cooko.at, 1
cooks.house, 1
cooksite.tk, 1
+cooktiva.com, 1
cooktoprepairaustin.com, 1
cookwithmanali.com, 1
cool-fouta.com, 1
cool-parties.co.uk, 1
cool-tabs.com, 1
+cool-wallpapers.jp, 1
cool110.tk, 1
cool110.xyz, 1
coolabaroo.com.au, 1
@@ -36395,7 +36249,6 @@ coolexpo.com, 1
coolfilm.cf, 1
coolgeography.co.uk, 1
coolgifs.de, 1
-coolguysflorida.com, 1
coolingupdates.com, 1
coolink.pub, 1
cooljs.me, 1
@@ -36406,6 +36259,7 @@ coolmath.cf, 1
coolpi.nl, 1
coolplus.com, 1
coolprylar.se, 1
+cools.tech, 1
coolsculptingmanhattanbeach.com, 1
coolshirt.tk, 1
coolsoftware.tk, 1
@@ -36418,10 +36272,11 @@ coolutils.com, 1
coolvox.com, 1
coolweirdfacts.ga, 1
coolwinefix.com, 1
+coombsinc.com, 1
coomer.su, 1
coomonte.tk, 1
coonelnel.net, 1
-coop-land.ru, 1
+coop-land.ru, 0
coop.com.py, 1
coopcityinfo.com, 1
coopcoa.pt, 1
@@ -36451,6 +36306,7 @@ copabay.com, 1
copacabanafc.tk, 1
copadata.be, 1
copain.com.mx, 1
+copaint.be, 1
copasulassessoria.com.br, 1
copaxone.com, 1
copd.net, 1
@@ -36466,7 +36322,6 @@ copiisiparinti.ro, 1
copilotgps.com, 1
copilotlive.com, 1
copilotpro.com, 1
-coppelmansmakelaardij.nl, 1
copper.co, 1
copperart.ca, 1
coppercreekconstruction.ca, 1
@@ -36475,6 +36330,7 @@ copperlantern.tk, 1
coppermein.co.za, 1
coppermine-kickers.tk, 1
copperplate.tk, 1
+coppini.com, 1
coproduzindo.com.br, 1
coprotag.com, 1
coprotag.fr, 1
@@ -36526,7 +36382,6 @@ corbuloacademyofmilitaryscience.com, 1
corbusier.gq, 1
corcoranmn.gov, 1
cord-blood.tk, 1
-cordalife.com, 0
cordeirosolutions.ga, 1
cordejong.nl, 0
cordelia.tk, 1
@@ -36547,8 +36402,8 @@ cordovapdak.gov, 1
cordovarpd.gov, 1
corduroyproducts-velvetjackets.tk, 1
core-networks.de, 1
-core-rpg.net, 1
core.edu, 1
+core.ly, 1
core.md, 1
core.org, 1
core.org.pt, 1
@@ -36596,10 +36451,10 @@ coretechnology.ie, 1
coretema.eu, 1
coreum.ca, 1
coreup.de, 1
-corevaluesconstruction.com, 1
corevetconnect.co.uk, 1
corexpert.com, 1
coreyjmahler.com, 1
+corfman.com, 1
corfound.org, 1
corfuny.gov, 1
corgal.com, 1
@@ -36630,6 +36485,7 @@ corlinde.nl, 1
cormac-corp.com, 1
cormed-heverlee.tk, 1
corn.az, 1
+corn.ninja, 1
cornday.org, 1
cornel1801.com, 1
cornelia-kaufmann.tk, 1
@@ -36640,7 +36496,6 @@ cornercafe.tk, 1
cornercircle.co.uk, 1
cornergarage.coop, 0
cornerperk.com, 1
-cornerstone.photography, 1
cornerstone.rocks, 1
cornerstonebuildingbrands.com, 1
cornerstonenorthwest.com, 1
@@ -36652,6 +36507,7 @@ corningcu.org, 1
cornips.nl, 1
cornitek.tk, 1
cornmachine.com, 1
+cornninja.com, 1
cornodo.com, 1
cornthwaitegroup.com, 1
cornut.fr, 1
@@ -36678,6 +36534,7 @@ coronersconnect.co.uk, 1
cororocierodebelen.tk, 1
corovan.com, 1
corp.goog, 1
+corpconsulting.com, 1
corpfin.net, 1
corpheuss.ga, 1
corpio.nl, 1
@@ -36692,7 +36549,6 @@ corporate-electric.ky, 1
corporate-university.org, 1
corporateclash.net, 1
corporatecomputingsolutions.com, 1
-corporatefamilycounseling.co, 1
corporategift.com, 1
corporateinbound.com, 1
corporatelive.azurewebsites.net, 1
@@ -36731,7 +36587,7 @@ correo.si, 1
correotemporal.org, 1
correspond.gq, 1
correspondent.ga, 1
-corretoramichelesalvino.com.br, 1
+corretoramichelesalvino.com.br, 0
corride.at, 1
corridorsands.com.au, 1
corriere.roma.it, 1
@@ -36831,7 +36687,6 @@ cosmicguardians.com, 1
cosmichpc.com, 1
cosmichpc.systems, 1
cosmick9.net, 1
-cosmicmeta.io, 1
cosmicnetworks.cf, 1
cosmictourist.de, 1
cosmicworlds.mobi, 1
@@ -36876,6 +36731,7 @@ costco.com.tw, 1
costco.is, 1
costcoinsider.com, 1
costel.tk, 1
+costelcom.co, 1
costelino.tk, 1
costellofc.co.uk, 0
costflow.ga, 1
@@ -36891,7 +36747,6 @@ costumestylesers.ga, 1
cosude.org.pe, 1
cosumnescsd.gov, 1
cosuno.com, 1
-cosupport.ai, 1
cosy-interior.com, 1
cosyden.tk, 1
cotacasa.com.br, 1
@@ -36899,10 +36754,8 @@ cotak.gov, 1
coteax.com, 1
coteax.nl, 1
cotefrete.com.br, 1
-cotejardin.gent, 1
cotennis.net, 1
coteouestmedia.com, 1
-cotevame.info, 1
coth.ml, 1
cotherstoneschool.org.uk, 1
cothurnes.fr, 1
@@ -36984,6 +36837,7 @@ countrysidemarquees.co.uk, 1
countrysmile.org, 0
county10.com, 1
countybankdel.com, 1
+countyfarmcentre.com, 1
countyofbarton.gov, 1
countyofcolusaca.gov, 1
countyofkingsca.gov, 1
@@ -36998,9 +36852,8 @@ coupon5sm.com, 1
couponava.com, 1
couponchief.com, 0
couponcodesme.com, 1
-couponpaw.com, 1
couponsale.tk, 1
-couponzil.com, 1
+couponzil.com, 0
courage-sachsen.org, 1
courage.cf, 1
couraqe.tk, 1
@@ -37019,6 +36872,7 @@ courseorbit.com, 1
coursera.org, 1
coursesanswer.com, 1
coursesidekick.com, 1
+courseware.nl, 1
courseworkbank.info, 1
coursingweb.tk, 1
courstoujours.be, 1
@@ -37038,6 +36892,7 @@ couteaux-clic.com, 1
couteaux-savoie.com, 1
couteauxsurvie.fr, 1
coutellerie-suisse.fr, 1
+coutelleriederibbes.fr, 1
coutts.com, 1
couverture-barre.fr, 1
couverture-saint-nazaire.fr, 1
@@ -37078,6 +36933,7 @@ covid19.gov.ph, 1
covid19.melbourne, 1
covid19.nhs.uk, 1
covid19antigen.com.au, 1
+covid19cellatlas.org, 1
covid19dataportal.si, 1
covid19responsepod.com, 1
covid19scotland.co.uk, 0
@@ -37095,7 +36951,6 @@ covidstats.gr, 1
covidtest.gov, 1
covidtesthonolulu.org, 1
covidtests.gov, 1
-covidtracker.fr, 1
covisa.cl, 1
covisian.com, 0
covoiturage.fr, 1
@@ -37104,6 +36959,7 @@ cowbird.org, 1
cowcreek-nsn.gov, 1
coweasy.com, 1
cowetaga.gov, 1
+cowlculator.com, 1
cowleycountyks.gov, 1
cowleysexeter.co.uk, 1
cowlitzwa.gov, 1
@@ -37113,7 +36969,6 @@ coworking-luzern.ch, 1
coworking-space.tk, 1
coxcapitalmanagement.com, 1
coxhealthfoundation.com, 1
-coxxs.me, 1
coxxs.moe, 1
coya.tw, 1
coyo.tl, 1
@@ -37150,6 +37005,7 @@ cpasaguenay.ca, 1
cpaspecialisters.ga, 1
cpasperdu.com, 1
cpbanq.com, 1
+cpbonline.co.za, 1
cpcbegin.tk, 1
cpcclarkesville.org, 1
cpchur.ch, 0
@@ -37173,6 +37029,7 @@ cpfrancophonie.org, 1
cpfs-group.com, 1
cpfurni.com, 0
cpg.de, 1
+cpgdgs.com, 1
cpgiiaragon.es, 1
cphollywoodproduct.ml, 1
cphpvb.net, 1
@@ -37222,6 +37079,7 @@ cqradio.tk, 1
cqre.business, 1
cqswxx.com, 1
cqvradio.ddns.net, 0
+cr-altavalsugana.net, 1
cr.search.yahoo.com, 0
cr05.fr, 1
cr9499.com, 1
@@ -37249,7 +37107,6 @@ crackhomes.com, 1
cracklab.tk, 1
crackpfer.de, 1
crackrequest.org, 1
-crackserialkey.co, 1
cracksnet.tk, 1
crackstation.net, 1
crackstreams.top, 1
@@ -37280,6 +37137,8 @@ craft.eu.org, 1
craftadda.com, 1
craftandbuild.de, 1
craftbyhand.com, 1
+craftcenter.ca, 1
+craftcentre.ca, 1
craftchocolate.store, 1
craftcms.com, 1
crafted.cat, 1
@@ -37305,7 +37164,6 @@ craftshiponline.tk, 1
craftsmandruggets.com, 1
craftsmany.net, 1
crafttalk.tk, 1
-craftutor.com, 1
craftwarehouse.com, 1
craftwmcp.xyz, 1
craftychameleonbar.com, 1
@@ -37314,6 +37172,7 @@ craftydev.design, 1
craftyguy.net, 1
craftyphotons.net, 1
craftyun.cn, 1
+craftzone.info, 0
craig-mullins.com, 1
craigary.net, 0
craigbates.co.uk, 0
@@ -37322,8 +37181,8 @@ craigfrancis.co.uk, 1
craigheadcountyar.gov, 1
craignewmarkphilanthropies.org, 0
craigphillips-work.cf, 1
-craigrouse.com, 1
craigsaper.com, 1
+craigtodd.com, 1
craigwfox.com, 0
crain.com, 1
cramer-group.com, 1
@@ -37393,7 +37252,6 @@ crazycube.fr, 1
crazycube.tk, 1
crazydomains.ae, 1
crazydomains.co.uk, 1
-crazydomains.com, 1
crazydomains.com.au, 1
crazydomains.in, 1
crazydrivers.tk, 1
@@ -37469,6 +37327,7 @@ crearpc.com, 1
creartcol.tk, 1
creartsynergy.org, 1
creasetheband.tk, 1
+creastyl.com, 1
creatable.de, 1
create-it.cz, 1
create-ls.jp, 1
@@ -37483,7 +37342,6 @@ createcpanama.com, 1
creategyx.ga, 1
createit.com, 1
creately.com, 1
-createme.com.pl, 1
createmvp.com, 1
createstudios.com.au, 0
createuniforms.co.za, 1
@@ -37527,6 +37385,7 @@ creativeliquid.com, 1
creativemarket.com, 1
creativematters.ch, 0
creativemindslms.tk, 1
+creativemood.mx, 1
creativemotion.io, 1
creativenz.govt.nz, 1
creativepatterns.io, 1
@@ -37581,6 +37440,7 @@ creditcardbalancetransferoffers.com, 1
creditcardgenerator.money, 1
creditcheckup.com, 1
creditcorponline.com, 1
+creditenonstop.ro, 1
crediteurope.ru, 1
creditfair.in, 1
credithuman.com, 1
@@ -37588,6 +37448,7 @@ creditif.tk, 1
creditkarma.ca, 1
creditkarma.com, 1
creditkarma.pro, 1
+creditnonstop.ro, 1
creditocofidis.it, 1
creditoconsolidado.pt, 1
creditopessoal.pt, 1
@@ -37616,6 +37477,7 @@ creeksideproconstruction.com, 1
creelandgow.com, 1
creep.tk, 1
creepycraft.nl, 1
+creepymemes.com, 1
creepynuts.com, 1
creepypastas.com, 1
creepystories.tk, 1
@@ -37654,6 +37516,7 @@ crestresearch.ac.uk, 1
crestron.com, 1
crestviewky.gov, 1
crestwoodky.gov, 1
+crestwoodmowing.com.au, 1
cretdupuy.com, 0
creteangle.com, 1
cretection.network, 1
@@ -37722,7 +37585,6 @@ criminal-market.ml, 1
criminal-news.tk, 1
criminal.enterprises, 1
criminalcasecheats.ml, 1
-criminalip.io, 1
criminallawyerjobdescription.ga, 1
criminallawyerjobdescription.gq, 1
criminallawyerjobdescription.ml, 1
@@ -37785,6 +37647,7 @@ cristals.ga, 1
cristaltercos.com.br, 1
cristau.org, 1
cristenberens.tk, 1
+cristi.io, 1
cristiaen.nl, 1
cristian-alexander.tk, 1
cristiandumitru.tk, 1
@@ -37839,6 +37702,7 @@ crmdumariage.com, 1
crmforce.mil, 1
crmieportal.com, 1
crmofiweb.net, 1
+crmphenm.com, 1
crmplace.com, 1
crmservice.fi, 1
crmtaxi.ml, 1
@@ -37849,7 +37713,6 @@ croachlife.com, 1
croatia.hr, 1
crobeauty.com, 1
croceverdevb.it, 1
-crocheclube.com, 1
crocheteursdefrance.fr, 1
crochetkim.com, 1
crocia.com, 1
@@ -37881,6 +37744,7 @@ cronenberg.cc, 1
cronicademuro.tk, 1
cronicanet.com.br, 1
cronicasjaponicas.com, 1
+cronistadooculto.com.br, 1
cronix.cc, 1
cronjob.de, 1
cronobox.one, 1
@@ -37920,7 +37784,6 @@ crossedwires.net, 1
crossfireintegration.com, 1
crossfiremovies.tk, 1
crossfitalvalade.com, 1
-crossfitblau.com, 1
crossformer.com, 1
crossfox.red, 1
crosslaketech.com, 1
@@ -37949,7 +37812,6 @@ crowdee.com, 1
crowdfavorite.com, 1
crowdfiber.com, 1
crowdfundingdream.com, 1
-crowdfundinggent.be, 1
crowdpress.it, 1
crowdsim3d.com, 1
crowdstack.com, 1
@@ -37957,7 +37819,6 @@ crowdstack.io, 1
crowdsupply.com, 1
crowefitlab.com, 1
croweleaseaccountingexpress.com, 1
-croweserver.com, 1
crowleybrynn.com, 1
crowleytxlicensedelectrician.com, 1
crown-beverage.com, 1
@@ -37972,6 +37833,8 @@ crownednetwork.com, 1
crownhotelharrogate.com, 1
crownmarqueehire.co.uk, 1
crownmazda.ca, 1
+crownmutual.com, 1
+crownmutualgroup.com, 1
crownpeak.com, 1
crownpoint.com, 0
crownsterling.io, 1
@@ -38086,6 +37949,7 @@ crypto-economy.com, 1
crypto-gambling.tv, 1
crypto-gaming.tk, 1
crypto-iptv.online, 1
+crypto-recovery.ch, 1
crypto-trade.org, 0
crypto-unveil.com, 0
crypto-wiki.tk, 1
@@ -38110,7 +37974,6 @@ cryptodetector.io, 1
cryptodore.com, 1
cryptodredge.org, 1
cryptoearnblog.xyz, 1
-cryptofacilities.co.uk, 1
cryptofacilities.com, 1
cryptofan.org, 1
cryptofinance.ai, 1
@@ -38143,6 +38006,7 @@ crypton.vercel.app, 1
crypton.wiki, 1
crypton.xyz, 1
cryptonaire.ga, 1
+cryptonewsz.com, 1
cryptonit.cf, 1
cryptonom.org, 1
cryptonym.com, 1
@@ -38246,7 +38110,6 @@ csafederalsummit.com, 1
csale.co.il, 1
csapa.com, 1
csaposs.com, 1
-csasummit.net, 1
csasummit.org, 1
csaurl.org, 1
csautomation.com.au, 1
@@ -38259,6 +38122,7 @@ cschreiber.llc, 1
cschristmas.com.au, 1
csci571.com, 1
cscmotors.com, 1
+csco-compare.com, 1
csd-sevnica.si, 1
csd-slovenije.si, 1
csdacadcv.ga, 1
@@ -38288,7 +38152,6 @@ csgbusiness.co.uk, 1
csghomedesignbuild.com, 1
csgo-roulette.ru, 1
csgo.ac.cn, 1
-csgo.help, 1
csgo.net, 1
csgo.su, 1
csgodb.net, 1
@@ -38442,6 +38305,7 @@ ctyrisinkneri.cz, 1
cu247secure.ie, 1
cua911.gov, 1
cuadrosblangar.es, 1
+cuantusambiental.com, 1
cuarentagrados.tk, 1
cuaresmaysemanasanta.tk, 1
cuartaraiz.com, 1
@@ -38512,7 +38376,6 @@ cucumber.io, 0
cuddlecat.io, 1
cuddlecomfort.com, 1
cuddlyaf.com, 1
-cuddlybeardaycare.org, 1
cudesa.gq, 1
cudesyb.tk, 1
cudoo.de, 1
@@ -38541,7 +38404,6 @@ cuio.net, 1
cuir-lipari.fr, 1
cuisine-centrale17.fr, 1
cuisine-ultime.fr, 1
-cuisiniste-974.re, 1
cuitrau.tk, 1
cujanovic.com, 1
cukrarnalahoda.cz, 1
@@ -38589,8 +38451,6 @@ culturesouthwest.org.uk, 1
culturestraveled.com, 1
culturevision.com, 1
culturism.ml, 1
-cultuur.gent, 1
-cultuurinonderwijs.be, 1
culvers.com, 1
cumberland.edu, 1
cumberlandcoil.gov, 1
@@ -38634,7 +38494,6 @@ cuorec3.co.jp, 1
cuoredesigns.tk, 1
cuorineri.tk, 1
cupabonita.com, 1
-cupbeario.info, 1
cupcake.io, 1
cupcake.pt, 1
cupcakestatus.com, 1
@@ -38648,6 +38507,7 @@ cupoane-reducere.net, 1
cupom.net, 1
cupomia.com.br, 1
cuponesmasdescuentos.tk, 1
+cupons360.com.br, 1
cuppen.de, 1
cuppen.marketing, 1
cuppen.me, 1
@@ -38659,7 +38519,6 @@ curacao.tk, 1
curacaodiveguide.com, 0
curamail.co.uk, 1
curamcare.ml, 1
-curaprox.co.th, 1
curareldolordeespalda.com, 1
curascapes.com, 1
curatednews.xyz, 1
@@ -38669,6 +38528,7 @@ curbhe.ro, 1
curbsandstoops.com, 1
curbsoftware.com, 1
curbza.com, 1
+cure53.de, 1
cureatr.com, 1
cureine.com, 1
cureyou.com.tw, 1
@@ -38705,6 +38565,7 @@ currency.wiki, 1
currencyfreaks.com, 1
currencyreader.gov, 1
currencyreaderapplication.gov, 1
+currencyroot.com, 1
current-ip.com, 1
current.com, 0
currentbitcoin.news, 1
@@ -38866,6 +38727,7 @@ cuxpool.club, 1
cuxpool.net, 1
cuyahogacommunitycollege.tk, 1
cuyahogacountyvotesoh.gov, 1
+cv-generator-fe-eu.herokuapp.com, 1
cv.fr, 1
cv.se, 1
cvalda.tk, 1
@@ -38914,6 +38776,7 @@ cvwizard.com, 1
cvwrfut.gov, 1
cw-bw.de, 0
cw.center, 1
+cwa-online.nl, 1
cwaclub.tk, 1
cwaga.me, 1
cwage.com, 0
@@ -38941,7 +38804,6 @@ cwi.fi, 1
cwinfo.eu, 1
cwinfo.fi, 1
cwinfo.net, 1
-cwinfo.org, 1
cwluherstory.com, 1
cwmart.in, 1
cwmcarpentry.com, 1
@@ -39040,7 +38902,6 @@ cyberdns.com, 1
cyberdog.ch, 1
cyberdragon.tk, 1
cyberduck.io, 1
-cyberdyne.ie, 1
cyberee.cz, 1
cyberex.es, 1
cyberexplained.info, 1
@@ -39138,7 +38999,6 @@ cybersight.org, 1
cybersins.com, 1
cyberskyline.com, 1
cybersmart.co.uk, 1
-cybersmartdefence.com, 1
cybersolution.tk, 1
cybersoulz.com, 1
cybersound.tk, 1
@@ -39152,7 +39012,6 @@ cybersystem.io, 1
cybertalents.com, 1
cyberteam.info, 1
cybertechnics.lk, 1
-cyberthreatintelligencenetwork.com, 1
cyberti.work, 1
cybertinus.nl, 1
cybertn.gov, 1
@@ -39178,11 +39037,11 @@ cybozu.cn, 1
cybozu.com, 1
cybrient.com, 1
cybrix.io, 1
-cybrossec.com, 1
cybsafe.com, 1
cyburbia.org, 1
cycc.cloud, 1
cyclamen.tk, 1
+cycleboss45.fr, 1
cycledownunder.com, 1
cycledynamics.physio, 1
cyclehackluxembourgcity.lu, 1
@@ -39211,13 +39070,14 @@ cyelint.com, 1
cyesec.com, 1
cyflare.one, 1
cyfly.org, 1
+cyformatic.com, 1
cygenx.com, 1
-cygnan.com, 1
cygnatus.com, 1
cygnius.net, 1
cyjm.com, 1
cykelbanor.se, 1
cyklistika24.cz, 1
+cyklokoalicia.sk, 1
cylex-italia.it, 1
cylex.noip.me, 1
cyllos.me, 1
@@ -39266,7 +39126,6 @@ cyson.tech, 1
cystotech.com, 1
cytat.tk, 1
cytegic-update-packages.com, 1
-cything.io, 1
cytobank.org, 1
cytosorbents.com, 1
cytovet.ru, 1
@@ -39307,7 +39166,7 @@ czprothz.tk, 1
czqu.cc, 1
czqu.net, 1
czteryporyroku.edu.pl, 1
-czwartybrat.pl, 1
+czwartybrat.pl, 0
czymamdzisimieniny.pl, 1
czzs.org, 1
d-20.fr, 1
@@ -39363,7 +39222,6 @@ d36594.com, 1
d39rl9amo4q27v.cloudfront.net, 1
d3d3.tk, 1
d3dev.cf, 1
-d3drone.com, 1
d3lab.net, 1
d3oe4g2tw01ssi.cloudfront.net, 1
d3ojty55ovjfr5.cloudfront.net, 1
@@ -39418,6 +39276,7 @@ d9397.com, 1
d9728.co, 1
d9and10sports.com, 1
da-schaewel.de, 1
+da-tex.com.ua, 0
da-tixe.ml, 1
da-tixe.tk, 1
da42foripad.com, 1
@@ -39444,6 +39303,7 @@ dabstore.no, 1
dabstore.org, 1
dabuzz.tk, 1
dacada-porn.com, 1
+dacadoo.com, 1
dacangku.com, 1
dacautocentres.com, 1
daceurope.co.uk, 1
@@ -39464,7 +39324,6 @@ dachsklep.pl, 1
daciaforum.nl, 1
daciamodellen.nl, 1
daconsult.uk, 1
-dacooninternational.com, 1
dacsanchatviet.com, 1
dacsansach.com, 1
dacxichain.com, 1
@@ -39477,7 +39336,7 @@ daddybio.com, 1
daddyfinger.me, 1
daddyhax.ml, 1
daddylonglegs.tk, 1
-daddyschickenshack.com, 1
+daddyschickenshack.com, 0
daddysfranchising.com, 1
daddysluder.net, 1
dadecityfl.gov, 1
@@ -39519,13 +39378,13 @@ dafmeyda.com, 1
dafong.com, 1
dafont.com, 1
daft.ie, 1
+daftarpenginapanbatu.com, 1
dafunda.com, 1
dafuq.xyz, 1
dafyddcrosby.com, 1
dag-berlin.tk, 1
dag-konsult.com, 1
dag-ogni.tk, 1
-dag.cn, 1
dagallemaal.be, 1
daganghalal.com, 1
daganzo.tk, 1
@@ -39583,6 +39442,7 @@ dailyfictive.com, 1
dailyfish.ru, 1
dailyforex.com, 1
dailyfx.com, 1
+dailygamemoments.com, 1
dailyhealthylife.ml, 1
dailyhealthylife.tk, 1
dailyhomestore.cl, 1
@@ -39597,6 +39457,7 @@ dailymedicalinfo.com, 1
dailymotion.com, 1
dailynewsclubs.ga, 1
dailynewsfrommedjugorje.ml, 1
+dailynk.com, 1
dailynorthern.com, 1
dailynorthwestern.com, 1
dailyotovinfast.com.vn, 1
@@ -39657,6 +39518,7 @@ dal-loop.xyz, 1
dal.net.sa, 1
dalagore.com, 1
dalailamafoundation.org, 1
+dalat.blog, 1
dalb.in, 1
dalbar.com, 1
dalbarsqm.com, 1
@@ -39691,7 +39553,6 @@ dallaswater.gov, 1
dallaswestinternational.ga, 1
dallatana.tk, 1
dallatur.com.br, 1
-dallemon.dk, 1
dalliard.ch, 1
dallinbryce.com, 1
dallincooper.com, 1
@@ -39721,7 +39582,6 @@ dambo.tk, 1
dame.cf, 1
damedrogy.cz, 1
dameeq.cf, 1
-damgan.com, 1
damgoodmedia.com, 1
damhnaitdoyle.com, 1
damianmalrechauffe.tk, 1
@@ -39789,6 +39649,7 @@ dance.nyc, 1
dancechart.tk, 1
dancefm.tk, 1
dancehome.com, 1
+dancenowportal.com, 1
danceonline.fi, 1
danceordienet.tk, 1
danceproducciones.com, 1
@@ -39806,7 +39667,6 @@ danderco.in, 1
dandia.ro, 1
dandie.tk, 1
dandsplumbers.com, 1
-danduran.me, 1
dandymodz.tk, 1
dandymrsb.com, 1
danecounty.gov, 1
@@ -39821,11 +39681,12 @@ dangarjim.com, 1
dangeredwolf.com, 1
dangeredwolf.net, 1
dangerscience.com, 1
-dangersolutions.com.au, 1
dangmai.tk, 1
dangr.zone, 0
danhalliday.com, 1
danhiggins.net, 1
+danhotels.co.il, 1
+danhotels.com, 1
dania.gq, 1
dania.ml, 1
danibooks.de, 1
@@ -39851,7 +39712,6 @@ danielacocco.it, 1
danielacorahansson.com, 1
danieladentista.com, 1
danielaferpe.tk, 1
-danielagustafsson.fi, 1
danielaklaus.de, 1
danielandantonia.com, 1
danielaswish.org, 1
@@ -39890,7 +39750,6 @@ danielheal.net, 0
danielhinterlechner.eu, 1
danielhurley.com, 1
danielhurley.eu, 1
-danielhurley.ie, 1
danielhurley.info, 1
danielhurley.org, 1
danielittlewood.xyz, 1
@@ -39963,7 +39822,6 @@ dankojunasevic.tk, 1
dankrpg.xyz, 1
danla.nl, 1
danlockton.tk, 1
-danloona.nl, 1
danmaby.com, 1
danmarksbedstefredagsbar.dk, 1
danmassarano.com, 1
@@ -40022,7 +39880,6 @@ dantesinferno.tk, 1
danthecloudman.com, 1
dantikap.tk, 1
danux.co.uk, 1
-danvillebikeandfootwear.com, 1
danvillein.gov, 1
danvillevt.gov, 1
danw.io, 1
@@ -40062,7 +39919,6 @@ dapss-ut.gov, 1
dapursolo.tk, 1
daqq.com, 1
daracokorilo.com, 1
-darajambili.com, 1
daralfajr.site, 1
daramad-telegram.ga, 1
daravk.ch, 1
@@ -40179,7 +40035,6 @@ darkserver.fedoraproject.org, 1
darkserver.stg.fedoraproject.org, 1
darksideprod.tk, 1
darksignsgame.tk, 1
-darksignsonline.com, 1
darksilver.nl, 1
darkskymap.com, 1
darkskymd.org, 1
@@ -40216,7 +40071,6 @@ darrenlines.uk, 1
darrenm.net, 1
darrenockert.com, 1
darrouzettisd.gov, 1
-darshanalytics.com, 1
dart-tanke.com, 1
dart-tanke.de, 1
dartagnan.com, 1
@@ -40224,6 +40078,7 @@ dartbeginners.tk, 1
dartcarrousel.tk, 1
dartcode.org, 0
dartergroup.com, 1
+dartijan.com, 1
dartmold.com, 1
dartmoor-railway-association.org, 1
dartmouth-health.org, 1
@@ -40274,7 +40129,6 @@ dashboardbiodiversiteit.nl, 1
dashboardphilippines.com, 1
dashdoc.eu, 1
dashdrive.net, 1
-dashfyio.info, 1
dashice.com, 1
dashipping.com, 1
dashlane.com, 1
@@ -40288,6 +40142,7 @@ daskirschhaus.com, 1
dasler.eu, 1
dasmailarchiv.ch, 1
dasolindustrialpark.tk, 1
+dassettpottery.com, 1
dastchin.live, 1
dastchin.shop, 1
dastelefonbuch.de, 1
@@ -40300,6 +40155,8 @@ data-analysis.tokyo, 1
data-bot.xyz, 1
data-detox.de, 1
data-exchange.tk, 1
+data-fortress.ca, 1
+data-fortress.com, 1
data-jt.de, 1
data-loader.com, 1
data-mail.tk, 1
@@ -40310,6 +40167,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.gov, 1
@@ -40325,6 +40183,7 @@ database.com, 1
databasedrivers.cloud, 1
databasez.net, 1
databeam.de, 0
+databiz.co, 1
databiz.ga, 1
datablender.nl, 1
databridge360.com, 0
@@ -40336,15 +40195,17 @@ datacandy.com, 0
datacaptive.com, 1
datacave.is, 1
datacenter-online.com, 1
+datacenter.news, 1
datacenterbrasil.ga, 1
datacenternews.asia, 1
+datacenternews.ca, 1
datacenternews.co.nz, 1
datacenternews.us, 1
datacenterunited.com, 1
-datacentrenews.eu, 1
+datacentrenews.in, 1
+datacentrenews.uk, 1
datacentresupport.com, 1
datacloud.gq, 1
-datacolab.pt, 1
datacom.co.nz, 1
datacom.com, 1
datacom.com.au, 1
@@ -40356,6 +40217,7 @@ datacomlocalgovt.co.nz, 1
datacomm.com, 1
datacommissioner.gov.au, 0
datacool.tk, 1
+datacorp.fr, 1
datadefendersforum.com, 1
datadoghq.com, 1
datadorf.de, 1
@@ -40376,11 +40238,9 @@ datahaus.construction, 1
datahove.no, 1
datainvest.ai, 1
datainvest.pl, 1
-dataispro.com, 1
datajournalism.com, 1
datakick.org, 1
datakl.com, 1
-datakontext.com, 1
datalich.com, 1
datalife.gr, 1
datalift.io, 0
@@ -40398,7 +40258,6 @@ datamish.com, 1
datamotion.com, 1
datanaka.com, 1
datanetusa.com, 1
-datapathsummit.com, 1
datapiped.com, 1
dataprisma.com.br, 1
dataprivacyframework.gov, 1
@@ -40413,10 +40272,10 @@ dataroom-online.org, 1
dataroom.hu, 1
datarooms.com, 1
datasat.solutions, 1
+datascene.com.au, 1
datascience-pm.com, 1
datascience.cafe, 1
datasciencedojo.com, 1
-datasciocean.tech, 1
datascope.io, 1
datasharpacademy.com, 1
datashock.com, 1
@@ -40451,7 +40310,6 @@ datatruckers.org, 1
datatruckers.social, 1
datatube.tk, 1
datatypes.net, 1
-dataunion.com, 1
datavaultalliance.com, 0
datavitec.com, 1
datavizable.org, 1
@@ -40464,6 +40322,7 @@ dataxl.net, 1
datazoo.asia, 1
datazoo.com, 1
date-conference.com, 1
+dateable.co, 1
dated.fun, 1
dateien.at, 1
dateierweiterung.com, 1
@@ -40483,9 +40342,7 @@ datenreiter.gq, 1
datenretter.tk, 1
datenrettung360.at, 1
datenrettung360.de, 1
-datensalat.info, 1
datenschutz-berlin.de, 1
-datenschutz-consult.de, 1
datenschutz-gruenwald.de, 1
datenschutz-individuell.de, 1
datenschutz-isny.de, 1
@@ -40554,6 +40411,7 @@ daubecity.de, 1
daubehosting.de, 1
dauenhauer.de, 1
daughertyplasticsurgery.com, 1
+daugoitot.com, 0
daum-group.de, 1
daunendecke.at, 1
daunendecke.de, 1
@@ -40582,7 +40440,6 @@ davemusic.tk, 1
davenportok.gov, 1
daveoc64.co.uk, 1
davepearce.com, 1
-davepio.info, 1
davepullig.co.uk, 1
daveredfern.com, 1
daveroverts.nl, 0
@@ -40614,6 +40471,7 @@ davidandersson.se, 1
davidbach.com, 1
davidbaechtold.ch, 1
davidbennettgallowayiii.com, 0
+davidbindel.com, 1
davidbovino.com, 0
davidbranco.me, 1
davidbrito.tech, 1
@@ -40644,6 +40502,7 @@ davidgrudl.com, 1
davidhastingseckerd.com, 0
davidheineman.net, 1
davidho.org, 1
+davidhodali.com, 0
davidhurl.net, 1
davidinteriors.tk, 1
davidje13.com, 1
@@ -40653,7 +40512,6 @@ davidjusto.com, 1
davidkatz.tk, 1
davidkeane.com, 1
davidkennardphotography.com, 1
-davidking.xyz, 1
davidknoll.me.uk, 1
davidkoonarwindsor.com, 0
davidkyburz.ch, 0
@@ -40666,7 +40524,6 @@ davidlindekilde.dk, 1
davidlouisedelman.com, 1
davidlyness.com, 1
davidmanouchehri.com, 1
-davidmcevoy.org.uk, 1
davidmessenger.co.uk, 1
davidmgarvin.com, 1
davidmirandamd.com, 0
@@ -40685,6 +40542,7 @@ davidpearce.org, 1
davidpescarolo.it, 1
davidrichardgallery.com, 1
davidrichardson.com, 1
+davidrichardson.work, 1
davidritchie.tk, 1
davidroker.co, 1
davidrteixeira.com, 1
@@ -40766,7 +40624,6 @@ dawsonmt.gov, 1
dax-voirie.fr, 1
daxble.xyz, 1
daxenexpress.com, 1
-daxis.io, 1
daxisweb.net, 1
daxo.io, 1
daxoptimizer.com, 1
@@ -40784,7 +40641,6 @@ daycontactlens.com, 1
daycubrem.com, 1
daydream.is, 1
daydream.team, 1
-dayekelly.com, 1
dayesh.tk, 1
daygametraining.com, 1
daylafit.com, 1
@@ -40792,8 +40648,6 @@ daylightpirates.org, 1
daylinq.nl, 1
daymail.io, 1
dayman.net, 1
-daymark.foundation, 1
-daymark.us, 1
daymarksi.com, 1
daymi.co, 0
daymprove.life, 1
@@ -40824,7 +40678,7 @@ daywindrecordingstudio.com, 1
daywindrecords.com, 1
daywindworship.com, 1
dayz.com, 1
-daz8activator.com, 1
+dazpak.com, 1
dazz.io, 1
dazzit.xyz, 1
dazzledrive.tk, 1
@@ -40882,9 +40736,8 @@ dbsalon.beauty, 1
dbsbeautystore.cl, 1
dbsinergy.tk, 1
dbsinternational.org, 1
+dbsm.com, 1
dbsql.ru, 1
-dbt3ch.com, 1
-dbtechreviews.com, 1
dbtest5.com, 1
dbtotalnet.tk, 1
dbtsai.com, 0
@@ -40904,7 +40757,6 @@ dc-zone.com, 1
dc7342.im, 1
dcache.org, 1
dcain.me, 1
-dcampusbd.com, 1
dcard.tw, 1
dcards.in.th, 1
dcareer.tk, 1
@@ -40940,7 +40792,6 @@ dcm.com, 1
dcmarvelunited.com, 1
dcmcleanair.com, 1
dcmediahosting.com, 1
-dcmeventmanagement.com, 1
dcmt.co, 1
dcnews.jp, 1
dco.sg, 1
@@ -40988,6 +40839,7 @@ ddays2008.org, 1
ddbservices.co.uk, 1
ddcakedeliveryservice.co.uk, 1
dddd.loan, 1
+ddduk.org, 1
ddeaejwa.ml, 1
ddel.de, 1
dden.ca, 0
@@ -41105,7 +40957,6 @@ deamsterdam.ml, 1
deanandnatalia.co.za, 1
deanbank.com, 1
deanconsultancy.co.uk, 1
-deane.li, 1
deano-s.co.uk, 1
deanvending.com, 1
deanwest.com, 1
@@ -41126,6 +40977,7 @@ deathclub.eu, 1
deathcult.fun, 1
deathlords.tk, 1
deathmarch.tk, 1
+deathnotice.irish, 1
deathofspring.com, 0
deathrockstar.tk, 1
deathwar.tk, 1
@@ -41174,13 +41026,10 @@ debian-hell.org, 1
debian.link, 1
debianizzati.org, 1
debigare.com, 1
-debijloke.be, 1
-debijloke.gent, 1
debita.fi, 1
debita.org, 1
debitcloud.com, 1
debitterballetjes.tk, 1
-deblender.be, 1
deblender.shop, 1
deblier.dynv6.net, 1
deblocking.ga, 1
@@ -41198,6 +41047,7 @@ debraschilling.de, 1
debrasclassiccleaning.com, 1
debraydesign.com.au, 1
debricked.com, 1
+debridleech.com, 1
debrunet.nl, 1
debruns.ie, 1
debt-consolidation-reviews.org, 1
@@ -41236,9 +41086,8 @@ decathlon.vn, 1
decathlonag2r.com, 1
decaturcountyiowa.gov, 1
decaturcountytn.gov, 1
-decaturhistory.com, 1
decaturian.com, 1
-decaturish.com, 1
+decaturish.com, 0
deccanvalue.com, 1
deceasedonline.com, 1
decentrala.org, 1
@@ -41287,6 +41136,7 @@ decompressneuroma.com, 1
deconstructind.ro, 1
decopros.fr, 1
decor-anna.com, 1
+decor-essentials.com, 1
decor-live.ru, 1
decor-prazdnik.ru, 1
decora.pl, 0
@@ -41361,15 +41211,13 @@ deelmijnreis.nl, 1
deelodge.art, 0
deemasfashion.us, 1
deemlove.com, 1
-deenergiecentrale.be, 1
-deenergiecentrale.gent, 1
deeonix.eu, 1
deep-core.tk, 1
deep-labs.com, 1
deep-wave-hair-extensions.tk, 1
deepany.ai, 1
deeparamaraj.com, 1
-deepbluecozumel.com, 0
+deepbluecozumel.com, 1
deepbluecrafting.co.uk, 1
deepblueemail.com, 1
deepbox.swiss, 1
@@ -41381,7 +41229,6 @@ deephill.com, 1
deephue.studio, 1
deephustlellc.com, 1
deepid.com, 1
-deepinnov.com, 1
deepinsight.io, 1
deepl.com, 1
deeplink-medical.com, 1
@@ -41439,9 +41286,6 @@ defesa.gov.br, 1
defesaaereanaval.com.br, 1
defiant.com, 1
defiantphoenix.net, 0
-defietsambassade.be, 1
-defietsambassade.gent, 1
-defietsambassadegent.be, 1
defifa.ga, 1
defile.ml, 1
defiler.tk, 1
@@ -41464,7 +41308,6 @@ deflumeriker.com, 1
defme.eu, 1
defont.nl, 1
defreitas.no, 1
-defret.com, 1
defriesezaak.nl, 1
deftek.com, 1
defterikebir.tk, 1
@@ -41480,7 +41323,6 @@ degeeks.xyz, 1
degen-elektrotechnik.de, 1
degenerativediscdiseaseexplained.com, 1
degens.io, 1
-degentseflikkenzoekenu.be, 1
degeo.cf, 1
degeo.ml, 1
degestamptepot.nl, 1
@@ -41507,6 +41349,7 @@ degreeducation.tk, 1
degreeverify.com, 1
degreeverify.net, 1
degreeverify.org, 1
+degressif.com, 1
degroetenvanrosaline.nl, 1
degrootenslot.nl, 0
degroupnews.com, 1
@@ -41566,7 +41409,6 @@ dekalbcountymo.gov, 1
dekampioenen.tk, 1
dekas.link, 1
dekasegi-kansai.com, 1
-dekasegifuzoku.com, 1
dekbedden.nl, 1
dekel.co.il, 1
dekesharon.com, 1
@@ -41641,7 +41483,6 @@ deliberatelyclassy.com, 1
delicaclubphils.tk, 1
delicadosonico.tk, 1
delicale.com.br, 1
-delicatewonders.com, 1
delici.art.br, 1
deliciascomercial.com, 1
deliciaskitchen.com, 1
@@ -41668,7 +41509,6 @@ delivery.it, 1
delivr.com, 1
delker.com, 1
delkomrockdrill.com, 1
-dellacasapizzasemassas.com.br, 1
dellamorte.tk, 1
dellasano.com, 1
dellasantina.com.ar, 1
@@ -41685,7 +41525,6 @@ delontewest.tk, 1
delorenzi.dk, 1
deloretta.com, 1
delosgaia.nl, 1
-delpark.de, 1
delphia.com, 1
delphibasics.tk, 1
delphiday.it, 1
@@ -41745,7 +41584,6 @@ deltaworkssecurity.com, 1
deltaworkssecurity.nl, 1
deltax.ai, 1
deltia.ai, 1
-delugarnenhum.com, 1
delugerpg.com, 1
delunee.co, 1
deluxe-bot.tk, 1
@@ -41768,7 +41606,9 @@ demandmatrix.com, 1
demannen.tk, 1
demarestnj.gov, 1
demarit.fi, 1
+demcon-bunova.com, 1
demcon-bunova.nl, 1
+demcon-industrial.com, 1
demcon-industrial.nl, 1
demcra.com, 1
demedx.at, 1
@@ -41779,8 +41619,6 @@ dementiacaring.com.au, 1
dementiafactsexplained.com, 1
dementiapraecox.de, 1
dementieva-pennetta.tk, 1
-dementievriendelijk.gent, 1
-dementievriendelijkgent.be, 1
demes.tk, 1
demesos.tk, 1
demetra-site.com.ua, 1
@@ -41807,7 +41645,6 @@ demo.swedbank.se, 1
demobiliteitfinancier.nl, 1
democracy-news.tk, 1
democracy.cf, 1
-democracychronicles.com, 1
democracyineurope.eu, 1
democracylive.com, 1
democratherald.com, 1
@@ -41886,6 +41723,7 @@ dengjunhui.cn, 1
dengyt.net, 1
denhartogracing.com, 1
denhelder.nl, 1
+denhotels.com, 1
deniani.com, 1
denied.gr, 1
denieuwenederlandsevlag.tk, 1
@@ -41910,6 +41748,7 @@ denisyan.ml, 1
deniszczuk.pl, 0
deniz.uk, 1
denizdesign.co.uk, 1
+denizgulerguitar.com, 1
denizkutan.com, 0
denizlicilingir.org, 1
denizlihaber.tk, 1
@@ -42034,7 +41873,6 @@ deooyevaar.fr, 1
deooyevaar.nl, 1
deoremann.com, 0
deovergangendan.nl, 1
-deoxyam.xyz, 1
depaco.com, 1
depagecms.net, 1
depannage-traceur.fr, 1
@@ -42050,9 +41888,7 @@ depay.com, 1
depay.fi, 1
depcoa.date, 1
depcompower.com, 1
-depdesign.com, 1
depeche.ga, 1
-depechemode-live.com, 1
depechemode.de, 1
deped.blog, 0
deped.io, 1
@@ -42095,6 +41931,7 @@ depotchronicle.com, 1
depotly.io, 1
depotronik.com, 1
depotsquarekerrville.com, 1
+deppresion.org, 1
deprecate.de, 1
depressionadvice.gq, 1
deprobe.pro, 1
@@ -42202,14 +42039,15 @@ derricofinancialservices.com, 1
derrigimlaghtokylemoregreenway.ie, 1
derriteice.com, 1
derrybasketball.tk, 1
-dershanesi.com, 1
dersimizmatematik.cf, 1
dersoundhunter.de, 1
derssonu.com, 1
+derstreuner.ch, 1
derstulle.de, 1
dert.online, 1
dertouristik.com, 1
dertraumausstatter-shop.at, 1
+derventzis.eu, 1
derventzis.gr, 1
derw.pw, 1
derwaldschrat.net, 1
@@ -42224,7 +42062,6 @@ desant.com, 1
desapego.com.br, 1
desarrollamosweb.com, 1
descargapormega.ml, 1
-descargar-apk.org, 1
descobrim.com, 1
desconfiats.tk, 1
descopera.ro, 1
@@ -42323,6 +42160,7 @@ designmodernideas.tk, 1
designnprint.nl, 1
designpro.tk, 1
designsbyjanith.com, 1
+designscapessa.com, 1
designsingapore.org, 1
designsite.tk, 1
designsociety.tk, 1
@@ -42347,7 +42185,6 @@ desirememory.cf, 1
desirenet.ro, 1
desish.cf, 1
desitorrents.tv, 1
-desiunderground.com, 1
desivideos.tk, 1
desize.com, 1
deskaservices.com, 1
@@ -42394,9 +42231,11 @@ desterrada.tk, 1
destguides.com, 1
destileria.net.br, 1
destilteomarmd.be, 1
+destinflow.com, 1
destinia.us, 1
destinopiriapolis.com, 0
destinotecnologico.ml, 1
+destinovandelvira.es, 1
destiny-homebuilders.com, 0
destiny.ws, 0
destinyofthephoenix.me, 0
@@ -42450,7 +42289,6 @@ determapp.de, 1
determinatie.tk, 1
detfagligehus.dk, 1
dethemium.com, 1
-deti-online.com, 1
deti.ga, 1
detiklife.com, 1
detiks.cf, 1
@@ -42481,7 +42319,6 @@ detski.center, 1
detskie-avto-kresla.tk, 1
detuinmuze.nl, 1
deturope.eu, 1
-detus.pt, 1
detusmascotas.com, 1
detweedekans.tk, 1
detyamobuv.tk, 1
@@ -42543,7 +42380,6 @@ devalkincentives.nl, 1
devalps.eu, 1
devanstavern.tk, 1
devastacion.tk, 1
-devb.nl, 1
devbay.cc, 1
devcarollo.com, 1
devcf.com, 1
@@ -42551,7 +42387,6 @@ devcftc.gov, 1
devchuli.ml, 1
devcontainer.com, 1
devcraft.academy, 1
-devcu.com, 1
devcycle.com, 1
devdeb.com, 1
devdesco.com, 1
@@ -42587,6 +42422,7 @@ devenv.ml, 1
deverse.eu, 1
deveshrx.com, 1
devet-slunci.cz, 1
+devfixer.org, 1
devflop.fr, 1
devh.de, 1
devh.net, 1
@@ -42650,6 +42486,7 @@ devopsbookmarks.org, 1
devopsfreelance.pro, 1
devopsintegration.io, 1
devopsish.com, 1
+devopswow.com, 1
devos.ml, 1
devoted-atheist.tk, 1
devoted.com, 1
@@ -42666,7 +42503,6 @@ devries.frl, 1
devries.one, 1
devrijejansenist.nl, 1
devs-from.asia, 1
-devs.men, 1
devs4.com, 1
devsectools.com, 1
devsfield.com, 1
@@ -42683,8 +42519,6 @@ devtambayan.com, 1
devtea.cz, 1
devtechgroup.com, 1
devtestfan1.gov, 1
-devtoys.ru, 1
-devtronhu.info, 1
devtty.org, 1
devuan.org, 0
devurandom.tk, 1
@@ -42695,7 +42529,6 @@ devzero.io, 0
dewalch.net, 1
dewalt.com, 1
dewblog.ml, 1
-dewereldvankina.be, 1
dewereldwerktthuis.com, 1
dewereldwerktthuis.eu, 1
dewereldwerktthuis.net, 1
@@ -42704,13 +42537,11 @@ dewereldwerktthuis.org, 1
dewerveling.tk, 1
deweybeachpolice.gov, 1
dewijkpraktijk.nl, 1
-dewingerdfreinet.be, 1
dewit-automatisering.nl, 1
dewittcountyil.gov, 1
dewittmi.gov, 1
dewka.tk, 1
dewolden.nl, 0
-dex-trade.com, 1
dex01.com.br, 1
dexalo.de, 1
dexcellentesidees.tk, 1
@@ -42787,7 +42618,6 @@ dg-hyp.org, 1
dg-komm.com, 1
dg-pberon.com, 1
dg-pic.tk, 1
-dg-tal.ir, 1
dg1-test.com, 1
dg1.com, 1
dg1.services, 1
@@ -42824,7 +42654,6 @@ dgli.org, 1
dgmedia.tk, 1
dgmenergy.com, 1
dgn.de, 1
-dgner.com, 1
dgo52i78h9vgm.cloudfront.net, 1
dgou.de, 1
dgportals.co.uk, 1
@@ -42857,7 +42686,6 @@ dharma.org, 1
dhaus.de, 1
dhautefeuille.eu, 1
dhauwer.nl, 1
-dhavalvira.com, 1
dhawayurakyoto.com, 1
dhayalan.com, 1
dhaynes.xyz, 1
@@ -42882,7 +42710,6 @@ dhruv.nz, 1
dhtr.pw, 1
dhuboeuf.be, 1
dhurbabaral.com.np, 1
-dhursanconstruction.com.au, 0
dhuy.net, 1
dhwx.de, 1
dhxxls.com, 1
@@ -42893,7 +42720,6 @@ dia.com.br, 1
diaakademi.com, 1
diabetesdietjournal.com, 1
diabetessucks.net, 1
-diabexme.info, 1
diableros.tk, 1
diables-noirs.tk, 1
diablescastell.tk, 1
@@ -42903,7 +42729,6 @@ diablos-obon.tk, 1
diabolic.chat, 1
diabos.biz, 1
diacritical.net, 1
-diad.mx, 1
diadiemdangsong.com, 1
diadorafitness.es, 1
diadorafitness.it, 1
@@ -42986,6 +42811,7 @@ dianoxofficiel.tk, 1
dianshangyi.net, 1
dianshuju.com, 1
diansung.com, 1
+diaocan.com, 1
diaoyu8.com, 1
diapazon.kz, 1
diapuls.ru, 1
@@ -43006,7 +42832,6 @@ diasporan.gq, 1
diasporan.ml, 1
diaspordc.com, 1
diaszporaprojekt.org, 1
-diatechusa.com, 1
diatomenterprises.com, 1
diatr.us, 1
diatrofi-ygeia.gr, 1
@@ -43019,12 +42844,10 @@ dibal.ua, 1
dibam.cl, 1
dibiphp.com, 1
dibo-ambasador.pl, 1
-diboochi.com, 0
dic.ae, 1
dicaprio.tk, 1
diccionarioabierto.com, 1
diccionariodedudas.com, 1
-diccionariomexico.com, 1
diccionarioperu.com, 1
diccionarqui.com, 1
dice.tokyo, 1
@@ -43037,6 +42860,7 @@ dichanho.com, 1
dichvuchuyentien247.com, 1
dichvudangkygiayphep.com, 1
dicio.com.br, 1
+dicionario.org, 1
dicionariodegirias.com.br, 1
dicionariodenomesproprios.com.br, 1
dicionariodesimbolos.com.br, 1
@@ -43044,7 +42868,6 @@ dicionarioetimologico.com.br, 1
dicionariofinanceiro.com, 1
dicionariopopular.com, 1
dicionarios.cc, 1
-dick.red, 1
dickdoesdoors.com, 0
dickord.cloud, 1
dickp.it, 1
@@ -43090,7 +42913,6 @@ diddens.de, 1
diddlworld.tk, 1
dideeducacion.com, 1
didefamilia.com, 1
-didelikarpiai.lt, 1
didesalud.com, 1
didi-online.tk, 1
dididiamond.net, 1
@@ -43117,7 +42939,7 @@ die-seide.de, 1
die-seiler.de, 1
die-sinlosen.de, 1
die-speisekammer-reutlingen.de, 1
-die-sputniks.de, 1
+die-sterntaufe.de, 1
die.de, 1
die.one, 1
diebasis-partei.de, 1
@@ -43132,6 +42954,9 @@ dieecpd.org, 1
dieetfabels.tk, 1
dieffe.tech, 1
diefotogruppe.de, 1
+diefreitagsfotografen.de, 1
+diefreitagsphotografen.de, 1
+diefreitagsphotographen.de, 1
dieg.info, 1
diegelernten.de, 1
diegentlemenbittenzurkasse.tk, 1
@@ -43175,7 +43000,7 @@ dierenwiki.nl, 1
dieschnuckelchen.myasustor.com, 1
diesdasananas.spdns.de, 1
dieselanimals.lt, 1
-dieselfiltersonline.com, 1
+dieselfiltersonline.com, 0
dieselndust.com, 1
dieselor.bg, 1
dieselor.com, 1
@@ -43194,6 +43019,7 @@ dieter.one, 1
dieterglas.de, 1
dieteticadigital.net, 1
dietfordiabetics.tk, 1
+dietherapie.tirol, 1
dieti-natura.com, 1
dieti.ga, 1
dieti.gq, 1
@@ -43257,17 +43083,14 @@ digicert.nl, 0
digicode.hu, 1
digicomtel.com.br, 1
digidaigaku.com, 1
-digifitio.info, 1
digifloat.io, 1
digifun.store, 1
digig.es, 1
digigami.au, 1
digiischolarships.com, 1
-digijoy.com, 1
digilabs.fr, 1
digiland.tk, 1
digilicious.com, 1
-digilirapay.com, 1
digilock.com, 1
digimaat.agency, 1
digimagical.com, 1
@@ -43288,7 +43111,6 @@ digionline.de, 1
digiparse.com, 1
digipartindex.ch, 1
digipitch.com, 1
-digipolis.gent, 1
digipost.no, 1
digirechnung.de, 1
digireg.in, 1
@@ -43304,7 +43126,6 @@ digistorm.com, 1
digit.bg, 1
digit.ec, 1
digitaal-atelier.tk, 1
-digitaaltalent.be, 1
digitador.tk, 1
digitai.net, 1
digital-compounds.com, 1
@@ -43326,7 +43147,6 @@ digital-mu.tk, 1
digital-park.de, 1
digital-rainbow-dolls.tk, 1
digital-sculpture.org, 1
-digital-sky.it, 1
digital-vorwaerts.de, 1
digital-watchdog.com, 1
digital.democrat, 1
@@ -43448,6 +43268,7 @@ digitalnomadgirls.com, 1
digitalnomadsunderground.com, 1
digitalo.cz, 1
digitaloasisonline.co.za, 1
+digitaloath.com, 1
digitaloutlet.com.br, 1
digitalphone.tk, 1
digitalphoto.group, 1
@@ -43464,7 +43285,6 @@ digitalposition.com, 1
digitalprivacy.diy, 1
digitalproduct.ga, 1
digitalproductivity.online, 1
-digitalprojects.com.au, 1
digitalrealitybbs.com, 1
digitalreborn.com, 1
digitalredshirts.com, 0
@@ -43473,9 +43293,7 @@ digitalroma.tk, 1
digitalsafezm.com, 1
digitalscrapbookingstudio.com, 1
digitalsearchgroup.co.uk, 1
-digitalsearchgroup.com.au, 1
digitalsearchlab.com, 1
-digitalside.com.br, 1
digitalskychallenge.eu, 1
digitalsocietyschool.org, 1
digitalsolutionsmalta.com, 1
@@ -43503,6 +43321,7 @@ digitec.ch, 1
digitecgalaxus.ch, 1
digitechseo.com, 1
digitecno.com, 1
+digitell.me, 1
digitese.pt, 1
digithub.tk, 1
digitizer.co.il, 1
@@ -43515,6 +43334,7 @@ digitreads.com, 1
digityp.fi, 1
digitypa.fi, 1
digivan.ml, 1
+digivibe.cz, 1
digiwedoo.com.au, 1
diglloyd.com, 1
digminecraft.com, 1
@@ -43566,7 +43386,6 @@ diligence.cloud, 1
diligo.ch, 0
dilili.net, 1
dillewijnzwapak.nl, 1
-dillon-mcnamara.com, 1
dillonco.gov, 1
dillonm.io, 1
dillynbarber.com, 0
@@ -43593,7 +43412,7 @@ dimitri-davies.com, 1
dimitri-papadimitriou.com, 1
dimitri-papadimitriou.eu, 1
dimitri-papadimitriou.gr, 1
-dimitrioslytras.com, 1
+dimitri.network, 1
dimitris.tk, 1
dimitrovgrad.bg, 1
dimitrovi.tk, 1
@@ -43612,7 +43431,6 @@ dimo-dematerialisation.com, 1
dimo-tresorerie.fr, 1
dimokratikiaristera.gr, 1
dimomaint.de, 1
-dimomaint.es, 1
dimont.com, 1
dimonz.com, 1
dimoredimara.com, 1
@@ -43637,13 +43455,11 @@ dinerroboticurology.com, 1
diners.com.mk, 1
diners.mk, 1
dinevigroup.bg, 1
-ding.gent, 1
dingcc.com, 1
dingcc.me, 1
dingdong-shop.ru, 1
dingelbob-schuhcreme.gq, 1
dingeldein-messtechnik.de, 1
-dinghuo.com, 1
dinglecottage.co.uk, 1
dinglishuzi.com, 1
dingos.tk, 1
@@ -43697,11 +43513,13 @@ diplom-ru.tk, 1
diplomatic-council.org, 1
diplomatiegabon.ga, 1
diplomaverify.com, 1
-dipnot.tv, 1
dipocket.org, 1
dipostar.com, 1
+dippydiva.com, 1
dipro.id, 1
dipsbd.com, 1
+dipsis.com, 1
+dipsis.ru, 1
dipsytroller.com, 1
dipuma.com, 1
dir2epub.com, 1
@@ -43742,7 +43560,6 @@ directorioempresarial.com.co, 1
directoriomedico.com.co, 1
directorios.tk, 1
directorioweb.co, 1
-directorioz.com, 1
directorwebseo.tk, 1
directory-aldo.tk, 1
directory-ecco.tk, 1
@@ -43793,6 +43610,7 @@ dirtycosplay.com, 1
dirtygeek.ovh, 1
dirtygirl.ml, 1
dirtyherri.de, 1
+dirtylifewheels.com.au, 1
dirtymusic.tk, 1
dirtyporno.tk, 1
dirtypretties.cf, 1
@@ -43816,7 +43634,6 @@ disableipv4.se, 1
disabuse.cf, 1
disadattamentolavorativo.it, 1
disain.tk, 1
-disapanico.com, 1
disappearingidioms.com, 1
disassemble.website, 1
disasterrific.tk, 1
@@ -43836,7 +43653,6 @@ discarsl.com, 1
discdash.ga, 1
discdash.tk, 1
discgolf.com, 1
-disch.com.de, 1
disciples.io, 1
disciplescloud.com, 1
disciplesmakingdisciples.ca, 1
@@ -43886,9 +43702,9 @@ discoverchinanow.ml, 1
discoverdanville.com, 1
discoverfloridasprings.com, 1
discoverglo.com, 1
-discovergy.com, 1
discoverhealthage.com, 0
discoveringdocker.com, 1
+discoveringmoroccotravel.com, 1
discoverkeesler.com, 0
discoverkeesler.marketing, 1
discoverlutruwita.com, 1
@@ -44013,10 +43829,12 @@ diskuze-seznam.cz, 1
diskuzeseznam.cz, 1
dislepsia.tk, 1
dismail.de, 1
+dismar.mx, 1
dismed.fr, 1
disneywallpapers.tk, 1
disobey.net, 1
disoluto.tk, 1
+disorderboutique.com, 1
disordersport.com, 1
disostruzioni.it, 1
disougstroy.com.ua, 1
@@ -44039,6 +43857,7 @@ disruptiveadvertising.com, 0
dissensionclub.net, 1
dissention.biz, 1
dissertationhelp.com, 1
+dissidence.ovh, 1
dissident.host, 1
dissieux.com, 1
dist.torproject.org, 0
@@ -44059,8 +43878,6 @@ distinguishedprisoner.com, 1
disto.tk, 1
distopias.tk, 1
distortionx.tk, 1
-distract09.be, 1
-distract09.gent, 1
distracteddriving.gov, 1
distraction.gov, 1
distraction.tk, 1
@@ -44082,14 +43899,12 @@ distributordd.com, 1
distributore.it, 1
distributori.roma.it, 1
district08cnca.org, 1
-district09.be, 1
district09.gent, 1
districtcourtislamabad.tk, 1
distrigenosa.tk, 1
distrikia.com.co, 0
distrilogservices.com, 1
distrim.pt, 1
-distrim2.pt, 1
distritoae.com, 1
distritotres.tk, 1
distritoxic.tk, 1
@@ -44104,11 +43919,10 @@ diterzafra.tk, 1
ditetovinejlip.cz, 1
ditevsrdci.cz, 1
ditex.ddns.net, 1
-ditian.com, 1
dities.tk, 1
ditissaskia.nl, 1
ditprint.dk, 1
-ditra.ae, 1
+ditte-destree.fr, 1
dittvertshus.no, 1
ditxse6.com, 1
ditxse6.org, 1
@@ -44119,9 +43933,8 @@ diva-app.de, 1
divacresent.tk, 1
divanogiusto.it, 1
divari.nl, 1
-divas.joburg, 1
+divas.joburg, 0
divatri.tk, 1
-divcoder.com, 1
dive-japan.com, 1
diveanalytics.com, 1
divegearexpress.com, 1
@@ -44167,7 +43980,6 @@ divinasaiamodas.com.br, 1
divineangel.tk, 1
divinedecay.tk, 1
divinefeminineyoga.com, 1
-divinegames.studio, 1
divinemagazine.biz, 1
divinemercyparishvld.com, 1
divinemercyparishvlds.com, 1
@@ -44186,7 +43998,6 @@ diviworx.com, 1
divizja.tk, 1
divjak.at, 1
divo-remont.tk, 1
-divorceattorneyschicago.com, 1
divorceattorneyshouston.com, 1
divorceformsfiller.com, 1
divorcelawyer365.com, 1
@@ -44218,7 +44029,6 @@ diycrafts.ml, 1
diyeat.com, 1
diyeta.cf, 1
diyeventhire.co.nz, 1
-diyland.com, 1
diymediahome.org, 1
diysec.tk, 1
diyzealot.com, 1
@@ -44439,12 +44249,18 @@ dkdigital.tk, 1
dkds.us, 1
dkec2.space, 1
dken.guru, 1
+dkengineeringwork.com, 1
+dkern.eu, 1
+dkern.net, 1
+dkern.nl, 1
+dkern.org, 1
dkgamers.tk, 1
dkgev.de, 1
dkhf.ir, 1
dki.de, 1
dkim-validator.com, 1
dkk-gaming.de, 1
+dkm.me, 1
dknoops.xyz, 1
dknvs.no, 1
dko-steiermark.ml, 1
@@ -44521,7 +44337,6 @@ dlyabega.tk, 1
dlyaribalki.tk, 1
dlyatepla.ml, 1
dm-0.com, 1
-dm-918kiss.com, 1
dm-drogeriemarkt.at, 1
dm-drogeriemarkt.ba, 1
dm-drogeriemarkt.bg, 1
@@ -44565,6 +44380,7 @@ dmarctester.com, 1
dmarcvendors.com, 1
dmautomek.no, 1
dmbins.com, 1
+dmbvideo.com, 1
dmc-cc.de, 1
dmc-commerce-consultants.de, 1
dmc.ae, 1
@@ -44624,6 +44440,7 @@ dmstechnology.com, 1
dmtcustoms.co.za, 1
dmu.ac.ae, 1
dmunoz.es, 1
+dmvape.us, 0
dmwaste.com, 0
dmwclan.tk, 1
dmx.xyz, 1
@@ -44704,6 +44521,7 @@ dns.expert, 1
dns.google.com, 1
dns.gov, 1
dns.ninja, 1
+dns.ooo, 1
dns.sb, 1
dns.sh, 1
dns0.eu, 1
@@ -44724,7 +44542,6 @@ dnsinfo.ml, 1
dnsipv6.srv.br, 0
dnskeep.com, 1
dnskeeper.com, 1
-dnslog.com, 1
dnslow.me, 1
dnslytics.com, 1
dnsman.se, 1
@@ -44856,7 +44673,6 @@ doctorcalefon.com, 1
doctordabbah.com, 1
doctordangond.com, 1
doctorfloyd.com, 1
-doctorfox.co.uk, 1
doctoriko.tk, 1
doctorkaraca.com, 1
doctorlab.am, 1
@@ -44870,6 +44686,7 @@ doctorperu.com, 1
doctorpower.ga, 1
doctorpup.com, 1
doctorradio.tk, 1
+doctorrayaneh.com, 1
doctorsarfarazdo.ga, 1
doctorsatdoor.com, 1
doctorshealthfund.com.au, 1
@@ -44922,7 +44739,6 @@ dodard.link, 1
dodd-frank.com, 1
doddridgecountywv.gov, 1
dodds.cc, 1
-doddsoio.info, 1
doddy.tk, 1
dodecaedro.tk, 1
dodelf.com, 1
@@ -44970,7 +44786,6 @@ dog-sounds.com, 0
dog.systems, 1
doga-osusume.jp, 1
doga.tk, 1
-dogadayiz.net, 1
dogadostuambalaj.com, 1
dogaicincal.com, 1
dogalsoyamumu.com, 1
@@ -45060,7 +44875,6 @@ doktorplyusheva.ml, 1
doku-gilde.de, 1
dokuboard.com, 1
dokuev.ga, 1
-dokume.com, 1
dokument.tk, 1
dokuraum.de, 1
dolbyatmosmusiclist.com, 1
@@ -45085,6 +44899,7 @@ dolg.ml, 1
dolg.tk, 1
dolgopolova.ga, 1
dolgorukovo.cf, 1
+dolice.net, 1
dolinasnov.ru, 1
dolinathome.com, 1
dolkfm.tk, 1
@@ -45100,7 +44915,7 @@ dolle-shop.com.ua, 1
dolledout.co.ke, 1
dollestieren.tk, 1
dolliesmaker.tk, 1
-dolloponline.com, 1
+dolloponline.com, 0
dolly.ga, 1
dollylox.tk, 1
dollz-world.tk, 1
@@ -45145,6 +44960,7 @@ domain-skachat.cf, 1
domain-speicher.com, 0
domain-swiss.ch, 1
domain.ch, 1
+domainbaron.com, 1
domaine-aigoual-cevennes.com, 1
domaine-de-garbelle.com, 1
domaine-de-vermoise.fr, 1
@@ -45208,7 +45024,7 @@ domenicam.com, 1
domenick-lieneweg.de, 1
domenico.lviv.ua, 1
domenicods.tk, 1
-domestic.cn, 1
+domestiq.ro, 1
domharmonia.bg, 1
domhos.tk, 1
domialt.de, 1
@@ -45238,7 +45054,6 @@ dominik-steiner.at, 1
dominik.st, 1
dominikconrads.de, 1
dominikriedig.de, 1
-dominiks.com, 1
dominikzen.com, 1
dominioanimal.com.br, 1
dominionlending.ca, 1
@@ -45257,14 +45072,12 @@ dominodijital.com, 1
dominoknihy.cz, 0
dominolessons.ga, 1
dominomatrix.com, 1
-dominoqq.asia, 1
dominos.ua, 1
dominoz.tk, 1
dominternet.ru, 0
dominuslucis.nl, 0
domisafonov.net, 1
domitori.tk, 1
-domix.fun, 1
domizx.de, 1
domjh.com, 1
domkirby.com, 1
@@ -45276,7 +45089,6 @@ dommod.tk, 1
domnaslonecznej.pl, 1
domodeco.fr, 1
domofon.io, 0
-domosprefabricados.cl, 1
domostroiy.tk, 1
domostroydon.ru, 1
domostroyrf.ru, 1
@@ -45343,7 +45155,6 @@ donateers.org, 1
donateforcharity.com, 1
donatellapratas.com.br, 1
donateway.com, 1
-donationexecutor.com, 1
donationintegration.ru, 1
donazione.it, 1
doncastermoneyman.com, 1
@@ -45374,8 +45185,8 @@ donghochinhhang.store, 1
donghua-europe.com, 1
donghuapiandaquan.com, 1
dongjian.com, 1
+dongjing.re, 1
dongor.tk, 1
-dongzhen.com, 1
donhoward.org, 0
doninformatico.ga, 1
doniramdoni.tk, 1
@@ -45443,6 +45254,7 @@ dontkeylog.me, 1
dontkillspike.tk, 1
dontmoveamusclellc.com, 1
dontpayfull.com, 1
+dontserveteens.gov, 1
dontstopcoffee.com, 1
dontwastethewood.com, 1
donumanimo.pl, 1
@@ -45518,8 +45330,8 @@ dorados.tk, 1
doradoscampeon.tk, 1
doraemonchile.tk, 1
dorama.gq, 1
+doramaflix.site, 1
doramamusic.gq, 1
-doramiru.com, 1
dorams.one, 1
doranobi-fansub.id, 1
dorcelvision.com, 1
@@ -45529,6 +45341,7 @@ doremy.be, 1
dorfbrunnen.eu, 0
dorfkultur.net, 1
dorfzittig.de, 1
+dorhandverkeren.no, 1
doriangardes.fr, 1
dorianharmans.nl, 1
dorianmuthig.com, 1
@@ -45537,6 +45350,7 @@ doridian.de, 1
doridian.net, 1
doridian.org, 1
dorier-digiplace.com, 1
+doritadata.com, 1
dorizonline.tk, 1
dorkface.tk, 1
dormi.hu, 1
@@ -45569,8 +45383,6 @@ dosei.net, 1
dosel.co.in, 1
dosenkiwi.at, 1
dosenpendidikan.co.id, 1
-dosenpintar.com, 1
-dosensosiologi.com, 1
doserres.tk, 1
dosgame.club, 1
dosgratus.tk, 1
@@ -45748,7 +45560,6 @@ dovetail.com, 1
dovetailapp.com, 1
doveweekend.com, 1
dovizborsa.com, 1
-dovodlaw.ru, 1
dovolena-ihned.cz, 1
dowell.media, 1
dowhatmakegood.de, 1
@@ -45793,6 +45604,7 @@ downtownindy.org, 1
downtownla.com, 1
downtownmesa.com, 1
downtownontario.org, 0
+downtownpdx.dog, 1
downtownraleigh.org, 1
downtownsuiteliving.com, 1
downtowntucson.org, 1
@@ -45827,7 +45639,6 @@ doyoucheck.com, 0
doyoulyft.com, 1
doypacky.cz, 1
doze-cloud.tech, 1
-dozecloud.com, 1
dozen-donuts.com, 1
dozor.ga, 1
dozor.gq, 1
@@ -45871,8 +45682,11 @@ dpnt.re, 1
dpoairport.au, 1
dpoairport.com.au, 1
dpobjetivo.com.br, 1
-dpomax.com.br, 1
dpos.info, 1
+dposit.com, 1
+dposit.eu, 1
+dposit.net, 1
+dposit.org, 1
dpower.tk, 1
dppstar.com, 1
dprb.biz, 1
@@ -45880,6 +45694,7 @@ dpress24.it, 1
dps.srl, 1
dpsengineers.com.au, 1
dpsg-hohenlinden.de, 1
+dpsg-radolfzell.de, 1
dpsmassage.nl, 1
dpu.lt, 1
dpucarriersma.gov, 1
@@ -45896,12 +45711,10 @@ dr-kissler.de, 1
dr-laber.at, 1
dr-liebau.de, 1
dr-maike-juergens.de, 1
-dr-matsui.or.jp, 1
dr-mgeorgieva.com, 1
dr-nope.de, 1
dr-nosrat.tk, 1
dr-notemann.de, 1
-dr-schuessler.de, 1
dr-tsanova.com, 1
dr-vlasak.cz, 1
dr-www.de, 1
@@ -45912,8 +45725,6 @@ draad.nl, 1
draadloos-besturen.nl, 1
draadloze-noodstop.nl, 1
draagmerriecentrale.nl, 1
-draakjefosfor.be, 1
-draatv.com, 1
drabbin.com, 1
drabim.org, 1
drace.biz, 1
@@ -45925,9 +45736,7 @@ dracoon.team, 1
dracula.city, 1
drademirel.com, 1
drafatimagarcia.com, 1
-draftguru.com.au, 1
drafton.com, 1
-draftposts.com, 1
dragcave.net, 1
dragdroplearning.com, 1
dragfiles.com, 1
@@ -45946,7 +45755,6 @@ dragon-team.tk, 1
dragon.nu, 1
dragon26.com, 1
dragon95.com, 1
-dragon98.com, 1
dragonballzfigures.com, 1
dragonbike.by, 1
dragonboatfestival.tk, 1
@@ -45957,7 +45765,6 @@ dragonclicker.ml, 1
dragonesymazmorras.tk, 1
dragonfly.co.uk, 0
dragonflycms.cf, 1
-dragonfosfor.be, 1
dragonheartsrpg.com, 1
dragonhill.tk, 1
dragonkin.net, 1
@@ -45986,7 +45793,6 @@ dragonsunited.lu, 1
dragonsunited.net, 1
dragonsunited.org, 1
dragontail.tk, 1
-dragonwolfpackaquaria.com, 1
dragonwork.me, 1
dragowebdesign.com, 0
dragracing.hu, 1
@@ -45999,6 +45805,7 @@ drakecommercial.com, 1
drakeluce.com, 0
drakencan.gq, 1
drakenprospero.com, 0
+drakenson.de, 1
drakfot.se, 0
drakia.com, 1
drakiada.tk, 1
@@ -46086,6 +45893,7 @@ drdipilla.com, 1
drdixitcosmeticdermatology.com, 1
drdripplumbingsydney.com.au, 1
drduru.com, 1
+dreabb.xyz, 1
dreadbyte.com, 0
dreadd.org, 1
dreadfully.cf, 1
@@ -46106,7 +45914,6 @@ dreamcartransport.be, 1
dreamcast-world.tk, 1
dreamcatchers-events.com, 1
dreamcometruevacations.com, 1
-dreamconnect.org, 1
dreamcrack.tk, 1
dreamcraft.su, 1
dreamdale-fans.net, 1
@@ -46114,6 +45921,7 @@ dreamdeity.com, 1
dreamdivers.com, 1
dreamelegant.ml, 1
dreamersgiftshopec.com, 1
+dreamexperience.tur.br, 1
dreamforcetv.pro, 1
dreamhostremixer.com, 1
dreamhotels.com, 1
@@ -46169,7 +45977,6 @@ dreatho.com, 1
drechsel.xyz, 1
drechsler-forum.de, 1
dredwerkz.tk, 1
-dreemerio.info, 1
dreemurr.com, 1
drehabkhalifa.com, 1
dreherit.de, 1
@@ -46227,7 +46034,6 @@ drfrey.ch, 0
drfuhrman.com, 1
drgabrielschmitt.com, 1
drgeadsdavinci.com, 1
-drgloriawu.com, 0
drgn.li, 1
drgn.no, 1
drgns.space, 1
@@ -46255,7 +46061,6 @@ driftdude.nl, 1
drifter.tk, 1
driftingruby.com, 1
driftkikker.tk, 1
-driftworld.com, 1
drigg.ro, 1
drijfhoutconsultancy.nl, 1
drikaartesanato.com, 1
@@ -46329,7 +46134,6 @@ driveelectric.gov, 1
driveforadtransport.com, 1
driveforartur.com, 1
driveincleveland.com, 1
-driveithu.info, 1
drivemorganvanlines.com, 1
driven2shine.eu, 1
drivencollision.com, 1
@@ -46466,7 +46270,6 @@ droppia.io, 1
dropscloud.spdns.de, 1
dropsdesign.tk, 1
dropshell.net, 1
-dropship.io, 1
dropshipp.site, 1
dropshippers.gq, 1
dropsite.com.au, 1
@@ -46483,7 +46286,6 @@ drpatyuen.com, 1
drpetervoigt.ddns.net, 1
drpetervoigt.de, 1
drpico.com.au, 1
-drponciano.com, 1
drpure.top, 1
drrachellemeaux.com, 1
drradin.com, 1
@@ -46502,11 +46304,11 @@ drsiv.com, 1
drskinmedspa.com, 1
drsoul.band, 1
drspiro.com, 1
-drsports.bet, 1
drstephanieteotia.com, 1
drsteveart.com, 1
drsteveharrison.com, 1
drsturgeonfreitas.com, 1
+drsurvey.com, 1
drt.org.nz, 1
drtanyaescobedo.com, 1
drthalhammer.at, 1
@@ -46579,7 +46381,6 @@ dry-cleaning.tk, 1
dryashplasticsurgery.com, 1
dryasinakgul.com, 1
drybjed.net, 1
-drybysuperior.com, 1
drycreekphoto.com, 1
dryerrepairaustin.com, 1
dryerventcleaningarlington.com, 1
@@ -46596,6 +46397,7 @@ drywallresponse.gov, 1
dryzgov.tk, 1
drzhnn.com, 1
drziyayavuz.com, 1
+ds-bv.nl, 1
ds-infocenter.de, 1
ds-networks.at, 1
ds-networks.de, 1
@@ -46623,8 +46425,6 @@ dsdlove.com, 1
dsdomains.com, 1
dsds-ltd.com, 0
dse-assessments.co.uk, 0
-dse.com.bd, 1
-dsebd.org, 1
dsecure.me, 1
dseg.org, 1
dsektionen.se, 0
@@ -46748,8 +46548,8 @@ duama.top, 1
duanemorrisinstitute.com, 1
duanre.tk, 1
duanyong.com, 1
+duaputra.my.id, 1
duarteeleiteconsultoria.com.br, 1
-dubachinn.com, 1
dubai-realestate.space, 1
dubaiaerospace.com, 1
dubaiaward.link, 1
@@ -46776,11 +46576,13 @@ dubboskills.com.au, 1
dubcowa.tk, 1
dubex.de, 1
dubex.dk, 1
+dubiznes.ae, 1
dubl.tk, 1
dublesepet.com, 1
dublindecking.ie, 1
dublinguide.ie, 1
dublinrail.tk, 1
+dublinseocompany.ie, 1
duboeuf.com, 1
duboisinternational.com, 1
duboisinvestissements.com, 1
@@ -46828,7 +46630,7 @@ duckside.tk, 1
ducksify.com, 1
ducksoft.fi, 1
duckstad.net, 1
-duckyubuntu.com, 0
+duckyubuntu.com, 1
duckyubuntu.tk, 1
ductcare.com, 1
dudedood.tk, 1
@@ -46894,7 +46696,6 @@ dukes.ca, 1
dukeshotel.com, 1
dukin.tk, 1
dukun.de, 1
-dulanic.com, 1
dulas.org.uk, 1
dulce-reverie.ro, 1
dulcehome.ch, 1
@@ -46953,7 +46754,6 @@ dungeon-bbs.de, 1
dungeoncity.com, 1
dungeonedraghi.it, 1
dungeonfire.tk, 1
-dungeonline.com, 1
dunia-news.tk, 1
dunkelmann.eu, 1
dunkerhosting.nl, 1
@@ -46961,7 +46761,7 @@ dunkirkin.gov, 1
dunkle-seite.org, 1
dunlaptn.gov, 1
dunlopracing.com, 1
-dunmanelectric.com, 1
+dunmanelectric.com, 0
dunmanpoolandspa.com, 1
dunneworthy.com, 1
dunningtonaudio.co.uk, 1
@@ -46989,7 +46789,7 @@ dupageresults.com, 1
dupageresults.gov, 1
dupfx.com, 1
duplicazionechiavi.it, 1
-dupontdentistry.com, 1
+duplika.com, 1
dupree.pe, 1
dupuis.xyz, 1
duquess.com.br, 1
@@ -47017,7 +46817,6 @@ durchblick-shop.de, 1
durcoin.org, 1
duredo.com, 1
dureuil.info, 1
-durexwinkel.nl, 1
durhammaine.gov, 1
durhammoneyman.com, 1
durhamnh.gov, 1
@@ -47064,19 +46863,15 @@ dutch.desi, 1
dutch1.nl, 1
dutchartinstitute.eu, 1
dutchassistancedogs.nl, 1
-dutchavifauna.nl, 1
dutchbeautyacademy.nl, 1
dutchbeercollective.nl, 1
dutchbird.tk, 1
-dutchbirdalerts.nl, 1
-dutchbirding.nl, 1
dutchblockchaincoalition.org, 1
dutchbodybuilding.com, 1
dutchcariblaw.nl, 0
dutchcichlidplanet.tk, 1
dutchcloudcommunity.nl, 1
dutchconcreations.com, 1
-dutchdesignoffice.nl, 1
dutchdevelapp.nl, 1
dutchdungeon.tk, 1
dutchessuganda.com, 1
@@ -47126,7 +46921,6 @@ duzavo.cz, 1
duzcehaberleri.tk, 1
duzcesondakika.tk, 1
dv-project.ru, 1
-dv.cn, 1
dvb-fachverband.de, 1
dvbris.co.uk, 1
dvbris.com, 1
@@ -47181,7 +46975,6 @@ dworzak.ch, 1
dwpaymentgateway.com, 1
dwservice.net, 1
dwt-inc.com, 1
-dwtonline.com, 0
dwu21.net, 1
dww.hu, 1
dwwt.eu, 1
@@ -47256,7 +47049,6 @@ dymmo.tk, 1
dymmovie.com, 1
dymond.net, 1
dymov.tk, 1
-dymowski.de, 1
dyn-dnhensel.de, 1
dyn-nserve.net, 1
dyn.net, 1
@@ -47311,7 +47103,6 @@ dynorphin.com, 1
dynorphins.com, 1
dynosend.com, 1
dynsoundmax.tk, 1
-dynts.pro, 1
dynx.pl, 1
dypromed.com, 1
dyrenesverden.no, 1
@@ -47321,12 +47112,12 @@ dyrkshop.com, 1
dysautonomia-postsyndrome.com, 1
dyscalculia-blog.com, 1
dysco.tk, 1
+dysgeusia.com, 1
dysgucymraeg.cymru, 1
dyslexicfish.com, 1
dyslexicfish.net, 1
dyslexicfish.org, 1
dysnomia.studio, 1
-dysplasie.com, 1
dysthymia.com, 1
dyuimovochka.tk, 1
dyve.me, 1
@@ -47434,7 +47225,6 @@ e-baraxolka.ru, 1
e-belgia.tk, 1
e-beyanname.com.tr, 1
e-beyanname.net.tr, 1
-e-bikesdirect.co.uk, 0
e-bill.ovh, 1
e-biofire.gr, 1
e-bodybuilding.tk, 1
@@ -47450,6 +47240,7 @@ e-classroom.tk, 1
e-coduct.eu, 1
e-coexist.com, 1
e-colle.info, 1
+e-commerce.news, 1
e-copys.com, 1
e-coretvasa.cz, 1
e-cottage.com.br, 1
@@ -47506,6 +47297,7 @@ e-klempir.cz, 1
e-knitting.tk, 1
e-knitwear.tk, 1
e-kultura.tk, 1
+e-lambre.com, 1
e-lamp.tk, 1
e-latvenergo.lv, 1
e-launch.nl, 1
@@ -47537,6 +47329,7 @@ e-petition-petitions.net, 1
e-petition-support-us.net, 1
e-petition.net, 1
e-petitions.by, 1
+e-pi-log.at, 1
e-placement.tk, 1
e-planshet.tk, 1
e-pokupki.eu, 1
@@ -47654,6 +47447,7 @@ eac222.com, 1
eac333.com, 0
eac444.com, 1
eac555.com, 1
+eaces.nl, 1
each.tk, 1
ead-italia.it, 1
eadea.net, 1
@@ -47676,7 +47470,7 @@ eaglegrove.gov, 1
eaglehaslended.com, 1
eaglelakefl.gov, 1
eagleled.us, 1
-eaglemoe.com, 0
+eaglemoe.com, 1
eaglemtn.com, 0
eaglenusa.my.id, 1
eaglepasstx.gov, 1
@@ -47685,6 +47479,7 @@ eagler.tk, 1
eagleriverwi.gov, 1
eaglesightproperties.tech, 1
eaglesmessageboard.com, 1
+eaglestccs.club, 1
eaglesvaulting.org.uk, 1
eagletechz.com.br, 1
eaglevilletn.gov, 1
@@ -47708,7 +47503,6 @@ ealiox.com, 1
eamda.eu, 1
eamda.org, 1
eames-clayton.us, 1
-eamigo.com, 1
eamproperties.com, 1
eamu.fun, 1
eandata.com, 0
@@ -47722,14 +47516,12 @@ eaofhouston.com, 1
eaofirving.com, 1
eaoftarrantcounty.com, 1
eap.vg, 1
-eapl.eu, 1
earchi.org, 1
earhealthsolutions.co.uk, 1
earlsttech.ca, 1
early-etudes.com, 1
earlyeditiontoastmasters.com, 1
earlynotify.com, 1
-earlytime.com, 1
earlyvoting.cf, 1
earlyvoting.gq, 1
earlyvoting.ml, 1
@@ -47778,7 +47570,6 @@ eas.ee, 0
ease.io, 0
easew.com, 1
eashwar.com, 1
-easierexams.com, 1
easiest-way.de, 1
easlerlaw.com, 1
easol.com, 1
@@ -47807,7 +47598,6 @@ easternmusicfestival.org, 1
easternshed.com, 1
easternskatesupply.com, 1
eastfieldnews.com, 1
-eastflower.com, 1
eastfordct.gov, 1
eastgreenwichnews.com, 1
eastgrmi.gov, 1
@@ -47874,7 +47664,6 @@ easybiztech.co.za, 0
easybom.com, 1
easybot.tk, 1
easybranches.com, 1
-easybrazilianrecipes.com, 1
easycater.com, 1
easycoding.org, 1
easycom.tk, 1
@@ -47926,7 +47715,6 @@ easyocm.hu, 1
easyonlinetest.tk, 1
easypay.bg, 1
easypayment.cf, 1
-easypayments.pro, 1
easypets.fr, 0
easypost.com, 1
easypractice.net, 1
@@ -47939,6 +47727,7 @@ easyshare.gq, 1
easysignup.com, 1
easyska.tk, 1
easyslide.be, 1
+easysmogglendora.com, 1
easysoft.tk, 1
easysolution.eu, 1
easysubmit.tk, 1
@@ -47980,11 +47769,9 @@ eatpolkadot.com, 1
eatpolkadot.su, 1
eats.soy, 1
eatsleeprepeat.net, 1
-eatson.com, 1
eatwisconsinpotatoes.com, 1
eatwith.com, 1
eauclairecounty.gov, 1
-eaucube.com, 1
eaugenethomas.cf, 1
eaujob.com, 1
eauto-cash.de, 1
@@ -48072,8 +47859,9 @@ ebjork.se, 1
ebki-nsn.gov, 1
eblan.gq, 1
eblandscaping.com.au, 1
+eblesoft.org, 1
eblog.cf, 1
-eblog.ink, 1
+eblog.ink, 0
ebola-hosting.cz, 1
ebolacharts.ga, 1
ebolavirus.tk, 1
@@ -48107,7 +47895,6 @@ ebpc.com.au, 1
ebpgateway.com, 1
ebrahimhadimarket.com, 1
ebrdbusinessguide.com, 1
-ebrea.ch, 1
ebrnd.de, 1
ebrofoods.es, 0
ebru-gundes.tk, 1
@@ -48178,7 +47965,6 @@ echidna.com.au, 1
echidnalock.com.au, 1
echinus.solutions, 1
echo-in.info, 1
-echo-inc.org, 1
echo-n.nz, 0
echo-online.de, 1
echoanalytics.com, 1
@@ -48214,6 +48000,7 @@ echtcache.ga, 1
echtebbq.nl, 1
echternach-immobilien.de, 1
echtes-hutzelbrot.de, 1
+echx.nl, 1
eci-research.com, 1
ecirtam.net, 0
eciso.io, 1
@@ -48223,6 +48010,7 @@ eckel-edv.de, 1
eckel-kieser-gbr.de, 1
eckel.co, 1
eckerl.org, 1
+eckersondesign.com, 1
eckfordtownshipmi.gov, 1
eckindustries.com, 1
eckler.ca, 1
@@ -48232,6 +48020,7 @@ eclectic-al.gov, 1
eclecticbeaver.com, 1
eclectiv.com, 1
eclip.se, 1
+eclipse-foundation.eu, 1
eclipse4academia-startups.com, 1
eclipsebank.com, 1
eclipseforum.tk, 1
@@ -48263,7 +48052,6 @@ ecobunkerusa.com, 1
ecocanada.jobs, 1
ecocert.fr, 1
ecocertico.com, 1
-ecoceutics.com, 1
ecochannel-ve.com, 1
ecochiccottages.com, 1
ecoconut.org, 1
@@ -48301,6 +48089,7 @@ ecole-attalens.ch, 0
ecole-du-digital.com, 0
ecole-eac.com, 1
ecole-iaf.fr, 0
+ecole-lepavillon.com, 1
ecole-nobilis.ch, 1
ecole-parfum.com, 1
ecole-paysage.fr, 1
@@ -48331,8 +48120,11 @@ ecommbanx.com, 1
ecommerce-bikinsistem.tk, 1
ecommercedb.com, 1
ecommercenews.asia, 1
+ecommercenews.ca, 1
ecommercenews.co.nz, 1
ecommercenews.com.au, 1
+ecommercenews.in, 1
+ecommercenews.uk, 1
ecommerceuropa.eu, 1
ecomovers.com, 1
ecompen.co.za, 1
@@ -48389,10 +48181,12 @@ ecostarfoam.com, 1
ecostruxureit.com, 1
ecosuds.co.uk, 1
ecosuds.uk, 1
+ecosurfsupply.com, 1
ecosystem.atlassian.net, 1
ecosystemmanager-uat1.azurewebsites.net, 1
ecotecelevator.com, 1
ecotestantigentest.com.au, 1
+ecotone-tottori.com, 1
ecotrade-disinfestazioni.it, 1
ecotsa.com, 1
ecotur.org, 1
@@ -48474,6 +48268,8 @@ eddi.org.au, 1
eddie.website, 1
eddiepatella.co, 0
eddmil.es, 1
+eddns.de, 1
+eddns.eu, 1
eddokloosterman.com, 1
eddriesen.tk, 1
eddsworld.tk, 1
@@ -48502,7 +48298,6 @@ eden.bz, 1
eden.co.uk, 1
eden.one, 1
edenaya.com, 0
-edencollie.com, 1
edenfactory.tk, 1
edenming.info, 1
edennc.gov, 1
@@ -48511,7 +48306,6 @@ edenprojectcommunities.com, 1
edenpureheater.tk, 1
edenredbenefits.com, 0
edenvaleplumber24-7.co.za, 1
-edepola.com, 1
eder-steiner.at, 1
edeseschoolvereniging.nl, 1
edevletkapisi.org, 1
@@ -48546,6 +48340,7 @@ edgflowers.ca, 1
edging.tech, 1
edglossary.org, 1
edhotels.com, 1
+edi-app.io, 1
edi-gate.com, 1
edi-gate.de, 1
edibarcode.com, 1
@@ -48555,7 +48350,6 @@ edicionanticipada.com, 1
edicionescrimentales.tk, 1
edik.tk, 1
edikacomptabilite.com, 1
-edilane.com, 1
edilane.de, 1
edilians-group.com, 1
ediliovo.com, 1
@@ -48563,7 +48357,6 @@ edilondon.com, 1
edilservizivco.it, 1
edinbric.scot, 0
edinburghcastle.scot, 0
-edinburghopenworkshop.co.uk, 1
edirnehaber.tk, 1
edirnehaberleri.tk, 1
edisoft.dz, 1
@@ -48593,7 +48386,6 @@ editions-metailie.com, 1
editionsnoiretrouge.com, 1
editorakanope.com.br, 1
editorial-esquematizate.es, 1
-editorial.cn, 1
editorialexpress.com, 1
editorsguild.com, 1
editspace.tk, 1
@@ -48617,7 +48409,6 @@ edmundcelis.com, 1
edmundo.ro, 1
edmundy.tk, 1
edmwaves.org, 1
-ednarstore.com, 1
edocperso.fr, 1
edocr.com, 1
edok.com.br, 1
@@ -48642,6 +48433,7 @@ edscolors.com, 1
edservicing.com, 1
edshogg.co.uk, 1
edsm.net, 1
+edsmartparts.nl, 1
edsplain.ro, 1
edstem.org, 1
edstep.com, 1
@@ -48672,9 +48464,9 @@ educacionit.com, 1
educacionnm.ml, 1
educacionvirtual.com.ar, 1
educaenvivo.com, 1
-educampus.cl, 1
educandoamihijo.com, 1
educard.co.at, 1
+educart.mx, 1
educasis.tk, 1
educatednannies.com, 1
educatie.tk, 1
@@ -48707,7 +48499,6 @@ educative.io, 1
educator-one.com, 1
educatorretirementsolutions.com, 1
educators.co.nz, 1
-educatoys.com.br, 1
educbook.ga, 1
educheck.tech, 1
educourse.nl, 1
@@ -48762,6 +48553,7 @@ edutechspot.com, 1
edutour.ml, 1
edutrum.com, 1
eduxpro.com, 1
+eduyog.org, 1
eduzaurus.com, 1
edv-biela.de, 1
edv-datenservice.at, 1
@@ -48815,7 +48607,7 @@ eeetrust.org, 1
eef.com.pe, 1
eegaming.org, 1
eegaming.tk, 1
-eehitus.ee, 1
+eehitus.ee, 0
eeia.com, 1
eeiletudiant.com, 1
eekelen.net, 1
@@ -48838,6 +48630,9 @@ eer.cz, 1
eer.io, 1
eeri.org, 1
eerieglowgames.com, 1
+eerlijkland.com, 1
+eerlijkland.eu, 1
+eerlijkland.nl, 1
eerstemaanlanding.tk, 1
eery.de, 1
eesti.id, 1
@@ -48857,7 +48652,7 @@ efag.com, 1
efapodcast.com, 1
efcross.com, 1
efectivodigital.com.ar, 1
-efectococuyo.com, 0
+efectococuyo.com, 1
efeel.info, 1
efeen.nl, 1
efeindonesia.com, 1
@@ -48952,6 +48747,7 @@ egais.ml, 1
egal24.de, 1
egarden.it, 1
egb.at, 0
+egbc.ca, 0
egbert.net, 1
egbertsen.tk, 1
egc.ink, 1
@@ -49040,6 +48836,7 @@ egt-bg.com, 1
egt-digital.com, 1
egt.ee, 0
egt.tw, 1
+egtv.ru, 1
eguchi-dc.com, 1
egvilparks.gov, 1
egy-boy.tk, 1
@@ -49096,7 +48893,6 @@ ehrlichesbier.de, 1
ehs.com, 1
ehsehk.com.ph, 1
ehtgov.org, 1
-ehtp.pt, 1
ehtu.tk, 1
ehub.cz, 1
ehub.hu, 1
@@ -49130,6 +48926,7 @@ eiffageconstruction.com, 1
eiga.com, 1
eigenaardig.tk, 1
eigenbubi.de, 1
+eigendeeg.eu, 1
eigenetiket.tk, 1
eigentech.com, 1
eigenvector.systems, 1
@@ -49170,8 +48967,8 @@ einfachwaseigenes.de, 1
einheizpreis.de, 1
einhorn.space, 1
einmonolog.de, 1
+eino.world, 1
einreiseanmeldung.de, 1
-einrichtenonline.com, 1
einsatzstiefel.info, 1
einstein-themanandhismind.net, 1
einsteinathome.org, 1
@@ -49184,7 +48981,6 @@ eintageinzug.de, 1
eintoepfe-bruchsal.de, 1
eintracht-rodde.de, 1
einvestment.com, 1
-einvworld.com, 1
einwie.com, 1
eipp99.com, 1
eirastudios.co.uk, 1
@@ -49217,7 +49013,6 @@ eivavolleyball.com, 1
eiyoushi-shigoto.com, 1
ej.gov, 1
ej.uz, 1
-ejbelectrical.com, 1
ejcabinets.com, 1
ejderrapgott.de, 1
ejdv-anmeldung.de, 1
@@ -49260,7 +49055,7 @@ ekatalendra.com, 1
ekati.ru, 1
ekawaiishop.com, 1
ekb-avia.ru, 0
-ekcomp.com, 1
+ekcomp.com, 0
ekcrags.ru, 1
ekd.de, 1
ekdoseis.gr, 1
@@ -49268,7 +49063,6 @@ ekedc.com, 1
ekedp.com, 1
ekf.ee, 1
ekfgroup.com, 1
-ekgh.dk, 1
ekhabar.ml, 1
ekherelakhbar.com, 1
ekho.tk, 1
@@ -49299,7 +49093,6 @@ ekonomival.se, 1
ekonomska.tk, 1
ekophone.bg, 1
ekoport.ru, 1
-ekopromet.com, 1
ekosaltis.lt, 1
ekosf.ru, 1
ekospajzka.cz, 1
@@ -49341,7 +49134,6 @@ elaboratefiction.com, 1
elad.wtf, 1
eladalfassa.com, 1
eladerezo.com, 1
-eladgames.com, 1
elaegypt.org, 1
elahejalilvand.com, 1
elaheze.com, 0
@@ -49444,9 +49236,6 @@ eldiedesign.com, 1
eldin.ba, 1
eldinturkic.com, 1
eldisagjapi.de, 1
-eldorado-casino-zerkalo.beauty, 1
-eldorado-casino.beauty, 1
-eldorado-casino.skin, 1
eldorado.aero, 1
eldoradocylinders.com, 1
eldoradoil.gov, 1
@@ -49673,6 +49462,7 @@ elementalrecipes.com, 1
elementalrobotics.com, 1
elementalsoftware.net, 1
elementalsoftware.org, 1
+elementalwave.co, 1
elementarewatson.it, 1
elementarium.cf, 1
elementarium.ga, 1
@@ -49681,8 +49471,6 @@ elementarywave.com, 0
elementblend.com, 1
elementbookings.com, 1
elementedigitale.ro, 1
-elementmea.com, 1
-elementorfa.ir, 1
elements-space-time.com, 1
elements.guide, 1
elementseducation.com.au, 1
@@ -49754,7 +49542,6 @@ elettricista.roma.it, 1
elettricisti.roma.it, 1
elettrodomestici.roma.it, 1
elettrolinkimpianti.it, 1
-elettronew.com, 1
eleusis-zur-verschwiegenheit.de, 1
elev8fashion.ca, 1
elevacionesrama.com, 1
@@ -49779,7 +49566,9 @@ elexprimidor.com, 1
elfe.de, 1
elfejoyeux.com, 1
elfi.com, 1
+elfinit.net, 1
elfix.sk, 1
+elfland.me, 1
elfnon.com, 1
elforat.tk, 1
elforno.gr, 1
@@ -49787,7 +49576,6 @@ elforo.tk, 1
elfranco.tk, 1
elfrancotirador.tk, 1
elfreelancer.mx, 1
-elfring.eu, 1
elfussports.com, 0
elgancho.tk, 1
elgargajo.tk, 1
@@ -49838,6 +49626,7 @@ eligibility.com, 1
eligible.com, 1
eligibleapi.com, 1
eligrey.com, 1
+eliguli.com, 1
elijahbrown.tk, 1
elijahgrey.com, 1
elikers.ml, 1
@@ -49944,6 +49733,7 @@ elivenet.com, 1
elixi.re, 1
elixir.bzh, 1
elixirfactory.io, 1
+eliyahna.com, 0
elizabethcitync.gov, 1
elizabethefle.com, 1
elizabethgeren.com, 1
@@ -49963,7 +49753,6 @@ elkhaus.de, 1
elki-musik.ch, 1
elkim.cz, 1
elkmontal.gov, 1
-elkmotel.at, 1
elkocountynv.gov, 1
elkodaily.com, 1
elkovplus.cz, 1
@@ -49991,6 +49780,7 @@ ellesoft-freeware.tk, 1
ellevarner.com, 1
ellevate.com, 1
ellhofen-peccioli.de, 1
+ellianhasalon.com, 1
elliboettcher.de, 1
elliephotography.ca, 1
ellierider.com, 1
@@ -50035,19 +49825,16 @@ elmejorcortapelos.com, 1
elmejordance.tk, 1
elmenreich.tk, 1
elmerboroughnj.gov, 1
-elmermx.ch, 1
elmeson.tk, 1
elmion.cloud, 1
elmo.ee, 1
elmolar.tk, 1
elmolist.tk, 1
-elmoro.mx, 1
elmresan.ir, 1
elmundodeloso.tk, 1
elmwoodmi.gov, 1
elnan.do, 1
elnegocioperfecto.tk, 1
-elnodiacademy.com, 0
elnoorandelmohanad.com, 1
elo-forum.org, 1
elo-rocket.com, 1
@@ -50111,6 +49898,7 @@ elrubio.tk, 1
elsadonaire.tk, 1
elsaelsa.com, 1
elsas.tk, 1
+elsassdestination.fr, 1
elsbouslanostraaficio.tk, 1
elsector7.tk, 1
elselingerie.com, 1
@@ -50162,7 +49950,6 @@ elverdaderoamor.tk, 1
elvermann.de, 1
elvikom.co.uk, 1
elvikom.pl, 1
-elvin.shop, 1
elviraszabo.com, 1
elvis-atouchofgold.com, 1
elvis-presley.tk, 1
@@ -50207,7 +49994,6 @@ emailablev.com, 1
emailalaperformance.fr, 1
emailassist.ai, 1
emailbusters.tk, 1
-emailconfiguration.com, 1
emailer.party, 1
emailexpress.ga, 1
emailfreeshop.tk, 1
@@ -50270,6 +50056,7 @@ emberit.com, 1
emberlife.com, 1
embibe.com, 1
embien.co, 1
+emblemconstructions.com.au, 1
emblemhealth.com, 1
emboasmaos.org, 1
embodiaacademy.com, 1
@@ -50326,6 +50113,8 @@ emeres.tk, 1
emergency-broadcast-system.tk, 1
emergency-federal-register.gov, 1
emergencycommand.us, 1
+emergencydental.me, 1
+emergencydentists.dental, 1
emergencydispatch.org, 1
emergencynewcastle.com.au, 1
emergencyportal.tk, 1
@@ -50348,7 +50137,6 @@ emil-reimann.com, 1
emil-reimann.de, 1
emil.click, 0
emileon.gr, 1
-emiliaaccountancy.uk, 1
emilianomaccaferri.com, 1
emiliaperkkola.fi, 0
emiliaromagnaeconomy.it, 1
@@ -50455,7 +50243,6 @@ emoneycircle.com, 1
emonovo.com, 1
emonsarkar.tk, 1
emopics.com, 1
-emoso.web.id, 1
emotality.com, 1
emote.bot, 1
emotebank.com, 1
@@ -50480,7 +50267,6 @@ emperor-penguin.com, 1
emperor-penguins.com, 1
emperoranimeindo.tk, 1
emperors.net, 1
-empfrm.com, 1
empietraining.com, 1
empinfo.com, 1
empire-forum.tk, 1
@@ -50513,7 +50299,6 @@ employmaxetd.co.za, 1
employment-applicant.com, 1
employment-solutions.ca, 1
employment.ne.jp, 1
-employment.uk.com, 1
employmentguide.com, 1
employmentlawwatch.com, 1
employmenttracking.ga, 1
@@ -50581,6 +50366,7 @@ emse.fr, 1
emselenergia.com, 1
emsliespharmacy.com.au, 1
emsnow.com, 1
+emsystems.it, 1
emt-penzberg.de, 1
emt-pipe.com, 1
emta.ee, 0
@@ -50640,6 +50426,7 @@ enby.army, 1
enbyn.de, 1
encanroy.ca, 1
encanroy.com, 1
+encanstanne.ca, 1
encausate.com, 0
encd.life, 1
ence.es, 1
@@ -50648,7 +50435,6 @@ encentfit.com, 1
encfs.win, 1
enchantedcode.co.uk, 1
enchantedcottage.tk, 1
-encherosolhos.com.br, 1
enchong.com, 1
encinitastrainer.com, 1
encirca.com, 0
@@ -50727,7 +50513,6 @@ endofodo.goip.de, 1
endohaus.us, 1
endometriosis.net, 1
endometriu.ml, 1
-endondehay.com, 0
endorsia.io, 1
endoscope.bg, 1
endpipe.com, 1
@@ -50791,12 +50576,11 @@ energia.ee, 1
energiaelcorteingles.es, 1
energialibre.tk, 1
energianuclear.tk, 1
-energiatalgud.ee, 1
+energiatalgud.ee, 0
energiaurbana.tk, 1
energicertifikat.fi, 1
energie-nederland.nl, 1
energie-sante.ch, 0
-energiecentrale.gent, 1
energieconsultonline.nl, 1
energiedeliemers.nl, 1
energielabelbinneneenweek.nl, 1
@@ -50848,7 +50632,6 @@ energymonitor.ai, 1
energyperformancecertificates.co.uk, 1
energyreferral.link, 1
energysaveroregon.com, 1
-energyshield.net, 1
energysite.tk, 1
energystar.gov, 1
energysystems.com, 1
@@ -50876,6 +50659,7 @@ enfasyperfumarias.com, 1
enfermedaddelbeso.com, 1
enfermeira.pt, 1
enfieldheightsacademy.org.uk, 1
+enfinnit.com, 1
enflow.nl, 1
enforcement-trends-dev.azurewebsites.net, 1
enforcement-trends-test.azurewebsites.net, 1
@@ -50894,7 +50678,9 @@ engagewell.com, 1
engalego.tk, 1
enganchesevilla.es, 1
engardelinux.org, 1
+engaugetools.com, 1
engbers.com, 1
+engehall.com, 1
engelandautohuur.nl, 1
engeldasein.at, 1
engeldasein.com, 1
@@ -50908,7 +50694,6 @@ engelzicht.com, 1
engen.co.za, 0
engg.ca, 1
enggar.tk, 1
-enggrup.com.tr, 1
engie-laadpalen.nl, 0
engima.nl, 1
engineer-kobe.ga, 1
@@ -50964,7 +50749,6 @@ englishouse.tk, 1
englishprovence.com, 1
englishtofrench.eu, 1
englishvaultingsquad.co.uk, 1
-englishvip.com.br, 1
englishvit.com, 1
englishwaves.fr, 1
engrama.tk, 1
@@ -50974,12 +50758,10 @@ engso-education.eu, 1
engso.com, 1
engso.eu, 1
engsoyouth.eu, 1
-engster.com, 1
engsubjav.com, 1
engution.biz, 0
engvid.com, 1
engweld.co.uk, 1
-engym.com.tw, 1
engz.icu, 1
enhance.tools, 1
enhanced-mail.tk, 1
@@ -50995,7 +50777,6 @@ enimo.ru, 1
enisor.bg, 1
enitso.de, 1
enity.tk, 1
-enixgaming.com, 0
eniyicrmprogramlari.tk, 1
enizioshop.com, 1
enji-sendai.com, 1
@@ -51014,6 +50795,7 @@ enkelanmalan.se, 1
enkelpaamelding.no, 1
enker.tk, 1
enkolaysertifika.com, 1
+enkosi.com.au, 1
enkrypt.com, 1
enky.be, 1
enlacemedik.com, 1
@@ -51031,6 +50813,7 @@ enmedia.eu, 1
enmowe.co.ke, 1
enmowe.tech, 1
ennd.com, 1
+ennekoops.nl, 1
ennori.jp, 1
ennova.com, 0
ennovationtech.eu, 1
@@ -51041,7 +50824,6 @@ enofmusic.com, 1
enoisdaturma.tk, 1
enolalingerie.com, 1
enomada.net, 1
-enomcentral.com, 1
enonvalleyboropa.gov, 1
enoou.com, 1
enorekcah.com, 1
@@ -51058,8 +50840,10 @@ enotecastore.it, 1
enotefile.com, 1
enotovil.ru, 1
enotrosmundos.tk, 1
+enovetic.ch, 1
enpalmademallorca.info, 1
enpasenerji.com.tr, 1
+enphase.com, 1
enphaseenergy.com, 1
enputu.tk, 1
enquetebeteiligung.de, 1
@@ -51082,6 +50866,7 @@ enroll2control.com, 1
enrollapp.com, 1
enrollcheck.com, 1
enrollchk.com, 1
+enrollmentverify.com, 1
enrollmentverify.net, 1
enrollmentverify.org, 1
enrollwcc.org, 1
@@ -51130,7 +50915,6 @@ enteronline.tk, 1
enterprisenetworksecurity.net, 1
enterpriseoregon.gov, 1
enterpriset.cf, 1
-enterprisetalk.com, 1
enterprisey.enterprises, 1
entersoftsecurity.com, 1
entersynapse.com, 1
@@ -51182,17 +50966,16 @@ entretienvmcpro.fr, 1
entrevistadesucesso.ga, 1
entrezdansladanse.fr, 1
entropy.su, 1
-entropyofdelicatewonders.com, 1
entruempelung-berlin.de, 1
entrup.io, 1
entryboss.cc, 1
entryninja.com, 1
-entryscape.at, 1
-entryscape.ch, 1
+entryscape.at, 0
+entryscape.ch, 0
entryscape.com, 1
-entryscape.de, 1
-entryscape.net, 1
-entryscape.se, 1
+entryscape.de, 0
+entryscape.net, 0
+entryscape.se, 0
entschieden-besser-finanziert.ag, 1
entschieden-besser-finanziert.biz, 1
entschieden-besser-finanziert.com, 1
@@ -51235,10 +51018,10 @@ enuchi.jp, 1
enumasecurity.com, 1
enuygun.com, 1
enuygunaucakbileti.com, 1
-envanature.com, 1
envant.co.uk, 1
envelopeartisans.com, 1
envelopegroup.com, 1
+enveloppen.nl, 1
enveloppenopmaat.nl, 1
enverid.com, 1
envescent.com, 1
@@ -51267,9 +51050,9 @@ enviroli.se, 1
enviroli.uk, 1
environcom.co.uk, 1
environment.ai, 1
+environment.gov.ly, 1
environmental-colleges.com, 1
environmentaljustice.gov, 1
-environmentportal.in, 1
envirosell.com, 1
envirotecmagazine.com, 1
envirotecstructures.com.au, 1
@@ -51280,6 +51063,7 @@ envisolarvind.tk, 1
envistacu.com, 1
enviyatar.tk, 1
envoie.moi, 1
+envoy.com, 1
envoyez.moi, 1
envoyglobal.com, 1
envoymortgage.com, 1
@@ -51426,7 +51210,7 @@ eplustech.eu, 1
epm-bg.com, 1
epmcentroitalia.it, 1
epmonthly.com, 1
-epnuffic.nl, 1
+epnuffic.nl, 0
epobocka.com, 1
epoch-film.ml, 1
epochcg.pt, 1
@@ -51438,7 +51222,6 @@ eposnottingham.co.uk, 1
eposreading.co.uk, 1
epossussex.co.uk, 1
epost.pub, 1
-epost.tw, 1
epostplus.li, 1
eposzilos.nl, 1
epoxyfloor.com.my, 1
@@ -51461,14 +51244,12 @@ eprosto.cf, 1
eprzybornik.pl, 1
eprzydasie.pl, 1
epsamsg.com, 1
-epsilogix.com, 1
epsilon.photography, 1
epsilontel.com, 1
epsmil.it, 1
epsomnhpolice.gov, 1
epson.ru, 1
epspolymer.com, 1
-eptg.hu, 1
eptirgotajs.lv, 1
epublibre.org, 1
epubreader.net, 1
@@ -51480,6 +51261,7 @@ eqassociates.com, 1
eqbal.org, 1
eqibank.com, 1
eqlplayground.io, 1
+eqnz.net, 1
eqrx.net, 1
eqs.com, 1
eqscustomcountertops.ca, 1
@@ -51513,6 +51295,8 @@ equinedentistryschoolonline.com, 1
equinenow.com, 1
equinox.io, 1
equinoxe.de, 1
+equinoxit.co.nz, 1
+equinoxtraining.net, 1
equip.cz, 1
equipamentosparapostos.com.br, 1
equipandoloja.net.br, 1
@@ -51574,7 +51358,6 @@ erdekesseg.com, 1
erdethamburgeronsdag.no, 1
ereader.uno, 1
erebuildings.com, 1
-erechimimoveis.com.br, 1
erectiepillenwinkel.nl, 1
erector.cf, 1
erector.tk, 1
@@ -51642,7 +51425,6 @@ ericleuthardtphotography.club, 1
ericloud.tk, 1
erico-hm.com, 1
ericoc.com, 1
-ericrosenberg.com, 1
erics.email, 1
erics.site, 1
ericsaadeonline.tk, 1
@@ -51683,7 +51465,6 @@ erinmyers.us, 1
erisa.uk, 1
erisinfo.com, 1
eristajanmutka.com, 1
-erisws.com, 1
eritiaprivacidad.com, 0
erito.com, 1
eritonetwork.com, 1
@@ -51767,6 +51548,7 @@ error.fail, 1
error.org, 1
error418.nl, 1
errror.org, 1
+errsal.com, 1
ersankaucuk.com, 1
ersdfaredsaeem.tk, 1
ersei.net, 1
@@ -51813,7 +51595,6 @@ erwinonline.tk, 1
erwinpaal.nl, 1
erwinschmaeh.ch, 1
erwinsite.tk, 1
-erwinstein.fyi, 1
erwinwensveen.nl, 1
erythromycinonline.gq, 1
erythroxylum-coca.com, 1
@@ -51831,11 +51612,11 @@ es-vps.eu, 1
es.ax, 1
es.search.yahoo.com, 0
es888999.com, 1
+esa.org, 1
esaborit.ddns.net, 0
esadnext.cloud, 1
esagente.com, 1
esajokinen.net, 1
-esalesclub.com, 1
esalinity.com, 0
esame-di-professione-cinestetica.ch, 1
esamsur.tk, 1
@@ -51863,7 +51644,6 @@ esc3.net, 1
esc6.net, 1
esc9.net, 1
escae.ml, 1
-escael.org, 1
escala24x7.com, 1
escalando.tk, 1
escale-communication.bzh, 0
@@ -51876,6 +51656,7 @@ escaparate.tk, 1
escape-house.be, 1
escapees.com, 0
escapeforyou.com, 1
+escapegames.dk, 1
escapejunk.com, 1
escapely.com, 1
escapemotions.com, 1
@@ -51959,7 +51740,6 @@ esferipol.pt, 1
esfiledecrypter.com, 1
esfinance.cz, 1
esg-abi2001.de, 1
-esgen-spac.com, 1
esgen.org, 1
esgforum.com.br, 1
esginside.com.br, 1
@@ -51970,11 +51750,11 @@ eshoeft.com, 1
eshop-prices.com, 1
eshop-ptz.ru, 1
eshopcore.dk, 1
+eshopmall.online, 1
eshoprzd.ru, 1
eshorizonte2020.es, 1
eshotsaatleri.com, 1
esiac.net, 1
-esicia.rw, 1
esideshop.com, 1
esiga.mx, 1
esignandpay.net, 1
@@ -52042,7 +51822,6 @@ espace.network, 1
espacefragil.be, 1
espacejabugo.com, 0
espacepiscine51.fr, 1
-espaceroseauteinturiers.fr, 0
espacetemps.ch, 0
espacetendance.fr, 1
espachavo.tk, 1
@@ -52050,7 +51829,6 @@ espacioantiguo.com, 1
espacioseideas.mx, 1
espacioweb.tk, 1
espacoalimentoesaude.com.br, 1
-espacocasasuzano.com.br, 1
espacosaudesuplementos.com.br, 1
espaiarrela.com, 1
espaiblancandorra.ga, 1
@@ -52063,7 +51841,7 @@ espanyoldebarna.tk, 1
espass.gq, 1
espbimbel.com, 1
espci.fr, 1
-especes.org, 0
+especes.org, 1
especializasaudecursos.com.br, 1
especificosba.com.ar, 1
espectro.tk, 1
@@ -52189,7 +51967,6 @@ estanciasgauchas.com.br, 1
estate360.co.tz, 1
estatebud.com, 1
estateczech-eu.ru, 1
-estateways.com, 1
estcequemonordinateurestallume.fr, 1
estcequemontelephoneestallume.fr, 1
estcequonmetenprodaujourdhui.info, 1
@@ -52236,6 +52013,7 @@ estonoentraenelexamen.com, 1
estopero.tk, 1
estopwatch.net, 1
estorgio.com, 1
+estrabota.com, 1
estradatech.org, 1
estradiolbestellen.gq, 1
estrasol.com.mx, 1
@@ -52269,7 +52047,6 @@ esubasta.ar, 1
esunapena.tk, 1
esunenin.tk, 1
esuretynew.azurewebsites.net, 1
-esurveynordic.com, 1
esvaco.cf, 1
esvc.co.uk, 1
esverify.org, 1
@@ -52282,6 +52059,7 @@ esys.ga, 1
esystems.tk, 1
eszkola.pl, 1
et-inf.de, 1
+et-xprojects.co.za, 1
et.al, 1
et420nrw.tk, 1
etablissement.com, 1
@@ -52308,7 +52086,6 @@ etdp.co.za, 1
etech-solution.com, 1
etech-solution.net, 1
etech-solutions.com, 1
-etech.com.my, 1
etechsolution.net, 1
eteck.co.tt, 1
etemadsazeh.com, 1
@@ -52404,7 +52181,6 @@ etialis.com, 1
etialis.fr, 1
eticket.cr, 1
eticket.mx, 1
-etiechi.com, 1
etienne.cc, 1
etiketten.tk, 1
etikus-hacker.hu, 1
@@ -52416,8 +52192,8 @@ etiqa.tk, 1
etisalat.af, 1
etke.cc, 1
etlab.in, 1
+etme.com, 1
etmtobik.eu, 1
-etnis.id, 1
etnoforum.tk, 1
etnoria.com, 1
etoile-rc.jp, 1
@@ -52434,7 +52210,6 @@ etrades.tk, 1
etre-belle.tk, 1
etre-vivant.fr, 0
etrecosmeticderm.com, 1
-etresmant.es, 1
etrolleybizstore.com, 1
ets-etos.azurewebsites.net, 1
ets-software.de, 1
@@ -52491,7 +52266,6 @@ eugeneorourke.com, 1
eugenesia.org, 1
eugeneyeosurgery.sg, 1
eugenics.org, 1
-eugeniocorso.com, 1
eugenioperez.tk, 1
eugostodefilmesbrasileiros.tk, 1
eugster.se, 1
@@ -52541,7 +52315,6 @@ eupay.de, 1
euphoriaonline.tk, 1
euphoriareign.com, 1
eupl.eu, 1
-eupm.org, 1
euporos.ch, 0
euprapeace.org, 1
euracom.it, 1
@@ -52569,6 +52342,7 @@ eurobahn.de, 1
eurobattle.tk, 1
eurobeaute.be, 1
eurobilltracker.tk, 1
+eurocarparks.ie, 1
eurocertificazione.it, 1
eurocity.mt, 1
eurocitymalta.com, 1
@@ -52582,6 +52356,7 @@ eurocontrol.in, 1
eurocontrol.lu, 1
eurocontrol.me, 1
eurocontrol.xxx, 1
+eurocosmo.com, 1
eurocure.com, 1
eurodanceperu.tk, 1
eurodentaire.com, 1
@@ -52598,7 +52373,6 @@ euroflora.mobi, 1
euroflorist.cf, 1
euroflorist.ga, 1
euroflorist.tk, 1
-eurofoods.gr, 1
eurofoot.cf, 1
eurofrank.eu, 1
eurofunk.at, 1
@@ -52661,7 +52435,6 @@ europeanspring.net, 1
europeanstudies-chemnitz.de, 1
europeantransmissions.com, 1
europeantransportmanagement.com, 1
-europeanwineresource.com, 1
europejob.info, 0
europeluxuryweddings.com, 1
europeonline.tk, 1
@@ -52680,8 +52453,6 @@ euroshop.or.at, 1
euroshop.tk, 1
eurosight.com, 1
euroskano.nl, 1
-eurosnap.com, 1
-eurosos.com, 1
eurospecautowerks.com, 1
eurosquad.tk, 1
eurostrategy.vn.ua, 1
@@ -52718,6 +52489,7 @@ eutawal.gov, 1
euterpiaradio.ch, 1
euth.at, 1
eutotal.com, 1
+eutox.com.br, 1
euvo.tk, 0
euwid.de, 1
euzissima.com.br, 1
@@ -52796,7 +52568,6 @@ eve-ua.com, 1
eve.tax, 1
eve0s.com, 1
eveandi.health, 1
-eveapk.com, 1
eveaz.com, 1
eveco-mebel.ga, 1
evedanjailbreak.com, 1
@@ -52807,7 +52578,6 @@ evelienstormzangcoach.nl, 1
evelienuitvaartverzorging.nl, 1
evelienzorgt.nl, 1
evelin.tk, 1
-evelynmakesthings.xyz, 1
even44.no, 1
evenbijproaten.online, 1
evendesign.com, 1
@@ -52904,6 +52674,7 @@ everestbankltd.com, 1
everestplus.io, 1
everettduiattorneys.com, 1
everettsautorepair.com, 0
+everettsbirthdayparty.com, 1
everfi.com, 1
everfine.com.tw, 1
everfree.win, 1
@@ -52951,7 +52722,6 @@ every-day-life.com, 0
everyad.co.il, 1
everyarti.st, 1
everybitfit.com, 1
-everycloudwebdesign.com, 1
everycorneroftheworld.cf, 1
everycorneroftheworld.de, 1
everycorneroftheworld.ml, 1
@@ -52959,7 +52729,6 @@ everycorneroftheworld.tk, 1
everydangdish.com, 1
everyday.eu.org, 1
everydaycaitfitness.com, 1
-everydaydishes.com, 0
everydaygary.com, 1
everydaylifeinsurance.com, 1
everydaypower.com, 1
@@ -53043,7 +52812,7 @@ evl.one, 1
evlconsulting.com.au, 1
evlilikilan.com, 0
evlqa1sp1tzb05zo-reoo0vhj9a1t5pousfudnkg.com, 0
-evo-exchange.com, 1
+evnia.com, 1
evo.moe, 1
evobox.store, 1
evoco.vc, 0
@@ -53060,12 +52829,11 @@ evolucionradio.tk, 1
evolusis.fr, 1
evolution-gaming.tk, 1
evolution-host.ga, 1
-evolution-x.org, 1
+evolution-x.org, 0
evolution.codes, 1
evolutionbp.es, 1
evolutionhomecorp.com, 1
evolutioninflatables.co.uk, 1
-evolutionlending.co.uk, 1
evolutionlife.za.com, 1
evolutionmuaythai.com, 1
evolutionosteopathy.co.uk, 1
@@ -53150,6 +52918,7 @@ ewp.live, 1
ewritingservice.com, 1
ewsfeed.com, 1
ewuchuan.com, 1
+ewuraba.co, 1
ewycena.pl, 1
ex-deli.jp, 1
ex-links.net, 1
@@ -53191,6 +52960,7 @@ example.ng, 1
exampleessays.com, 1
examroll.fr, 1
examroo.nl, 0
+examroom.ai, 1
examsite.tk, 1
examsmate.in, 1
examsoft.com, 1
@@ -53211,6 +52981,7 @@ excdn.eu.org, 1
exceed-clan.tk, 1
excel-mechanical.com, 1
excelbroadcast.com, 1
+excelbusinessservices.ie, 1
excelcenter.org, 1
exceldatapro.com, 1
exceldepo.com, 1
@@ -53275,10 +53046,9 @@ excoffierleonard.com, 1
excontinuum.de, 1
excursiones.tk, 1
exe-boss.tech, 1
-exebois.fr, 1
+exebois.fr, 0
exec.institute, 1
execbar.com, 1
-exechip.com, 1
execom68.tk, 1
execupharm.jp, 1
execution.biz.tr, 1
@@ -53322,7 +53092,7 @@ exitooutdoor.com, 1
exitoseguro.tk, 1
exitreality.tk, 1
exitrooms.co.uk, 1
-exitten.net, 1
+exits.partners, 1
exizent.com, 1
exizent.tk, 1
exlibris.org, 1
@@ -53335,7 +53105,6 @@ exodium.tk, 1
exodus-net.pl, 1
exodus.com, 1
exodus.io, 1
-exodusbattlelarp.com, 1
exogenous.ga, 1
exomind.cf, 1
exomind.gq, 1
@@ -53359,6 +53128,7 @@ exousiamg.com, 1
exoweb.ca, 1
exp.gg, 1
expancio.com, 0
+expanda.com.br, 1
expandabil.cf, 1
expanddigital.media, 1
expandor.cz, 1
@@ -53446,6 +53216,7 @@ expleo.com, 1
explicamente.pt, 1
explode.tk, 1
explodie.org, 1
+explohub.com, 1
exploit-db.com, 1
exploit.cz, 0
exploit.party, 1
@@ -53716,7 +53487,7 @@ eylea.us, 1
eylog.co.uk, 1
eymon.llc, 1
eynio.com, 1
-eyodin.com, 1
+eyodin.com, 0
eyoo.link, 1
eyps.net, 1
eytosh.net, 1
@@ -53729,7 +53500,6 @@ ezakazivanje.rs, 1
ezakopane.pl, 1
ezalba.com, 0
ezcater.com, 1
-ezcater.io, 1
ezcesspoollongisland.com, 1
ezcourseonline.com, 1
ezdog.press, 1
@@ -53754,7 +53524,6 @@ ezochat.com, 1
ezorgportaal.nl, 1
ezoterizm.info, 1
ezprints.com, 1
-ezpublish-france.fr, 1
ezrent.tk, 1
ezsavers.ga, 1
ezsaversers.ga, 1
@@ -53781,6 +53550,8 @@ f-sulzmann.de, 1
f-thie.de, 1
f-u-c-k.wien, 1
f.bi, 1
+f.hk.cn, 1
+f0.com.au, 1
f00228.com, 1
f00f.org, 1
f0x.es, 1
@@ -53857,10 +53628,10 @@ f9728.co, 1
f9884.com, 1
fa-fa.tk, 1
fa.ke, 1
+fa53.eu, 1
faac-sloupy.cz, 1
faac-zavory.cz, 1
faaog.com, 1
-faapart107certifiedpilot.com, 1
faaq.ru, 1
faavem.org, 1
faazmusic.com, 1
@@ -54084,10 +53855,10 @@ fadaex.org, 1
fadaru.ml, 1
fadecloud.com, 1
fadedave.com, 1
-fadednet.com, 0
fademusic.tk, 1
fadergs.edu.br, 1
faderweb.de, 1
+fadiahmadwealth.com, 1
fadilegourmand.fr, 1
fads-center.online, 1
fae.watch, 1
@@ -54138,6 +53909,7 @@ failover.de, 1
failover.eu, 1
failoverplan.it, 0
failsafe.monster, 1
+failsguild.com, 1
failstats.net, 0
faimdevoyages.com, 1
faimmobiliare.it, 1
@@ -54156,6 +53928,7 @@ fairchildband.tk, 1
fairchildfun.marketing, 1
fairchildportraits.com, 1
fairchildstx.gov, 1
+fairclimate.com, 1
fairdata.ga, 1
fairedeseconomies.info, 1
fairelements.net, 1
@@ -54189,7 +53962,6 @@ fairplay-trading.com, 1
fairplay.im, 1
fairporthots.com, 1
fairtrade010.nl, 1
-fairtradegemeentegent.be, 1
fairviewcounseling.org, 1
fairviewevents.ca, 0
fairviewfarmacy.com, 1
@@ -54233,7 +54005,6 @@ fakeapple.nl, 1
fakeballon.shop, 1
fakebusters.club, 1
fakecheck.com, 1
-fakecrime.bio, 1
faked.org, 1
fakeemergency.com, 1
fakeframes.ga, 1
@@ -54251,6 +54022,7 @@ fakescreen.org, 1
faketaxi.com, 1
fakhrudin.tk, 1
fakinga.tk, 1
+fakir-show.nl, 0
fakt.tk, 1
faktenfaktenfakten.tk, 1
faktorgruen.de, 1
@@ -54258,7 +54030,7 @@ faktotum.tech, 1
fakturi.com, 1
fakturoid.cz, 1
faktury.co, 1
-fal.moe, 1
+fal.moe, 0
falaeapp.org, 1
falainacloud.com, 1
falastin.tk, 1
@@ -54304,7 +54076,6 @@ fallofthecitadel.com, 1
fallonarrocho.tk, 1
fallout-craft.ru, 1
fallout-tattoo.de, 1
-fallout4london.com, 1
fallriverbiblechapel.tk, 1
fallriverma.gov, 1
fallspa.gov, 1
@@ -54398,6 +54169,7 @@ familytrees.net, 1
familytreewebinars.com, 1
familyzone.ga, 1
famion.eu, 1
+famiport.com, 1
famlefeber.nl, 1
famonitor.com, 1
famosas.cf, 1
@@ -54444,13 +54216,16 @@ fanfiction.tk, 1
fanflix.co, 1
fang-den-sommer.de, 1
fangan.com, 1
+fangban.net, 1
fangbing.me, 1
fangjingdian.com, 1
fangkehou.tk, 1
fangs.ink, 1
fangshu.com, 1
fanidrakopoulou.tk, 1
+fanitest.ir, 1
fanjingbo.com, 1
+fanjiong.com, 1
fanniemaeloans.tk, 1
fanning.tk, 1
fannyips.tk, 1
@@ -54502,7 +54277,6 @@ fantasyfoot.tk, 1
fantasyforever.tk, 1
fantasypartyrental.com, 1
fantasyprojections.com, 1
-fantasyspectrum.com, 1
fantasysports.tk, 1
fantasysportsnews.org, 1
fantgames.com, 1
@@ -54513,7 +54287,6 @@ fanty-online.com, 0
fanuc-stanok.ru, 1
fanvue.com, 1
fanyue123.tk, 1
-fanzade.com, 1
fanzapers.ga, 1
fanzhuang.com, 1
fanzine-nimbus.tk, 1
@@ -54576,13 +54349,13 @@ faridathaimassage.com.au, 1
farisre.com, 1
farizstore.tk, 1
farkas.ws, 1
-farleyfoundation.org, 1
farleymetals.com.au, 1
farlitesolutions.com, 1
farm-catalog.ga, 1
farm-dogecoin.tk, 1
farm-vacations.com, 1
farmacia.pt, 1
+farmaciabarcelona.com, 1
farmaciaclinica.it, 1
farmaciacomunalelacchiarella.it, 1
farmaciadejaime.es, 1
@@ -54601,6 +54374,7 @@ farmaweb.be, 1
farmbureauinsurance-mi.com, 1
farmcloud.fr, 1
farmer-miniaturen.tk, 1
+farmerbrossamples.com, 1
farmerfairness.gov, 1
farmers.gov, 1
farmerschilemarket.com, 1
@@ -54641,7 +54415,6 @@ farrelly.nz, 1
farringtonfoundation.org, 1
farringtongurneyvillagehall.org, 1
farsil.eu, 1
-farsmohajer.com, 1
fart.cafe, 1
fartoclose.tk, 1
fartoon.cz, 1
@@ -54650,8 +54423,6 @@ fartypants.com, 1
faryaz.tk, 1
fasab-portcenter.se, 1
fasad.eu, 1
-fasam.edu.br, 1
-fascat.com, 1
fasciststate.uk, 1
fashion-buttons.tk, 1
fashion-family.cf, 1
@@ -54676,7 +54447,6 @@ fashiondock.de, 0
fashiondot.ga, 1
fashioneditor.gr, 1
fashionette.de, 1
-fashionfeele.com, 1
fashionfeverlifestyle.com, 1
fashionflavorph.com, 1
fashionforward.tk, 1
@@ -54700,7 +54470,6 @@ fashionopenstudio.com, 1
fashionoutlets.tk, 1
fashionplus.ml, 1
fashionreview.ml, 1
-fashionsshops.info, 1
fashionstylenews.tk, 1
fashionsuits.tk, 1
fashionsummer.tk, 1
@@ -54761,10 +54530,10 @@ fast-host.gq, 1
fast-host.net, 1
fast-mobile.tk, 1
fast-pro.co.jp, 1
-fast-rabbit.tw, 1
fast-silver.tk, 1
fast.ly, 1
fast4ever.tk, 1
+fastable.net, 1
fastamundi.com, 1
fastandtuning.tk, 1
fastantigentests.com.au, 1
@@ -54778,6 +54547,7 @@ fastbob.ga, 1
fastbob.gq, 1
fastbob.ml, 1
fastbob.tk, 1
+fastbookings.co, 1
fastcast.ga, 1
fastcats.tk, 1
fastcdn.info, 1
@@ -54811,6 +54581,7 @@ fastgamingro.tk, 1
fastgit.cc, 1
fasthost.com.br, 1
fastighetsekonomi.com, 0
+fastimg.net, 1
fastknighki.ga, 1
fastknigi.ml, 1
fastlaneimportautorepair.com, 1
@@ -54852,9 +54623,7 @@ fatcatloans.co.za, 1
fate-srd.com, 0
fatecdevday.com.br, 1
fatemaalhabsi.com, 1
-fates.online, 1
fatetx.gov, 1
-fatfueled.com, 1
fatherhood.gov, 1
fatheroflions.org, 1
fathers.com, 0
@@ -54862,7 +54631,6 @@ fathom.one, 1
fatidique.com, 1
fatig.com, 1
fatiguesyndrome.com, 1
-fatih-catering.com, 1
fatihingemisi.com, 1
fatimamoldes.com.br, 1
fatimaonlinepharmacy.com, 1
@@ -54926,20 +54694,17 @@ faw-club.cf, 1
fawkes.games, 1
fawkesgames.com, 1
fawnover.fun, 1
-fawong.com, 1
fawx.news, 1
faxfarmers.ga, 1
faxfarmest.ga, 1
faxreader.net, 1
faxvorlagen-druckvorlagen.de, 1
fay.kr, 1
-fayalove.com, 1
fayamovies.tk, 1
fayettecountyillinois.gov, 1
fayettecountyoh.gov, 1
fayettecountytn.gov, 1
fayettecountywv.gov, 1
-fayettega.org, 1
fayettemopd.gov, 1
fayettevilleflyer.com, 1
fayettevillewv.gov, 1
@@ -54976,7 +54741,6 @@ fbiic.gov, 1
fbijobs.gov, 1
fbilab.gov, 1
fbk.moe, 1
-fbmedia-ckl.com, 1
fbnquest.com, 1
fbo.gov, 1
fbo.network, 1
@@ -55168,7 +54932,7 @@ fedsfeedfamilies.gov, 1
fedshat.space, 1
fedshirevets.gov, 1
fedthaar.site, 1
-feecotec.com, 1
+feecotec.com, 0
feed-back.com, 1
feedback-project.eu, 1
feedbackproduction.tk, 1
@@ -55184,6 +54948,7 @@ feedingmethodsest.ga, 1
feedingmynewbaby.com, 1
feedkovacs.hu, 1
feedmail.org, 1
+feedready.eu, 1
feedstringer.com, 1
feedthefood.com, 1
feedthefuture.gov, 1
@@ -55209,7 +54974,6 @@ feelingdesperate.org, 1
feelmax.com, 1
feelmingo.com, 1
feelnet.top, 1
-feelnice.com.br, 1
feeltennis.net, 1
feen.us, 1
feeriedesign-event.com, 1
@@ -55250,7 +55014,6 @@ feilestrokestown.com, 1
feirlane.org, 0
feiromo.com, 1
feistore.com.tw, 1
-feistyduck.com, 1
feisworld.com, 0
feitam.es, 1
feittinf.org.br, 0
@@ -55344,7 +55107,7 @@ feministreview.cf, 1
feministreview.ga, 1
feministreview.gq, 1
feministreview.ml, 1
-feministspectrum.org, 1
+feministspectrum.org, 0
feminteligencia.com, 1
femiwiki.com, 1
femme.fitness, 1
@@ -55402,7 +55165,6 @@ fensterbau-mutscheller.de, 1
fenwickisland-de.gov, 1
feodosiya.cf, 1
feodosiya.tk, 1
-fepg.hu, 1
fepun.com, 1
ferad.net, 1
feras-alhajjaji.com, 1
@@ -55433,6 +55195,7 @@ ferienhaus-urlaub-danemark.de, 1
ferienhausprovence.ch, 1
ferienwohnung-hafeninsel-stralsund.de, 1
ferienwohnung-ruegen.tk, 1
+ferienwohnung-schmitt.eu, 1
ferienwohnung-wiesengrund.eu, 1
ferienwohnung-wilmersdorf.de, 1
ferienwohnungen-lastminute.de, 1
@@ -55526,8 +55289,6 @@ festival365.ml, 1
festivalcarpark.com.au, 1
festivaldays.tk, 1
festivaldecinedemallorca.tk, 1
-festivaldelumieresgand.be, 1
-festivaldelumieresgand.com, 1
festivaldimouamaroussiou.gr, 1
festivalfumo.tk, 1
festivaljapon.com, 1
@@ -55546,13 +55307,11 @@ festrentcar.pl, 1
festusmo.gov, 1
fetanbus.com, 1
fetawerelddans.tk, 1
-fetchease.com, 1
fetcher.ai, 1
fetchlead.com, 1
fetchmonitors.com, 1
fetclips.se, 1
fethiyebalikpazari.com.tr, 1
-fethtv.com, 1
fetichedecaramelo.tk, 1
fetih1453.tk, 1
fetish-x.com, 1
@@ -55567,6 +55326,7 @@ fetrabuv.com, 1
fettbrot.tk, 1
fettburger.com, 1
fettings.com, 1
+fettrechner.com, 1
feudalisten.de, 1
feudaltactics.com, 1
feudias.com, 1
@@ -55610,7 +55370,6 @@ ff-koenigstein-opf.de, 1
ff-obersunzing-niedersunzing.de, 1
ff-tostedt.de, 1
ff15.ddns.net, 1
-ff326.com, 0
ff5197.co, 1
ff5g.com, 1
ff62.fr, 1
@@ -55619,7 +55378,6 @@ ff6957.co, 1
ff9297.co, 1
ff9397.com, 1
ff9728.co, 1
-ff976.com, 0
ffamranteatime.com, 1
ffaprivatebank.com, 1
ffazeshift.net, 1
@@ -55665,6 +55423,7 @@ fgui.de, 1
fh-apac.com, 1
fh-chinese.com, 1
fh-chn.com, 1
+fh-erfurt.de, 1
fh-jituan.com, 1
fh-mittelstand.de, 1
fh-photographie.art, 1
@@ -55723,6 +55482,7 @@ fhmkh.cn, 1
fhmktzh.com, 1
fhome.ch, 1
fhope.org, 1
+fhsahne.com, 1
fhsroyalbanner.com, 1
fhsseniormens.club, 1
fhstation.com, 1
@@ -55735,7 +55495,6 @@ fi.google.com, 1
fi.se, 1
fi.search.yahoo.com, 0
fiam.me, 1
-fiamtorino.eu, 1
fianna.tk, 1
fianoromano.news, 1
fiasgo.dk, 1
@@ -55762,7 +55521,6 @@ fickweiler.nl, 1
ficlab.com, 1
fico.com, 1
ficor.gov, 1
-fictionaltruths.com, 1
ficus.io, 0
fid-elite.ch, 0
fidanza.eu, 1
@@ -55783,6 +55541,7 @@ fidgetbox.co.uk, 1
fidhouriet.ch, 1
fidlar.com, 1
fidloo.com, 1
+fidmmuseum.org, 0
fido.gov.au, 1
fidoo.com, 1
fiduciaire-ratio.ch, 0
@@ -55809,11 +55568,7 @@ fiesta-mk5-limited-edition.nl, 1
fiestamericana.com, 1
fiestasalquezar.tk, 1
fiet.cat, 1
-fietsambassade.be, 1
-fietsambassade.gent, 1
-fietsambassadegent.be, 1
fietsennaarbarcelona.tk, 1
-fietsherstel.gent, 1
fietsvakman.nl, 1
fietsvierdaagsen.nl, 1
fietsvoordeelshop.nl, 1
@@ -55844,6 +55599,7 @@ figafacts.com, 1
figandgoat.com, 1
figaroparrucchiere.it, 1
figbert.com, 1
+figbytes.biz, 1
figbytes.com, 1
figherie.it, 1
fighribali.tk, 1
@@ -55902,7 +55658,6 @@ filecopa.com, 1
filedesc.com, 1
filedir.com, 0
filedoom.ml, 1
-fileforest.de, 1
filehash.de, 1
filehippo.com, 1
filehorsefile.com, 1
@@ -55917,6 +55672,8 @@ files.to, 1
files4share.com, 1
fileservicios.com.ar, 1
fileshare.party, 1
+fileshare.to, 1
+filesharing.to, 1
filesharingshop.com, 1
filesoup.io, 1
filestar.io, 1
@@ -55931,7 +55688,6 @@ fili.com, 1
filialelectronica.hn, 1
filidorwiese.nl, 1
filigrana.tk, 1
-filiienterprise.com, 1
filiio.com, 1
filiotech.pl, 1
filip-prochazka.com, 0
@@ -56037,6 +55793,7 @@ finalfate.tk, 1
finalfoursteam.tk, 1
finalfourstream.tk, 1
finalgambit.band, 1
+finalino.de, 1
finalleopard.tk, 1
finalmenteazul.pt, 1
finalonline.tk, 1
@@ -56086,7 +55843,6 @@ finanzasydinero.com, 1
finanzen-az.com, 1
finanzen-weblog.de, 1
finanzierung-sofortzusage.de, 1
-finanztime.com, 1
finanzwende-recherche.de, 1
finaster.com.br, 1
finax.eu, 1
@@ -56102,6 +55858,7 @@ finch.ga, 1
finchnest.co.uk, 1
fincities.tk, 1
fincura.com, 1
+find2career.com, 1
find99cname.com, 1
findahero.com.au, 1
findairconditioningers.ga, 1
@@ -56173,8 +55930,7 @@ fine-services.paris, 1
finearchitecturedesign.com, 1
fineartbead.de, 1
fineartofguitar.com, 1
-fineartscape.nl, 1
-finebitio.info, 1
+fineartscape.nl, 0
finecocoin.io, 1
finecraft.cc, 1
finefriends.nl, 1
@@ -56202,7 +55958,6 @@ finform.ch, 1
finfowe.com, 1
finfreeservice.com, 1
fingerlakesgaming.com, 0
-fingerprint.com, 0
fingerprintjs.com, 1
fingerscrossed.style, 1
fingertight.ga, 1
@@ -56246,10 +56001,8 @@ finovate.com, 1
finplatforms.ru, 1
finpomosh.gq, 1
finprison.net, 1
-finpt.com, 0
finqk.nl, 1
finqueslaromanica.com, 1
-finr.fr, 1
fins.money, 1
finsecurity.eu, 1
finsight.com, 1
@@ -56302,7 +56055,6 @@ firebirdrangecookers.com, 1
firebounty.com, 1
fireboxfood.com, 1
firebrandchurch.com, 1
-firebugmusic.com, 1
fireburn.ru, 1
firecask.com, 1
firechip.cc, 1
@@ -56318,16 +56070,14 @@ firefart.at, 0
firefense.com, 1
firefightergarage.com, 1
fireflygatlinburg.com, 1
+firehada.com, 1
firehousemouse.com, 1
fireintheholevideos.tk, 1
-firekahuna.com, 1
fireleadership.gov, 1
firelinkshrine.xyz, 1
firemail.de, 1
firemaker.tk, 1
-firenet.gov, 1
firenews.cf, 1
-firenneon.org, 1
firenzetoday.it, 1
fireoakstrategies.com, 1
fireplex.co.uk, 1
@@ -56340,7 +56090,6 @@ fireservicerota.co.uk, 1
fireshellsecurity.team, 1
firesmoke.ca, 1
firesofheaven.org, 1
-firesolutionsinc.com, 1
firesprite.com, 0
firestart.tk, 1
firestarter.fi, 1
@@ -56427,10 +56176,10 @@ firstcommunity.com, 1
firstcontact.cf, 1
firstdry.com.br, 1
firstechpayments.com, 0
-firstenergyservice.com, 1
firstever.eu, 1
firstfederalbath.com, 1
firstfinanceit.com, 1
+firstgenmc.com, 1
firstgov.gov, 1
firstgulf.com, 1
firsthomebuyersaustralia.com.au, 1
@@ -56447,7 +56196,6 @@ firstmarket.tech, 1
firstname.tk, 1
firstnet.gov, 1
firstnetwork.cf, 1
-firstnetworksouth.com, 1
firstorion.com, 1
firstottawa.com, 1
firstphilec.com, 1
@@ -56528,7 +56276,6 @@ fisio-clinics.com, 1
fisiobox.eu, 1
fisionutri.com.br, 1
fisioterapia-online.com, 1
-fisioterapiaalquimia.com, 1
fisioterapista.roma.it, 1
fisiotohome.com, 1
fiskalloy.com, 1
@@ -56549,7 +56296,6 @@ fitasdobonfim.com, 1
fitawakening.co.uk, 0
fitbase.cf, 1
fitbizcpa.org, 1
-fitbylo.com, 1
fitcamp.fitness, 1
fitch.group, 1
fitchannel.com, 1
@@ -56561,6 +56307,7 @@ fitcrewhn.com, 1
fite.family, 0
fitecleaningservices.com, 1
fitequilibrio.com.br, 1
+fitfingers.shop, 1
fitflaop.ga, 1
fitfocusau.com.au, 1
fitfoodfab.nl, 1
@@ -56581,20 +56328,19 @@ fitness.gov, 1
fitnessbenefit.com, 1
fitnessbest.com, 1
fitnessfoodguide.com, 1
+fitnessfreedomathletes.com, 1
fitnesshaber.com, 1
fitnessimage.com.au, 1
fitnesskarate.club, 1
fitnessmaus.com, 1
fitnessplanet.best, 1
fitnessstudio-website.de, 1
-fitnesstools.uk, 1
fitnesstotal.com.br, 1
fitnesstrainer-website.de, 1
fitnessunder50.com, 1
fitnessup.fr, 1
fitnessvolt.com, 1
fitnetion.com, 1
-fitnhot.com, 1
fitnur.com, 0
fitnutkatie.com, 1
fito.tk, 1
@@ -56605,7 +56351,6 @@ fitrecepty.info, 1
fitspo.net, 1
fitspring.com, 1
fitssey.com, 1
-fitt-together.co.uk, 1
fittar.eu, 1
fittelo.cz, 1
fittherapy.biz, 0
@@ -56619,6 +56364,7 @@ fius.de, 1
five.sh, 1
five15.net, 1
fiveboosts.xyz, 1
+fiveclassauto.com, 1
fivecrm.com, 1
fivefortheroad.com, 1
fiveminute.tk, 1
@@ -56629,7 +56375,6 @@ fiveslice.pizza, 1
fivestar.et, 1
fivestarstv1.com, 1
fivestartrader.com, 1
-fivetecnologia.com, 1
fivethirtyeight.com, 1
fiveyearsahead.com, 1
fivolodigital.com, 1
@@ -56654,11 +56399,9 @@ fixfm.tk, 1
fixforce.nl, 1
fixi.dk, 1
fixiecommerce.com, 1
-fiximage.net, 1
fixingscrews.co.uk, 1
fixm.aero, 1
fixmobile.online, 1
-fixmyglitch.com, 1
fixodent-fr-fr-swapper.azurewebsites.net, 1
fixodent.fr, 1
fixoffice.net, 1
@@ -56668,6 +56411,7 @@ fixpix.gq, 1
fixplusflex.de, 1
fixpoint.co.at, 1
fixpoint.systems, 1
+fixtesisat.com, 1
fixthetimeline.com, 1
fixthetimeline.org, 1
fixupx.com, 1
@@ -56792,7 +56536,6 @@ flamez.com, 1
flamingcow.tv, 1
flaminggorgefireandems.gov, 1
flamingkeys.com, 1
-flamingo-shop.nl, 1
flamingogroup.vn, 1
flamingoroute.tk, 1
flamingowomenspavilion.com, 1
@@ -56820,6 +56563,7 @@ flarewalker.com, 1
flarewalker.eu, 1
flarewalker.net, 1
flarewalker.org, 1
+flareweb.it, 1
flart.studio, 1
flart.tk, 1
flarumtr.com, 1
@@ -56934,12 +56678,13 @@ fleisch.club, 1
fleischer-garten.de, 1
fleischkaes.de, 1
fleki.hu, 1
-flekkefjordvo.no, 1
+flekkefjordvo.no, 0
flemberg.com, 1
fleming.de, 1
flemingmccullagh.com, 1
flemingtonaudiparts.com, 1
flemishopelclub.tk, 1
+flender.ie, 1
flensburg-hilft-flensburg.de, 1
fleshtone.tk, 1
fleshwound.tk, 1
@@ -56986,6 +56731,7 @@ flexinvesting.fi, 0
flexiple.com, 1
flexman.tk, 1
flexmedia.tk, 1
+flexnet.pl, 1
flexopus.com, 1
flexphonesest.ga, 1
flexpoint.com.br, 1
@@ -56994,8 +56740,6 @@ flexsocialbox.com, 1
flextrade.com, 1
flextrades.com, 1
flextribly.xyz, 1
-flextudo.com, 1
-flextyp.com, 1
flextypes.com, 1
flexundfix.de, 1
flexve.com, 1
@@ -57061,7 +56805,6 @@ flipneus.net, 1
flipnhotdeals.com, 1
flipos.be, 0
flipperkast.tk, 1
-flippers-leuven.be, 1
flipphotography.ga, 1
flipsidevr.com, 1
flipsidexr.com, 1
@@ -57144,7 +56887,6 @@ florafaunafavourites.co.uk, 1
floragarden.tk, 1
floralin.se, 1
floralworkshopsers.ga, 1
-floranext.com, 1
florante.com, 1
florasite.tk, 1
florausa.net, 0
@@ -57293,7 +57035,6 @@ flowsave-staging.nl, 1
flowscale.com, 1
flowstars.tk, 1
flowstateyoga.com.au, 1
-flowstudios.com, 1
flowtex.tk, 1
flowtoys.com, 1
flowzone.eu, 1
@@ -57403,7 +57144,6 @@ flyingbasicsest.ga, 1
flyingcdn.com, 1
flyingcolours.tk, 1
flyingdiscmuseum.com, 1
-flyingdoggy.net, 1
flyingdogis.land, 1
flyingdreamers.com, 1
flyingdutchman.tk, 1
@@ -57411,7 +57151,6 @@ flyinghelpline.com, 1
flyinghigh.tk, 1
flyinglions.tk, 1
flyingmonkeys.tk, 1
-flyingpackets.net, 1
flyingpointphotography.com, 1
flyingpotatoes.tk, 1
flyingpress.com, 1
@@ -57435,6 +57174,7 @@ flyspace.ga, 1
flyspace.ml, 1
flyssh.net, 1
flyswoop.com, 1
+flyten.ir, 1
flythecopter.tk, 1
flytrap.in, 1
flyupture.com, 1
@@ -57498,6 +57238,7 @@ fncreameries.com, 1
fndairies.com, 1
fndairies.com.my, 1
fndout.com, 1
+fne-anjou.org, 1
fneon.eu, 1
fnerk.org, 1
fnet.gr, 1
@@ -57529,6 +57270,7 @@ foamfortress.tk, 1
foamma.com, 1
foamular.com, 1
foard.us, 1
+foblesproject.pl, 1
focal.nl, 1
focalforest.com, 1
focalpoint.tk, 1
@@ -57539,7 +57281,6 @@ focored.com, 1
focus2030.org, 1
focus2career.com, 0
focusbet-api.com, 1
-focusbet.io, 1
focuscomic.com, 1
focusetlumiere.fr, 1
focusgroup.tk, 1
@@ -57553,11 +57294,11 @@ focusti.com.br, 1
focustuningclub.tk, 1
fodder.ga, 1
foehl.de, 1
-foej.net, 1
foepwned.com, 1
foerderverein-horrheim.de, 0
foerderverein-rimsg.de, 1
fof-clan.tk, 1
+fogdigitalmarketing.com, 1
foggi.cf, 1
foggi.ml, 1
foggiatoday.it, 1
@@ -57623,7 +57364,6 @@ folxhealth.com, 1
foma.ru, 1
foma.tk, 1
fomo.af, 1
-fomo.trading, 1
fomobremen.info, 1
fomopop.com, 1
fondation-afnic.fr, 1
@@ -57637,6 +57377,7 @@ fondationwiggli.ch, 1
fondbaikal.ml, 1
fonds-dieter.be, 1
fondsnieuws.nl, 1
+fondsvermittler.com, 1
fonduri-structurale.ro, 1
fondy.ua, 1
fondzee.cz, 1
@@ -57650,7 +57391,6 @@ fonline.tk, 1
fonmeals.com.co, 1
fonolo.com, 1
fonrouge.tk, 1
-fonseguin.ca, 1
fontainebleau.tk, 1
fontanaca.gov, 1
fontanaks.gov, 1
@@ -57667,7 +57407,9 @@ fontsinuse.com, 1
fontstand.com, 1
fonzone.it, 0
foo, 1
+foo.fo, 1
foo.hamburg, 1
+food-n-force.com, 1
food4healthybones.com, 1
food4me.in, 1
foodadaptive.ga, 1
@@ -57797,8 +57539,6 @@ foods.pe, 1
foodsafety.gov, 1
foodsafetyjobs.gov, 1
foodsafetyworkinggroup.gov, 1
-foodsavers.gent, 1
-foodsaversgent.be, 1
foodsedona.ga, 1
foodshuffle.ga, 1
foodsignature.ga, 1
@@ -57809,11 +57549,6 @@ foodsonic.ga, 1
foodsoul.pro, 1
foodsparkle.ga, 1
foodsplash.ga, 1
-foodspring.co.uk, 1
-foodspring.de, 1
-foodspring.es, 1
-foodspring.fr, 1
-foodspring.it, 1
foodsreborn.com, 0
foodsunflower.ga, 1
foodsuperhero.ga, 1
@@ -57856,6 +57591,7 @@ footballcelebrationsers.ga, 1
footballcounter.com, 1
footballforum.de, 1
footballfoundation.org.uk, 1
+footballhom.com, 1
footballmessi.tk, 1
footballnews.net, 1
footballrussia.cf, 1
@@ -57870,6 +57606,7 @@ foothillscript.com, 1
footloose.co.uk, 1
footmercato.net, 1
footparisien.com, 1
+footsteps.lk, 1
footstepsinthegambia.com, 1
footstepsontheglobe.com, 1
foottube.com, 1
@@ -57979,6 +57716,7 @@ forever.gq, 1
foreverbreak.com, 1
forevercollage.com, 1
foreverpontiac.com, 1
+foreverreem.com, 0
foreverssl.com, 1
forevertoday.nl, 1
foreverydream.com, 1
@@ -57986,12 +57724,10 @@ forewordreviews.com, 1
forex-arabia.tk, 1
forex-trading-tutorial.tk, 1
forex-up.cf, 1
-forex.ee, 1
forex92.com, 1
forexbrokerinspect.com, 1
forexcity.cf, 1
forexcomreview.co, 1
-forexee.com, 1
forexexchange.tk, 1
forexhistorydata.com, 1
forexinthai.com, 0
@@ -58000,18 +57736,16 @@ forexmarketsm.tk, 1
forexnese.com, 1
forexnew.org, 1
forexpattern.tk, 1
-forexplay.com, 1
forexsignalroom.com, 1
forextickler.com, 1
forexwinway.com, 1
forexworld.cf, 1
forfeit.ga, 1
forfeiture.gov, 1
+forfemalefounders.co, 1
forfortcollins.com, 1
forfunssake.co.uk, 1
-forge.cn, 1
forge.st, 1
-forgeary.com, 1
forgemedia.io, 1
forgetfulmomma.com, 1
forgetme.ga, 1
@@ -58086,10 +57820,8 @@ formsmarts.com, 1
formsmarts.net, 1
formstack.com, 1
formue.com, 1
-formula-ot.ru, 1
formula.cf, 1
formulacionquimica.com, 1
-formulasguimaraes.com, 1
formulastudent.de, 1
formulatedby.com, 1
formulaveevictoria.com.au, 1
@@ -58233,6 +57965,7 @@ forumculture.org, 1
forumdabeleza.com.br, 1
forumfeeers.ga, 1
forumhsbm.tk, 1
+forumirc.net, 1
forumistudentore.tk, 1
forumix.tk, 1
forummobile.com.br, 1
@@ -58361,7 +58094,6 @@ fotostudio-schweiz.ch, 1
fotostudio87.nl, 0
fotostudiobasic.tk, 1
fotosubmarina.tk, 1
-fotosyeventos.es, 1
fototjansterkalmar.se, 1
fototutorial.tk, 1
fotov60.com, 1
@@ -58390,7 +58122,6 @@ foundationsasha.org, 1
foundationspecialisteast.com, 1
foundationspecialistmi.com, 1
foundchurch.co.uk, 1
-founded.ml, 1
founderinvestors.tk, 1
founderio.net, 1
founderscard.com, 1
@@ -58398,6 +58129,7 @@ foundland.com, 1
foundrehotels.com, 1
foundries.io, 1
foundry512.com, 1
+foundryhome.com, 1
foundsounds.me, 1
fountain.com, 1
fountain.company, 1
@@ -58511,7 +58243,6 @@ fpsclasico.eu, 1
fpsclassico.com, 1
fpsjp.org, 1
fpstest.org, 1
-fpsturk.net, 1
fpsv.de, 1
fpt.icu, 1
fptbb.com, 1
@@ -58528,7 +58259,6 @@ fraai.agency, 1
fracasados.tk, 1
frack.nl, 0
fractalink.com, 1
-fractallatcarf.org, 1
fractieplanner.nl, 1
fraction-calculations.com, 1
fractionalciso.com, 1
@@ -58689,6 +58419,7 @@ francoisharvey.ca, 1
francoislaude.fr, 1
francoislepage.com, 0
franconia.space, 1
+francosud.ca, 1
francovital.com, 1
francoz.me, 0
francs-tireurs.tk, 1
@@ -58713,6 +58444,7 @@ franke-chemie.de, 1
frankelod.com, 1
frankenfresh.de, 1
frankenlehrmittel.de, 1
+frankenpost.com, 1
frankenweb.tk, 1
frankeschenfelder.de, 0
frankeurope.com, 1
@@ -58794,10 +58526,8 @@ fraserandneave.net, 1
fraserandneave.sg, 1
fraserengineco.com, 1
frasermurray.scot, 1
-fraservalleyhotdog.com, 1
frasesconemocion.com, 1
frasesdodia.com, 1
-frasesdodia.net, 0
frasesparaface.com.br, 1
frasestop.com, 1
frasestop.com.br, 1
@@ -58827,6 +58557,7 @@ frauenarztin-wedel.de, 1
frauenarztzentrum-am-see.ch, 1
frauenlob.rocks, 0
frauenpraxislaufental.ch, 1
+fraulen.ru, 1
fraurichter.net, 1
frax.finance, 1
fraye.net, 1
@@ -58897,7 +58628,6 @@ frederickmd.gov, 1
fredericksburg.com, 1
fredericksburgnephrology.com, 1
fredericosaraiva.eu, 1
-fredericosaraiva.pt, 1
frederictonrealestate.com, 1
frederieknelissen.nl, 1
frederikbethkeviolins.com, 1
@@ -58942,6 +58672,8 @@ free-webtv.tk, 1
free.com.tw, 1
free.law, 1
free.mg, 1
+free.sh, 1
+free.tools, 1
free4allsw.com, 1
free6to12yo.gq, 1
freeaf.gq, 1
@@ -58993,7 +58725,6 @@ freedom24.com, 1
freedom35.org, 0
freedomains4all.tk, 1
freedomassistedliving.com, 1
-freedomdiver.org, 1
freedomdujour.com, 1
freedomfinance.eu, 1
freedomfinanceuat.azurewebsites.net, 1
@@ -59009,19 +58740,20 @@ freedomonline.bg, 1
freedomonthenet.org, 1
freedomsanctuary.co.uk, 1
freedomsaukwi.gov, 1
-freedomscam.com, 1
freedomvote.nl, 1
-freedomwealthllc.com, 1
freedomwill.tk, 1
freedomworldoutreach.com, 1
freeebooksblog.com, 1
freeenglishhelp.com, 1
freeexampapers.com, 1
freefallproductions.tk, 1
+freefemale.com, 1
freefilesync.org, 1
freefincal.com, 1
freefiregarenaff.com, 1
freeflightstoitaly.ngo, 1
+freeflybrake.cn, 1
+freeflybrake.com, 1
freefonts.ga, 1
freeform4u.de, 1
freefuckvids.com, 1
@@ -59083,6 +58815,7 @@ freepedia.cf, 1
freepeopledirectory.com, 1
freephonefinder.cf, 1
freeplace.tk, 1
+freeplantscare.com, 0
freepluginoffer.com, 1
freepoints.us, 1
freepornhunt.com, 1
@@ -59092,7 +58825,6 @@ freepornpics.net, 1
freepornvideos.life, 1
freepornxxxvids.com, 1
freeporttx.gov, 1
-freeprintabletm.com, 1
freeprintsapp.com, 1
freeprintsapp.de, 1
freeprintsapp.fr, 1
@@ -59144,7 +58876,6 @@ freetaxusa.com, 1
freeteensyouth.org, 1
freetelegraph.ga, 1
freetelegraphers.ga, 1
-freethecape.org.za, 1
freethetv.ie, 1
freethinker.org, 1
freethinkers.org, 1
@@ -59168,6 +58899,7 @@ freewoodfactory.com, 1
freexmovie.com, 1
freexxxmovies.biz, 1
freeyourmusic.com, 1
+freeyourself.nu, 1
freeza.cf, 1
freeza.tk, 1
freezander.tk, 1
@@ -59175,6 +58907,7 @@ freezerrepairaustin.com, 1
freezion.com, 1
freezoneplan.com, 1
freezvon.ru, 1
+freform.club, 1
freibesetzt.tk, 1
freiboth.ddns.net, 1
freie-software.net, 1
@@ -59189,7 +58922,6 @@ freifunk-remscheid.de, 1
freightcenter.com, 1
freightinsightservice.com, 1
freightscore.net, 1
-freinetmiddenschool.gent, 1
freitas.org, 1
freitasbastos.com.br, 1
freitasm.com, 1
@@ -59211,6 +58943,7 @@ fremonthills.gov, 1
fremontmi.gov, 1
fremonttribune.com, 1
frences.tk, 1
+french-fly.me, 1
french.tk, 1
frenchbluecottage.com, 1
frenchcreekcog.org, 1
@@ -59276,6 +59009,8 @@ freshpounds.com, 1
freshproducemusic.tk, 1
freshremote.work, 1
freshroots.ca, 1
+freshrss.eu, 1
+freshrss.nl, 1
freshsexpics.com, 1
freshsheetmusic.com, 1
freshsnap.org.au, 1
@@ -59291,7 +59026,6 @@ fretpal.online, 1
fretscha.com, 1
frettboard.com, 1
frettennet.tk, 1
-fretvuio.info, 1
freudinger.info, 1
freudinger.net, 1
freundeskreis-tarjan.de, 1
@@ -59344,10 +59078,10 @@ friendly.pe, 1
friendlybearlabs.com, 1
friendlycaptcha.com, 1
friendlydabs.com, 1
+friendlydesigner.ca, 1
friendlyfisherman.com, 1
friendofthehoneybee.co.uk, 1
friendofthehoneybee.org, 1
-friendofthehoneybee.org.uk, 1
friends-online.tk, 1
friends.cafe, 1
friendsatthetable.net, 1
@@ -59399,6 +59133,7 @@ fringraphics.com, 1
frinkiac.com, 1
frino.de, 1
frioelectrica.com, 1
+friomamut.pe, 1
friotemp.com, 0
friplay.host, 1
fripper.tk, 1
@@ -59407,7 +59142,6 @@ frisaga.me, 1
frisaga.net, 1
frisaga.org, 1
frisaga.travel, 1
-frisby515.com, 1
friscorodandgun.com, 1
friseur-foerder.de, 1
friseur.website, 1
@@ -59438,6 +59172,7 @@ frogeducation.com, 1
frogeducation.com.au, 1
froger.me, 1
frogeye.fr, 1
+froggienw.com, 1
froggitt.com, 1
froginfra.net, 1
froglms.com, 1
@@ -59457,7 +59192,6 @@ froicorp.com, 1
frok.ai, 1
frok.com, 1
frokenblomma.se, 1
-frolic.live, 1
frolova.org, 1
from-the-net.com, 1
from.tk, 1
@@ -59467,7 +59201,6 @@ fromages-freres-marchand.com, 0
fromages-freres-marchand.fr, 0
fromages-marchand.com, 1
fromages-marchand.fr, 1
-frombitio.info, 1
frombumptobubble.com, 1
fromix.de, 1
fromlemaytoz.com, 1
@@ -59480,6 +59213,7 @@ fromscratch.rocks, 1
fromthecave.tk, 1
fromthecountsplace.tk, 1
fromthemonks.com, 1
+fromthesoul.net, 1
fromwithin.tk, 1
fronhadeseda.com.br, 1
front.com, 1
@@ -59513,6 +59247,8 @@ frost.com, 1
frost.kiwi, 1
frostexpert.ru, 1
frostfire.tk, 1
+frostland.net, 1
+frostland.pro, 1
frostplatform.com, 1
frostprotection.co.uk, 1
frostwarning.com, 1
@@ -59570,7 +59306,6 @@ fruitjuicetab.ch, 1
fruitlandia.gov, 1
fruitlandmi.gov, 1
fruitlawers.ga, 1
-fruitlogistica.com, 1
fruitmoose.com, 1
fruitscale.com, 1
fruitsexpressdelivery.com.sg, 1
@@ -59603,6 +59338,10 @@ fs-w.org, 1
fs-world.org, 1
fs1.hopto.org, 1
fs22a.de, 1
+fs4is3y4sh5uhxgjj4yudjgpjaxwkkdqt64ztolrbvlw5pxesezsfvad.com, 1
+fs4is3y4sh5uhxgjj4yudjgpjaxwkkdqt64ztolrbvlw5pxesezsfvad.one, 1
+fs4is7zrzcubrrfkhrx4miywpx3l5xk4vse2axsxbgetdlabe6gvvqyd.com, 1
+fs4is7zrzcubrrfkhrx4miywpx3l5xk4vse2axsxbgetdlabe6gvvqyd.one, 1
fsaddons.net, 1
fsalmeron.tk, 1
fsapubs.gov, 0
@@ -59675,6 +59414,7 @@ ftccomplaintassistant.gov, 1
ftcefile.gov, 1
ftcollinswindows.com, 1
ftcscout.org, 1
+ftcunion.org, 1
fte-automotive.com, 1
ftek.com, 1
ftfgroup.us, 1
@@ -59687,7 +59427,6 @@ ftl13.com, 1
ftlparksprojects.com, 1
ftm.wiki, 1
ftmc.tk, 1
-ftmwiki.com, 1
ftng.se, 1
ftntour.com.tw, 1
ftoffice.serveexchange.com, 1
@@ -59746,7 +59485,6 @@ fuegoenlasangre.tk, 1
fuegosalsapower.tk, 1
fueko.net, 1
fuel.london, 1
-fuel.ventures, 1
fuel2go.eu, 1
fuelbyte.sg, 1
fuelco.com.au, 1
@@ -59788,6 +59526,7 @@ fuhuiapps.com, 1
fuhuicorporate.com, 1
fuhuifinance.com, 1
fuhuiglobal-zh.com, 1
+fuhuiglobal-zhs.com, 1
fuhuigupiao.com, 1
fuhuihub.com, 1
fuhuijt.com, 1
@@ -59816,6 +59555,7 @@ fuites-eau-charente.com, 1
fuites.ch, 0
fuiveningent.be, 1
fujianshipbuilding.com, 1
+fujideclaration.org, 1
fujieb.com, 1
fujifilm-connect.com, 1
fujikatu.tk, 1
@@ -59824,7 +59564,6 @@ fujimurado.com, 1
fujitsu, 1
fujivibe.art, 1
fujiwarashinzo.com, 1
-fujiyakimono.com, 1
fukabori-kaidora.com, 1
fukase-seed.com, 1
fukikaekingdom.com, 1
@@ -59913,7 +59652,6 @@ funandfriends.tk, 1
funandlearning.es, 1
funatic.nl, 0
funatic.tk, 1
-funboards.cz, 1
funboat.tk, 1
funbuynet.com.br, 1
funchal.cf, 1
@@ -60048,6 +59786,7 @@ funktionevents.co.uk, 1
funkturm-messeberlin.de, 1
funky-emulation.net, 1
funkydealz.no, 1
+funkydhaga.com, 0
funkyfishbone.nl, 1
funkyflo.tk, 1
funkysims.tk, 1
@@ -60091,7 +59830,6 @@ funsite.tk, 1
funsmsmailing.tk, 1
funsoup.tk, 1
funtagg.com, 1
-funtainments.com, 1
funtastic-basketball.de, 1
funtastic.ie, 1
funtime-inflatables.co.uk, 1
@@ -60147,12 +59885,13 @@ furnet.eu, 1
furnet.net, 1
furnfurs.com, 1
furnishedproperty.com.au, 1
+furnishmyhome.ca, 1
furniteco.com, 1
furniture-for-home.tk, 1
furniture-warehouse.co.za, 1
furnitureconcept.co.uk, 1
furniturefashion.com, 1
-furnitureforlifeboulder.com, 1
+furniturefromthebarn.com, 0
furnitureplustt.com, 1
furnitureproduction.tk, 1
furnituresolutions.tk, 1
@@ -60204,15 +59943,14 @@ furyalexmichaelides.com, 1
fusacity.tk, 1
fusacovi.cf, 1
fuscina.co.uk, 1
+fuse.com.vn, 1
fuselight.nl, 1
-fusenservices.com, 1
fuseos.net, 1
fuseyahoken.com, 1
fushee.com, 1
fushimidc.com, 1
fusi.tk, 1
fusico.be, 1
-fusico.com, 1
fusico.digital, 1
fusionapps.com, 1
fusionapps.net, 1
@@ -60249,7 +59987,6 @@ fut21gen.com, 1
futa.agency, 1
futa.wiki, 1
futabadc.jp, 1
-futacockinside.me, 1
futarara.ga, 1
futaritomo.tk, 1
futaroulette.com, 1
@@ -60268,7 +60005,6 @@ futhark24.eu, 1
futhark24.net, 1
futhark24.org, 1
futharkhorde.tk, 1
-futieltextiel.be, 1
futo.biz, 1
futone.com.br, 1
futos.de, 1
@@ -60319,26 +60055,17 @@ futuristicjobs.sk, 1
futuristspeaker.com, 1
futurity.ml, 1
futurygames.com, 1
-fuulle.com, 1
fuvarlevel.hu, 1
fuvelis.com, 1
fuwafuwa.moe, 1
fuwafuwatime.moe, 1
-fuwashima.moe, 1
fuxgames.com, 1
fuxia.ai, 1
-fuyeor.cn, 1
-fuyeor.co.uk, 1
fuyeor.com, 1
-fuyeor.com.cn, 1
fuyeor.net, 1
-fuyeor.org, 1
fuyeor.top, 1
fuyer.cn, 1
-fuyer.com, 1
-fuyer.net, 1
fuyu.moe, 1
-fuyue.wang, 1
fuzenet.net, 1
fuzigames.com, 1
fuzion.co.th, 1
@@ -60438,11 +60165,9 @@ fxstock.eu, 1
fxstrategics.com, 1
fxtalk.cn, 0
fxtwitter.com, 1
-fxzj.com, 1
fydjbsd.cn, 1
fyers.in, 1
fyfywka.com, 1
-fyidude.com, 1
fyllehack.se, 1
fyllingen-elinst.no, 1
fylm.ai, 1
@@ -60470,7 +60195,6 @@ fyss.ga, 1
fysuite.com, 1
fytorio-pasxalis.gr, 1
fyziotonka.sk, 1
-fzhyzamt.com, 0
fzoske.de, 1
fzx750.ru, 1
fzxx.eu.org, 1
@@ -60553,7 +60277,6 @@ gabbys.eu, 1
gabe.download, 1
gabe.house, 1
gabe.pics, 1
-gabe.space, 1
gabe.watch, 1
gabe565.com, 1
gabecook.com, 1
@@ -60603,6 +60326,7 @@ gachea.cl, 1
gacheamotors.cl, 1
gachiyase.com, 1
gachter.name, 0
+gachw.org, 0
gaci88play.com, 1
gacirenin.cf, 1
gacirenin.tk, 1
@@ -60625,12 +60349,9 @@ gadgetgi.ga, 1
gadgetguideonline.com, 1
gadgetick.com, 1
gadgetinfo.ga, 1
-gadgetinternetofthings.uk, 1
-gadgetiot.uk, 1
gadgetized.net, 1
gadgetmaker.tk, 1
gadgetmaniac.tk, 1
-gadgetnews.uk, 1
gadgets-cars.com.es, 1
gadgets-mall.com, 1
gadgets4all.pt, 1
@@ -60734,7 +60455,6 @@ galaxus.nl, 1
galaxy.edu.pe, 1
galaxyaudiobook.com, 1
galaxymedia.tk, 1
-galaxymusicpromo.com, 1
galaxyofebooks.com, 1
galaxypersonnel.com.au, 1
galaxyplex.tk, 1
@@ -60748,6 +60468,7 @@ galenguyer.com, 1
galenreasoner.com, 1
galenzoski.com, 1
galepaal.tk, 1
+galeria-reisen.de, 1
galeria42.com, 1
galeriabunkers.tk, 1
galeriakobylarz.pl, 1
@@ -60796,7 +60517,6 @@ gallbladder.sg, 1
galle.cz, 1
galleonwaymedical.com.au, 1
galleriacontinua.com, 1
-galleriadental.ca, 1
gallerify.eu, 1
gallery-easysolution.tk, 1
gallery-kaze.jp, 1
@@ -60840,10 +60560,10 @@ gambiafishing.tk, 1
gambiapagina.tk, 1
gambinotrasporti.it, 1
gambisti.de, 1
-gambit.pro, 1
gambitnash.co.uk, 1
gambitnash.com, 1
gambitprint.com, 1
+gambleinireland.com, 1
gamblersgaming.eu, 1
gamblerspick.com, 1
gambling-business.club, 1
@@ -60853,9 +60573,8 @@ gamburger.tk, 1
gamcore.com, 1
game-club.me, 1
game-designers.net, 1
-game-developers.org, 1
+game-developers.org, 0
game-dominion.tk, 1
-game-files.net, 0
game-gentle.com, 1
game-net.ml, 1
game-repack.site, 1
@@ -60879,7 +60598,6 @@ gameclimax.cf, 1
gameclimax.tk, 1
gamecollector.be, 1
gamecompendium.com, 1
-gameconsole.co.nz, 1
gamecs.tk, 1
gamecss.ml, 1
gamedaim.com, 1
@@ -60919,7 +60637,6 @@ gamelarix.com, 1
gameloft.ga, 1
gamelok.ga, 1
gamemakers.tk, 1
-gamenerd.net, 1
gamenetwork.pl, 1
gamenew.tk, 1
gameofbooks.de, 1
@@ -61026,7 +60743,6 @@ gaming-life.tk, 1
gaming-news.tk, 1
gaming-online.tk, 1
gaming.cz, 1
-gamingaccessories.in, 1
gamingaktier.com, 1
gamingblogx.com, 1
gamingboard.eu, 1
@@ -61035,7 +60751,6 @@ gamingdose.com, 1
gamingerox.com, 1
gamingexodus.com, 1
gamingexperts.ga, 1
-gamingforecast.com, 1
gaminggear.bg, 1
gaminghost.ml, 1
gaminglaptop.deals, 1
@@ -61068,17 +60783,14 @@ gammaphibeta.tk, 1
gammonvillage.com, 1
gamoloco.com, 0
gamrenovation.ca, 1
-gamv.eu, 1
gan.wtf, 1
ganaha.org, 1
ganardinerillo.tk, 1
-ganasoku.net, 1
gancedo.com.es, 1
ganchev.bg, 1
gandalfcz.tk, 1
gandalfservice.com, 1
gandhiashramsabarmati.org, 1
-gandioli.com, 1
gandmfamilydental.com, 1
gandmltd.co.uk, 1
gandour.com, 0
@@ -61106,7 +60818,6 @@ ganyouxuan.com, 1
gao.rocks, 1
gao4.pw, 1
gaodebo.com, 1
-gaoice.run, 1
gaoice.top, 1
gaoinnovation.gov, 1
gaoinnovationlab.gov, 1
@@ -61121,6 +60832,7 @@ gaozih.com, 1
gap150.jp, 1
gapfa.ro, 1
gaphag.ddns.net, 1
+gapo.re, 1
gaponov.tk, 1
garage-leone.com, 1
garage.click, 1
@@ -61140,6 +60852,7 @@ garageportcenter.se, 1
garageworks.in, 1
garanteasy.com, 1
garantieabschluss.de, 1
+garantikoza.org, 1
garantplus.kz, 1
garaventa.com, 1
garbage-juice.com, 1
@@ -61147,7 +60860,6 @@ garbarinocatalogo.com, 1
garbuszus.de, 1
garbuz.ga, 1
garcia-leplus.com, 1
-garciaconstruction.com, 1
garcialeplus.com, 1
garciam.gt, 1
garcity.com, 1
@@ -61166,7 +60878,6 @@ gardengameshireuk.com, 1
gardengroveca.gov, 1
gardengusto.ie, 1
gardeniaorganic.com, 1
-gardeningchores.com, 1
gardenplantslife.com, 1
gardenroomsdirect.co.uk, 1
gardensuperstore.com.au, 1
@@ -61191,7 +60902,6 @@ gargantuan.tk, 1
gargas.ml, 1
gargazon.net, 1
gargola.tk, 1
-gariani.com.br, 1
garibaldi.gov, 1
garibyatri.com, 1
gariganshi.ml, 1
@@ -61237,11 +60947,11 @@ garriganenterprisesinc.net, 1
garron.net, 1
garrow.se, 1
garrowdigitalmedia.com, 1
-garrowmediallc.com, 1
garryanijocastlekyoto.com, 1
garryserver.de, 1
garsingtonopera.org, 1
garsio.com, 1
+garston-entertainment.co.uk, 1
garstonvets.co.uk, 1
garsumene.lt, 1
gartanien.de, 1
@@ -61277,6 +60987,7 @@ gasherde.tk, 1
gashtline.ir, 1
gasigasy.mg, 1
gasinstallationsjohannesburg.co.za, 1
+gasiorek.com.pl, 1
gasketech.com.au, 1
gasmar.cl, 1
gasometria.com, 1
@@ -61385,7 +61096,6 @@ gavintang.me, 1
gavinwhite.net, 1
gaviti.com, 1
gavlix.se, 1
-gavr.space, 1
gaw.sh, 1
gay-jays.com, 1
gay-personal-ads.com, 1
@@ -61395,7 +61105,6 @@ gayauthors.org, 1
gaycammers.com, 1
gaychatrooms.tk, 1
gaycock4u.com, 0
-gayest.gay, 1
gayest.pro, 1
gayfeedr.com, 1
gayfish.party, 1
@@ -61409,7 +61118,6 @@ gayglobaltravel.com, 0
gayhotmovies.com, 1
gaylaktika.com, 1
gaymen.pictures, 1
-gaymerx.org, 1
gaynight.tk, 1
gayonly.ch, 1
gayporn.com, 1
@@ -61498,7 +61206,6 @@ gchq.wtf, 1
gclegal.com.au, 0
gclpower.com, 1
gcmrc.gov, 1
-gcmsnotes.com, 1
gcmsnotesrequest.ca, 1
gcn.ie, 1
gcode.space, 1
@@ -61535,7 +61242,6 @@ gdesemena.ru, 1
gdh.digital, 1
gdhinc.com, 1
gdhzcgs.com, 1
-gdiary.net, 1
gdit.com, 1
gdkn0.gq, 1
gdm.cl, 1
@@ -61630,6 +61336,7 @@ geekandi.com, 1
geekariom.com, 0
geekashell.tk, 1
geekbundle.org, 1
+geekcircuit.com, 1
geekcore.tk, 1
geekcq.com, 1
geekcreations.co.uk, 1
@@ -61639,7 +61346,6 @@ geekedin.ga, 1
geekelectronico.com, 1
geekflare.com, 1
geekgear.tk, 1
-geekgirltech.com, 1
geekhelpline.com.au, 1
geekingoutabout.com, 1
geekium.me, 1
@@ -61656,7 +61362,6 @@ geeks.berlin, 1
geeks.gay, 1
geekscircuit.com, 1
geekshirts.cz, 1
-geeksontap.com.au, 1
geekspace.gq, 1
geeksquadforums.tk, 1
geekstreet.fr, 1
@@ -61680,13 +61385,11 @@ geelaeden.de, 1
geele.co.th, 1
geemprestimos.com, 1
geenspam.net, 1
-geentsefeesten.be, 1
geerdsen.net, 1
geertdegraaf.nl, 1
geertjanvanhest.nl, 1
geertswei.nl, 1
gees.ch, 1
-geestelijkgezondgent.be, 1
geesthof.de, 1
gefaessmedizin-rapperswil.ch, 1
gefmo.pl, 1
@@ -61708,6 +61411,7 @@ geico.com, 1
geigr.de, 1
geilefrauen.pics, 1
geileverhalen.tk, 1
+geilmail.de, 1
geipert.eu, 1
geiriadur.ac.uk, 1
geiser-family.ch, 1
@@ -61729,6 +61433,7 @@ geld-im-blick.de, 1
geld-magazin.info, 1
gelderlander.nl, 1
geldmaat.nl, 1
+geldnavigator.de, 1
geldoderleben.tk, 1
geldteveel.eu, 1
geldvoorelkaar.nl, 1
@@ -61766,6 +61471,7 @@ gematik.de, 1
gemawardian.com, 1
gemax-online.de, 1
gembet99.com, 1
+gemdirt.com, 1
gemeenschapsraaddeweere.nl, 1
gemeentedevesting.nl, 1
gemeentegeschiedenis.nl, 1
@@ -61915,6 +61621,7 @@ genesismachina.ca, 1
genesisplay.tk, 1
genesisprize.org, 1
genesistoday.org, 1
+genestho.lt, 1
genetargetsolutions.com.au, 1
geneticrescue.science, 1
genetidyne.com, 1
@@ -61966,12 +61673,17 @@ genohypo.de, 1
genom.by, 1
genome-reform.com, 1
genome.eu, 1
+genome.gallery, 1
genome.gov, 0
genomedia.jp, 1
+genomehubs.org, 1
genomequestlive.com, 1
genomereference.org, 1
genomesoft.systems, 1
genometrik.de, 1
+genomic-surveillance.com, 1
+genomic-surveillance.net, 1
+genomic-surveillance.org, 1
genomicsinc.com, 1
genomicslab.in, 1
genomicsplc.com, 0
@@ -61997,31 +61709,15 @@ gensokyo.re, 1
gensolarenergy.com, 1
gensonline.eu, 1
gentapps.com, 1
-gentbereikbaar.be, 1
-gentblogt.be, 1
-gentbrugsemeersen.be, 1
gentcdn.com, 1
gentcityofmusic.be, 1
-gentcongres.be, 1
-gentcongres.com, 1
-gentcongres.eu, 1
-gentcongres.org, 1
gentcreativecityofmusic.be, 1
genteam.at, 1
gentech.bg, 0
gentedehoy.com, 1
gentedelcondado.es, 1
-gentengarde.be, 1
-gentevenement.be, 1
-gentfietst.be, 1
-gentgezondestad.be, 1
-gentgreenkey.be, 1
gentherm.com, 1
-gentholidayland.be, 1
-gentholidayland.com, 1
gentianes.ch, 0
-gentinvest.be, 1
-gentklimaatstad.be, 1
gentlecollies.tk, 1
gentledance.ch, 1
gentledance.net, 1
@@ -62045,28 +61741,18 @@ gentlent.xyz, 1
gentlentapis.com, 1
gentlentgroup.com, 1
gentlentssl.com, 1
-gentlichtfestival.be, 1
-gentlichtfestival.com, 1
-gentlivinglab.be, 1
gentmuziekstad.be, 1
gentoo-blog.de, 0
gentooblog.de, 1
gentryarkansaspd.gov, 1
gentrydeng.cn, 1
-gentse-ondernemersdagen.be, 1
-gentsefeesten.be, 1
-gentsefeesten.gent, 1
-gentseondernemersdagen.be, 1
-gentsklimaatverbond.be, 1
-gentslimopweg.be, 1
-genttegenarmoede.be, 1
-gentverwent.be, 1
genuineppe.co.uk, 1
genuinetech.pk, 1
genunlimited.ga, 1
genunlimited.tk, 1
genusbag.com, 1
genutax.ca, 1
+genuwine.com, 1
genuxtsg.com, 1
genxreviewest.ga, 1
genyo.com.br, 1
@@ -62078,7 +61764,7 @@ geo-industrie.fr, 1
geo-jobe.com, 1
geo-portale.it, 1
geo-television.de, 1
-geoactivism.org, 1
+geoapps.nl, 1
geoarchive.tk, 1
geocaching.hu, 1
geocar.com, 1
@@ -62094,6 +61780,7 @@ geodecoder.com, 1
geodesic-tents.com, 1
geodesign.tk, 1
geodesist-msk.ru, 1
+geodnet.com, 1
geoenvironconsult.ga, 1
geoewidencja.pl, 1
geofabrika.ru, 1
@@ -62142,7 +61829,6 @@ geonice.ga, 1
geonot.es, 1
geophysicsjournal.com, 1
geopixeles.cl, 1
-geoplatform.gov, 0
geopoetico.tk, 1
georg-ledermann.de, 1
georg-riepe.de, 1
@@ -62345,9 +62031,6 @@ gestionth.com, 1
gestorehotel.com, 1
gestorestecnologicos.com, 1
gestus.tk, 1
-gesundessen.at, 1
-gesundessen.ch, 1
-gesundessen.de, 1
gesundheitswelt24.de, 1
gesundimmund.de, 1
get-a-wingman.com, 1
@@ -62367,7 +62050,6 @@ get2career.com, 1
get2mod.com, 1
getabear.com, 1
getacrane.co.uk, 1
-getactivenj.com, 1
getahearing.com, 1
getaldea.com, 1
getalink.ga, 1
@@ -62376,7 +62058,6 @@ getanresources.com, 1
getanswer.ga, 1
getar.tk, 1
getaskoll.at, 1
-getasphaltnh.com, 1
getawaycab.tk, 1
getawaycar.com, 1
getawayline.com, 1
@@ -62389,7 +62070,6 @@ getbootstrap.com, 1
getboubou.com, 1
getbox.me, 1
getbrain.tk, 1
-getbreadcrumbs.com, 1
getbreinify.ai, 1
getbridge.com, 1
getbrowink.com, 1
@@ -62472,7 +62152,6 @@ getlaminas.org, 1
getlantern.org, 0
getlawyered.com.au, 1
getleanflorida.gov, 1
-getlessgivemore.com, 1
getliberty.org, 1
getlibrary.com, 1
getmarksvoice.com, 1
@@ -62497,17 +62176,14 @@ getnew.tk, 1
getnexar.com, 1
getnib.com, 1
getnikola.com, 1
-getonyx.com, 1
getoxley.com, 1
getpagespeed.com, 1
getpaidclub.tk, 1
getpaidtocode.com, 1
getpaidtodesign.com, 1
getpaidtodev.com, 1
-getpanelapp.com, 1
getpavedmidmichigan.com, 1
getpayever.com, 1
-getpdf.in, 1
getpet.lt, 1
getplus.com.au, 1
getpro.plumbing, 1
@@ -62515,7 +62191,6 @@ getprohealth.com, 1
getpromo.cf, 1
getpsolid.com, 1
getpublii.com, 1
-getpuravive.com, 1
getraenke-hoffmann.de, 1
getready2dance.tk, 1
getreadyforever.tk, 1
@@ -62549,7 +62224,6 @@ getteamninja.com, 1
gettext.tk, 1
getthefriendsyouwant.com, 1
getthejobicanhelp.com, 1
-gettheworldmoving.com, 1
getthink.co.uk, 1
getthinkndti.co.uk, 1
getthinknw.co.uk, 1
@@ -62614,7 +62288,6 @@ gewinn.tk, 1
gewis.nl, 1
gexobiz.tk, 1
geyduschek.be, 0
-geyserwatcher.com, 1
geytabir.cf, 1
gezakekazeg.tk, 1
gezentianne.com, 1
@@ -62682,7 +62355,6 @@ gginin.today, 1
ggiveilig.nl, 1
gglks.com, 1
ggmmontascale.it, 1
-ggobbo.com, 1
ggpoker.com, 1
ggretrobox.com, 1
ggrks.lol, 1
@@ -62690,9 +62362,11 @@ ggs-marschallstrasse.de, 1
ggs.jp, 1
ggservers.com, 1
ggsforex.com, 1
+ggsmp.net, 1
ggss.cf, 1
ggvaulting.co.uk, 1
ggworld.ga, 1
+ggza.com, 1
gh-sandanski.com, 0
gh.io, 1
gh16.com.ar, 1
@@ -62714,13 +62388,6 @@ ghe.com, 1
ghedini.me, 1
ghentcityofmusic.be, 1
ghentcreativecityofmusic.be, 1
-ghentfilmoffice.be, 1
-ghentholidayland.be, 1
-ghentlichtfestival.be, 1
-ghentlichtfestival.com, 1
-ghentlightfestival.be, 1
-ghentlightfestival.com, 1
-ghentlivinglab.be, 1
ghentmn.gov, 1
gheorghe-sarcov.ga, 1
gheorghesarcov.ga, 1
@@ -62740,7 +62407,6 @@ ghn.vn, 1
ghobcars.com, 1
ghobot.ai, 1
ghobusers.com, 1
-ghodsijewelry.ir, 1
ghostarmy.tk, 1
ghostbusters.tk, 1
ghostbustersuk.tk, 1
@@ -62825,7 +62491,6 @@ giardiniere.roma.it, 1
giardinoperfetto.com, 1
giat-infotech.com.my, 1
giatrakos.com, 1
-gibabertin.com, 1
gibberfish.org, 1
gibbon.tk, 1
gibbonedu.org, 1
@@ -62905,6 +62570,7 @@ gigachad.net, 1
gigacloud.org, 1
gigacloud.ua, 0
gigacomputer.cz, 1
+gigadysk.net, 1
gigagroup.cf, 1
gigahertz.de, 1
gigalink.me, 1
@@ -62933,6 +62599,7 @@ gigis-pizzeria.de, 1
gigiscloud.servebeer.com, 1
giglink.club, 1
gigloog.tk, 1
+gigred.com, 0
gigs.com, 1
gigsremote.com, 1
gigtakaful.bh, 1
@@ -62999,7 +62666,6 @@ ginen.xyz, 0
ginepolice.gov, 1
ginesenergy.com, 1
ginev.tk, 1
-gingersutton.com, 1
gingerxumd.com, 1
ginionusedcars.be, 0
ginitaly.it, 1
@@ -63060,7 +62726,6 @@ gircimediterranee.fr, 1
giresunhaberleri.tk, 1
giri.co, 1
girishkumar.tk, 1
-girl.click, 1
girl.science, 1
girlan.net, 1
girlandhermoon.com, 0
@@ -63149,7 +62814,6 @@ gitns.io, 1
gitns.net, 1
gitns.nl, 1
gitns.org, 1
-gitp.nl, 1
gitschberg-sport.it, 1
gitstuff.tk, 1
gittigidiyor.com, 1
@@ -63161,7 +62825,6 @@ giuliano.design, 1
giuliawylde.com, 1
giulliamodas.com.br, 1
giunchi.net, 1
-giuristifriburgo.ch, 1
giuseppebuccheri.it, 0
giuseppemacario.men, 1
giuseppepreviti.it, 1
@@ -63194,6 +62857,7 @@ givery.sk, 1
givesunlight.com, 1
givetolincoln.com, 1
giveuselife.org, 1
+givewithclick.com, 1
giving.com, 1
givingames.com, 1
givingnexus.org, 0
@@ -63230,7 +62894,6 @@ gkbm.com, 1
gkcmp.com.br, 1
gkconsultancy.tk, 1
gkdforum.eu.org, 1
-gkdk.se, 1
gkdworld.com, 1
gkdworld.eu.org, 1
gkelement.ru, 1
@@ -63243,6 +62906,7 @@ gknews.tk, 1
gkoenig-innenausbau.de, 1
gkralik.eu, 1
gkrru4v.xyz, 1
+gks-bildung.ch, 1
gkstyle.net, 0
gku-winterling.de, 1
gkv-gorinchem.nl, 1
@@ -63256,7 +62920,7 @@ glaciercountymt.gov, 1
glacierhotel.com.ua, 1
glacierviewfire.gov, 1
glaco.com.vn, 1
-glad.com, 1
+glad.com, 0
gladala.tk, 1
gladiac.duckdns.org, 1
gladiator.tf, 1
@@ -63317,6 +62981,7 @@ glassner.org, 1
glassochchoklad.se, 1
glassofdirt.tk, 1
glassofgrape.com, 1
+glassportal.ca, 1
glassportpapd.gov, 1
glassrainbowtrust.org.je, 1
glassrepairsperth.com.au, 1
@@ -63366,6 +63031,8 @@ glendalewv.gov, 1
glendarraghbouncycastles.co.uk, 1
glenderan.com, 1
glendivemt.gov, 1
+glendoracleantruckcheck.com, 1
+glendoracleantrucktesting.com, 1
glenhuntlyapartments.com.au, 1
glenlennoxvision.com, 1
glenloabbeyhotel.ie, 1
@@ -63387,7 +63054,6 @@ glevolution.com, 1
glexia.com, 1
glezmanz.eu, 1
glgclan.tk, 1
-glginsights.com, 1
gli.sh, 1
gliac.org, 1
gliagrumi.it, 1
@@ -63396,7 +63062,6 @@ glidestep.com, 1
glidingshop.cz, 1
glidingshop.de, 1
glidingshop.eu, 1
-glieroidelcalcio.com, 1
gliihc.net, 1
glimhome.com, 1
glimpses.tk, 1
@@ -63410,6 +63075,7 @@ glitteringmariah.tk, 1
glitzerstuecke.de, 1
glitzybingo.co.uk, 1
glixee.com, 1
+glk.academy, 1
glm.io, 1
glnpo.gov, 1
global-assistance.eu, 1
@@ -63480,6 +63146,7 @@ globalhealth.gov, 1
globalhomeautomation.ca, 1
globalhomicideers.ga, 1
globalhorses.de, 1
+globalhubb.ro, 1
globalimmigrationvisa.com, 1
globalind.com.au, 1
globalink.tk, 1
@@ -63585,7 +63252,6 @@ globologic.com, 1
globotech.be, 1
globotur.de, 1
globowood.ml, 1
-globuli-info.de, 1
globus-plus.ml, 1
globustrust.tk, 1
glocesterri.gov, 1
@@ -63601,20 +63267,22 @@ gloria.fi, 1
gloria.tv, 1
gloriaavina.com, 1
gloriousfoods.co.uk, 1
+glorycambodia.com, 1
gloryhealthcarellc.com, 1
glorymark.com, 1
glorynonprofit.org, 1
gloryofloveband.tk, 1
gloryofmusic.tk, 1
gloryrise.tk, 1
+glorysite.com, 1
glorystar.ml, 1
-glorywebs.com, 1
glosiko.cn, 1
glosiko.com.cn, 1
glosiko.net, 1
glosiko.org, 1
glosor.eu, 1
glossar.tk, 1
+glosscosmetica.pt, 1
glossowiki.ml, 1
glossyfied.com, 1
glotechrepairs.co.uk, 1
@@ -63623,11 +63291,11 @@ glotter.com, 1
glotwpnjpd.gov, 1
gloucesterva.gov, 1
glovementor.com, 1
-gloverscast.co.uk, 1
glowfic.com, 1
glpreparation.com, 1
glreit.com, 1
glsauto.com, 1
+gltch.ai, 1
gltjp.com, 1
glue.tk, 1
gluechapter.ga, 1
@@ -63641,7 +63309,6 @@ gluglu.jp, 1
gluit.de, 1
glumac.com, 1
glumcasaepet.com.br, 1
-glutenfreeandtasty.com, 1
glutenfreehomemaker.com, 1
glutenfreelife.co.nz, 1
glutenfreeonashoestring.com, 1
@@ -63720,7 +63387,6 @@ gmx.de, 1
gmx.es, 1
gmx.fr, 1
gmx.net, 1
-gmz.cx, 1
gn00.com, 0
gnacsports.com, 1
gnagismen.tk, 1
@@ -63802,9 +63468,9 @@ go6lab.si, 0
go889w.com, 1
goabase.com, 1
goabase.net, 1
+goabonga.com, 1
goaddress.co.ke, 1
goaheadireland.ie, 1
-goalbookapp.com, 1
goalgrass.com, 1
goalswizard.com, 1
goaltage.com, 1
@@ -63844,6 +63510,7 @@ gock.systems, 1
gockelsee.de, 1
gockhuatsuky.tk, 1
goclark.at, 1
+gocleanandsafe.nz, 1
goclinic.com.br, 1
goclix.ml, 1
goconow.com, 1
@@ -63866,9 +63533,9 @@ goddard.id.au, 1
goddess.name, 1
goddesslena.com, 1
gode-datingsites.dk, 1
-godesigner.ru, 1
godfilm.tk, 1
godfreyhotelchicago.com, 1
+godieng.com, 1
godisgreat.africa, 1
godish.com, 1
godles.pl, 1
@@ -63903,6 +63570,7 @@ goedeke.ml, 1
goedekers.com, 1
goedekortingscodes.be, 1
goedekortingscodes.nl, 1
+goedenraad.nl, 1
goedge.rip, 1
goedkoopparkeren.nl, 1
goedkoopstecartridges.nl, 1
@@ -63937,7 +63605,6 @@ gofoiayourself.org, 1
gofoodieonline.com, 1
gofoodservice.com, 1
goforcex.top, 0
-goforward.ee, 1
gofree.co, 1
gofriends.cf, 1
gofront.com, 1
@@ -64036,6 +63703,7 @@ goldenfawz.com, 1
goldengatexpress.org, 1
goldenglow.fans, 1
goldenhillsoftware.com, 1
+goldenhilltower.com, 1
goldenhost.ca, 1
goldenhouse.ga, 1
goldeninvestmentbarcelona.com, 1
@@ -64045,6 +63713,7 @@ goldenmunchbakeshop.com, 1
goldenoaksgolfclub.com, 1
goldenpi.com, 1
goldenplate.com.sg, 1
+goldenpreference.com, 1
goldenravengifts.com, 1
goldenretrieverspets.com, 1
goldenruleemail.com, 1
@@ -64053,7 +63722,7 @@ goldenstatetrailers.com, 1
goldentech.ca, 1
goldentechelectronics.net, 1
goldentip.cf, 1
-goldentouch.academy, 1
+goldentravels.co.in, 1
goldentriangletourindia.com, 1
goldentrust.com, 1
goldenwolrd.tk, 1
@@ -64110,13 +63779,11 @@ golfbeautyest.ga, 1
golfbettingsystem.co.uk, 1
golfbroadcasterers.ga, 1
golfbroadcasterest.ga, 1
-golfburn.com, 1
golfbyzipers.ga, 1
golfbyzipest.ga, 1
golfcabrio.de, 1
golfcartrentals.gr, 1
golfcarttips.com, 0
-golfcastillayleon.com, 1
golfcleanerers.ga, 1
golfcleanerest.ga, 1
golfcleanersers.ga, 1
@@ -64151,9 +63818,7 @@ golosovanye4you.tk, 1
golser-schuh.at, 1
golser.info, 1
golyatsec.com, 1
-gomadisonfence.com, 1
gomagic.org, 1
-gomakemovie.com, 0
gomarket33.com, 1
gomasa.net, 1
gomasy.jp, 1
@@ -64200,7 +63865,6 @@ gongik.info, 1
gongjuhao.com, 1
gongyouhui.com, 1
gonitro.com, 0
-gonlinesites.com, 1
gonoodle.com, 1
gonortheast.co.uk, 1
gontagro.com.ua, 1
@@ -64225,7 +63889,6 @@ goodbeast.com, 1
goodbenefit.com, 1
goodbits.tech, 1
goodbriar.com, 1
-goodcarbons.com, 1
goodchoiceflowers.com, 1
goodcoat.com, 1
goodcollection.com, 1
@@ -64260,11 +63923,13 @@ goodlosersest.ga, 1
goodlovelies.com, 1
goodmailing.tk, 1
goodmanwi.gov, 1
+goodmedia.solutions, 1
goodmood.co.uk, 1
goodmood.fr, 1
goodmoodsocken.de, 1
goodold.se, 1
goodopportunity.ga, 1
+goodpawn.com, 1
goodpeople.tk, 1
goodproof.com, 1
goodryb.top, 1
@@ -64277,8 +63942,11 @@ goodshuffle.com, 1
goodsite.ga, 1
goodspeaker.tk, 1
goodsrepublic.com, 1
+goodstorage.com.br, 1
goodstories.fr, 1
goodsync.com, 1
+goodtasteofhome.com, 1
+goodtea.com, 1
goodteach.com, 1
goodth.ink, 1
goodtotell.nl, 1
@@ -64292,7 +63960,6 @@ goodwillnne.org, 1
goodwin43.ru, 0
goodydoggy.com, 1
goodyearsotn.co.uk, 1
-goodyphotography.com, 1
goofy.gr, 1
google, 1
google-analytics.com, 1
@@ -64328,7 +63995,10 @@ goosementor.com, 1
goosepondfarm609.com, 1
goosip.tk, 1
goostars.cn, 1
+goostars.com, 1
gootax.pro, 0
+gootleeg.com, 1
+gootleeg.eu, 1
gooty.ru, 1
gooutdoorskansas.com, 1
gopacificcity.com, 1
@@ -64380,13 +64050,13 @@ gordvorets.tk, 1
gordyf.com, 1
gorebayairport.ca, 1
gorebayairport.com, 1
-gorenje-ru.ru, 1
gorepriest.tk, 1
gorf.club, 1
gorgeouslyflawed.com, 1
gorgeouspizza.co.nz, 1
gorgias.me, 1
goriki.tk, 1
+gorillacamping.site, 1
gorillaenergy.ru, 1
gorinchem.nl, 1
goringdogsitting.co.uk, 1
@@ -64427,6 +64097,7 @@ gosarh.tk, 1
gosarhiv.tk, 1
goscg.com, 1
gosch.de, 1
+gosekku.com, 1
goshawkdb.io, 1
goshen.network, 1
goshin-group.co.jp, 1
@@ -64517,7 +64188,6 @@ gotovilekovi.tk, 1
gotovka.ga, 1
gotovka.tk, 1
gotoxy.at, 1
-gotoyoume.info, 1
gotpainarizona.com, 1
gotrail.fr, 1
gotravel.blog, 1
@@ -64555,9 +64225,9 @@ gourmetspalencia.com, 1
gourmetstars.cz, 1
gourmetvitamins.ga, 1
goushuang.com, 1
+gousou.com, 1
gousto.co.uk, 1
goutsmits-tegelwerken.nl, 1
-goutui.com, 1
gouvernement.ga, 1
gouwdata.nl, 0
gouwen.com, 1
@@ -64690,7 +64360,6 @@ graberbooks.gq, 1
grabi.ga, 1
grabnews.ga, 1
grabnews.tk, 1
-grabowski.ovh, 1
grabrfi.com, 1
grabyourfreeleadshere.tk, 1
grace-wan.com, 1
@@ -64841,7 +64510,6 @@ grande-rock.tk, 1
grande.coffee, 1
grandepresion.com, 1
grandesmaisons.fr, 1
-grandeurgifts.in, 1
grandfallscamp.com, 1
grandfieldok.gov, 1
grandfootball.tk, 1
@@ -64908,7 +64576,6 @@ granool.ga, 1
granotamaniacos.tk, 1
granpoder-islacristina.tk, 1
gransfors354.com, 1
-granstoqueatacadista.com.br, 1
granstor.com, 0
granstrom.tk, 1
grantadvisor.org, 1
@@ -64930,7 +64597,6 @@ graonatural.com.br, 0
grape33.com, 1
grapee.jp, 1
grapeintentions.com, 1
-grapesthewineco.com, 1
grapevine.is, 1
graph.org, 1
graphe.gq, 1
@@ -64952,11 +64618,11 @@ graphic-shot.com, 0
graphicatwork.com, 1
graphicaudio.net, 1
graphicbuffet.co.th, 1
-graphicdesignresources.net, 1
graphicdream.tk, 1
graphicinfo.com, 1
graphicnab.com, 1
graphicps.com, 1
+graphicsdeal.com, 1
graphicspace.tk, 1
graphicz.ml, 1
graphiste-freelance-rouen.fr, 1
@@ -64990,7 +64656,6 @@ gratelin.ga, 1
gratis-hosting.cf, 1
gratis.market, 1
gratis4u.tk, 1
-gratisfotos.nl, 1
gratisfullalbum.tk, 1
gratisgokken.nl, 1
gratishandy.tk, 1
@@ -65005,8 +64670,10 @@ grattan.co.uk, 1
grattecenne.com, 1
gratuitweb.tk, 1
graumeier.de, 1
+graureiher.com, 1
gravat.ar, 1
gravatar.com, 1
+graveconcerns.uk, 1
gravedad-zero.tk, 1
gravedigger.tk, 1
gravelshooters.com, 0
@@ -65016,7 +64683,6 @@ gravely-dealers.com, 1
gravely.com, 1
gravelylawn.com, 1
gravelymower.com, 1
-gravensteengent.be, 1
gravescountyky.gov, 1
gravilink.com, 1
gravirovshik.ru, 1
@@ -65069,6 +64735,7 @@ grcc.us, 1
grd.cx, 1
grday.com, 1
grdnlife.site, 1
+grdxkn.com, 1
great-ajax.tk, 1
great-mom.tk, 1
great.nagoya, 1
@@ -65091,6 +64758,7 @@ greatestcampsest.ga, 1
greatestwallsest.ga, 1
greatfallsmt.gov, 1
greatfire.org, 1
+greatgiftidea.com, 1
greatgooglymoogly.tk, 1
greathairtransplants.com, 1
greathillpartners.com, 1
@@ -65183,6 +64851,7 @@ greencoconutresort.gq, 1
greencoconutresort.ml, 1
greencore.com, 1
greencross.cf, 1
+greencups.com, 1
greencybersec.com, 1
greencyprus.com, 1
greendaylivecrew.tk, 1
@@ -65225,7 +64894,6 @@ greeningsremovalsandstorage.co.uk, 1
greenislandgroupny.com, 1
greenislemn.gov, 1
greenit.eco, 0
-greenkey.gent, 1
greenkitchen.tk, 1
greenlakecountywi.gov, 1
greenland-estate.tk, 1
@@ -65249,11 +64917,9 @@ greenopeningsest.ga, 1
greenpal.jp, 1
greenpanda.de, 1
greenpartyofnewmilford.org, 1
-greenpaws.ee, 1
greenpeace.community, 0
greenplanet.tk, 1
greenplanetgrass.com.au, 1
-greenquestroofing.com, 1
greenridgemo.gov, 1
greenroach.ru, 1
greenroom.tk, 1
@@ -65294,7 +64960,7 @@ greenwaylog.net, 1
greenwhitearmy.tk, 1
greenwichbiosciences-influence-beta.azurewebsites.net, 1
greenwichentertainment.com, 1
-greenwichvillage.nyc, 1
+greenwichvillage.nyc, 0
greenwiki.ca, 1
greenwithdecor.com, 1
greenwood-it.co.uk, 1
@@ -65324,7 +64990,6 @@ gregmc.ru, 1
gregmckeown.com, 1
gregmilton.com, 1
gregmilton.org, 1
-gregmiraglia.com, 1
gregmote.com, 1
grego.pt, 1
gregoirow.be, 1
@@ -65371,7 +65036,6 @@ greta-birkner.de, 1
greta-fischer-schule.de, 1
gretathemes.com, 1
gretch.space, 1
-gretel.ai, 1
greuel.online, 1
greutmann.net, 1
grevenagreece.gr, 1
@@ -65435,7 +65099,7 @@ griffinmuseum.org, 0
griffinsrfc.tk, 1
griffithobs.org, 1
griffithobservatory.org, 1
-griffnet.xyz, 1
+griffonwise.com, 1
griffophotography.tk, 1
grifomarchetti.com, 1
grifone.tk, 1
@@ -65459,10 +65123,12 @@ grimsby.ac.uk, 1
grimsbydns.com, 1
grimsbymoneyman.com, 1
grimsbysoilandmulch.ca, 1
+grimsey.com.au, 1
grinday.tk, 1
grindgore.tk, 1
grinmore.com, 1
grinned.tk, 1
+grinnellksroots.com, 1
grinnellplanes.com, 1
grinnellplans.com, 1
grinpis.tk, 1
@@ -65485,7 +65151,6 @@ griyo.online, 1
grizz.gdn, 1
grizzenergygum.com, 1
grizzlys.tk, 1
-grm.com.co, 1
grnbank.com, 1
groaccess.com, 1
groben-itsolutions.de, 1
@@ -65504,7 +65169,6 @@ groentebesteld.nl, 1
groenteclub.nl, 1
groentefruitzeep.com, 1
groentefruitzeep.nl, 1
-groepjam-usedcars.be, 1
groepper-it.de, 1
groestlcoin.org, 1
groetzner.net, 1
@@ -65535,10 +65199,10 @@ groovydiscountsers.ga, 1
groovydiscountsest.ga, 1
groovygoldfish.org, 1
groovyrelocation.com, 0
-gropar.ch, 1
-gropar.com, 1
+gropar.ch, 0
+gropar.com, 0
gropp.org, 1
-groq.com, 1
+groq.com, 0
grosmornaisannpale.org, 1
gross.business, 1
grossaci.cz, 1
@@ -65559,7 +65223,6 @@ grouchysysadmin.com, 1
ground-control.de, 1
groundball.tk, 1
groundcaresolutionsllc.com, 1
-grounded.co.ke, 1
groundfm.tk, 1
groundmc.net, 1
groundsdirect.com, 1
@@ -65604,6 +65267,7 @@ groupleavingcards.com, 1
groupmallers.ga, 1
groupmallest.ga, 1
groupme.com, 0
+groupml.jp, 1
groupouts.com, 1
grouppassers.ga, 1
groups.google.com, 1
@@ -65652,6 +65316,7 @@ growthservicesinc.com, 1
growthsimulationest.ga, 1
growthtoysers.ga, 1
growthtoysest.ga, 1
+growwithdaylight.co.uk, 1
growy.ch, 0
grozdanov.tk, 1
grozny-news.net, 1
@@ -65695,6 +65360,7 @@ grumpyguy.ga, 1
grumpyvegan.com, 1
grundig.co.uk, 1
grundlage.fi, 1
+grundrauschen.pub, 1
grundschulratgeber.de, 1
grundskoleboken.ga, 1
grundskoleboken.gq, 1
@@ -65722,7 +65388,6 @@ grupodcasa.tk, 1
grupodecoroinhaspnsa.tk, 1
grupodepasajeros.tk, 1
grupodes.com.br, 1
-grupodesbrave.com.br, 1
grupoeitb.eus, 1
grupoellatu.tk, 1
grupoentregas.com, 1
@@ -65744,6 +65409,7 @@ grupomutual.fi.cr, 1
grupomwr.com, 1
grupongn.com, 1
grupooncoclinicas.com, 1
+grupopalmadorada.com, 1
grupoparco.com, 1
grupopilau.com.br, 1
grupoproabienesraices.com.mx, 1
@@ -65805,14 +65471,12 @@ gsd.id, 1
gsded.com, 1
gsdigitalcookie.com, 1
gse.jp, 1
-gse.space, 1
gservera.com, 1
gsfreak.pt, 1
gshoes.bg, 1
+gshub.io, 1
gsilva.org, 1
gsimagebank.co.uk, 1
-gsiw.be, 1
-gsiw.gent, 1
gslabnet.org, 1
gslate.com, 0
gsm-info.tk, 1
@@ -65829,6 +65493,7 @@ gspilar.tk, 1
gsplast.com, 1
gsrank.org, 1
gsrc.io, 1
+gss.ind.br, 1
gst.name, 1
gstackrankers.com, 1
gstehlik.com, 1
@@ -65845,11 +65510,11 @@ gta.to, 1
gta.vi, 1
gta5modaz.com, 1
gta5redux.com, 1
+gta6wave.com, 1
gtacoop.com, 1
gtacty.co, 1
gtaforum.nl, 1
gtagames.nl, 1
-gtalenders.ca, 0
gtanalytics.com, 1
gtapg.net, 1
gtb-nsn.gov, 1
@@ -65866,7 +65531,9 @@ gtk-tim.ru, 1
gtlaun.ch, 0
gtld.fyi, 1
gtm-server.com, 1
+gtm.com.pl, 1
gtmetrix.com, 1
+gtmhosting.net, 1
gtmotive.com, 1
gtn-pravda.ru, 1
gtonline.ml, 1
@@ -65897,7 +65564,9 @@ guajars.cl, 1
guamcourts.gov, 1
guanggaonet.com, 1
guangjiangk.com, 1
-guangquan.com, 1
+guangku.com, 1
+guanlu.com, 1
+guanquan.com, 1
guanzhong.ca, 1
guapcoinswap.finance, 1
guapi.ml, 1
@@ -65918,7 +65587,6 @@ guardianangelportraits.com, 1
guardianapp.com, 1
guardiancappartners.com, 1
guardiancodewebservices.com, 1
-guardiancross-forum.com, 1
guardiandigital.com, 1
guardianerm.net, 1
guardiansiot.ddns.net, 1
@@ -65933,8 +65601,10 @@ gubagoo.com, 1
gubagoo.io, 1
gubernia37.ml, 1
gubka.ga, 1
+guc.ci, 1
guccigame.de, 1
gudangpangan.id, 1
+gudao.com, 1
gudbrand.no, 1
guddaff.de, 1
guder.ru, 1
@@ -65991,7 +65661,6 @@ gug-gug.de, 1
gugaalves.net, 1
gugaltika-ipb.org, 0
gugcstudentguild.com.au, 0
-guge.ch, 1
gugert.net, 1
gugli3d.com, 1
gugs.tk, 1
@@ -66002,6 +65671,7 @@ guhei.net, 1
guhenry3.tk, 1
guhsdaz.org, 1
guiabroker.com, 1
+guiadelautoconsumosolar.es, 1
guiaextra.com, 1
guiahotelera.com.co, 1
guialegal.co, 1
@@ -66053,6 +65723,7 @@ guidetourism.tk, 1
guidinglightapostolic.com, 1
guidoclub.fr, 1
guidopedia.ga, 1
+guigen.com, 1
guild.xyz, 1
guilded.gg, 1
guildgearscore.cf, 1
@@ -66063,6 +65734,7 @@ guilfordian.com, 1
guilfordvt.gov, 1
guilhom.com, 1
guillaume-briand.fr, 1
+guillaume-simonet.com, 1
guillaumecote.me, 1
guillaumematheron.fr, 1
guillaumesworld.com, 1
@@ -66081,6 +65753,7 @@ guineapigmustach.es, 1
guinel-johnson.fr, 0
guinguetteclovis.com, 1
guise.tk, 1
+guitar-guitar.ru, 1
guitar-strings-online.tk, 1
guitarangel.tk, 1
guitards.tk, 1
@@ -66105,6 +65778,7 @@ gule.loan, 1
gulenbase.no, 1
gulfcoastfirm.com, 1
gulfcoastwaterauthoritytx.gov, 1
+gulfdinar.com, 1
gulffamilyclinic.com, 1
gulfstream.ru, 0
gulfvestors.com, 1
@@ -66167,8 +65841,8 @@ guomai.com, 1
guoman.com, 1
guopin.com.cn, 1
guozeyu.com, 1
+guozheng.com, 1
guozhenhao.com, 0
-guozu.com, 1
gupy.io, 1
gura.moe, 1
gurbetilan.com, 0
@@ -66178,14 +65852,13 @@ gurleyal.gov, 1
gurmat.info, 1
gurmel.ru, 1
gurselcetin.com, 1
+gurtec.com, 0
gurty.tk, 1
guru-naradi.cz, 1
guruarchive.com, 1
-gurufox.ai, 1
gurugamer.com, 1
gurumobile.tk, 1
gurunanakdarvar.tk, 1
-gurunpa.com, 1
gururi.com, 1
gurusewa.net, 1
guruworld.tk, 1
@@ -66196,6 +65869,7 @@ gus.moe, 1
gus.services, 1
gus.zone, 1
gusar.by, 1
+guscanada.com, 1
gusembauche.ca, 1
gusembauche.com, 1
gusfranchising.com, 1
@@ -66229,6 +65903,7 @@ gut-aue.com, 1
gutegutscheine.at, 1
gutegutscheine.ch, 1
gutegutscheine.de, 1
+guteli.ch, 1
guten-rutsch.com, 1
gutenburger-marburg.de, 1
gutendag.ga, 1
@@ -66312,6 +65987,7 @@ gw.fi, 1
gw.lu, 1
gw2.me, 1
gw2efficiency.com, 1
+gwaudiodesign.com, 1
gwbet99.cc, 1
gwennyeeckels.com, 1
gwenolakaigre.tk, 1
@@ -66343,7 +66019,6 @@ gyannews.ga, 1
gyas.nl, 1
gybagardlin.tk, 1
gycis.me, 1
-gyedco.com, 1
gyefund.com, 1
gyefund.org, 1
gyertyalang.hu, 1
@@ -66382,6 +66057,7 @@ gymnasticbodies.com, 1
gymnastikfitness.se, 1
gymnchod.cz, 1
gymnertia.com, 1
+gymone.co.za, 1
gymonlondon.com, 1
gympap.de, 1
gymvilla.nl, 1
@@ -66390,7 +66066,6 @@ gynaeinfertility.com.sg, 1
gynaemd.com.sg, 1
gynaemdclementi.com.sg, 1
gynaeovariancyst.com.sg, 1
-gynas.co.uk, 1
gynzy.com, 1
gyongyosi.ga, 1
gyoriedes.hu, 1
@@ -66429,6 +66104,8 @@ h-server.myfirewall.org, 1
h-u.social, 1
h-var.com, 1
h.fo, 1
+h.hk.cn, 1
+h.lu, 1
h.pub, 1
h001.ru, 0
h07.cn, 1
@@ -66453,7 +66130,6 @@ h2gonc.gov, 1
h2hc.email, 1
h2insaat.com, 1
h2o-securities.com, 1
-h2oinnovation.com, 1
h2ole.com, 1
h2omusic.tk, 1
h2ox.io, 1
@@ -66468,7 +66144,6 @@ h4k.online, 1
h4kr.io, 1
h51365.com, 1
h5197.co, 1
-h5p.com, 1
h5q.net, 1
h6729.co, 1
h6957.co, 1
@@ -66480,6 +66155,7 @@ h9297.co, 1
h9728.co, 1
ha-kunamatata.de, 1
ha.com, 1
+ha.fo, 1
ha.tec.br, 1
ha2a.nl.eu.org, 1
ha2hva1n.com, 1
@@ -66526,7 +66202,6 @@ haberlanddesign.com, 1
haberlanddigital.com, 1
haberlandgroup.com, 1
haberlandpartners.com, 1
-haberledik.com, 1
habermatik.net, 1
habermatik.tk, 1
habernet.tk, 1
@@ -66587,6 +66262,7 @@ hackcraft.net, 1
hackdown.eu.org, 1
hackdown.tech, 1
hackdra.com, 1
+hackdra.io, 1
hackeado.tk, 1
hacked.be, 1
hacked.com, 1
@@ -66603,7 +66279,6 @@ hackercommunity.org, 1
hackerfa.tk, 1
hackerflare.com, 1
hackerforums.tk, 1
-hackergateway.com, 1
hackerhotel.nl, 1
hackeriet.no, 1
hackeriet.se, 1
@@ -66623,7 +66298,6 @@ hackerone.org, 1
hackeronte.tk, 1
hackers-networks.tk, 1
hackersclothing.com, 1
-hackersgurukul.in, 1
hackerspace.rocks, 1
hackerstory.tk, 1
hackersw0rld.tk, 1
@@ -66745,7 +66419,9 @@ haichuang.com, 1
haiduc.tk, 1
haifaworld.tk, 1
haifengz.com, 0
+haifun.com, 1
haigle.com, 1
+haihuan.com, 1
haileybury.com.au, 1
hails.info, 1
hailstorm.nl, 1
@@ -66905,7 +66581,6 @@ halligladen.de, 1
hallmanmemorials.net, 1
hallmarkbusiness.com, 1
hallmarkestates.ca, 1
-hallocall.com, 1
halloffameapartments.com, 1
hallofoddities.tk, 1
hallofworlds.online, 1
@@ -66950,9 +66625,11 @@ hamarimarriage.tk, 1
hamartrophy.cf, 1
hamasu.com, 1
hambook.org, 1
+hambot.fr, 1
hamburg1.de, 1
hamburgcode.com, 1
hamburger-polo-club.de, 1
+hamburger-reinigung.de, 1
hamburger-wirtschaft.de, 1
hamburgerbesteld.nl, 1
hamburgerland.tk, 1
@@ -66963,7 +66640,6 @@ hamdiscussions.com, 1
hameddental.com, 1
hamedfans.tk, 1
hamelneinfachonline.de, 0
-hamelnpsychotherapie.de, 1
hamerslag.tk, 1
hamfish.at, 1
hamgamweb.com, 1
@@ -67026,13 +66702,12 @@ hamtramckcity.gov, 1
hamtwpfcoh.gov, 1
hamwan.nl, 0
hamzahamry.ga, 1
-hamzahlabs.my.id, 1
han-dahyun.co.kr, 1
-han-nas.com, 1
hana-groupsac.com, 1
hana.ondemand.com, 1
hanaandlily.com.au, 1
hanabi.fan, 0
+hanabi.so, 1
hanakaru.tk, 1
hanakat.fi, 1
hanako-health.com, 1
@@ -67052,6 +66727,7 @@ hancockcountymaine.gov, 1
hancockcountyohioelections.gov, 1
hancockcountywv.gov, 1
hancockin.gov, 1
+hancocklawfl.com, 1
hancommremodeling.com, 1
hand.community, 1
hand2h.com, 1
@@ -67067,6 +66743,7 @@ handelsbanken.dk, 1
handelsbanken.fi, 1
handelsbanken.no, 1
handelsbanken.se, 1
+handelsbeurs.com, 1
handheldsound.com, 1
handhockeyers.ga, 1
handhockeyest.ga, 1
@@ -67129,13 +66806,14 @@ hanfmuseum.de, 1
hanfoot.tk, 1
hanfordca.gov, 1
hanfparade.de, 1
-hanfverband-erfurt.de, 1
+hanfverband-erfurt.de, 0
hanfverband.de, 1
hang333.moe, 1
hangar4.es, 1
hangarbox.de, 1
hangardasaves.com.br, 1
hangargeek.ml, 1
+hanginman.xyz, 1
hangkei.com, 1
hangout, 1
hangouts.google.com, 1
@@ -67259,7 +66937,6 @@ happy-space.tk, 1
happy-wans.com, 1
happy.academy, 1
happy2hub.eu, 1
-happy5thwheelers.com, 1
happyagain.se, 1
happyandrelaxeddogs.com, 1
happyanimalsshop.com, 1
@@ -67301,7 +66978,6 @@ happyhumans.com, 1
happyindia.ml, 1
happyjapan.co.jp, 1
happykidscastles.co.uk, 1
-happylearning.com, 1
happylifestyle.com, 1
happymarketspirits.com, 1
happymine.nl, 1
@@ -67382,7 +67058,6 @@ hardeman.nu, 1
hardenburghny.gov, 1
hardenize.com, 1
hardesec.com, 1
-hardfalcon.net, 1
hardfloorcleaninglondon.co.uk, 1
hardforum.com, 1
hardfought.org, 1
@@ -67399,6 +67074,7 @@ hardincountyohio.gov, 1
harding.edu, 1
hardis-group.com, 0
hardjump.tk, 1
+hardknocksacademy.org, 1
hardmetal.tk, 1
hardmine.ru, 1
hardnet.cz, 1
@@ -67417,6 +67093,7 @@ hardtfrieden.de, 1
hardtime.tk, 1
hardtimeszine.tk, 1
hardtodo.org, 1
+hardwa.re, 1
hardwake.tk, 1
hardwareforum.ga, 1
hardwarelog.in, 1
@@ -67430,7 +67107,7 @@ hardwiredmagazine.com, 1
hardworm.tk, 1
hardzone.es, 1
harem.tk, 1
-harery.com, 1
+harery.com, 0
harfordpark.org, 1
harfordvotes.gov, 1
hargamobilmu.com, 0
@@ -67462,13 +67139,13 @@ harmim.cz, 1
harmlesspeopleers.ga, 1
harmlesspeopleest.ga, 1
harmoney.com, 1
-harmoniaatlanta.org, 1
harmonicasireland.com, 0
harmonizely.com, 0
harmony-labradoodles.nl, 1
harmony.co.id, 1
harmonyeg.net, 1
harmonyfarm.com, 1
+harmonyheadspa.hu, 1
harmonylife.ro, 1
harmonypathway.com, 1
harmonypianoschool.com, 1
@@ -67477,6 +67154,7 @@ harmreduction.org, 1
harmreductionwa.org, 1
harms.io, 1
harmsboone.org, 1
+harness.io, 1
harnettcountync.gov, 1
harneycountyor.gov, 1
harno.ee, 0
@@ -67523,6 +67201,7 @@ harrisoncountyms.gov, 1
harrisoncountymschanceryclerk.gov, 1
harrisonsdirect.co.uk, 1
harrisontownshipmi.gov, 1
+harrisx.com, 1
harrodsburgky.gov, 1
harrogatemoneyman.com, 1
harry-baker.com, 1
@@ -67538,9 +67217,7 @@ harrypottereditor.com, 1
harrypottereditor.net, 1
harrypotterpuzzlesandspells.com, 1
harrypottervenezuela.tk, 1
-harryshearer.com, 1
harrysmallbones.co.uk, 1
-harryswine.com, 1
harryvapoteur.com, 1
harryvrancken.nl, 1
harryxxjohnson.ga, 1
@@ -67594,7 +67271,6 @@ harwoeck.group, 1
haryana.gov.in, 1
harz.cloud, 0
harzin.tk, 1
-harzlaender.de, 1
has-no-email-set.de, 1
has.bet, 1
has.gy, 1
@@ -67663,7 +67339,6 @@ hassiba-abderaouf.tk, 1
hassra.org.uk, 1
hasstopped.com, 1
hastadoktor.com, 1
-hastaneurunleri.com.tr, 1
hastati.tk, 1
hastingsapplianceservice.com.au, 1
hastingsdirect.com, 1
@@ -67706,6 +67381,8 @@ hatterjiang.com, 1
hatterjiang.org, 1
hattori-hanzo.tk, 1
hattricksites.tk, 1
+hatzbs.ch, 1
+haubrechts-peinture.be, 1
haucke.xyz, 1
haughtonla.gov, 1
haugr.net, 1
@@ -67815,7 +67492,6 @@ hawle-service.at, 1
hawler.tk, 1
hawo.academy, 1
hax.to, 1
-haxerio.info, 1
haxland.tk, 1
haxx.hu, 1
hay.email, 1
@@ -67830,8 +67506,6 @@ haydenbleasel.com, 0
haydenfranklin.com, 1
haydenjames.io, 1
haydockusedtrucks.co.uk, 1
-hayes-solicitors.ie, 1
-hayesfusion.com, 1
hayestwpclaremi.gov, 1
hayestwpotsegomi.gov, 1
hayfordoleary.com, 1
@@ -67839,7 +67513,7 @@ hayhurstrealestate.com, 0
hayl.me.uk, 1
haylerivas.com, 1
hayleywestenra.tk, 1
-hayobethlehem.nl, 0
+hayobethlehem.nl, 1
hayonik.com, 1
hayrivertownship.gov, 1
haysc.tech, 1
@@ -67880,6 +67554,7 @@ hb.by, 1
hb5197.com, 0
hb8522.com, 1
hb9397.com, 1
+hb9ikn.ch, 1
hba1crechner.de, 1
hbaa.ml, 1
hbag.org, 1
@@ -67907,7 +67582,6 @@ hbsslaw.com, 1
hbsvzos.nl, 1
hbudd.com, 0
hbussmann.com, 1
-hbvip.com, 1
hbweb.io, 1
hby.cx, 1
hc-sc.gc.ca, 0
@@ -68006,6 +67680,7 @@ hdtvblogsers.ga, 1
hdtvblogsest.ga, 1
hdtvboarders.ga, 1
hdtvboardest.ga, 1
+hdunited.com, 1
hdv.paris, 1
hdv12.horse, 1
hdview.co.uk, 1
@@ -68018,7 +67693,6 @@ hdzineers.ga, 1
hdzineest.ga, 1
he-sb.cf, 1
he-sb.eu.org, 1
-he-sb.top, 1
he.kg, 1
he64.com, 1
heaaart.com, 1
@@ -68076,6 +67750,7 @@ health-road.ga, 1
health-toolbox.com, 1
health-tourism.com, 1
health.gov, 1
+health.gov.ly, 1
health.graphics, 1
health24.ml, 1
health24world.ml, 1
@@ -68120,10 +67795,10 @@ healthcanal.ga, 1
healthcaptive.ga, 1
healthcare.gov, 0
healthcare4ppl.com, 1
+healthcare6.com, 1
healthcareagency.tk, 1
healthcareareainfo.tk, 1
healthcareathome.ca, 1
-healthcareconnexion.com, 1
healthcarediversion.org, 1
healthcaredrugs.tk, 1
healthcareera.tk, 1
@@ -68225,7 +67900,6 @@ healthintergrity.ga, 1
healthiraq.ga, 1
healthiron.ga, 1
healthit.gov, 1
-healthitect.com, 1
healthjackpot.ga, 1
healthjarrettsville.tk, 1
healthjoker.ga, 1
@@ -68288,8 +67962,6 @@ healthnutritionusa.tk, 1
healthnweight.tk, 1
healthoakland.tk, 1
healthocity.ga, 1
-healthofbody.uk, 1
-healthoffinance.uk, 1
healthoffline.ga, 1
healthoneday.ga, 1
healthoptions.tk, 1
@@ -68387,6 +68059,7 @@ healthyankee.ga, 1
healthyarizona.tk, 1
healthyarkansas.tk, 1
healthybeauty365bn.com, 1
+healthybrewhub.com, 1
healthyburn.tk, 1
healthychoices.tk, 1
healthyclinic.tk, 1
@@ -68395,8 +68068,6 @@ healthycompetition.gov, 1
healthyeatingbenefits.com, 1
healthyfamilies.org.uk, 1
healthyfeet.gr, 1
-healthyfitfood.com, 1
-healthyflags.green, 1
healthyflorida.tk, 1
healthyfoodanddrink.tk, 1
healthygeorgia.tk, 1
@@ -68410,11 +68081,11 @@ healthymen.ml, 1
healthyminnesota.tk, 1
healthymississippi.tk, 1
healthynewjersey.tk, 1
-healthynutritionguide.info, 1
healthyoregon.tk, 1
healthypennsylvania.tk, 1
healthypeople.gov, 1
healthyrecipes101.com, 1
+healthyreefs.org, 1
healthyrun.tk, 1
healthysanfrancisco.org, 1
healthyschoolsnewcastle.org.uk, 1
@@ -68487,13 +68158,13 @@ heat-press.com.au, 1
heat-ua.pt, 1
heat.gov, 1
heatairservices.com, 0
+heatbyte.info, 1
heatcheck.security, 1
heatcleanerers.ga, 1
heatcleanerest.ga, 1
heatershop.co.uk, 1
heatherbells.tk, 1
heathercutler.ca, 1
-heathercutlerfoundation.org, 1
heatherleysephotography.com, 1
heathersmithcommercial.com, 1
heathersnotes.com, 1
@@ -68519,7 +68190,6 @@ heba.co.za, 1
hebamme-cranio.ch, 1
hebamme-ebersberg.de, 1
hebamme-sabine.eu, 1
-hebates.com, 1
hebbelabi.tk, 1
hebe.stream, 1
heber.tk, 1
@@ -68550,7 +68220,6 @@ hectorlima.tk, 1
hedd.audio, 0
hedefhalk.com, 1
hedenskrig.tk, 1
-hederatech.us, 1
hederawinkel.nl, 0
hedge.fi, 1
hedgedoc.net, 1
@@ -68560,7 +68229,6 @@ hedgesafeers.ga, 1
hedgesafeest.ga, 1
hedgeschool.ie, 1
hedgetube.ga, 1
-hedinghamandchambers.co.uk, 1
hedman.tk, 1
hedonics.org, 1
hedonism.com, 1
@@ -68581,6 +68249,8 @@ heeler.red, 1
heello.es, 1
heerenveen.nl, 1
heerenveenlokaal.nl, 1
+heerlijkland.com, 1
+heerlijkland.nl, 1
heesenyachts.com, 0
heethealthcare.com, 1
heexy.org, 1
@@ -68590,8 +68260,10 @@ heficed.com, 1
heftfilme.com, 1
hefty.cloud, 1
heg.ge, 1
+hegau-onlineshop.de, 1
hegdahl.tk, 1
hegdahl.xyz, 1
+hegebo.de, 1
hegocre.com, 1
heh.ee, 1
heha.co, 0
@@ -68650,11 +68322,11 @@ heiligebirmanen.tk, 1
heiliger-gral.info, 1
heilpflanzenmagie.de, 1
heilpraktiker-maxdorf.de, 1
+heilsulykill.is, 1
heimatverein-eitensheim.de, 1
heimbach-eifel.de, 1
heimbiotop.de, 1
heimnetze.org, 0
-heimonen.eu, 1
heimstaden.dk, 1
heineken.co.za, 1
heino-peters.de, 1
@@ -68687,6 +68359,7 @@ hekate.com.mx, 1
hekatija.com, 1
hekeki.com, 1
hekimimyanimda.com, 1
+hekmah.com, 1
hekoro.ml, 1
hektenkairez.com, 1
hekwerken.tk, 1
@@ -68725,6 +68398,7 @@ helenmcguinness.online, 1
helensmithpr.co.uk, 1
helenssjoholm.cf, 1
helenssjoholm.ga, 1
+helenturkington.com, 1
helenvalsj.tk, 1
helenwade.tk, 1
heleus.it, 1
@@ -68752,6 +68426,7 @@ helia.com.au, 1
helichat.de, 1
helicine.net, 1
heliconservices.com, 1
+heligrandcanyon.com, 1
helikopter.ml, 1
helikopterman.tk, 1
helikopters.tk, 1
@@ -68810,7 +68485,6 @@ hellodesign.tk, 1
helloemailers.ga, 1
helloemailest.ga, 1
helloexit.com, 1
-hellogreens.ro, 1
helloheadsup.com, 1
hellohealthgroup.com, 1
helloindia.tk, 1
@@ -68858,7 +68532,6 @@ hellven.net, 1
hellvis.tk, 1
hellyeahbeer.tk, 1
helm-pokale.de, 1
-helmerinc.com, 1
helmethouse.com, 1
helmholtz.cloud, 1
helminger-lrs.at, 1
@@ -68876,7 +68549,6 @@ helpamericavote.gov, 1
helpatmyhome.com, 1
helpc.eu, 1
helpcalculator.tk, 1
-helpcapital.ru, 1
helpchange.ru, 1
helpcomp.tk, 1
helpconnect.com.au, 1
@@ -68897,7 +68569,6 @@ helpowl.com, 1
helppc.com.ua, 1
helprb.ru, 1
helpscoutdocs.com, 1
-helpsyme.info, 1
helptasker.com, 1
helptasker.net, 1
helptasker.org, 1
@@ -68934,6 +68605,7 @@ hemato.ai, 1
hematoonkologia.pl, 1
hemdal.se, 0
hemdian.com, 1
+hemelrijk2.nl, 1
hemi.xyz, 1
hemkop.se, 1
hemmens.eu, 1
@@ -68950,6 +68622,7 @@ hen.ee, 1
hen.ne.ke, 1
henchtechnology.com, 1
hendersoncountyil.gov, 1
+hendersonhouse.org, 1
hendersonky.gov, 1
hendersonmetal.ca, 1
hendersonvalleyautomotive.co.nz, 1
@@ -68986,6 +68659,7 @@ hennikernh.gov, 1
henningkerstan.de, 1
henningkerstan.org, 1
hennymerkel.com, 1
+henoto.eu, 1
henradplumbing.co.uk, 1
henri-feuillade.tk, 1
henri.moe, 1
@@ -69045,9 +68719,7 @@ hentschke-betonfertigteilwerk.de, 1
hentschke-invest.de, 1
henzenhoning.nl, 1
henzy.cloud, 1
-heos.it, 1
hepfree.nyc, 1
-hepg.hu, 1
hephzibahga.gov, 1
heppler.net, 1
heptafrogs.de, 1
@@ -69089,12 +68761,12 @@ herbisan.pl, 1
herbivorization.com, 1
herblaysurseine.fr, 1
herbnal.com, 1
+herbosia.fr, 1
herbreathonglass.tk, 1
herbsociety.org, 1
herbsupplements.co.uk, 1
herbweb.net, 1
herbweb.org, 1
-herbymiast.waw.pl, 1
herculesca.gov, 1
herculex.fi, 1
herderradio.ml, 1
@@ -69115,7 +68787,7 @@ hereticle.com, 1
hereticmaniacs.tk, 1
hereticofficial.com, 1
hereticpreist.tk, 1
-herez.fr, 1
+herez.fr, 0
hergaenergy.com, 1
hergeandtintin.tk, 1
herila.ml, 1
@@ -69156,6 +68828,7 @@ hermocom.com, 1
hermonmaine.gov, 1
hermosaseagirt.com, 1
hernandovotes.gov, 1
+hernanracciatti.com, 1
hernanygerman.tk, 1
herndl.org, 1
herne-kupony.sk, 1
@@ -69164,7 +68837,6 @@ hernia.sg, 1
herniaclinic.com.sg, 1
herniasingapore.sg, 1
hernikgames.tk, 1
-hernn.com, 1
heroblog.info, 1
herocentral.de, 1
heroco.xyz, 1
@@ -69205,7 +68877,6 @@ herriman.net, 1
herringadvancemachine.com, 1
herringsresidence.be, 1
herritage.ga, 1
-herrj.com, 1
herrkal.eu, 1
herrman.tk, 1
herrns.cloud, 1
@@ -69228,10 +68899,12 @@ herza.id, 1
herzberg.site, 1
herzfuersoziales.at, 1
herzig.cc, 1
+herzlos.com, 1
herzpfa.de, 1
herzwacht.de, 1
herzzuherz.de, 1
hes.com.cy, 1
+hesab.com, 1
hesabraslaw.com, 1
hesabtube.com, 1
hesama.tk, 1
@@ -69272,7 +68945,6 @@ hetcoronalab.nl, 1
hetdebat.tk, 1
hetene.nl, 1
hetfundament.team, 1
-hetgetouw.be, 1
hethely.ch, 1
hetiservices.com, 1
hetkomtnooitmeergoed.nl, 1
@@ -69334,7 +69006,6 @@ hexo.ink, 0
hexo.io, 0
hexobind.com, 1
hexoff.com, 1
-hexr.org, 1
hexsafe.io, 1
hexstream.expert, 1
hexstream.exposed, 1
@@ -69390,6 +69061,7 @@ hfox.org, 1
hfsctx.gov, 1
hfsg-habicht.at, 1
hfvuejq.pro, 1
+hfwk.com, 1
hfx405.de, 1
hfxtwppa.gov, 1
hg.eu, 1
@@ -69416,7 +69088,7 @@ hgzw.com, 0
hh-host.de, 1
hh-massage.de, 1
hh-medic.com, 1
-hh-ri.com, 1
+hh-ri.com, 0
hh-wolke.dedyn.io, 1
hh5197.co, 1
hh6729.co, 1
@@ -69460,7 +69132,7 @@ hibrid-turf.com, 1
hiccupsandjuice.co.uk, 1
hickmancountytn.gov, 1
hickoryrecord.com, 1
-hickorywinecellar.com, 1
+hickorywinecellar.com, 0
hicksvilleohio.gov, 1
hicl.org, 1
hicomtecksee.com.my, 1
@@ -69495,6 +69167,8 @@ hide.me, 1
hideallip.com, 1
hideandseek.org, 1
hidedd.com, 1
+hidemee.com, 1
+hidemyipaddress.com, 1
hideo54.com, 1
hideouswebsite.com, 1
hidetagu2021.net, 1
@@ -69529,7 +69203,6 @@ hifiphile.com, 0
hifis.net, 1
hifivem.com, 1
hifly.aero, 1
-hifrds.com, 1
hifund.co.il, 1
hig.gov, 1
higeniqcleaning.com.au, 1
@@ -69632,7 +69305,6 @@ hiker.cool, 1
hikerone.com, 1
hiking-site.nl, 1
hiking-trails.com, 1
-hiking.mx, 1
hikingmonthlyers.ga, 1
hikingmonthlyest.ga, 1
hikka.ru, 1
@@ -69683,6 +69355,7 @@ hilltopsurgicalhospital.ga, 1
hilltopviewsonline.com, 1
hilnu.com, 1
hilomrm.com, 1
+hiltonfoundation.org, 0
hilunetan.tk, 1
hima.com, 1
himalaja-kender.hu, 1
@@ -69755,7 +69428,6 @@ hipnosecriciuma.com.br, 1
hipnosisypsicoterapia.com, 1
hipnosisyterapias.com, 1
hipnotista.tk, 1
-hipo.pt, 1
hipocampo.org, 1
hipodromcasusu.tk, 1
hippies.com.br, 1
@@ -69771,6 +69443,7 @@ hiptwist.tk, 1
hipuranyhou.cz, 1
hiq.se, 1
hiq.sh, 1
+hiqonline.co.uk, 0
hirake55.com, 1
hiramoto-ph.com, 1
hiramvlgohio.gov, 1
@@ -69818,7 +69491,6 @@ hiruthicsha.com, 0
hirwill.com, 1
his.com, 1
hisax.de, 1
-hisbrucker.net, 1
hiseplast.com.br, 0
hispadent.com.do, 1
hispalazarus.tk, 1
@@ -69827,7 +69499,6 @@ hispanidad.tk, 1
hispashare.org, 1
hispasonic.com, 1
hispatrofeo.com, 1
-hispro.co, 1
hisregistries.net, 1
hisregistries.org, 1
hisscentralen.se, 1
@@ -69851,11 +69522,8 @@ historiasyrelatos.tk, 1
historiasztuki.tk, 1
historicalsocietyofsomersethills.org, 1
historicengland.org.uk, 1
-historichousesghent.be, 1
historicizam.tk, 1
historiek.net, 1
-historikorders.com, 1
-historischehuizengent.be, 1
historisches-chemnitz.de, 1
history-schools.com, 1
history-vision.tk, 1
@@ -69937,8 +69605,10 @@ hiwebsite.tk, 1
hiwiki.tk, 1
hix.fi, 1
hiyacar.co.uk, 1
+hiyd.uk, 1
hiyoko.group, 1
hiyuki2578.net, 1
+hizakura.net, 1
hizakura.nl, 1
hizhina-hagrida.ru, 1
hizliresim.com, 1
@@ -69966,7 +69636,6 @@ hjelpemiddeldatabasen.no, 1
hjerpbakk.com, 1
hjes.com.ve, 1
hjkbm.cn, 1
-hjmag.com, 1
hjorslev.com, 1
hjort-froik.com, 1
hjort.land, 1
@@ -69987,7 +69656,6 @@ hk.search.yahoo.com, 0
hkamran.com, 1
hkas.org.hk, 1
hkconcept.lu, 1
-hkd.cn, 1
hkedquity.org, 1
hkgix.net, 1
hkl-gruppe.de, 1
@@ -70015,6 +69683,7 @@ hl8id.vip, 1
hl8th.vip, 1
hlavacek.us, 1
hlavi.hu, 1
+hlc.ly, 1
hlebopekarna.com, 1
hledejlevne.cz, 1
hlfh.space, 1
@@ -70039,11 +69708,11 @@ hlstory.tk, 1
hltdos.com, 1
hltk.fi, 1
hlucas.de, 1
+hlukh.ch, 1
hlx66.cc, 1
hlx86.cc, 1
hly0928.com, 1
hlyhoodies.co.za, 1
-hm-notes.ru, 1
hm.ee, 0
hm1ch.com, 1
hm1ch.ovh, 1
@@ -70173,6 +69842,7 @@ hoffmeyer.me, 1
hoffnungdeutschland.de, 1
hofgut.net, 1
hofiprojekt.cz, 1
+hofisat.com, 1
hoflerlawfirm.com, 1
hofmannenhofmann.nl, 1
hofmeisterkink.com, 1
@@ -70258,8 +69928,6 @@ holidayclub.tk, 1
holidayformula.ru, 1
holidayhomesindubai.ae, 1
holidayincotswolds.co.uk, 1
-holidayland.gent, 1
-holidayleisureapp.uk, 1
holidaylocal.ga, 1
holidaylocalers.ga, 1
holidaylocalest.ga, 1
@@ -70308,7 +69976,6 @@ hollyhomer.com, 1
hollyloless.com, 1
hollyloless.net, 1
hollyloless.org, 1
-hollyportcapital.com, 1
hollyspringsfarmnac.com, 1
hollyspringsms.gov, 1
hollywoodbios.com, 1
@@ -70330,7 +69997,7 @@ holo.ovh, 1
holocentric.com, 1
holocron.one, 1
holod-servis777.tk, 1
-holofox.ru, 1
+holofox.ru, 0
holori.com, 1
holostyak.tk, 1
holowaty.me, 1
@@ -70379,6 +70046,7 @@ holzspielzeug-shop.ch, 1
holzstueckwerk.de, 1
holzundgarten.de, 1
homa.website, 0
+homads.com, 0
homak.com, 1
homake.cf, 1
homato.uk, 1
@@ -70417,7 +70085,6 @@ homebasedbusinessopportunity.tk, 1
homebattle.ga, 1
homebello.com, 1
homeblaster.ga, 1
-homebranding.uk, 1
homebrew.tk, 1
homebrewshop.be, 1
homebrewworm.tk, 1
@@ -70425,7 +70092,6 @@ homebuilder.tk, 1
homebutton.tk, 1
homecache.ga, 1
homecaprice.com, 1
-homecarz.info, 1
homecaster.ga, 1
homecatch.ga, 1
homecharte.ga, 1
@@ -70577,7 +70243,6 @@ homefolder.ga, 1
homeforeveryone.tk, 1
homeforfamily.tk, 1
homeformula.ga, 1
-homefortress.space, 1
homeforum.tk, 1
homefromhomecornwall.co.uk, 1
homegang.ga, 1
@@ -70678,7 +70343,6 @@ homerepairsideas.tk, 1
homerequest.ga, 1
homerex.ga, 1
homero.tk, 1
-homesalesdeals.uk, 1
homesbyayres.com, 1
homeschoolinkorea.tk, 1
homeseguridad.com, 1
@@ -70766,7 +70430,6 @@ hondensnacks.shop, 1
hondudiario.tk, 1
honedigital.co.uk, 1
honeit.com, 1
-honess-water.cn, 1
honest.ga, 1
honestblogers.ga, 1
honestblogest.ga, 1
@@ -70780,10 +70443,8 @@ honestpragueguide.cz, 1
honestshipping.com, 1
honestworknmoney.tk, 1
honesty.com.pl, 1
-honey-whale.com, 0
honey.beer, 1
honeyarcus.art, 1
-honeybhealthyliving.com, 1
honeybrooklibrary.org, 1
honeycomb.io, 1
honeycome-recruit.com, 0
@@ -70824,11 +70485,11 @@ honu.ng, 1
hoo.lt, 1
hooapp.lt, 1
hood-epc.xyz, 1
+hoodiessouthafrica.com, 1
hoodrivercounty.gov, 1
hoodsite.com, 1
+hoofcareunltd.com, 1
hoofdredacteuren.nl, 1
-hoofexplorer.com, 1
-hoofexplorer.de, 1
hoogdam.tk, 1
hoogeveen.nl, 0
hooghiemstrazelf.nl, 1
@@ -70857,7 +70518,6 @@ hoopers.club, 1
hoopertechnicalsolutions.com, 1
hooprelief.tk, 1
hoops-inc.com, 1
-hooraio.info, 1
hoorr.com, 1
hoos.cf, 1
hoosa.de, 1
@@ -70893,7 +70553,7 @@ hopo.design, 1
hoponmedia.de, 1
hoppenr.xyz, 1
hopperoofing.com, 1
-hoppinjohn.org, 1
+hoppinjohn.org, 0
hoppy.com, 1
hoppygo.com, 1
hops-and-ashes.de, 1
@@ -70911,7 +70571,6 @@ horairetrain.ch, 1
horairetrain.fr, 1
horairetrain.lu, 1
horairetrain.nl, 1
-horal.us, 1
horamesianica.tk, 1
horcajadadelatorre.tk, 1
horclan.tk, 1
@@ -70937,7 +70596,7 @@ horizontly.com, 1
horizontly.net, 1
horizontly.org, 1
horizonvehicles.com, 1
-horizonveterinaryservices.com, 1
+horizonveterinaryservices.com, 0
horkel.cf, 1
horkel.tk, 1
hormel.com, 1
@@ -71064,6 +70723,7 @@ hostathome.fr, 1
hostaz.net, 1
hostbility.com, 1
hostboxonline.com, 1
+hostchina.net, 1
hostcloud.ml, 1
hostcoz.com, 1
hostcsr.com, 1
@@ -71076,7 +70736,6 @@ hostedghost.eu, 1
hostedghost.net, 1
hostedghost.nl, 1
hostedghost.org, 1
-hostedincanada.com, 1
hostedtalkgadget.google.com, 1
hosteko.com, 1
hosteleriauno.es, 1
@@ -71165,7 +70824,6 @@ hotbabesplus.com, 1
hotbeats.tk, 1
hotbella.net, 1
hotblondepussy.com, 1
-hotbox.fun, 1
hotbustymoms.com, 1
hotcandlestick.com, 1
hotcars.com, 1
@@ -71214,7 +70872,6 @@ hotel-zurrose.de, 1
hotel3232nyc.com, 1
hotel43.com, 1
hotelalpino.com, 1
-hotelancoraecuador.com, 1
hotelandplace.com, 1
hotelbird.com, 1
hotelbiz.cf, 1
@@ -71222,6 +70879,7 @@ hotelbiz.ga, 1
hotelbiz.gq, 1
hotelbretagne.dk, 1
hotelcharlestonsantateresa.com, 1
+hotelcoco.co.uk, 1
hotelconsulado.com.br, 1
hotelcorporate.codes, 1
hotelcorporatecodes.com, 1
@@ -71242,8 +70900,8 @@ hotelitalia.tk, 1
hotelite.tk, 1
hotelizalde.com, 1
hotelkeihan.co.jp, 1
-hotellalucciola.net, 1
hotellamm.it, 1
+hotellocaldubai.com, 1
hotelmap.com, 1
hotelmariasas.it, 1
hotelmelograno.eu, 1
@@ -71255,7 +70913,6 @@ hotelplanner.com, 1
hotelplazataranto.com, 1
hotelponcowinatan.com, 1
hotelpromo.codes, 1
-hotelpuntaislita.com, 1
hotelreis.com.br, 1
hotelrepublicsd.com, 1
hotels-insolites.com, 1
@@ -71293,6 +70950,7 @@ hothousecucumber.com, 1
hothub.net, 1
hotiii.ga, 1
hotiks.tk, 1
+hotisp.com, 1
hotlinenum.com, 1
hotlinetohell.cf, 1
hotlog.tk, 1
@@ -71316,7 +70974,7 @@ hotplatters.com, 1
hotpmo.com, 1
hotpopky.cf, 1
hotpornfilms.com, 1
-hotporngals.com, 1
+hotporngals.com, 0
hotporngirl.com, 1
hotporntubes.com, 1
hotpornvideos.tv, 1
@@ -71327,6 +70985,7 @@ hotrender.com, 1
hotroviettel.vn, 1
hotschneckchen.net, 1
hotscripting.tk, 1
+hotset.com, 1
hotsex.tv, 1
hotsexvids.net, 1
hotshira.com, 1
@@ -71358,7 +71017,6 @@ houghcovidtest.com.au, 1
houghtonstatebank.com, 1
houhuayuan.com, 1
houlang.ac.cn, 1
-hourai.gg, 1
houraiteahouse.net, 1
hourlyearning.tk, 1
hourlyringtonesers.ga, 1
@@ -71367,6 +71025,7 @@ hourpendulum.com, 1
hoursofoperation.biz, 1
house-sparrow.com, 1
houseandgarden.co.uk, 1
+houseandhounddogwalkers.com, 1
houseandofficeclearance.co.uk, 1
houseareacanada.tk, 1
houseareaitaly.tk, 1
@@ -71400,7 +71059,6 @@ houseroxrecords.com, 1
housese.at, 1
housesmartdecore.tk, 1
housesumo.com, 1
-housevertising.nl, 1
housia.cz, 1
housing.com, 1
housingauctions.net, 1
@@ -71408,6 +71066,7 @@ housingcenter.com, 1
housinglincolncountyor.gov, 1
housingloan.jp, 1
housingokc.gov, 1
+housten.com, 1
houston-building-maintenance.com, 1
houston-probate-law.com, 1
houstonaudubon.org, 1
@@ -71465,6 +71124,7 @@ howa-n.net, 0
howandroidhelp.com, 1
howandwhys.com, 1
howardchippewawi.gov, 1
+howardconnected.com, 1
howardcounty-mo.gov, 1
howardcountyne.gov, 1
howardcountysheriffmo.gov, 1
@@ -71478,7 +71138,6 @@ howcodingworks.com, 1
howdidido.com, 1
howdl.com, 1
howdoesmycode.work, 1
-howdrm.works, 1
howdy.fr, 1
howeda.de, 1
howellaccounts.co.uk, 1
@@ -71489,9 +71148,9 @@ howiehawkins.us, 1
howieisawesome.com, 1
howlers.tk, 1
howlinhawk.tk, 1
+howlite.com, 1
howlonghaswilliambeenwaitingforhislicence.uk, 1
howmanymilesfrom.com, 1
-howmanypeoplearethereintheworld.com, 1
howmuch.cf, 1
howmuch.ga, 1
howoldisjava8.today, 1
@@ -71501,7 +71160,6 @@ howonce.net, 1
howonce.org, 1
howopen.net, 1
howpchub.com, 1
-howrightnow.org, 1
howsecureismypassword.net, 1
howsmyssl.com, 1
howsmytls.com, 1
@@ -71521,7 +71179,6 @@ howtorunfasterandlonger.com, 1
howtoslapsomeonethroughtheinternet.com, 1
howtostopsnoring.tk, 1
howtoteachviolin.com, 1
-howtotech.com, 1
howtrainyourdog.ml, 1
howtutu.click, 1
howtutu.com, 1
@@ -71577,11 +71234,10 @@ hpsldc.com, 1
hpthealing.com, 1
hpvtimmerwerken.nl, 1
hqblog.cn, 0
-hqlines.me, 1
-hqproductreviews.com, 1
hqsy.net, 1
hqteas.com, 1
hqtrannytube.com, 1
+hquest.pro.br, 1
hqwebhosting.tk, 0
hqy.moe, 1
hqy2000.com, 1
@@ -71669,6 +71325,7 @@ hs-flensburg.de, 1
hs-group.net, 1
hs-hire.co.uk, 1
hs-mainz.de, 1
+hs-shrewsbury.co.uk, 1
hs7imports.com.br, 1
hsappstatic.net, 1
hsasearch.com, 1
@@ -71684,7 +71341,6 @@ hse-online.com, 1
hse-reglementaire.com, 1
hseal.co.uk, 1
hselectricalservices.com, 1
-hsex.tv, 0
hsg-lumdatal.de, 1
hshnetwork.net, 1
hsi.gov, 1
@@ -71696,7 +71352,6 @@ hsivonen.iki.fi, 1
hsjdzaragoza.es, 1
hskernel.com, 1
hskin.top, 1
-hskprep.com, 1
hsm-eldesafio.tk, 1
hsmithsmithfield.co.uk, 1
hsmr.cc, 1
@@ -71711,7 +71366,6 @@ hst.edu, 1
hst.tc, 1
hstoyanov.com, 1
hsts.eu, 1
-hsts.eu.org, 1
hsts.me, 1
hsts.ovh, 1
hstsbadnosniff.com, 1
@@ -71748,11 +71402,12 @@ htbfinance.org, 1
htbfinance.uk, 1
htbleasingandfinance.co.uk, 1
htbplc.co.uk, 1
+htbplc.com, 1
+htbplc.uk.com, 1
htcclan.tk, 1
htdcomputer.vn, 1
hte.ovh, 1
hth-heimberg.ch, 1
-hthe.online, 1
hti.digital, 1
htikeagkyaw.com, 1
htl-anmeldung.at, 1
@@ -71790,7 +71445,6 @@ http.garden, 1
http.gs, 1
http.pizza, 1
http2.com.cn, 1
-http2.pro, 0
http3-hosting.de, 1
http3.ch, 1
http3.info, 1
@@ -71812,7 +71466,6 @@ httpsecured.net, 1
httpsiseasy.com, 1
httpsispisseasy.com, 1
httpsnow.com, 1
-httpsnow.org, 1
httpsredirector.com, 1
httpstaak.tk, 1
httpstest.eu, 1
@@ -71831,8 +71484,12 @@ huabianwa.com, 0
huachuang.com, 1
huagati.co.th, 1
huagati.com, 1
+huaiming.com, 1
+huajuapan.com, 1
huakai.es, 1
huakai.it, 1
+huakan.com, 1
+huaken.com, 1
huang.nu, 1
huangban.org.cn, 1
huangguancq.com, 1
@@ -71859,12 +71516,14 @@ huanqiu1988.com, 1
huanta.tk, 1
huanvm.com, 1
huanwei.com, 1
+huanxu.com, 1
+huanyu.com, 1
+huapont.com, 1
huapood.com, 1
huaqian.art, 1
huarenda.com, 0
huashan.co.uk, 1
huashang.tk, 1
-huashubao.cc, 1
huawenyy.com, 1
huaxueba.com, 1
hub24.com.au, 1
@@ -71910,6 +71569,7 @@ hucklebucks.com, 1
huckletree.com, 0
hudaa.us, 1
hudbugcomics.com, 1
+hudconstruction.co.uk, 1
huddlecamhd.com, 1
hudebnibazarmixer.cz, 1
hudeem-vmeste.ml, 1
@@ -71979,8 +71639,11 @@ huguesaufray.com, 1
huhao.tk, 1
huhu.cf, 1
huibrotladen.com, 1
+huichun.com, 1
huicui.com, 1
huiguniang.com, 1
+huijiao.com, 1
+huijun.com, 1
huiketang.com, 1
huiles-et-olives.fr, 1
huimin.com, 1
@@ -71988,7 +71651,10 @@ huimou.com, 1
huininga.com, 1
huininga.nl, 1
huininga.org, 1
+huiri.com, 1
huirongis.me, 1
+huiruan.com, 1
+huirun.com, 1
huis-en-tuin.be, 1
huisaandecosta.nl, 1
huisartsen-ict.nl, 1
@@ -72019,7 +71685,6 @@ huloveyou.com, 1
hulpbijmarketing.nl, 1
hulpertechsite.tk, 1
hulpmiddelenshop.nl, 1
-hulpverleningszonecentrum.be, 1
hulsoft.co.uk, 1
hultrid.hopto.org, 1
huluch.cc, 1
@@ -72036,14 +71701,15 @@ humanamente.tk, 1
humanbeing.tk, 1
humancampus.nl, 1
humanconstanta.org, 1
+humanembryo.org, 1
humanenrich.com, 1
humanesdemadrid.tk, 1
humanewolf.com, 1
humanhairgo.tk, 1
humanhealth.pl, 1
-humanhealthcare.uk, 1
humanidad.tk, 1
humaninterest.com, 1
+humaniora.com, 1
humanistgruppen.tk, 1
humanitiesacademicpublishers.com, 0
humanitiesnebraska.org, 1
@@ -72060,13 +71726,13 @@ humanrightscareers.com, 1
humanrightseducation.cn, 1
humanrightswatch.org, 1
humanshiftpaper.com, 1
-humansubjects.com, 1
humantouchmassagechairs.com, 1
humantripod.bet, 1
humanwave.nl, 1
humanzee.com, 1
humara.tk, 1
humass.nl, 1
+humaya.com.mx, 1
humbaur.com, 1
humbermaritimecollege.ac.uk, 1
humblebee.at, 1
@@ -72077,7 +71743,6 @@ humblebee.co.uk, 1
humblebee.cz, 1
humblebee.dk, 1
humblebee.es, 1
-humblebee.eu, 1
humblebee.foundation, 1
humblebee.fr, 1
humblebee.gr, 1
@@ -72091,7 +71756,6 @@ humblebeeshop.ca, 1
humblebeeshop.com.au, 1
humblecraft.tk, 1
humbledmba.com, 1
-humbledot.com, 0
humblemechanic.com, 1
humblenano.africa, 1
humblenano.io, 1
@@ -72113,6 +71777,7 @@ humm90.com, 1
hummel.tk, 1
hummelfiguren.com, 1
hummingbird.co, 0
+hummingcat.com, 1
hummy.tk, 1
hummy.tv, 1
humo.be, 1
@@ -72130,6 +71795,7 @@ humpen.se, 1
humphreyscountytn.gov, 1
humphreystnsheriff.gov, 1
humpydumpy.tk, 1
+humuluslupulus.de, 1
humus.tk, 1
huna.viajes, 1
hunanbank.com, 1
@@ -72214,7 +71880,6 @@ huozhen.com, 1
hup.hu, 0
hupoyunlar.com, 1
hurbascooter.com, 1
-hurbo.com, 1
hurdafiyatlari.site, 1
hurinkazan2020.com, 1
hurling.net, 1
@@ -72246,13 +71911,13 @@ huskyadvisor.com, 1
huskyeye.de, 1
huskyinc.us, 0
huskytaildigital.com, 1
-husna.ae, 1
husqvarnamoped.se, 1
hussam.eu.org, 1
hussehrana.com, 1
hustlerstate.tk, 1
hustlersuniversityapp.com, 1
hustlfinancial.com, 1
+hut-hashani.com, 1
hutavaterstetten.de, 1
hutchinsonmn.gov, 1
huthacks.com, 1
@@ -72334,7 +71999,7 @@ hyatt.com, 1
hyb7.com, 1
hybrd.is, 1
hybrid-crescent.tk, 1
-hybrid-engine-development.de, 1
+hybrid-hippie.com, 1
hybriden.cf, 1
hybriden.tk, 1
hybridiyhdistys.fi, 1
@@ -72369,7 +72034,6 @@ hydrique.ch, 1
hydro-pool.org, 1
hydro17.com, 1
hydroagro.pl, 1
-hydroaralen.com, 1
hydrochlorothiazide.gq, 1
hydrochlorothiazide125.ga, 1
hydrocloud.net, 1
@@ -72451,12 +72115,12 @@ hyperion.io, 1
hyperionms.com, 1
hyperjewel.com, 1
hyperlaunch.co, 1
-hyperlocal.co.za, 1
hypermonkey.tk, 1
hypernode.com, 1
hyperonline.tk, 1
hyperplanning.fr, 1
hyperpop.ca, 0
+hyperppl.com, 1
hyperreal.chat, 1
hyperreal.info, 1
hypersequent.com, 1
@@ -72536,7 +72200,6 @@ hysh.org, 1
hysolate.com, 1
hystats.net, 1
hysupchile.cl, 1
-hytale.com, 1
hytravel.it, 1
hytzongxuan.com, 1
hytzongxuan.top, 1
@@ -72563,7 +72226,6 @@ hzbk.org, 0
hzib.com, 1
hzmpower.com, 1
hzqdl.com, 1
-hzsx.com, 1
hztgzz.com, 1
hzuuuz.top, 1
i--b.com, 1
@@ -72620,7 +72282,6 @@ i24.host, 1
i2capmark.com, 1
i2education.com, 0
i2forensicmasters.com, 1
-i2itherapy.com, 1
i2pc.es, 1
i2pgit.org, 1
i2x.cc, 1
@@ -72654,7 +72315,6 @@ iaabc.org, 1
iaata.info, 1
iabot.tk, 1
iacee.org, 1
-iaco.li, 1
iacono.com.br, 0
iactor.co.jp, 1
iactu.info, 1
@@ -72753,7 +72413,6 @@ ib-zentrale.de, 1
iba.community, 1
iba.gov.au, 1
ibacktraced.it, 1
-ibaclofen.online, 1
ibadboy.net, 1
iban.com, 1
ibaoger.com, 1
@@ -72764,7 +72423,7 @@ ibb.co.com, 1
ibb.istanbul, 1
ibc-container.be, 1
ibc.com, 1
-ibcmed.com, 1
+ibcmed.com, 0
ibdmdb.org, 1
ibe.de, 1
ibec.ie, 1
@@ -72790,11 +72449,11 @@ ibex.co, 1
ibexmultiday.com, 1
ibexpackaging.com, 1
ibexrepair.co.uk, 0
-ibharatkhabri.in, 0
ibhgospel.com, 1
ibi.mt, 1
ibidyoupeace.com, 1
ibiki-boushi-makura.net, 1
+ibilezakat.com, 1
ibilog.net, 1
ibin.co, 1
ibiu.xyz, 0
@@ -72849,7 +72508,6 @@ ibuzz.tk, 1
ibvv.cz, 1
ibwc.gov, 1
ibwil.com, 1
-ibyen.com, 1
ibz.be, 1
ic3.gov, 1
ica.coop, 1
@@ -72902,6 +72560,7 @@ icecat.biz, 1
icecodenew.tk, 1
icecontrol.ro, 1
icecream.com.sg, 1
+icecreamandclara.co.uk, 0
icecreamika.tk, 1
icecutethings.com, 1
icedev.pl, 1
@@ -72974,7 +72633,6 @@ ickerseashop.com, 1
icl-growingsolutions.com, 1
icl82.systems, 1
iclart.com, 1
-iclb.be, 1
iclg.com, 1
iclinic-mrt.ru, 1
iclinic.ua, 1
@@ -72985,6 +72643,7 @@ icmtx.com, 1
icnagenda.fr, 1
icnc.ga, 1
icnsoft.org, 1
+icocoon.ch, 1
icojapan.tokyo, 1
icolabo.yokohama, 1
icolc.net, 1
@@ -73053,7 +72712,6 @@ icuc.social, 1
iculture.nl, 1
icusignature.com, 1
icustomboxes.com, 1
-icy.cn, 1
icyapril.com, 1
icycanada.com, 1
icydestiny.com, 0
@@ -73103,15 +72761,14 @@ idbs.com, 1
idbsinventory.com, 1
idbspolar.science, 1
idc-business.be, 0
+idc.gov.ly, 1
idc.yn.cn, 1
idc95.com, 0
idcat.cat, 1
idcrushermachine.ga, 1
idcwr.com, 1
iddaatahmin11.com, 1
-iddaatahmin6.com, 1
iddaatahminleri.com.tr, 1
-iddconnect.com, 1
iddconnect.org, 1
iddportugal.pt, 1
ideaboxapp.com, 1
@@ -73216,7 +72873,6 @@ idesoft.com, 1
idesoft.eu, 1
idesoft.info, 1
idesoft.net, 1
-idesoftinnovacion.com, 1
idesoftinnovacion.es, 1
idev-hub.com, 1
idev.games, 1
@@ -73230,6 +72886,7 @@ idh.agency, 1
idhl.fr, 1
idhosts.co.id, 1
idhproductions.com.au, 1
+idiga.org, 1
idigovs.com, 0
idinby.dk, 1
idiomasdelmundo.tk, 1
@@ -73290,14 +72947,15 @@ iduntownshipmn.gov, 1
idute.com, 1
idvchile.cl, 1
idvl.de, 1
+idw.pt, 1
idwaste.com, 1
idwebtools.tk, 1
idxforza.com, 1
-idyl.fr, 1
idysse.com, 1
ie.search.yahoo.com, 0
ieach.com, 1
ieap.it, 1
+iec-telecom.com, 1
iedr.ie, 1
ieduex.com, 1
ieeesb.nl, 1
@@ -73325,7 +72983,6 @@ iesledzkarjeru.lv, 1
iesm.lk, 1
iesonline.co.in, 1
iesucreipi.edu.co, 1
-iet.co.za, 1
ieti.eu, 1
ieval.ro, 1
ievgenialehner.com, 1
@@ -73401,13 +73058,11 @@ ifworlddesignguide.com, 1
ifxnet.com, 1
ifylofd.xyz, 1
ifyou.bg, 1
-ifyou.live, 1
ig-plastik.tk, 1
ig.com, 1
ig.me, 1
iga-semi.jp, 1
igad.int, 1
-igaku.com, 1
igame.ml, 1
igamingaffiliateprograms.com, 1
igamingdirectory.com, 1
@@ -73421,6 +73076,7 @@ igc-market.ru, 1
igc.in.th, 1
igcomputers.bg, 1
igdb.com, 1
+igeeksblog.com, 1
igel-umzuege.de, 1
igen.fr, 1
igenuinebeauty.co.jp, 1
@@ -73431,7 +73087,6 @@ igglabs.com, 1
iggprivate.com, 1
iggsoft.com, 1
iggsoftware.com, 1
-iggyz.com, 1
igi-2.com, 1
igi.codes, 0
igiftcards.de, 1
@@ -73490,6 +73145,7 @@ igorvlasov.tk, 1
igorvracar.com, 1
igorw.org, 1
igotoffer.com, 0
+igotp.com, 1
igotwood.com.au, 1
igpwned.com, 1
igra-prestol.tk, 1
@@ -73515,7 +73171,6 @@ igryalawar.tk, 1
igshop.ir, 1
igsmgmt.com, 1
igsoc.org, 1
-igt.com, 1
igtsolutions.com, 1
iguacumaquinas.com.br, 1
igualdaton.org, 1
@@ -73555,7 +73210,6 @@ ihorizon.jp, 1
ihorvorotnov.com, 0
ihost.md, 1
ihostup.net, 1
-ihouseu.com, 1
ihr-finanzcockpit.de, 1
ihr-hausarzt-kleinmachnow.de, 1
ihre-ernaehrung.de, 1
@@ -73591,7 +73245,6 @@ iiinhoj.com, 1
iiipublishing.com, 1
iiit.pl, 1
iimarckus.org, 1
-iimpress.com, 1
iinehp.com, 1
iinf.in, 1
iinfin.org, 1
@@ -73602,7 +73255,7 @@ iipaynationofsantaysabel-nsn.gov, 1
iipvapi.com, 1
iipython.cf, 1
iir.com, 1
-iis.net, 1
+iis.net, 0
iiservices.org, 1
iisjy.cn, 1
iispeed.com, 1
@@ -73635,7 +73288,6 @@ ijustwanttomeetmyheroes.com, 1
ijzerwarenhandel.nu, 1
ika.monster, 1
ikachalife.com, 1
-ikacode.com, 0
ikall.com, 1
ikama.cz, 1
ikara.social, 1
@@ -73706,7 +73358,6 @@ ilab.health, 1
ilac101.com, 1
ilacrehberi.com, 1
ilag.gov, 1
-ilamparas.com.co, 1
ilamparas.com.ve, 1
ilanarojas.com, 1
ilanstephani.com, 1
@@ -73731,7 +73382,6 @@ ildomani.it, 1
ile-kalorii.pl, 1
ile-sapporo.jp, 1
ilearned.eu, 0
-ileat.com, 1
ileci.de, 1
ileduguesclin.fr, 1
ilektronika-farmakeia-online.gr, 1
@@ -73749,7 +73399,6 @@ ilgisaglik.com, 1
ilhan.name, 1
ilhombek.ml, 1
iliad78.net, 1
-iliamna.media, 1
iliastsi.net, 1
ilienonline.com, 1
ilife.bg, 1
@@ -73772,7 +73421,7 @@ ilionsky.com, 1
ilitchcompanies.com, 1
iljadr.be, 1
ilkeston.cc, 1
-ilkmat.com, 1
+ilkofis.com, 1
illaadventure.com, 1
illadrodimerendine.it, 1
illambias.ch, 0
@@ -73853,6 +73502,7 @@ ilrovescio.info, 1
ils-savaient.fr, 1
ils.lt, 1
ilsalvagente.it, 1
+ilsaperedelgusto.it, 0
ilsedelangeforum.tk, 1
iltec.ru, 1
iltis.live, 1
@@ -73860,6 +73510,7 @@ iltis.rocks, 1
iltombolo.tk, 1
iltuogiardino.org, 1
iltuomedicodifamiglia.it, 1
+iltze.fr, 1
ilug-ktm.tk, 1
iluman.tk, 1
ilumantio.tk, 1
@@ -73869,6 +73520,7 @@ ilusionistas.tk, 1
ilusionphoto.com, 1
ilusoesopticas.com, 1
ilustradanuvem.pt, 1
+ilustrart.art, 1
iluvbooks.org, 1
ilya-potemin-domain.tk, 1
ilyabakhlin.com, 1
@@ -73900,11 +73552,8 @@ imageboom.com, 1
imagecom.tk, 1
imageconsultingmalta.com, 1
imagecurl.com, 1
-imagefort.com, 1
imagefu.com, 1
imagegarden.com, 1
-imagehood.com, 1
-imageink.com, 1
imagelr.com, 1
imagen891.tk, 1
imagenesdedibujosalapizfacilesdehacer.com, 1
@@ -73913,9 +73562,7 @@ imagenyletra.com, 1
imageproductions.ga, 1
imagequix.com, 1
imagerecall.tk, 1
-imagerestorationcenter.com, 0
imagerive.ch, 0
-imagesbank.com, 1
imagetostl.com, 1
imageurs.com, 1
imagevillage.ir, 1
@@ -73947,6 +73594,7 @@ imanageproducts.co.uk, 1
imanageproducts.com, 1
imanageproducts.uk, 1
imandra.ai, 1
+imanol.com, 1
imanolbarba.net, 1
imanoles.ddns.net, 1
imap.support, 1
@@ -73997,15 +73645,15 @@ imedi.it, 1
imediabay.com, 1
imediafly.com, 1
imediato.pt, 1
-imediatoonline.com, 0
+imediatoonline.com, 1
imena-znachenie.ru, 1
+imenieto.com, 1
imeria.tk, 1
imerys-mineraux-decoratifs.com, 1
imesh-light.tk, 1
imex-dtp.com, 1
imfacademy.com, 1
imforza.com, 0
-img.mg, 1
img.ovh, 1
img.ren, 1
imgaa.com, 1
@@ -74024,7 +73672,6 @@ imi-critical.com, 1
imi-rhapsody.eu, 0
imibo.com, 1
imicroscope.tk, 1
-imidge.com.ua, 1
imigrasilampung.co.id, 1
imigrate.me, 1
imin.co, 1
@@ -74034,7 +73681,6 @@ iminshell.com, 0
imirhil.fr, 1
imis.com.br, 1
imisa.com.mx, 1
-imismael.com, 1
imisto.net, 1
imitationjewelry.tk, 1
imitza.com, 0
@@ -74061,7 +73707,6 @@ immanuellutheranmedia.org, 1
immarypoppinsyall.tk, 1
immaterieelerfgoed.nl, 1
immaterium.de, 1
-immbruxelles.com, 1
immedia.net, 1
immedicohospitalario.es, 1
immel.org, 1
@@ -74144,7 +73789,6 @@ immoisrael.be, 1
immoisrael.ch, 1
immoisrael.co.il, 1
immoisrael.com, 0
-immoisrael.de, 1
immoisrael.eu, 1
immoisrael.fr, 1
immoisrael.ltd, 1
@@ -74161,6 +73805,7 @@ immoponteq.net, 1
immoraldoctors.tk, 1
immortal-it.tk, 1
immortal-pc.info, 1
+immortal.org.in, 1
immortal.run, 1
immortalcorporation.tech, 1
immortallove.tk, 1
@@ -74227,6 +73872,7 @@ impactartstudy.com, 1
impactcomics.com.au, 1
impactdepth.com, 1
impacter.eu, 1
+impacto.cw, 1
impactovenezuela.com, 1
impactparcels.co.uk, 1
impactparcels.com, 1
@@ -74322,6 +73968,7 @@ impresapulizie.it, 1
impresapulizie.milano.it, 1
impresapuliziebergamo.it, 1
impress-app.com, 1
+impress-connect.eu, 1
impress-project.eu, 1
impressao3d.ml, 1
impressaodigitalsp.com.br, 1
@@ -74350,7 +73997,6 @@ impulse-clan.de, 1
impulsewebdesign.nl, 1
impulsocristiano.com, 1
imput.net, 1
-imqrcode.store, 1
imqrscan.com, 1
imranc.ca, 1
imranhossen.ml, 1
@@ -74376,7 +74022,7 @@ imttech.co, 1
imumed.cz, 1
imunify360.com, 1
imusionforum.tk, 1
-imwc.me, 1
+imwc.me, 0
imy.rs, 0
imyjy.cn, 1
imzhu.com, 1
@@ -74485,7 +74131,6 @@ incn.su, 1
incnjp.com, 1
incntfit.com, 1
incognito.org.uk, 1
-incoherent.ch, 1
income-earnings.tk, 1
incomeaccess.com, 1
incomeestatellc.com, 1
@@ -74500,7 +74145,6 @@ inconsciente.tk, 1
incontactmetjezelf.nl, 1
inconvietnam.vn, 1
incore.com, 1
-incorerestorationgroup.com, 1
incorp.ph, 1
incorporatedstyle.com, 1
incorporatega.com, 1
@@ -74513,8 +74157,10 @@ incredibleplanet.net, 1
incrediblez.tk, 1
increment.com, 1
incrementation.net, 0
+incrementx.com, 1
increso.it, 0
incrom.com, 0
+incrona.com, 1
inculate.tk, 1
incurvy.de, 1
ind.ie, 1
@@ -74554,6 +74200,7 @@ indevelopment.tk, 1
index-education.com, 1
index-education.net, 1
index-games.com, 1
+index.co.cr, 1
index.law, 1
indexacapital.com, 1
indexcesmad.cz, 1
@@ -74706,11 +74353,11 @@ indtwpmi.gov, 1
inductiveautomation.com, 1
induehorse.co.uk, 1
induguia.com, 1
-indulashu.info, 1
indumar.com, 1
indumentaria-arabe.tk, 1
induoloog.nl, 1
indusfastremit-us.com, 1
+indusgame.com, 1
indushospital.org.pk, 1
indust.me, 1
industreiler.com.br, 1
@@ -74820,6 +74467,7 @@ infinitiresearch.com, 1
infinito.tk, 1
infinitomarca.com, 1
infinitoporciento.tk, 1
+infinity-area.com, 1
infinitybc.se, 1
infinitybooksindia.in, 1
infinitybots.gg, 1
@@ -74876,7 +74524,6 @@ info-sys.tk, 1
info-tech.tk, 1
info-usaha.tk, 1
info-ut.com, 1
-info.go.th, 1
info.gov, 1
info2all.nl, 1
info4all.com, 1
@@ -75002,7 +74649,6 @@ informatique-13.com, 1
informatiquenevers.fr, 1
informator.tk, 1
informburo.kz, 1
-informdio.info, 1
informeforesea.com.br, 1
informelles.tk, 1
informspb.tk, 1
@@ -75014,16 +74660,16 @@ inforver.com, 1
infosactu.com, 1
infoschool.ml, 1
infosec.exchange, 0
+infosec.md, 1
infosec.mv, 1
infosecchicago.com, 1
infosecdecompress.com, 1
infosecsw.ca, 0
infosectek.io, 1
-infosectekniques.com, 1
infosective.org, 1
infoserp.net.pe, 1
infoshield.sa, 1
-infosolution.biz, 1
+infosolution.biz, 0
infosoph.org, 1
infostack.store, 1
infostor.com, 1
@@ -75032,7 +74678,6 @@ infotabla.si, 1
infotax24.com.pl, 1
infotectsecurity.com, 1
infoteka.cf, 1
-infotekno.co.id, 1
infotelsystems.com, 1
infotics.es, 1
infotune.nl, 1
@@ -75132,6 +74777,7 @@ infstudios.nl, 1
infuse-mn.gov, 1
infusemedia.com, 1
infyz.com, 1
+infyzterminals.com, 1
infyztoms.com, 1
ing, 1
ing-buero-junk.de, 1
@@ -75147,10 +74793,8 @@ ingbusiness.pl, 1
inge-r.nl, 1
ingebroer.com, 1
ingegnereambientale.tk, 1
-ingelnook.co.uk, 1
ingemmologie.com, 1
ingenesis.com, 1
-ingeni.ink, 1
ingeniasas.com, 1
ingenieriaclinica.org, 0
ingenieurbatiment.com, 1
@@ -75180,8 +74824,8 @@ inglesnarede.com.br, 1
inglessantacruz.tk, 1
inglestotal.tk, 1
ingo-schlueter.de, 1
-ingo-struck.com, 0
-ingo-struck.de, 0
+ingo-struck.com, 1
+ingo-struck.de, 1
ingoldingen.de, 1
ingolfsskali.is, 1
ingoschlueter.de, 1
@@ -75223,7 +74867,6 @@ inin.gq, 1
init.ink, 1
init3.cn, 1
initblogger.com, 1
-initializeai.com, 1
initiative-2mai.de, 1
initiative-gegen-die-todesstrafe.de, 1
initiative20x20.org, 1
@@ -75244,6 +74887,7 @@ injust.ml, 1
injust.tk, 1
inkacut.com, 1
inkadr.pl, 1
+inkandlise.com, 1
inkandtonerni.co.uk, 1
inkblogdb.com, 1
inkblot.art, 1
@@ -75259,6 +74903,7 @@ inkforall.com, 1
inkhor.se, 1
inkibra.net, 1
inkjets-inks.tk, 1
+inkjin.com, 1
inkliners.tk, 1
inklingsnews.com, 1
inko-lang.org, 1
@@ -75296,7 +74941,6 @@ inlocon.de, 1
inlucknow.org, 1
inlumi.com, 1
inmaaa.cf, 1
-inmamaskitchen.com, 1
inmateintake.com, 1
inmedic.pl, 1
inmemoria.tk, 1
@@ -75308,7 +74952,6 @@ inmobanking.com.gt, 1
inmobiliaria-sanpablo.cl, 1
inmobiliariaredimido.com, 1
inmobillium.fr, 1
-inmonteblandinio.be, 1
inmoodforsex.com, 1
inmoterrenas.com, 1
inmotionmktg.com, 1
@@ -75325,7 +74968,6 @@ innatepotatoes.com, 1
innatocol.com, 1
inncoaching.nl, 1
innectsphere.ca, 1
-innenraumgestaltung.com, 1
innenstadtkirche.de, 1
inner-change-mastery.com, 1
inner-vision.tk, 1
@@ -75361,7 +75003,7 @@ innomotion.nl, 1
innosec.ch, 1
innosoftfusiongo.com, 1
innosysdelft.com, 1
-innot.net, 1
+innotech.com.bd, 1
innotech.ge, 1
innoteil.com, 1
innoteknology.com, 1
@@ -75385,7 +75027,6 @@ innovationbrandingers.ga, 1
innovationbrandingest.ga, 1
innovationcu.ca, 1
innovative-trading.tk, 1
-innovativeactors.com, 1
innovativebuildingsolutions.co.za, 1
innovativeglass.co.nz, 1
innovativeideaz.org, 1
@@ -75398,7 +75039,6 @@ innoviahome.com, 1
innovinity.io, 1
innovion.it, 1
innovomuebles.com, 1
-innovum.cz, 1
innowire.tk, 1
innsaimonitor.com, 1
innsalzachsingles.de, 1
@@ -75406,7 +75046,6 @@ innvisiondesign.net, 1
innwan.com, 1
inoa8.com, 1
inoapps.com, 1
-inocelda.com, 1
inoio.de, 1
inokolab.net, 1
inoldnews.com, 1
@@ -75442,6 +75081,7 @@ inovitec.ro, 1
inox-deurtrekkers.be, 1
inoxandco.com, 1
inoxoft.com, 1
+inp.eu, 1
inpackt.com, 1
inparkmagazine.com, 1
inpas.co.uk, 1
@@ -75460,18 +75100,18 @@ inquant.de, 1
inquestconsulting.com, 1
inquisicion.tk, 1
inquisition.is, 1
+inregistrar.com, 1
inrilan.tk, 1
ins-kreativ.de, 1
ins.to, 0
ins1gn1a.com, 1
insaattedarik.com.tr, 1
-insanb.com, 1
+insane.studio, 1
insane.zone, 1
insaneair.co.uk, 1
insanedevs.com, 1
insanepyro.tk, 1
insanity.zone, 1
-insankamil.com, 1
insblauehinein.nl, 1
inscape.tv, 1
inschrijfformulier.com, 1
@@ -75506,7 +75146,6 @@ insideevs.com, 1
insideevs.com.ar, 1
insideevs.com.tr, 1
insideevs.de, 1
-insideevs.fr, 1
insidegnss.com, 1
insidehook.com, 1
insideperu.tk, 1
@@ -75576,6 +75215,7 @@ insportline.lt, 1
insportline.si, 1
insportline.sk, 1
inspreeveryone.ga, 1
+inssb.asia, 1
insside.net, 1
insst.es, 1
insta-viewer.ml, 1
@@ -75632,7 +75272,6 @@ instar.org, 1
instareeldownload.com, 0
instavisa.org, 1
instavites.com, 1
-instawi.com, 1
instawierszyki.pl, 1
instead.com.au, 1
insteagle.com, 1
@@ -75648,6 +75287,7 @@ institutoessencia.com, 1
institutofacial.com, 1
institutogiuseppe.com.ar, 1
institutoliderar.edu.co, 1
+institutopensi.org.br, 1
institutovinton.com, 1
instocktho.cc, 1
instride.com, 1
@@ -75724,6 +75364,7 @@ intal.info, 1
intalink.org.uk, 1
intcn.ru, 1
intechdaybcp.com, 1
+intechenviro.com, 1
intecore.com, 1
inteforge.com, 1
integ.jp, 1
@@ -75740,6 +75381,7 @@ integralinmobiliario.com, 1
integralkk.com, 1
integralrechner.de, 1
integralschool.ru, 1
+integralthread.com, 1
integrammes.fr, 1
integramossst.com, 1
integratec.show, 1
@@ -75755,7 +75397,6 @@ integrisaviation.com, 1
integritet.com.se, 1
integrity.gov, 1
integritydetail.com, 1
-integrityfirstloans.com, 1
integrityglobal.com, 1
integrityhomecontractors.com, 1
integritykrakow.pl, 1
@@ -75819,6 +75460,8 @@ intenseo.de, 1
intensify.pictures, 1
intensitynews.com, 1
intensivpflege-sachsen.de, 1
+inter-corporate.com, 1
+inter-corporate.net, 1
inter-culinarium.com, 1
inter-news.tk, 1
interabbit.co, 1
@@ -75837,6 +75480,7 @@ interad.com, 1
interaffairs.com, 1
interaktiva.fi, 1
interallied.org, 1
+interativashop.com.br, 1
interbanco.com.gt, 1
interbank.pe, 1
interbase.org, 1
@@ -75903,6 +75547,7 @@ interiorai.com, 1
interiorcheapo.com, 1
interiorcolors.tk, 1
interiordesignhouse.com, 1
+interiorservice-endego.co.uk, 1
interiorsnmore.com, 1
interisaudit.com, 1
interitus.tk, 1
@@ -75972,6 +75617,7 @@ internetbank.swedbank.se, 1
internetbloger.tk, 1
internetbugbounty.com, 1
internetbugbounty.org, 1
+internetbusiness-howto.com, 1
internetcom.jp, 1
internetdagarna.se, 1
internetface.tk, 1
@@ -76011,7 +75657,7 @@ internetstones.com, 1
internetsubsidie.tk, 1
internettoday.ga, 1
internettradie.com.au, 0
-internetwealthresource.com, 1
+internetverkstan.se, 1
internetzaim.tk, 1
internetzentrale.net, 1
internews24.com, 1
@@ -76020,7 +75666,6 @@ interparcel.com, 1
interplex.com, 1
interpol.gov, 1
interpoolme.com, 1
-interpret.cn, 1
interprete.tk, 1
intersectionconsultancy.co.uk, 1
intersein-landshut.de, 1
@@ -76076,7 +75721,6 @@ intimastoreatacado.com.br, 1
intimat.it, 1
intimidad.tk, 1
intimznakomstvo.tk, 1
-intiverf.nl, 1
intl.pp.ua, 1
intl.su, 1
intlib.cn, 1
@@ -76088,6 +75732,7 @@ intomsk.tk, 1
inton.biz, 1
intoparking.fi, 1
intor.fi, 1
+intosec.nl, 1
intouchcx.com, 1
intouchtablets.com, 1
intoxicate.tk, 1
@@ -76103,7 +75748,6 @@ intrador.com, 1
intraedge.com, 1
intrafi.com, 1
intralan.nl, 1
-intranasal.com, 1
intranet.dvag, 1
intranetcity.ch, 1
intranetconsultant.au, 1
@@ -76130,10 +75774,8 @@ intrstd.in, 1
intrum-credit-information-ws.ch, 1
intstyle.com.ua, 1
intsys.fi, 1
-intuitionmedicine.org, 1
intux.be, 0
intvonline.com, 1
-intxt.net, 1
inu.nl, 1
inuba.com, 1
inuevostiempos.es, 1
@@ -76154,7 +75796,6 @@ invantive-apps-voor-loket.nl, 1
invantive.be, 1
invantive.cloud, 1
invantive.co.uk, 1
-invantive.de, 1
invantive.es, 1
invantive.net, 1
invantive.org, 1
@@ -76180,7 +75821,6 @@ inventorylab.com, 1
inventos.tk, 1
inventoseinventores.com, 1
inventum.cloud, 1
-inveny.fr, 1
inveris.de, 1
inverness.gov, 1
inversegravity.net, 1
@@ -76201,15 +75841,15 @@ investarholding.nl, 1
investasiku.tk, 1
investasimudah.tk, 1
investasipasti.tk, 1
-investcorp.com, 1
+investbit.nl, 1
investelogo.com.br, 1
investeringsgids.be, 1
investgold.ml, 1
investgold.tk, 1
investgroop.ml, 1
+investhq.in, 1
investi.cz, 1
investia.ca, 1
-investicneportfolio.info, 1
investigace.cz, 1
investigatemalware.com, 1
investigatii.md, 1
@@ -76240,11 +75880,9 @@ investirenisrael.fr, 1
investirfazbem.com.br, 0
investisiya.az, 1
investisseur-or-matieres.com, 1
-investlatam.com, 1
investmates.io, 1
investment-adh.com, 1
investment.com, 1
-investmentfashion.uk, 1
investmentmonitor.ai, 1
investmentpal.com, 1
investmentrankingsers.ga, 1
@@ -76395,7 +76033,6 @@ iossearch.tk, 1
iostream.by, 1
iosxr.de, 1
iot-alliances.com, 1
-iotac.xyz, 1
iotaker.jp, 1
iotanodes.org, 1
iotbusinessforum.com.br, 1
@@ -76440,6 +76077,7 @@ ip.gt, 1
ip.or.at, 1
ip.sb, 1
ip2whois.com, 1
+ip3.be, 1
ip3office.com, 0
ip4unlocked.tk, 1
ip6.biz, 1
@@ -76520,10 +76158,12 @@ ipmscorp.com, 1
ipmsdeutschland.de, 1
ipnoze.com, 1
ipnrt.net, 1
+ipo.inf.br, 1
ipoac.be, 1
ipoac.nl, 1
ipofferings.com, 1
ipokabu.net, 1
+ipolski.pl, 1
ipomue.com, 1
ipon.hu, 1
ipon.ro, 1
@@ -76531,7 +76171,6 @@ iponweb.com, 1
ipoteka.az, 1
ipow.tk, 1
ipperde.tk, 1
-ippf.org, 1
ippis.rw, 1
ipplans.com, 1
ippo-juku.com, 1
@@ -76554,7 +76193,6 @@ ips-consult.nl, 1
ips-sachsen.de, 1
ips.com.my, 1
ipschool.spb.ru, 1
-ipsculemborg.nl, 1
ipsec.pl, 1
ipsecurelink.com, 1
ipsilon-project.org, 1
@@ -76565,7 +76203,6 @@ ipstoragesolutions.com, 1
ipsubscription.store, 1
ipsum.dk, 1
ipswichgrammar.com, 1
-ipswitch.com.tw, 1
ipt.za.com, 1
iptechnology.tk, 1
iptoasn.com, 1
@@ -76662,6 +76299,7 @@ irasingh.tk, 1
irasuto.eu.org, 1
iratechwatch.com, 1
iratten.de, 1
+irazimina.ru, 0
irbg.net, 1
irbot.com.br, 1
ircdial.com, 1
@@ -76771,12 +76409,12 @@ irokotv.com, 1
iron-infos.cf, 1
iron.io, 1
ironarch.net, 1
-ironballs.org, 1
ironbelly.pro, 1
ironbow.com, 0
ironbowhealthcare.com, 0
ironcage.tk, 1
ironcladapp.com, 1
+ironcleanse.com, 1
ironcountyut.gov, 1
ironcross.tk, 1
irondequoit.gov, 1
@@ -76903,7 +76541,6 @@ isbase.de, 1
isbaseballstillon.com, 1
isbk.de, 0
isbndirect.com, 1
-isbpanel.com, 1
isc.org, 0
isc2.org, 0
isc2estoniachapter.ee, 1
@@ -76979,6 +76616,7 @@ iskaron.de, 1
iskaz.rs, 1
iskkk.com, 1
iskkk.net, 1
+iskndr.com, 1
iskorka.tk, 1
iskurilanlari.net, 1
iskurturkiye.cf, 1
@@ -77010,10 +76648,10 @@ islamiyet.tk, 1
islamnews.ga, 1
islamnewss.tk, 1
islamo.tk, 1
+islamophobia.ca, 1
islamparafriendsclub.ml, 1
islamqa.info, 1
islamspread.tk, 1
-islamvictory.com, 1
islamvictory.net, 1
islamvictory.org, 1
island-cruises.tk, 1
@@ -77060,6 +76698,7 @@ ismmed.org, 1
ismywebsitepenalized.com, 1
isn.cz, 1
isn.education, 1
+isnadf.org, 1
isnot.ai, 1
iso.fr, 1
iso27001.dk, 1
@@ -77087,8 +76726,6 @@ isolta.fi, 1
isolta.lv, 1
isolta.se, 1
isolvedhcm.com, 1
-isongrp.com, 1
-isonhealth.com, 1
isonsecure.com, 0
isontechnologies.com, 1
isopres.de, 1
@@ -77103,7 +76740,6 @@ ispactivo.com, 1
ispadmin.eu, 1
ispanika.tk, 1
ispaniola.ga, 1
-ispanskijshuanom.ru, 1
ispartahaber.cf, 1
ispartahaber.gq, 1
ispartahaber.tk, 1
@@ -77129,7 +76765,6 @@ israelbiblicalstudies.com, 1
israelcareersers.ga, 1
israelcareersest.ga, 1
israelflorist.com, 1
-israelinfo.co.il, 1
israelitas.tk, 1
israelitopbox.ga, 1
israelmesianico.tk, 1
@@ -77196,7 +76831,6 @@ istheapplestoredown.de, 1
isthedoorlocked.com, 1
isthefieldcontrolsystemdown.com, 1
istheinternetonfire.com, 1
-isthephone.com, 1
istherrienstillcoach.com, 1
istheservicedown.co.uk, 1
istheservicedown.com, 1
@@ -77336,19 +76970,21 @@ itap.gov, 1
itape.com, 0
itaro.bot, 1
itaro.ee, 1
-itaro.eu, 1
itascacountymn.gov, 1
itaseguroviagem.com.br, 1
itasolution.it, 1
-itbar.com, 1
+itauba.com, 1
itbfrance.fr, 1
-itbj.com, 1
itbn.hu, 1
itbog.org, 1
itbolagmedipv6.se, 1
itbrief.asia, 1
+itbrief.ca, 1
itbrief.co.nz, 1
+itbrief.co.uk, 1
itbrief.com.au, 1
+itbrief.in, 1
+itbrief.news, 1
itbrouwerij.be, 1
itbsinistre.com, 1
itc-lucke.com, 0
@@ -77366,7 +77002,6 @@ itcompanies.net, 1
itconsulting-wolfinger.de, 1
itcontext.pro, 1
itcoolie.in, 1
-itcreative.ro, 1
itcreativelabs.com, 1
itcs.services, 1
itcybersecurity.gr, 1
@@ -77412,8 +77047,6 @@ itfall.tk, 1
itfh.eu, 0
itfirmaet.dk, 1
itfix.org.uk, 1
-itfj.com, 1
-itfounder.com, 1
itg.com.pl, 1
itg.net.pl, 1
itgadgetsonline.com, 1
@@ -77427,14 +77060,12 @@ ithca.om, 1
ithical.be, 1
ithillel.ua, 1
ithinc.net, 1
-ithjalpforetag.se, 1
ithmaarbank.com, 0
ithriveedinburgh.org.uk, 1
ithuthuat.vn, 1
itibharari.edu.in, 1
itikon.com, 1
itilo.de, 0
-itinerance.ca, 1
itinerariummentis.org, 1
itineris.co.uk, 1
itinero.xyz, 1
@@ -77493,7 +77124,6 @@ itraveille.fr, 1
itraveller.net, 1
itreboot.co.nz, 1
itrendbuzz.com, 1
-itreply.com, 1
itrezzo.com, 1
itrio.pet, 1
itrodeo.com, 1
@@ -77517,7 +77147,6 @@ itsakerhetspodden.se, 1
itsalan.tk, 1
itsallmath.org, 1
itsanicedoor.co.uk, 1
-itsapetthang.com, 1
itsaw.de, 1
itsayardlife.com, 1
itsayorki.de, 1
@@ -77544,7 +77173,6 @@ itsevann.com, 1
itsevident.com, 1
itsforu.de, 1
itsfoss.com, 1
-itsgottabedark.com, 1
itsgreener.com, 1
itshamradio.com, 1
itshka.rv.ua, 1
@@ -77622,11 +77250,11 @@ itzahammer.tk, 1
itzamnaxelahomestay.tk, 1
itzap.com.au, 1
itzer.de, 1
+itzgeek.com, 1
itzine.ru, 1
itzkavin.tk, 1
itzlive.tk, 1
iubuniversity.tk, 1
-iune.com, 1
iupibaby.pt, 1
iuppiter-ssd.it, 1
iusedtobelieve.com, 1
@@ -77671,6 +77299,7 @@ ivendi.com, 1
iventishirts.com, 1
ivermectin.gq, 1
ivermectinc19.com, 1
+iversionesdp.com, 1
ivertubani.com, 1
ivetazivot.cz, 1
ivetebolos.com.br, 1
@@ -77725,7 +77354,6 @@ ivypanda.com, 0
ivyseeds.cf, 1
iw.net.sa, 1
iwaidental.jp, 1
-iwaiting.com, 1
iwalton.com, 1
iwant.cz, 1
iwantexchange.com, 1
@@ -77755,6 +77383,7 @@ iwex.swiss, 1
iwf.sport, 1
iwhite.tk, 1
iwiki.net, 1
+iwill.tr, 1
iwmf.ir, 1
iwonder.tw, 1
iwp.ch, 1
@@ -77774,7 +77403,6 @@ ixon.cloud, 1
ixoso.com, 1
ixquick-proxy.com, 1
ixquick.co.uk, 1
-ixquick.com, 1
ixquick.de, 1
ixquick.eu, 1
ixquick.fr, 1
@@ -77791,7 +77419,6 @@ iyanla.com, 1
iyanmv.com, 1
iyassu.com, 1
iyiarastir.com, 1
-iyibul.net, 1
iyn.me, 1
iyouewo.com, 1
iyoumu.top, 1
@@ -77813,6 +77440,7 @@ izhevsk-news.net, 1
izi-agency.com, 1
izidream.bg, 1
izipik.gq, 1
+izitex.shop, 1
izkustvo.com, 1
izm.ovh, 1
izmail-invertor.com.ua, 1
@@ -77858,7 +77486,6 @@ j-maxton.de, 1
j-ph.ovh, 1
j-robertson.com, 1
j-step.or.jp, 1
-j-storm.com, 1
j.ac, 1
j.wtf, 1
j00228.com, 1
@@ -77870,7 +77497,9 @@ j0m.de, 1
j0s.eu, 1
j15h.nu, 1
j15k.com, 1
+j2.co.za, 1
j2ee.cz, 1
+j2software.co.za, 1
j3.cn, 1
j32663.com, 1
j32665.com, 1
@@ -77921,7 +77550,6 @@ jaajko.site, 1
jaajko.xyz, 1
jaakkohannikainen.fi, 1
jaamaa.com, 1
-jaanikese.edu.ee, 1
jaarsmabakery.com, 1
jaarverslagveere.nl, 1
jaaxypro.com, 1
@@ -77931,7 +77559,6 @@ jababu.cz, 1
jabagly.com, 1
jabal-aqel-albab.tk, 1
jabba.homelinux.org, 1
-jabbari.io, 1
jabber.at, 1
jabber.fr, 1
jabber.uk, 1
@@ -77944,7 +77571,6 @@ jabboworld.tk, 1
jaberg-rutschi.ch, 1
jabergrutschi.ch, 1
jabjab.de, 1
-jabodent.com, 1
jabou.co.uk, 1
jabramson.com, 1
jabramson.net, 1
@@ -77963,11 +77589,11 @@ jackafur.net, 1
jackal-cogito.tk, 1
jackandrascals.com, 1
jackarmail.eu, 1
-jackass-as.com, 1
jackassofalltrades.org, 1
jackbauer.tk, 1
jackblues.tk, 1
jackcasady.com, 1
+jackcon.com, 1
jackdanielssauces.com, 1
jackdawphoto.co.uk, 1
jacket-coat.tk, 1
@@ -77997,6 +77623,7 @@ jackrussel.tk, 1
jackrusselterrier.com.br, 1
jacksanalytics.com, 1
jacksball.com, 1
+jackschobergrealestate.com, 1
jacksfeestverhuur.nl, 0
jackson-quon.com, 1
jacksonchen666.com, 1
@@ -78058,7 +77685,6 @@ jadara.info, 1
jadchaar.me, 1
jadedmonkey.tk, 1
jadeglobal.com, 1
-jadehairstyle.nl, 1
jadelsbach.de, 1
jademathre.com, 1
jadesong.cn, 0
@@ -78066,7 +77692,6 @@ jadesong.net, 1
jadid-alwadifa.com, 1
jadidgroup.com, 1
jadiercms.cf, 1
-jadopado.com, 1
jadox.com, 1
jaduniv.cf, 1
jae.fi, 1
@@ -78078,9 +77703,9 @@ jaenparaisointerior.es, 1
jaepinformatica.com, 1
jaetech.org, 1
jafarmehdipor.ga, 1
+jafisportcamp.pl, 1
jag-meccar.tk, 1
jagadhatrionline.co.in, 0
-jagaimo.works, 0
jagan.be, 1
jagar.com.pl, 1
jagbouncycastles.co.uk, 1
@@ -78103,6 +77728,7 @@ jahit.tk, 1
jahner.xyz, 1
jahro.me, 1
jahubar.tk, 1
+jahzara.com, 1
jaialdi.tk, 1
jaiho-zeetoz1server.ga, 1
jailbait.ml, 1
@@ -78111,9 +77737,10 @@ jailfooders.ga, 1
jailfoodest.ga, 1
jailstorm.ml, 1
jaimeayala.com, 1
+jainnatory.ca, 1
+jainnotary.ca, 1
jaion.tech, 1
jaion.xyz, 1
-jaipurescort.club, 1
jaipurescortagency.com, 1
jairocarbonell.com, 1
jairoenfrancien.tk, 1
@@ -78166,7 +77793,7 @@ jaleesa.sa, 1
jaleo.cn, 1
jalgut.group, 1
jaliscolindo.tk, 1
-jall.com.br, 1
+jall.com.br, 0
jallatte.fr, 1
jaloozone.ml, 1
jaluzelemoderne.ro, 1
@@ -78198,8 +77825,6 @@ jamesatruett.com, 0
jamesbarnet.com, 1
jamesbillingham.com, 1
jamesbromberger.com, 1
-jamesbrown.cn, 1
-jamesbrown.us, 1
jameschorlton.co.uk, 1
jamesconroyfinn.com, 0
jamesdorf.com, 1
@@ -78286,6 +77911,7 @@ jan-bucher.ch, 1
jan-graca.tk, 1
jan-hill.com, 1
jan-melcher.de, 1
+jan-reiss.de, 1
jan-rieger.de, 1
jan-roenspies.de, 1
jan-von.de, 1
@@ -78311,7 +77937,6 @@ janekahonza.cz, 1
janelle-jamer.tk, 1
janellequintana.tk, 1
janenwouter.tk, 1
-janersm.net, 1
janesaddiction.org, 1
janetandjohns.tk, 1
janetedkins.com, 1
@@ -78356,13 +77981,14 @@ jans.cloud, 1
janschaumann.de, 1
jansendermatografie.nl, 1
janservfl.com, 1
+jansoulak.cz, 1
janssen.fm, 1
janterpstra.eu, 1
+janthemiraclehunter.com, 1
jantinaboelens.nl, 1
janu.services, 1
janu.software, 1
january.com, 1
-janujani.com, 1
janulkowedomki.pl, 1
janus-it.pl, 1
januszex.top, 1
@@ -78378,7 +78004,6 @@ janwern.com, 1
janwillhaus.de, 1
jao-collection.com, 1
jaot.info, 1
-jaotusvork.ee, 1
japan-academy-prize.jp, 1
japan-forum.nl, 1
japan-tent.com, 1
@@ -78578,7 +78203,6 @@ javiersanchez.tk, 1
javiscoffee.com, 1
javitron.tk, 1
javleech.com, 1
-javlin.com, 1
javna.com, 1
javorina.tk, 1
javsod.top, 1
@@ -78592,6 +78216,7 @@ jayantkageri.in, 0
jaybeez.tk, 1
jaybrokers.com, 1
jaydehaidar.com, 1
+jaydenrichardson.com, 1
jayf.de, 1
jayfreestone.com, 1
jayfrogel.com, 1
@@ -78609,13 +78234,13 @@ jaypandit.me, 1
jaypark.gq, 1
jaypeeaman.in, 1
jaypeeonline.tk, 1
-jayrl.com, 1
jaysanart.com, 0
jaysaw.me, 1
jayschulman.com, 0
jayshettycoaching.com, 1
jayspage.tk, 1
jayspov.net, 1
+jaytauron.xyz, 1
jaytx.com, 1
jayveel.nl, 1
jayxon.com, 1
@@ -78643,6 +78268,7 @@ jb-pixel.tk, 1
jb0.de, 1
jb138.cc, 1
jbarzoutfitters.com, 0
+jbayetsecretariat.be, 1
jbbd.fr, 1
jbbdev.com, 1
jbc88.cc, 1
@@ -78677,7 +78303,6 @@ jcatechnologies.com, 1
jcb.com, 1
jcbank.com, 1
jcbank.com.jo, 1
-jcbaterias.com.br, 1
jcbgolfandcountryclub.com, 1
jccars-occasions.be, 1
jcchen.art, 1
@@ -78686,7 +78311,6 @@ jccomunicaciones.net, 1
jcdenast.tk, 1
jcelectronics.com.au, 1
jcf-office.com, 1
-jcgp.com, 1
jchn.be, 1
jci.bio, 1
jci.care, 1
@@ -78735,7 +78359,6 @@ jci.zone, 1
jcinet.cc, 1
jcinet.net, 1
jcit.xyz, 1
-jcjohnson.me, 1
jclayton.com, 1
jcleon.tk, 1
jclp.cf, 1
@@ -78768,7 +78391,6 @@ jd777.vip, 1
jdc.io, 1
jdcdirectsales.com, 1
jdcdirectsales.com.ph, 1
-jdd888.cc, 1
jdecommastermind.com, 1
jdelgado.fr, 1
jdhigh.com, 1
@@ -78868,7 +78490,6 @@ jeepspares.com.au, 1
jeeptourpocos.com.br, 1
jeepvillage.com, 1
jeeran.com, 1
-jeeranservices.com, 1
jeevanmag.tk, 1
jeevansathi.com, 1
jef.yt, 1
@@ -78953,6 +78574,7 @@ jemezdravo.eu, 1
jemezsprings-nm.gov, 1
jemnezymy.com, 1
jemoreng.tk, 1
+jemputan-karyawan.site, 1
jems-il.gov, 1
jemshoes.com, 1
jemyzdrowo.pl, 1
@@ -79071,6 +78693,7 @@ jerseyeva.org, 1
jerseyink.net, 1
jerseylvi2013.org, 1
jerseyoic.org, 1
+jerseywater.je, 1
jerusalem.estate, 1
jerusalempersonals.ml, 1
jerusalempersonalsers.ga, 1
@@ -79092,7 +78715,6 @@ jessecharley.com, 1
jessecharli.com, 1
jessecharlie.com, 1
jessecharlie.info, 1
-jessecharlie.net, 1
jessecharlie.org, 1
jessecharlienaser.com, 1
jesseerbach.com, 1
@@ -79116,6 +78738,7 @@ jessicasmith3d.com, 1
jessicharlie.com, 1
jessieabraham.tk, 1
jessiecharlie.com, 1
+jessiekirk.xyz, 1
jessihod.com, 1
jessitrigg.com, 1
jesslynfietje.com, 1
@@ -79192,7 +78815,6 @@ jewadvert.ml, 1
jewaedv.de, 1
jewboyjacob.com, 1
jeweet.net, 1
-jewellerynet.com, 1
jewelleryoutlook.com, 1
jewelry-directories.tk, 1
jewelrycoverers.ga, 1
@@ -79231,7 +78853,6 @@ jflmsan.pt, 1
jfmdevelopment.ml, 1
jfml.lu, 1
jfon.no, 1
-jforest.com, 1
jforma.it, 1
jforums.org, 1
jfr.im, 1
@@ -79276,9 +78897,7 @@ jhaudio.com, 1
jhaveri.net, 1
jhbgroup.nl, 1
jhburton.co.uk, 1
-jhby.com, 1
jhcommunitysports.co.uk, 1
-jhdindustrialsolution.com, 1
jhe.li, 1
jhellings.nl, 1
jhenwei.com.tw, 1
@@ -79291,7 +78910,6 @@ jhonmurillo.ml, 1
jhonnyjose.com.ar, 1
jhost.gq, 1
jhuang.me, 1
-jhw3d.com, 1
jiafutong.cn, 1
jiaheng.uk, 1
jiai.cf, 1
@@ -79303,6 +78921,7 @@ jiami.dog, 0
jianbin.wang, 1
jiangmei.ml, 1
jiangmen.tk, 1
+jiangrun.com, 1
jiangshiart.com, 1
jiangtuliquor.com, 1
jiangwu.eu, 1
@@ -79321,7 +78940,6 @@ jianyv.com, 1
jianzhan.com, 1
jiaoliuben.com, 1
jiaoyu8.cn, 1
-jiaozhun.com, 1
jiaqiang.vip, 1
jiatingtrading.com, 1
jiaty.com, 1
@@ -79342,11 +78960,8 @@ jidlosro.eu, 1
jidlosro.info, 1
jidlosro.sk, 1
jidlosromanem.cz, 1
-jiechu.com, 1
-jiedao.com, 1
jiehun.com.cn, 1
jiehunlifu.com, 0
-jieli.com, 1
jieli.wang, 1
jieshangwei.com, 0
jieyang2016.com, 1
@@ -79425,6 +79040,7 @@ jimwhitesell.com, 1
jimwoodrealty.com, 1
jimwoodrealty.help, 1
jin-design.si, 1
+jin-english.academy, 1
jinancy.fr, 1
jinaron.com, 1
jinbbq.com, 1
@@ -79439,12 +79055,11 @@ jing-in.net, 1
jingbo.fan, 1
jinglebugs.co.nz, 1
jingmi.com.tw, 1
-jingtu.com, 1
jinhaagency.com, 1
jinhaagency1.com, 1
jinja.ai, 1
jinjafx.io, 1
-jinjun.top, 1
+jinjun.top, 0
jinkou.cf, 1
jinkou.ga, 1
jinkou.gq, 1
@@ -79455,11 +79070,13 @@ jino.gq, 1
jinshabu.net, 1
jinspace.net, 1
jintaiyang123.org, 1
+jintao.hu, 1
jinzai-ikusei.org, 1
jiogo.com, 1
jip2011.jp, 1
jipsnel.nl, 1
jira.com, 0
+jirehcon.com, 1
jirehlov.cn, 1
jirehlov.com, 1
jiretvariedades.com, 1
@@ -79479,6 +79096,7 @@ jitsipatapoe.ddns.net, 0
jittruckparts.com, 1
jiudao.com, 1
jix.im, 1
+jix.net, 1
jixing.one, 1
jixun.eu, 1
jixun.moe, 1
@@ -79520,7 +79138,7 @@ jkinteriorspa.com, 1
jkloli.tk, 1
jkmoving.com, 0
jkng.eu, 1
-jkpg-kontoret.se, 1
+jkpg-kontoret.se, 0
jkponnis.rs, 1
jkrippen.com, 1
jkroofing.com, 1
@@ -79540,6 +79158,7 @@ jl-mail.nl, 1
jl-picard.tk, 1
jlbleakley.com, 1
jld.paris, 1
+jldlawyers.com, 1
jldrenergysaver.com, 1
jlifeoc.com, 1
jliu.xyz, 1
@@ -79557,7 +79176,6 @@ jlr-luxembourg.com, 1
jls.idv.tw, 1
jlsdesignservices.com, 1
jltcsecuritygroup.com, 1
-jltctech.com, 1
jlulug.org, 1
jlwagner.net, 1
jm-construction.be, 1
@@ -79596,6 +79214,7 @@ jmisern.com, 1
jmk.hu, 1
jmlegrand.com, 1
jmm.io, 1
+jmmouilou.fr, 1
jmn.pl, 1
jmob.loan, 1
jmonagas-portfolio.ml, 1
@@ -79620,10 +79239,10 @@ jmwsquared.com, 1
jmy.fyi, 1
jmzo.nl, 0
jn1.me, 1
+jnana-yoga.info, 1
jncie.eu, 1
jnewhook.ca, 1
jng.pt, 1
-jnjdj.com, 1
jnjpolymer.com, 1
jnktn.tv, 1
jnm-art.com, 1
@@ -79687,6 +79306,7 @@ jobin.care, 1
jobindex.dk, 1
jobintourism.gr, 1
jobit.gr, 1
+jobitt.com, 1
joblife.co.za, 1
joblover.ml, 1
joblyconnect.com, 1
@@ -79705,12 +79325,10 @@ jobs.schwarz, 1
jobs.su, 1
jobs.ua, 1
jobs4sales.ch, 1
-jobsatuhcw.co.uk, 1
jobscan.co, 1
jobsconnected.com, 1
jobscope.io, 1
jobscore.com, 1
-jobseeker-bd.com, 1
jobseeker.com, 1
jobseekeritalia.it, 1
jobsindemedia.nl, 1
@@ -79765,16 +79383,15 @@ joefang.org, 1
joefixit.co, 1
joefixit.co.uk, 1
joehenry.co.uk, 1
+joehorn.tw, 1
joejacobs.me, 0
joel-mayer.de, 1
joel.net.au, 1
joelandersen.me, 1
-joelbodmer.co.uk, 1
joelengel.com, 1
joelfries.com, 1
joelito.tk, 1
joelj.org, 1
-joelkoen.com, 1
joelkoeper.de, 1
joelle.me, 1
joelleandpeter.co.uk, 1
@@ -79782,7 +79399,6 @@ joelleisthatbitch.tk, 1
joellev.nl, 1
joellimberg.com, 1
joellombardo.com, 0
-joelmunch.com, 1
joelovano.com, 1
joelprice.com, 1
joelving.dk, 0
@@ -79885,6 +79501,7 @@ johnload.tk, 1
johnlockepainting.com, 1
johnlowryspartancapital.com, 0
johnmalloneemd.com, 0
+johnmcc.net, 1
johnmcintosh.pro, 1
johnmichel.org, 1
johnmillerdesign.com, 1
@@ -80112,11 +79729,9 @@ joomlaguru.pl, 0
joona.pw, 1
joone.org, 1
joonstudios.com, 1
-joopzy.com, 1
joorshin.ir, 1
joostdeheer.nl, 1
joostmaglev.nl, 1
-joostvanderlaan.nl, 1
jootshop.ga, 1
jophson.tk, 1
joqi4.gq, 1
@@ -80148,6 +79763,7 @@ jordibelgraver.eu, 1
jordibelgraver.xyz, 1
jordioller.com, 1
jordjord.com, 1
+jordywozniak.com, 1
jorexenterprise.com, 1
jorgelopezorquesta.tk, 1
jorgemarquez.es, 1
@@ -80288,7 +79904,6 @@ journaltimes.com, 1
journeedesfilles.gc.ca, 1
journey.study, 1
journeyfriday.rocks, 1
-journeying.ca, 1
journeyofmymothersson.com, 1
journeyplanner.io, 1
journeyrent.com, 1
@@ -80335,14 +79950,12 @@ joyinteractive.tk, 1
joyjohnston.ca, 0
joymarket.ir, 1
joymation.net, 1
-joymaxiptv.com, 1
joymepass.com, 1
joyofmedinacountymagazine.com, 1
joyouscare.co.uk, 1
joyousisle.com, 1
joysinventingblog.com, 1
joystickblog.tk, 1
-joytoday.com, 1
jozefkvasnica.tk, 1
jozefmichalmintal.com, 1
jozefmutis.com, 1
@@ -80356,7 +79969,6 @@ jparts.su, 1
jpbe-network.de, 1
jpberlin.de, 1
jpc-design.com, 1
-jpcases.com.au, 1
jpcorriganlaw.com, 1
jpcrochetapparel.com, 1
jpdineroasi.com, 1
@@ -80375,6 +79987,7 @@ jpixta.com, 1
jplennard.com, 1
jpmguitarshop.com.br, 1
jpmorganaccess.com, 1
+jpope.org, 1
jppc.net, 1
jppcadvertising.com, 1
jpr.io, 1
@@ -80412,13 +80025,11 @@ jreinert.com, 1
jrelsawy.com, 1
jrflorian.com, 1
jrfortune.com, 1
-jribeiroweb.work, 1
jrjuristen.nl, 0
jrlopezoficial.com, 1
jrmora.com, 0
jrock.tk, 1
jrock.us, 1
-jrockrevolution.com, 1
jrom.net, 1
jross.me, 1
jrroofinglancs.co.uk, 1
@@ -80447,7 +80058,6 @@ jsberrylaw.com, 1
jsbevents.nl, 1
jsblights.nl, 1
jsc.mx, 1
-jsc588.cc, 1
jschumacher.info, 1
jscrambler.com, 1
jscsshtml.com, 1
@@ -80463,7 +80073,6 @@ jsfleecefabric.com, 1
jsfloydlaw.com, 0
jsg.hk, 1
jsgr.ca, 1
-jsh.marketing, 0
jsh918.com, 1
jsheard.co.uk, 1
jsheard.com, 1
@@ -80479,8 +80088,6 @@ jsknitfabric.com, 1
jslots.dk, 1
jsme.cz, 1
jsme.fun, 1
-jsmgroningen.nl, 1
-jsn.one, 1
jsnfwlr.com, 0
jsnfwlr.io, 0
jso-crescendo.ch, 1
@@ -80510,7 +80117,6 @@ jswn9945.xyz, 1
jsx.jp, 1
jsxc.ch, 1
jt-evolution.tk, 1
-jtafla.com, 1
jtcat.com, 1
jtconsultancy.sg, 1
jtfew.co.uk, 1
@@ -80532,6 +80138,8 @@ jtroofs.com, 1
jts3servermod.com, 1
jtsrepair.ca, 1
jttech.se, 1
+jtwo.co.za, 1
+jtxdev.my.id, 1
jtxmail.org, 1
jtxserver.xyz, 1
ju-edu.tk, 1
@@ -80565,6 +80173,7 @@ jucktehkeinen.de, 1
jucocauca.tk, 1
jucyhotel.com.au, 1
jucyhotels.com.au, 1
+juday99.net, 1
judc-ge.ch, 1
jude.eu.org, 1
judex.nl, 1
@@ -80594,6 +80203,7 @@ judoprodeti.cz, 1
judosaintdenis.fr, 1
judybai.me, 1
judykatura.pl, 1
+judyrodman.com, 1
juegos-play.com, 1
juegosycodigos.mx, 1
juejin.com, 1
@@ -80606,6 +80216,7 @@ juergenspecht.de, 1
juergmeier.ch, 1
jufem.tk, 1
juffalow.com, 1
+juffrouwtoertjes.be, 1
jugendfrei.com, 1
jugendhackt.de, 1
jugendhackt.org, 1
@@ -80646,6 +80257,7 @@ julia-jones.org, 1
julia-recipes.com, 1
julia-spriggs.fr, 1
julia.school, 1
+julia0815.de, 1
juliafagel.com, 1
juliahub.com, 1
juliajuice.net, 1
@@ -80666,7 +80278,6 @@ julianickel.de, 1
juliankraemer.de, 1
julianmathis.de, 1
julianmeyer.de, 1
-julianmontague.io, 1
julianozucare.tk, 1
juliansimioni.com, 1
julianskitchen.ch, 0
@@ -80675,6 +80286,7 @@ julianwallmeroth.de, 1
julianweigle.de, 1
julianxhokaxhiu.com, 1
juliaoantiguidades.com.br, 1
+juliard.club, 1
julias.zone, 1
juliasugar.net, 1
juliawebber.co.za, 1
@@ -80682,7 +80294,6 @@ juliazeengardendesign.co.uk, 1
julibear.com, 1
julie-and-stevens-wedding.com, 1
julie-pr.blog, 1
-julie-pr.ru, 1
juliedecubber.com, 1
juliekoubova.com, 1
juliekoubova.cz, 1
@@ -80722,6 +80333,7 @@ jultube.de, 1
jumardotaekwondo.tk, 1
jumbo-air.de, 1
jumbo.ae, 1
+jumbo33.org, 1
jumbopan.net, 1
jumbopeters.tk, 1
jumbster.com, 0
@@ -80759,7 +80371,6 @@ jumprun.com, 1
jumpseller.cl, 1
jumpseller.com, 1
jumpstartii.com, 1
-jumpstartuat.co.za, 1
jun-e-jay.com, 1
jun.ax, 1
junco.nl, 1
@@ -80802,14 +80413,12 @@ juniornasim.cf, 1
juniorsambo.tk, 1
juniorsbook.com, 1
juniorsplanet.in, 1
-junipervalley.com, 1
junis.nl, 1
junix.systems, 1
junjie.pro, 1
junjun-web.net, 0
junkcarbin.com, 1
junkcarboys.ca, 1
-junkcarremovalbrampton.ca, 1
junkdrome.org, 0
junkersparadise.tk, 1
junkfoodcafe.com, 1
@@ -80899,7 +80508,6 @@ justanothercompany.name, 1
justanotherday.tk, 1
justasdelish.com, 1
justbid.nl, 1
-justboom.co, 1
justbraces.com.sg, 1
justbydesign.com, 1
justcall.io, 1
@@ -80921,7 +80529,6 @@ justformen.org, 1
justfornurseries.co.uk, 1
justforschools.co.uk, 1
justforsunn.com, 1
-justforyou.space, 1
justfresh.com, 1
justfuckingdoit.nl, 1
justfunerals.co.nz, 1
@@ -81091,15 +80698,14 @@ k-scr.me, 1
k-so.de, 1
k-system.de, 1
k-will.tk, 1
+k.hk.cn, 1
k.sh, 1
k.sk, 1
k.tt, 1
k1024.org, 1
-k123123.com, 1
k1chn.com, 0
k2.works, 1
k21academy.com, 1
-k234234.com, 1
k24klik.com, 1
k258059.net, 1
k29.ee, 1
@@ -81155,9 +80761,6 @@ k88172.com, 1
k88256.com, 1
k88257.com, 1
k88259.com, 1
-k88312.com, 1
-k88313.com, 1
-k88327.com, 1
k886.co, 1
k88670.com, 0
k88672.com, 0
@@ -81203,6 +80806,7 @@ kabam.ai, 1
kabanabeach.fr, 1
kabardinka.ga, 1
kabardino-balkariya.ml, 1
+kabbalah-events.com, 1
kabel.cf, 1
kabel.ga, 1
kabel.gq, 1
@@ -81338,6 +80942,7 @@ kaioken.bar, 1
kaion.vn, 1
kaipel.de, 1
kairion.de, 1
+kairoscope.org, 1
kairuitan.com, 0
kais08.com, 1
kaisanord.org, 1
@@ -81561,6 +81166,7 @@ kamu.org, 1
kamui.co.uk, 1
kamumisafirhaneleri.com.tr, 1
kamuniang.org, 1
+kamyaraccount.ir, 0
kan-ken.fr, 1
kan.bi, 1
kana-mono.biz, 1
@@ -81575,6 +81181,7 @@ kanal-schaefer.de, 1
kanalbutikken.no, 1
kanali.info, 1
kanalmarysko.cz, 1
+kanalsamochodowy.pl, 1
kanapa.gq, 1
kanariesite.tk, 1
kanatsuki.tk, 1
@@ -81591,7 +81198,7 @@ kandalaksha.su, 1
kandalife.com, 1
kandelaberi.tk, 1
kanden-com-reform.com, 1
-kandianshang.com, 1
+kandianshang.com, 0
kandkforwarding.com, 1
kandr.net, 1
kandra.com.br, 1
@@ -81599,7 +81206,6 @@ kandrahechiceravudu.com, 1
kandrive.gov, 1
kanduit.live, 1
kanduit.tech, 1
-kandwliquor.com, 1
kanecastles.com, 1
kanecountyhospitalut.gov, 1
kanecountyil.gov, 1
@@ -81616,19 +81222,18 @@ kangaroosgardencentre.ca, 1
kangavar.tk, 1
kangbo.com, 1
kangdaniel.cn, 1
-kangde.com, 1
kangia.gl, 1
kangkai.me, 1
kangkang.net, 1
kangkang.org, 1
kangliortho.com, 1
kangoeroeteam.tk, 1
-kangouroo.ch, 1
kangzaber.com, 1
kanigaranurseries.com, 0
kaninchenartikel.de, 1
kanis.ag, 1
kanitha.sk, 1
+kankaimataji.com, 1
kankakeecountyclerk.gov, 1
kankerpannekoek.nl, 1
kankfn.com, 1
@@ -81636,11 +81241,11 @@ kankimaru.com, 1
kanna.cf, 1
kannabia.com, 1
kannata.ml, 1
+kannegieser.de, 1
kannegieser.net, 1
kanneldiamond.com, 1
kano.fan, 0
kano.tk, 1
-kanootours.com, 1
kanotijd.nl, 1
kanoumokuzai.co.jp, 1
kanpian369.com, 1
@@ -81658,9 +81263,9 @@ kansasvaccine.gov, 1
kansasvoterinfo.gov, 1
kanshuluo.com, 1
kansspel.nu, 1
-kantai.com, 1
kantankye.nl, 1
kantoorboel.nl, 1
+kantoormeubilair.nl, 1
kantora-ivanova.eu, 1
kantora-plovdiv.com, 1
kantorad.io, 1
@@ -81678,7 +81283,6 @@ kanzshop.com, 1
kaodata.com, 1
kaohongshu.blog, 1
kaora.cz, 1
-kaoshi.com, 1
kaosintesta.tk, 1
kap-kirche.de, 1
kap.pe, 1
@@ -81723,6 +81327,7 @@ kara-fabian.de, 1
karaagemidori.com, 1
karabah.cf, 1
karabah.tk, 1
+karabuk78.com, 1
karabukhaber.tk, 1
karachay.tk, 1
karada.live, 1
@@ -81730,7 +81335,7 @@ karadenizhaberleri.tk, 1
karagory.cloud, 1
karajonline.tk, 1
karakafa.net, 1
-karakurt.me, 1
+karakurt.tr, 1
karaleakdetection.com.au, 1
karamanev.me, 1
karamanportal.com, 1
@@ -81781,6 +81386,7 @@ karelvanhecke.com, 1
karen-homestay.tk, 1
karencatering.com, 1
karenerdos.com.au, 1
+karenjhardwick.com, 0
karennews.org, 1
karenvien.ga, 1
karenza.design, 1
@@ -81802,7 +81408,6 @@ karinov.co.id, 1
karinwerner.com, 1
kariszoey.com, 1
karit.nz, 1
-kariyermemur.com, 1
kariyeryolu.com.tr, 1
karkkilandemarit.fi, 1
karl-klein.de, 1
@@ -81840,6 +81445,7 @@ karmelava.tk, 1
karmil.tk, 1
karneid.info, 1
karniz.ml, 1
+karo.pc.pl, 1
karoche.ga, 1
karodos.pl, 1
karol.gay, 1
@@ -81847,7 +81453,6 @@ karolak.fr, 0
karolaschinkel.de, 1
karopc.pl, 1
karorally.tk, 1
-karosello.com, 0
karoverwaltung.de, 1
karpanhellas.com, 0
karpatinfo.net, 1
@@ -81875,14 +81480,12 @@ karta-mira.com, 1
karta-paliwowa.pl, 1
kartacha.com, 1
kartalbombe.com.tr, 1
-kartalescort.net, 1
kartalvincisletmeciligi.com, 1
kartar.net, 0
kartek.com, 1
kartenplanet.ch, 1
kartikmohta.com, 1
karting-normandie.fr, 0
-kartingzone.ru, 1
kartoffel-stampfer.com, 1
kartoffel-tobi.de, 1
kartonki.tk, 1
@@ -81892,7 +81495,6 @@ kartpower.tk, 1
karudomizile.de, 1
karula.org, 0
karunasehgal.com, 1
-karupp-did.net, 1
kas.ie, 1
kasad.com, 1
kasai-wks.com, 1
@@ -82009,7 +81611,6 @@ kateryan.tk, 1
kateryantv.tk, 1
katestudio.dk, 1
katesymmans.co.nz, 1
-katewrightmba.com, 1
katex.org, 1
kateysagal.tk, 1
katfitness.co.uk, 1
@@ -82068,7 +81669,6 @@ katushka.cf, 1
katushka.ga, 1
katyl.info, 0
katyusha.net, 1
-katzei.fr, 1
katzenbrunnen-test.de, 1
katzensklave.me, 1
katzrkool.xyz, 1
@@ -82079,7 +81679,6 @@ kaufda.de, 1
kaufhausdesaffen.com, 1
kaufkraftkiel.de, 1
kaufleute-sbh.de, 1
-kaufmannkevin.com, 1
kaufmannkevin.de, 1
kaukauna.gov, 1
kaunoleliuteatras.lt, 1
@@ -82132,10 +81731,11 @@ kay.nz, 1
kayakaventura.tk, 1
kayakcastro.tk, 1
kayakpolouniversidades.tk, 1
-kayher-kirschbluetenlauf.de, 1
+kayentatownship-nsn.gov, 1
kayipkiliseler.com, 1
kayisir.com, 1
kayit.co.uk, 1
+kaylarichardson.com, 1
kayleen.net, 1
kaylielaw.com, 1
kayne.com, 1
@@ -82176,7 +81776,6 @@ kazuno-jc.or.jp, 1
kazusa.cc, 1
kazusa.uk, 1
kazvel.com, 1
-kazwolfe.io, 1
kazy111.info, 1
kb-l.de, 1
kb-psy.fr, 1
@@ -82198,7 +81797,6 @@ kb88dc12.com, 1
kb88dc16.com, 1
kb88dc26.com, 1
kb930.com, 1
-kb9988.com, 1
kba-online.de, 1
kbb-ev.de, 1
kbbouncycastlehire.co.uk, 1
@@ -82214,7 +81812,6 @@ kbizoom.com, 1
kbleventhire.co.uk, 1
kbmhawaii.com, 1
kbobath.com, 1
-kboosting.com, 1
kbsinflatablekingdom.co.uk, 1
kbst.se, 0
kbtairmont.com, 1
@@ -82223,6 +81820,7 @@ kbwcorp.com, 1
kbz.fr, 1
kc-holzfaeller.de, 1
kc-leeuwarden.tk, 1
+kc-support.dk, 1
kc3.moe, 1
kc9.com, 1
kc9.lol, 1
@@ -82275,6 +81873,7 @@ kdoslavi.cz, 1
kdproduction.cz, 1
kdramaholic.com, 1
kdrive.tk, 1
+kdt-lille.com, 1
kduggan.net, 1
kdw.cloud, 1
kdyby.org, 0
@@ -82287,7 +81886,6 @@ keaipublishing.com, 1
keane.space, 1
keaneokelley.com, 1
keaneyinsurance.ie, 1
-kearney.io, 1
kearneycountyne.gov, 1
kearneyhub.com, 1
kearnyaz.gov, 1
@@ -82299,14 +81897,12 @@ kebab.bg, 1
kebabbesteld.nl, 1
kebabbruce.com, 0
kebabsanfior.it, 1
-kebiao.com, 1
kebo.xyz, 1
keca.ca, 1
kech-immobilier.com, 1
kecht.at, 1
keckmedicine.org, 1
kecrily.me, 1
-kedao.com, 1
kedero.com, 1
kedhtm.us.kg, 1
kedi.tk, 1
@@ -82327,7 +81923,6 @@ keeforcecloud.com, 1
keekee.tk, 1
keekmix.nl, 1
keelandlong.com, 1
-keeleandfinchdentaloffice.com, 1
keelerelectric.net, 1
keeley.net, 1
keeleysam.com, 1
@@ -82356,7 +81951,6 @@ keepitsecure24.com, 1
keepitsimplebitcoin.com, 1
keepleft.gr, 1
keepsight.org.au, 1
-keepsmyrnabeautiful.com, 1
keepsolid.com, 1
keesmartens.tk, 1
keesslop.nl, 1
@@ -82456,7 +82050,6 @@ kelleymcchesney.us, 1
kellimacconnell.com, 1
kellyandantony.com, 1
kellyandryan.com, 1
-kellygrenard.com, 1
kellymorvant.com, 1
kellyosbourne.tk, 1
kellyskastles.co.uk, 1
@@ -82509,7 +82102,6 @@ kemsamnhatban.ga, 1
kemsamnhatban.gq, 1
kemsamnhatban.ml, 1
kemsamnhatban.tk, 1
-kemsia.nl, 1
ken-electric.com.br, 1
ken.fm, 1
kenbillionsyuan.tk, 1
@@ -82523,8 +82115,6 @@ kendallvillein.gov, 1
kendermore.it, 1
kendernet.com, 1
kendev.com, 1
-kendier.com, 1
-kendigawards.com, 1
kendle.tk, 1
kendo-ueda.com, 1
kendrick.tk, 1
@@ -82539,6 +82129,7 @@ kenhhomestay.com, 1
kenhv.com, 1
keniasfamilychildcare.com, 1
keniff.gq, 1
+kenkobox.jp, 1
kenlewis.com, 1
kennards.co.nz, 1
kennebec.gov, 1
@@ -82555,7 +82146,6 @@ kennis.ga, 1
kennisknooppuntparticipatie.nl, 1
kennisnetwerkparkeren.nl, 1
kennispleinzingeving.nl, 1
-kennt.com, 1
kenny-peck.com, 1
kenny.technology, 1
kennychan.xyz, 1
@@ -82604,6 +82194,7 @@ keos.tk, 1
kep-sbt.hu, 1
kepak.tk, 1
kepkonyvtar.hu, 1
+kepleruniklinikum.at, 1
kepoper.com, 1
keppler.tk, 1
kepsbt.hu, 1
@@ -82651,7 +82242,6 @@ kerrybluephotography.com, 1
kerrydavisguitars.tk, 1
kerrygoldusa.com, 1
kersmexico.com, 1
-kerstboomkantenklaar.nl, 1
kerstpagina.tk, 1
kersvers.agency, 1
kertis.tk, 1
@@ -82675,6 +82265,7 @@ kesifasya.com, 1
kesinidulu.com, 1
keskikorpimotorsport.fi, 1
keskkonnaamet.ee, 0
+kesko.fi, 0
keskraamatukogu.ee, 1
kessa.com, 1
kessel-runners.com, 1
@@ -82682,6 +82273,7 @@ kesselrun.goip.de, 1
kesslerandsons.com, 1
kesspay.io, 1
kesteren.org, 1
+kestrelconnect.co.uk, 1
kesyr.pl, 1
ketaketab.ir, 1
ketamine.co.uk, 1
@@ -82806,14 +82398,15 @@ keyroot.tech, 1
keys.fedoraproject.org, 1
keyscore.me, 1
keyserver.sexy, 0
+keysigma.co.uk, 1
keysix.com, 1
keysmedspa.com, 1
keysofart.com, 1
keysso.net, 1
-keystoimagination.com, 1
keystone-europe.com, 1
keystoneco.gov, 1
keystore.eu.org, 1
+keyth.com, 1
keytoenergy.com, 1
keytomylime.com, 1
keytomyq.com, 1
@@ -82851,9 +82444,9 @@ kfz-premiumteile24.de, 1
kfz-sachverstand.de, 1
kfz-service-wachtmann.de, 1
kfz.nl, 1
-kfzgutachterbayern.de, 1
kfzjeugd.nl, 1
kg-regenbogen.de, 1
+kg6wxc.net, 1
kg7.pl, 1
kgb.com, 1
kgd.digital, 1
@@ -82865,7 +82458,6 @@ kgmediafactory.com, 0
kgnk.ru, 0
kgt10.ru, 1
kgun9.com, 1
-kgunion.com, 1
kgv-zappendorf.tk, 1
kgwpa.or.jp, 1
kh-vigyazzkeszpenz.hu, 1
@@ -82904,7 +82496,6 @@ kharkov.tk, 1
khas.co.uk, 1
khatapana.com, 1
khatnip.net, 1
-khawkins.info, 1
khayal-3d.com, 1
khda.gov.ae, 1
khdestiny.tk, 1
@@ -82926,7 +82517,6 @@ khmerios.tk, 1
khmerlive.cf, 1
khmissajewels.com, 1
khoasweb.tk, 1
-khobor.ca, 1
khodrobaraneshiraz.com, 1
khodromedic.com, 1
khonaka.com, 1
@@ -82937,7 +82527,6 @@ khouloud.de, 1
khoury-dulla.ch, 0
khouryalexandre.com, 0
khoxuongchothuegiare.vn, 1
-khr.io, 1
khramtsov.org, 1
khs1994.com, 1
khslaw.com, 1
@@ -83105,6 +82694,7 @@ kiinanharjakoirat.tk, 1
kiind.com.au, 1
kiiteyo.net, 1
kijkmeaanwanneerik.com, 1
+kik-computer.de, 1
kik-info.com, 1
kik-textilien.sk, 1
kik.at, 1
@@ -83165,7 +82755,6 @@ kilobyte22.de, 1
kilogram.nl, 1
kilomberosugar.co.tz, 1
kilometertje.nl, 1
-kilometresforkids.org.au, 1
kiloton.tk, 1
kilpiapp.com, 1
kilte.tk, 1
@@ -83202,8 +82791,6 @@ kimmel.in, 0
kimmerheide.de, 1
kimmientje.tk, 1
kimochi.info, 1
-kimono-furuya.com, 1
-kimono-yamaguchiya.com, 1
kimonocloud.com, 1
kimonoplatform.com, 1
kimoo.co, 1
@@ -83255,7 +82842,6 @@ kinanbudotenero.tk, 1
kinandcarta.com, 1
kinandleisure.com, 1
kinautas.com, 1
-kincai.de, 1
kindan.net, 1
kindapoth.com, 1
kinde.com, 1
@@ -83275,13 +82861,14 @@ kinderhilfe-nepal-mitterfels.de, 1
kinderjugendfreizeitverein.de, 1
kinderkleding.news, 1
kinderkrebsforschung.at, 1
+kinderlachen.ro, 1
kinderland.bg, 1
kindermarket.bg, 1
kindernothilfe.de, 1
-kinderopvang.gent, 1
kinderopvangthuis.nl, 1
kinderosteopathie-osteopathie.de, 1
kinderpneumologie.ch, 1
+kindersoldaten.com, 1
kindertagespflege-rasselbande-halle.de, 1
kinderzorg.tk, 1
kindesfreude.ch, 1
@@ -83326,6 +82913,7 @@ kingautodetailing.id, 1
kingbot.tk, 1
kingchess.vip, 1
kingcourriel.fr, 1
+kingcute.com, 1
kingdombuilderschurch.org, 1
kingdomcitymo.gov, 1
kingdomcrawlers.tk, 1
@@ -83335,7 +82923,6 @@ kingfast.cc, 1
kingfast.eu.org, 1
kingfin.com, 1
kingfisherhallacademy.org.uk, 1
-kinghope.com, 1
kingiescastles.co.uk, 1
kingjamesbibleonline.org, 1
kingkongxo.com, 1
@@ -83348,8 +82935,10 @@ kingofthecastlesentertainments.co.uk, 1
kingofthecastlesouthwales.co.uk, 1
kingofthecastlesrhyl.co.uk, 1
kingpay.com, 1
+kingpie.co.za, 1
kingpin.pro, 1
kingpincages.com, 1
+kingroot.com, 1
kings-potong.com, 1
kings-world.net, 1
kingsaft.net, 1
@@ -83375,6 +82964,7 @@ kingsvetcentre.com, 1
kingsvilletexas.com, 1
kingswinehaus.com, 1
kingtech8.tk, 1
+kingtreasures.com, 1
kingtreeexperts.com, 1
kingyo-bowl.com, 1
kinherit.co.uk, 1
@@ -83388,6 +82978,7 @@ kinksecrets.ga, 1
kinky-books.com, 1
kinkyinlaws.com, 1
kinkyspa.com, 1
+kinkywood.com, 1
kinlakestars.com, 1
kinnerfisch.cn, 1
kinnettmemorial.org, 1
@@ -83398,12 +82989,12 @@ kino-dom.tk, 1
kino-doma.tk, 1
kino-room.ga, 1
kino-zavr.tk, 1
+kinoapollo.pl, 0
kinobag.tk, 1
kinobarashka.ga, 1
kinoblik.tk, 1
kinocheck.com, 1
kinocheck.de, 1
-kinodrom.kiev.ua, 1
kinodrom.tk, 1
kinofest.tk, 1
kinofile.tk, 1
@@ -83422,7 +83013,6 @@ kinomangas.tk, 1
kinomaniac.tk, 1
kinomoto.ovh, 0
kinoplex.com.br, 1
-kinoprostor.tv, 1
kinos.nl, 0
kinoscope.tk, 1
kinoserver.ml, 1
@@ -83455,7 +83045,6 @@ kiomoda.com, 1
kionetworks.es, 1
kiosbank.id, 1
kiosk.ac, 1
-kioskcomedy.org, 1
kioske.de, 1
kiosque-famille.net, 1
kiot.eu, 1
@@ -83531,6 +83120,8 @@ kirstenbos.ca, 1
kirstengillibrand.com, 1
kirstycouture.co.uk, 1
kirstygreenwoodartist.ga, 1
+kirtlandforcesupport.us, 1
+kirtlandfss.tv, 1
kirwandigital.com, 1
kisakazan.ml, 1
kisallatorvos.hu, 1
@@ -83581,6 +83172,7 @@ kitarino.net, 1
kitas-in-flensburg.de, 1
kitchen-design.cf, 1
kitchen-design.tk, 1
+kitchenconverse.com, 1
kitchendraw.com, 1
kitchenkettle.com, 1
kitchenlove.tk, 1
@@ -83640,6 +83232,7 @@ kitty-core.org, 1
kitty.garden, 1
kittyblair.org, 1
kittybp2.com, 1
+kittyclub.cc, 1
kittygalore.nl, 1
kittyhacker101.tk, 0
kittyknickers.com.au, 1
@@ -83662,7 +83255,6 @@ kiwibird.tokyo, 1
kiwideo.ro, 1
kiwiflowershop.com.ua, 1
kiwikiwi.se, 1
-kiwilove.es, 1
kiwing.ddns.net, 1
kiwipedia.sk, 1
kiwiplace.com, 0
@@ -83678,7 +83270,6 @@ kizzycode.de, 1
kj-cleaning.co.uk, 1
kj-kaminski.pl, 1
kj1396.net, 1
-kjaer.io, 1
kjall.me, 1
kjarafelag.is, 1
kjarni.cc, 1
@@ -83719,7 +83310,6 @@ kkgn.nl, 1
kki.org, 1
kkiskra.tk, 1
kkk0011.com, 0
-kkk101.com, 0
kkk102.com, 0
kkk104.com, 0
kkk106.com, 0
@@ -83742,7 +83332,6 @@ kkren.me, 0
kks.ch, 1
kksg-sulzbach.de, 1
kksg.com, 0
-kkvhirhu.info, 1
kkws.co, 1
kkychristianblog.com, 1
kkyy.me, 1
@@ -83822,7 +83411,6 @@ kleinhaneveld.tk, 1
kleinhapl.com, 1
kleinhelena.dynv6.net, 1
kleinhuis-dachterrasse.de, 1
-kleinhuis-historischer-gasthof.de, 1
kleinmechaniek.nl, 1
kleinreich.de, 1
kleins-hutorok.de, 1
@@ -83867,7 +83455,6 @@ klima.com, 1
klimaanlage-fehler.net, 1
klimaatadaptatienederland.nl, 1
klimaatkids.be, 1
-klimaatstad.gent, 1
klimacamp-sterkraderwald.de, 1
klimafakten.de, 1
klimakomplekt.com, 1
@@ -83969,7 +83556,6 @@ kmch.com, 1
kmdarkmaster.tk, 1
kmdevelop.com, 1
kmecnc.com, 1
-kmeditour.net, 1
kmhesaplama.com, 1
kmk.hu, 1
kmk.poznan.pl, 1
@@ -84004,6 +83590,8 @@ knapp.pro, 1
knapp.servehttp.com, 1
knarcraft.net, 1
knarkkorven.tk, 1
+knarred.co.uk, 1
+knashaug.com, 1
knauf.com, 1
knautiluz.net, 0
knbbw-frnab.tk, 1
@@ -84033,7 +83621,6 @@ knight.blue, 1
knightcrier.org, 1
knightsblog.de, 1
knightsbridge.net, 1
-knightsbridgewine.com, 1
knightsfs.ie, 1
knightsweep.com, 0
knightway.ca, 1
@@ -84144,6 +83731,7 @@ kobalux.com, 1
kobayashi-zeimukaikei.jp, 1
kobb.tk, 1
kobe-shimasui.jp, 1
+kobejet.com, 1
koberl.com, 1
kobes.ca, 1
kobet.tk, 1
@@ -84271,7 +83859,6 @@ koje-und-meer.de, 1
koji-tsujitani.net, 1
kojiishikawa.com, 1
kojipkgs.fedoraproject.org, 1
-kokankart.com, 1
koketteriet.se, 0
kokk.loan, 1
koko.news, 1
@@ -84320,6 +83907,7 @@ kollandsrud.tk, 1
kollawat.me, 1
kollega.it, 1
kollegamenti.it, 1
+kollegier.com, 1
kollekt.be, 1
kollner.com, 1
kolmann.at, 1
@@ -84447,7 +84035,6 @@ konetsu.tk, 1
konf.ga, 1
konfekcjonowanie.com, 1
konference.tech, 1
-konfhub.com, 1
konfiskator.online, 1
konflikthaus.de, 1
konfliktklaerer.de, 1
@@ -84455,6 +84042,7 @@ konfrontation.tk, 1
konfuzius-institut-ruhr.de, 1
kong.ink, 1
kongar.org, 1
+kongedugnad.no, 1
kongjie.cf, 1
kongjie.ml, 1
kongpay.com.br, 1
@@ -84473,7 +84061,6 @@ konkanitv.ga, 1
konkanlng.in, 1
konkasidiaris.com, 1
konkurs.ba, 1
-konnai.jp, 1
konnektiv.de, 1
konnektvpn.com, 1
konnex-it.de, 1
@@ -84509,7 +84096,6 @@ kontabilitet.tk, 1
kontaxis.org, 1
kontenido.net, 1
kontent.ai, 1
-kontichu.info, 1
kontikifinance.com, 0
kontikiindustries.tk, 1
kontikimedia.com, 1
@@ -84522,7 +84108,6 @@ kontrapolis.info, 1
kontrastonline.tk, 1
kontrol40.com, 1
kontrolapovinnosti.cz, 1
-kontrolfourzero.com, 1
kontur.tk, 1
konturalco.ru, 1
konus.tk, 1
@@ -84555,9 +84140,11 @@ koolitee.ee, 1
kooliveeb.ee, 1
koolkool.tk, 1
koolrevoeht.com, 1
+koomaldreaming.com.au, 1
kooner.io, 1
+koop.systems, 1
+koopdomeinnaam.nl, 1
koophost.nl, 1
-kooplokaal.gent, 1
koopmansamenwerking.nl, 1
koopraoulu.ddns.net, 1
koora-lives.tv, 1
@@ -84565,6 +84152,7 @@ kooranaps.wa.edu.au, 1
kooratalk.ga, 1
koot.nl, 1
kootenaycoopradio.com, 1
+koots.org, 1
koowde.nl, 1
kooxdiving.com, 1
koozal.de, 1
@@ -84646,7 +84234,6 @@ korofilms.com, 1
koroleva.ml, 1
korolevstvo-movie.ml, 1
koroli.tk, 1
-korona-m.bg, 1
korona-m.eu, 1
korona-serial.net, 1
koroshkabir.tk, 1
@@ -84662,7 +84249,6 @@ kortarsmagyarfesto.tk, 1
kortgebyr.dk, 1
korund.tk, 1
kos4all.com, 1
-kos9078.com, 1
kosaki.moe, 1
koscielniak-nieruchomosci.pl, 1
kose.edu.ee, 1
@@ -84690,6 +84276,7 @@ kosmoprolet.tk, 1
kosmosfestival.tk, 1
kosmosol.it, 1
kosmosradio.tk, 1
+koso.me, 1
kosovitolinks.tk, 1
kosovo.gq, 1
kost-magazin.de, 1
@@ -84723,7 +84310,6 @@ kotakoo.id, 1
kotaku.com, 1
kotapay.com, 1
kotaraanglican.org.au, 1
-kotatgent.be, 1
kotelsales.ru, 0
kother.org, 1
kotilinkki.fi, 1
@@ -84765,7 +84351,6 @@ kouyanoyojinbo.com, 1
kov.space, 1
kovachica.tk, 1
kovacia.com, 1
-koval.io, 1
kovaldo.ru, 1
kovnsk.net, 1
kovrik-tm.com.ua, 1
@@ -84784,6 +84369,7 @@ koyariz.com.tr, 1
koyo.kr, 1
koyou-nara.com, 1
koyso.com, 1
+koyso.to, 1
kozackibazar.pl, 1
kozak.cloud, 1
kozakmateusz.ovh, 1
@@ -84797,7 +84383,6 @@ kozgi.com, 1
kozhzamenitely.tk, 1
koziknet.com, 1
kozitsyn.name, 1
-kozlekedes.info, 1
kozlov.cf, 1
kozmetikatrend.hu, 1
kozmetikus.tk, 1
@@ -84838,6 +84423,7 @@ kr-labs.com.ua, 1
kr.cm, 1
kr.search.yahoo.com, 0
kr0n.dk, 1
+kr1shna4garwal.com, 1
kra.ee, 0
kra2laiz.eu, 1
kraakgeluiden.tk, 1
@@ -84858,7 +84444,6 @@ kraftek.cf, 1
kraftfahrtversicherungen24.de, 1
kraftmaid.com, 1
kraftochbalans.se, 1
-kraftprefab.se, 1
kraftway.ru, 1
kraftzeiten.de, 1
krag.be, 1
@@ -84898,7 +84483,6 @@ krappekant.nl, 1
kras-it.frl, 1
krasa.at, 1
krasa.au, 1
-krasa.com.au, 1
krasa.tk, 1
krasavchik.by, 1
kraski.tk, 1
@@ -84943,7 +84527,6 @@ kreativoweb.tk, 1
kreativstrecke.de, 1
kreatura.tk, 1
kreatywni.co, 1
-kredensial.my.id, 1
kredi-hesaplama.com, 1
kredibanka.net, 1
kredigram.com, 1
@@ -84994,9 +84577,9 @@ kreuzwortraetsellosungen.com, 1
kreweofneptune.org, 1
krey.is, 1
krezimizik.com, 1
-krfoodsng.com, 1
kridtvejsplanter.dk, 1
kriechel.de, 1
+krieg-it.de, 1
kriegserinnerungen.tk, 1
kriegskindernothilfe.de, 1
kriener.photography, 1
@@ -85070,7 +84653,6 @@ kriyayoga.mx, 1
krizek.wien, 1
krizevci.info, 1
krizialim.tk, 1
-krizovkarik.sk, 1
krk-gaming.de, 1
krmela.com, 1
krmeni.cz, 0
@@ -85085,7 +84667,6 @@ krogi5.com, 1
kroglice.si, 1
krok.gq, 1
krokedil.se, 1
-kroketlego.nl, 1
kroldata.com, 1
kroliczki.tk, 1
kroll.tk, 1
@@ -85098,7 +84679,6 @@ kromozottrud.hu, 1
kroms.org, 1
krona.ddns.net, 1
kronanshopping.se, 1
-kroneaustralia.com.au, 1
kronengruppe.de, 1
kronofogden.se, 1
kronosnxs.com, 1
@@ -85187,7 +84767,6 @@ kryshodel.ml, 1
krystal-framework.ml, 1
krytykawszystkiego.com, 1
krytykawszystkiego.pl, 1
-kryx.de, 1
krzeslaonline.pl, 1
krzysiamrozinska.pl, 1
krzysztofzaleski.com, 1
@@ -85233,7 +84812,6 @@ ks3888.com, 1
ks5000.com, 0
ks515.com, 1
ks516.com, 1
-ks549.com, 1
ks5528.com, 1
ks5531.com, 0
ks5532.com, 1
@@ -85269,7 +84847,6 @@ ks8278.com, 1
ks8805.com, 1
ks8831.com, 0
ks8836.com, 1
-ks8883.com, 0
ks8915.com, 1
ks9.app, 1
ks9122.com, 1
@@ -85278,7 +84855,6 @@ ks960.com, 1
ks9696.com, 1
ks99.app, 1
ksa-lawfirm.com, 1
-ksa-shikh.com, 1
ksa-uk.net, 1
ksabconline.gov, 1
ksamaps.com, 1
@@ -85313,6 +84889,7 @@ kshpage.in, 1
kshub.gov, 1
ksiegarniabk.pl, 1
ksiegowosc.pro, 1
+ksiga.org, 1
ksk-raduga.tk, 1
ksleg.gov, 1
kslegislature.gov, 1
@@ -85371,7 +84948,6 @@ ktw.lv, 0
ku-7.club, 1
ku-hksbr.de, 1
ku-niederwinkling.de, 1
-ku.ag, 1
ku6.bid, 1
kua.com, 1
kuaforumden.com, 0
@@ -85406,12 +84982,10 @@ kubit.co, 1
kubit.us, 1
kublis.ch, 1
kubmeta.com, 1
-kubo.pw, 1
kubopro.com, 1
kubopro.cyou, 1
kubota.ca, 1
kubota.co.nz, 1
-kubota.com.au, 0
kubotapower.com.au, 1
kubrakov.ml, 1
kubrick.tk, 1
@@ -85440,14 +85014,12 @@ kuemmling.eu, 1
kuenstler-website.de, 1
kuepper.tk, 1
kuerbis.org, 1
-kueri.tech, 1
kuestensiegel.de, 1
kufry.cz, 1
kuhajvaskupaj.si, 1
kuhakukawa.ml, 1
kuhio.net, 1
kuhlecloud.co.za, 1
-kuhn-elektrotechnik.de, 1
kuhnerts.eu, 1
kuinin.tk, 1
kuitunenguthrie.tk, 1
@@ -85577,6 +85149,7 @@ kuralink.se, 1
kuralreklam.com, 1
kurani.tk, 1
kuraraynoritake.eu, 1
+kuraraynoritake.jp, 1
kurashino-mall.com, 1
kuratan.com, 1
kurd-yogurt.tk, 1
@@ -85598,7 +85171,6 @@ kurmanchalbank.com, 1
kurnia.tk, 1
kurniadwin.to, 1
kuroedov.com, 1
-kuroha.co.uk, 1
kuroinu.jp, 1
kuroit.com, 0
kurona.ga, 1
@@ -85631,7 +85203,6 @@ kurtlarvadisi-pusu-1.tk, 1
kurtneuweiler.com, 1
kurtosys.com, 1
kurtschlatzer.com, 1
-kurtschleinbeck.com, 1
kurungkurawal.id, 1
kuruppa.xyz, 1
kurvysf.com, 1
@@ -85842,6 +85413,7 @@ kyoto-tomoshibi.jp, 1
kyp.ai, 1
kyrabanx.org, 1
kyrainvestments.com, 1
+kyranis.net, 1
kyrgizion.tk, 1
kyriakidisship.gr, 1
kyrjy.com, 1
@@ -85872,8 +85444,10 @@ l-lab.org, 1
l-os.com, 1
l-poya.ch, 1
l-u-c-a.de, 1
+l.nf, 1
l.td, 1
l.tt, 1
+l.wtf, 1
l041s.fr, 1
l0ke.com, 1
l0re.com, 1
@@ -85978,7 +85552,6 @@ labmakelaar.com, 1
labmakelaar.eu, 1
labmanager-lis.com, 1
labms.com.au, 1
-labodeguitamigueltorres.cl, 1
labogue.info, 1
laboiteafred.fr, 1
laboiteanem.fr, 1
@@ -86001,6 +85574,7 @@ labortogether.com, 1
labostech.com, 1
labottegafinedistillates.it, 1
labouncycastlehire.co.uk, 1
+labour.org.nz, 1
labourmarketinsights.gov.au, 1
laboutiquedeluminia.fr, 1
laboutiquemarocaineduconvoyeur.com, 1
@@ -86024,6 +85598,7 @@ labwebplus.com, 1
labworking.lt, 1
labworks.org, 1
laby.link, 1
+labyrinth.li, 1
labyrinthinetool.de, 1
labyrinthus.tk, 1
lacabriere.com, 1
@@ -86061,6 +85636,7 @@ lacicloud.net, 1
lacienciadelpanico.tk, 1
lacity.gov, 1
lackan.tk, 1
+lacker-baugutachten.de, 1
lackfer.tk, 1
lackierereischmitt.de, 1
lackinflaveis.com.br, 1
@@ -86068,6 +85644,7 @@ lacledelareussite.com, 0
lacledeslan.com, 1
lacledeslan.org, 1
laclefdigitale.fr, 1
+laclub.org, 1
lacnesidlo.sk, 1
lacoast.gov, 1
lacoccinelle.net, 1
@@ -86190,6 +85767,7 @@ laetitia-hypnocoach.fr, 0
laetitude.com, 1
laettnercamps.com, 1
laeva.edu.ee, 1
+laextra.mx, 0
lafansite.tk, 1
lafantasticatravel.com, 1
lafattoriabiologica.com, 1
@@ -86235,8 +85813,8 @@ lagaleria-ag.com, 1
lagalerieduchanvre.fr, 0
lagalerievirtuelle.com, 1
lagar2000.pt, 1
-lagavach.com, 1
-lagence.ch, 0
+lagardere-tr.it, 1
+lagence.ch, 1
lagencerie.fr, 1
lagerauftrag.info, 0
laget.com.ua, 1
@@ -86321,6 +85899,7 @@ lakearthurnm.gov, 1
lakecity-obgyn.com, 1
lakeclerkfl.gov, 1
lakecookexteriors.com, 1
+lakecountryhouse.co.uk, 1
lakecountyclerkfl.gov, 1
lakecountyco.gov, 1
lakecountytn.gov, 1
@@ -86389,6 +85968,7 @@ lalegroup.com.tr, 1
lalelal.me, 1
lalenteja.net, 1
lalettrepatriote.com, 0
+lalimentari.com, 1
lalin.gal, 1
lalokura.tk, 1
lalouviere.fr, 1
@@ -86412,7 +85992,6 @@ lamarieealhonneur.com, 0
lamarieebridalsalon.com, 1
lamartine.cloud, 1
lamasacre.tk, 1
-lamaskill.com, 1
lamaturitadidaniele.ml, 1
lambadarioslaw.gr, 1
lambassadors.com, 1
@@ -86432,7 +86011,6 @@ lambourn.info, 1
lambtonconveyor.com, 1
lamchannang.com, 1
lamclam.site, 1
-lamcondaugia-khacdaugia.com, 1
lamdav.com, 1
lameco.com, 1
lamecrap.com, 1
@@ -86547,6 +86125,7 @@ landica.net, 1
landinfo.no, 1
landingi.com, 1
landingtransport.com, 1
+landisit.com, 1
landkind.com, 1
landkreis-augsburg.de, 1
landless-city.net, 1
@@ -86583,6 +86162,9 @@ landsforsale.co.il, 1
landslide.tk, 1
landtechnik-volk.de, 1
landtrack.com.au, 1
+landvaart.com, 1
+landvaart.eu, 1
+landvaart.nl, 1
landverliebt.de, 1
landware.cf, 1
landwellsystem.com, 1
@@ -86750,8 +86332,6 @@ laprensadelasagradafamilia.org, 1
laprophan.com, 1
lapseofsanity.net, 1
lapshore.com, 1
-laptop-dokter.be, 1
-laptopgiasi.vn, 1
laptopnaive.com, 1
laptopnewbie.eu.org, 1
laptopuri.tk, 1
@@ -86899,7 +86479,6 @@ lasittellecosmetiques.com, 1
lasix-medication.cf, 1
lasix-medication.gq, 1
lasix-medication.tk, 1
-lask.in, 1
laslilas.tk, 1
laslo-hauschild.eu, 1
lasmallbizonline.gov, 1
@@ -86961,6 +86540,7 @@ lasvegas.com.br, 1
lasvegas.fr, 1
lasvegas.it, 1
lasvegascombatacademy.com, 1
+lasvegasfit.org, 1
lasvegashotels.nl, 1
lasvegasnevada.gov, 1
laszlo.sh, 1
@@ -87010,7 +86590,6 @@ latestpornvideos.com, 1
latestsonglyrics.ml, 1
latetrain.cn, 1
latexmattress.com, 1
-lathamlabs.com, 1
lathamlabs.net, 1
lathamlabs.org, 1
lathamwatkinsplatform.com, 1
@@ -87111,11 +86690,10 @@ laurenlobue.com, 1
laurensfoundation.org, 1
laurenslatest.com, 1
laurensvanderblom.nl, 1
-laurentcar.ro, 1
laurentfinance.com, 1
laurentianlanes.com, 1
lauresta.lt, 1
-lauretta.io, 1
+lauretta.io, 0
lauriane-garcia.avocat.fr, 1
lauriemo.gov, 1
laurieshieldsdesign.com, 1
@@ -87247,7 +86825,6 @@ lawsoner.tk, 1
lawsuit.tk, 1
lawsuitconsultanters.ga, 1
lawsuitconsultantest.ga, 1
-lawtests.ir, 1
lawtimesnews.com, 1
lawtrend.in, 1
lawvize.com, 1
@@ -87256,7 +86833,6 @@ lawyer-nemoto-office.com, 1
lawyer.cf, 1
lawyerboksburg.co.za, 1
lawyerdigital.co.bw, 1
-lawyerfashion.uk, 1
lawyergrills.com, 1
lawyermidrand.co.za, 1
lawyerscredentialsers.ga, 1
@@ -87323,8 +86899,6 @@ lbayer.com, 1
lbbw-markets.de, 1
lbc-podcast.tk, 1
lbc.gr, 1
-lbda.net, 1
-lbestateplanning.com, 1
lbi-pg.fr, 1
lbiarchpro-imagery.at, 1
lbio.nl, 1
@@ -87359,7 +86933,6 @@ lc6603.com, 1
lc6607.com, 0
lc6632.com, 1
lc6656.com, 1
-lc6659.com, 1
lc6665.com, 1
lc6686.com, 1
lc7.fun, 1
@@ -87382,13 +86955,7 @@ lc863.com, 1
lc871.com, 0
lc873.com, 0
lc875.com, 0
-lc8812.com, 1
-lc8820.com, 0
-lc8839.com, 1
lc8841.com, 1
-lc8881.com, 0
-lc8885.com, 0
-lc8887.com, 0
lc897.com, 1
lc8c.com, 1
lc8guidance.com, 1
@@ -87467,7 +87034,7 @@ lda-design.co.uk, 1
ldcraft.pw, 1
lddr.io, 1
ldesignweb.com, 1
-ldfebui.org, 1
+ldfebui.org, 0
ldiesel.ca, 1
ldlorangecountylocksmith.com, 1
ldm-systems.ru, 1
@@ -87507,6 +87074,7 @@ le-vario.net, 1
le0n.ddns.net, 1
le0yn.ml, 1
le130rb.com, 1
+le13emeart.com, 1
le20dinant.be, 1
le42mars.fr, 1
lea.pet, 1
@@ -87521,13 +87089,11 @@ leaderfreight.tk, 1
leaderinnetflow.com, 1
leaderoftheresistance.com, 0
leaderoftheresistance.net, 0
-leaders.jo, 1
leadersaudit.ga, 1
leadership-insight.nz, 1
leadershipconnect.io, 1
leadgenie.me, 1
leadinforce.com, 1
-leading.cn, 1
leadingagile.com, 1
leadiq.com, 1
leadmusic.nl, 1
@@ -87550,6 +87116,7 @@ leaf-nail.com, 1
leafandseed.co.uk, 1
leafans.tk, 0
leafbodhi.com, 1
+leafcreations.org, 1
leafext.de, 1
leafinote.com, 1
leafletdistributionmanchester.com, 1
@@ -87616,7 +87183,6 @@ learndirt.com, 1
learndoj.gov, 1
learnedhacker.com, 1
learnerdriving.com, 1
-learnex.it, 1
learnforestry.com, 1
learnhowtoplayguitar.tk, 1
learning-engineering-virtual-institute.org, 1
@@ -87635,7 +87201,6 @@ learnlux.com, 1
learnosity.com, 1
learnoutlive.com, 1
learnpedestal.com, 1
-learnpianogreece.com, 1
learnplayground.com, 1
learnsafe.com, 1
learntamil.tk, 1
@@ -87649,6 +87214,7 @@ learntube.cz, 0
learnupon.com, 1
learnwelsh.cymru, 1
learnwisego-stage.com, 1
+learnwith.cc, 1
leasecar.uk, 1
leaseit24.com, 1
leaselink.pl, 1
@@ -87731,6 +87297,7 @@ leccotoday.it, 1
lecercleguimard.fr, 1
lechateaurestaurant.com, 1
lechaudrondupertuis.ch, 1
+lecheminduchariot.com, 0
lecheng.in, 1
lecheng2.com, 1
lecheng3.com, 1
@@ -87743,7 +87310,6 @@ lechner-kuechentechnik.com, 1
lechompenchaine.fr, 1
lechrismaran.com, 1
lecken.tk, 1
-leckererezepte.ch, 1
leclaire.com.br, 1
leclercbrico.fr, 1
lecoinchocolat.com, 1
@@ -87764,7 +87330,6 @@ leda.tv, 1
ledburyvets.co.uk, 1
leddeluxe.ml, 1
leddingplasticsurgery.com, 1
-ledebergleeft.be, 1
ledecologie.com.br, 1
ledeguisement.com, 1
ledensite.com, 1
@@ -87797,6 +87362,7 @@ leebiblestudycentre.org, 1
leebladon.com, 0
leebruce.tk, 1
leech.ga, 1
+leech.io, 1
leech.tk, 1
leeclemens.net, 0
leecountyar.gov, 1
@@ -87831,6 +87397,7 @@ leerob.io, 0
leerox.co, 1
leertipp.de, 1
leeryan.tk, 1
+leesheetrockremodeling.com, 1
leeshunhing.com, 1
leesilvey.com, 0
leet2.com, 1
@@ -87890,7 +87457,6 @@ legalagenda.ga, 1
legalanchor.ga, 1
legalatlanta.com, 1
legalatlantic.ga, 1
-legalband.club, 1
legalbeagle.com.hk, 1
legalbeagles.info, 1
legalbeast.ga, 1
@@ -87930,6 +87496,7 @@ legalintergrity.ga, 1
legalis.pl, 1
legalisierung.tk, 1
legalit.es, 1
+legality.site, 1
legaliz.ml, 1
legalizeit.tk, 1
legaljewel.ga, 1
@@ -88006,7 +87573,6 @@ legginsypolskie.pl, 1
leggyeggy.ga, 1
legible.es, 1
legilimens.de, 1
-legiofte.com, 1
legioiedifrancy.com, 1
legion.ge, 1
legioniv.org, 1
@@ -88158,12 +87724,12 @@ lemonbrain.ch, 1
lemoncloud.eu.org, 1
lemoniax.com, 0
lemonpic.ga, 1
-lemonrfx.com, 1
lemonrotools.com, 1
lemonsociety.cf, 1
lemonsoftware.eu.org, 1
lemontownshippa.gov, 1
lemonwater.tk, 1
+lemp.sh, 1
lemr.fr, 1
lemvig.nu, 1
lemzarcapital.com, 0
@@ -88312,7 +87878,6 @@ leonyork.com, 1
leopardstudio.tk, 1
leos-ferienwelt.de, 1
leoseguin.fr, 1
-leoservicosetc.com, 1
leoservicosetc.com.br, 1
leoservicosetc.email, 1
leoservicosetc.live, 1
@@ -88320,7 +87885,6 @@ leoservicosetc.online, 1
leoservicosetc.rio.br, 1
leoservicosetc.store, 1
leoservicosetc.world, 1
-leosopenmind.com, 1
leosty.com, 1
leotrepp.org, 1
leovanna.co.uk, 1
@@ -88334,6 +87898,7 @@ lepblog.tk, 1
lepenis.fr, 0
leper.ga, 1
lephilnet.tk, 1
+lephone.com, 1
lepidum.jp, 1
leping.com, 1
lepka.tk, 1
@@ -88355,6 +87920,7 @@ lequest.dk, 1
lequocthai.com, 1
ler3.com, 1
lerameau.fr, 1
+lerefuge.xyz, 0
lerelaisdelareine.com, 1
lerika.tk, 1
lerisloisdesbaquets.fr, 1
@@ -88482,7 +88048,6 @@ letchikleha.tk, 1
letdownloads.tk, 1
letec.be, 1
leteckedarky.cz, 1
-letempsdujasmin.fr, 1
leter.io, 0
leterroirdesvignobles.fr, 1
leteszemazecsetet.hu, 1
@@ -88537,6 +88102,7 @@ letsflyinto.space, 1
letsgame.nl, 1
letsgo.icu, 1
letsgowhilewereyoung.com, 1
+letsight.com, 1
letsjustsayyes.com, 1
letsknow.ga, 1
letsknow.tk, 1
@@ -88547,6 +88113,7 @@ letsplayourgameagain.gq, 1
letspostit.com, 1
letsrave.tk, 1
letstalk.video, 1
+letstop.io, 1
letstryanal.com, 1
letsweel.com, 1
lette.tk, 1
@@ -88578,6 +88145,7 @@ leuenhagen.com, 1
leukert.org, 1
leuldeaur.ro, 1
leulu.com, 1
+leuname.co.uk, 1
leusemiamusic.tk, 1
leuthardtfamily.com, 1
leutholdgroup.com, 1
@@ -88605,7 +88173,6 @@ levelrankings.com, 1
levelsoft.ml, 1
levelum.com, 1
levelupdisability.com.au, 1
-leveluppcasino.com, 1
leveluprankings.com, 1
levelx.team, 1
levendwater.org, 1
@@ -88614,6 +88181,8 @@ leventismotors.com.ng, 1
leverageedu.com, 1
leverj.io, 1
levermann.eu, 1
+leverosky.cloud, 1
+leverosky.com, 1
leversconceptconstructions.com.au, 1
leversonbudke.com, 1
leviaan.nl, 1
@@ -88621,7 +88190,6 @@ leviathan-studio.com, 1
leviathanfan.tk, 1
leviathanstory.tk, 1
levico.tk, 1
-levida.ca, 1
levidromelist.com, 1
levinholidaypark.co.nz, 1
levis.fun, 1
@@ -88680,6 +88248,7 @@ lexeri.com, 1
lexgo.be, 1
lexgo.lu, 1
lexic.co, 1
+lexico.pt, 1
lexicography.online, 1
lexiconbank.com, 1
lexicore.ga, 1
@@ -88709,7 +88278,6 @@ lextechsuite.com, 1
lexum.com, 1
lexuspartsnow.com, 1
lexway.pk, 1
-lexzyne.com, 1
leyaonline.com, 1
leybelsgarden.cf, 1
leyendaluzrenacer.com, 1
@@ -88718,15 +88286,10 @@ leyfutmex.com, 1
leylalips.org, 1
leymaritima.com, 1
leytron.tk, 1
-lez.gent, 1
-lez2020.be, 1
-lez2020.gent, 1
lezbomovies.com, 1
lezdombliss.com, 1
lezdomsm.com, 1
lezen.tk, 1
-lezgetreal.com, 1
-leziblog.com, 1
lezzetyurdu.com.tr, 1
lf-space.com, 1
lfashion.eu, 1
@@ -88743,6 +88306,7 @@ lfn.moe, 1
lfnaturopathie.com, 1
lforum.tk, 1
lfrconseil.com, 1
+lfthoodies.co.za, 1
lfyhokk.tk, 1
lg-obchod.cz, 1
lg-store.sk, 1
@@ -88783,10 +88347,10 @@ lgv-france.com, 0
lgworld.cz, 1
lhajn.cz, 1
lhakustik.se, 1
-lhamiz.com, 1
lhasaapso.com.br, 1
lhconsult.tk, 0
lheinrich.org, 1
+lhero.org, 1
lhffinanceira.online, 1
lhfund.co.th, 1
lhm.de, 1
@@ -88803,7 +88367,6 @@ lhsj78.com, 1
lhv.nl, 1
li-de.tk, 1
li-ke.co.jp, 1
-li-n.net, 1
li-project.com, 1
li.fi, 1
li.finance, 1
@@ -88830,8 +88393,8 @@ liana.site, 1
lianand.com, 1
liangbi.ml, 1
liange.com, 1
-liangji.com.tw, 1
lianglongcredit.com, 1
+liangmian.com, 1
liangxingai.com, 1
liangyichen.net, 1
lianhe.art, 1
@@ -88840,10 +88403,11 @@ lianka.eu, 1
lianka.pl, 1
lianka.uk, 1
liansuan.com, 1
+liantao.com, 1
lianwen.kim, 1
liaozheqi.cn, 1
liar.wiki, 1
-lib.pm, 1
+liasecboard.com, 1
libanswers.com, 1
libanswers.net, 1
libapps.com, 0
@@ -88865,7 +88429,6 @@ libcrm.com, 1
libcrm.net, 1
libelle.nl, 1
libellezomerweek.nl, 0
-libelulagroup.com, 1
libelulaweb.tk, 1
liberad.fr, 1
liberal.ru, 1
@@ -88915,6 +88478,7 @@ libertyland.tk, 1
libertylondon.com, 1
libertymedia.com, 1
libertyreversemortgage.com, 1
+libertyrxpharmacy.com, 1
libertystation.com, 1
libertytereconoce.com, 1
libertytwpadamspa.gov, 1
@@ -88932,6 +88496,7 @@ libinsight.com, 1
libinsight.net, 1
libivis.com, 1
liblogo.com, 1
+libmbr.com, 1
libmpq.org, 1
libnull.com, 1
libot.eu.org, 1
@@ -88955,7 +88520,6 @@ libraryofcode.us, 1
librarytapes.tk, 1
librarytools.com, 1
libravatar.org, 1
-librazy.org, 1
libre-innovation.org, 1
libre-service.de, 1
libre.cr, 1
@@ -88982,6 +88546,7 @@ librerose.com, 1
libresoft.ml, 1
libreview.com, 1
libreview.ru, 1
+librewolf.net, 1
librezo.fr, 1
librisulibri.it, 1
librosantimateria.com, 1
@@ -89002,6 +88567,7 @@ libvolk.org, 1
libwizard.com, 1
libwizard.net, 1
libyanexpert.ml, 1
+libyanwings.aero, 1
lic39.ru, 1
licence-registry.com, 1
licencja-na-drona.pl, 1
@@ -89022,13 +88588,6 @@ licht-pferde.com, 1
lichtbild.nrw, 1
lichtbildfotos.de, 1
lichtcam.ddns.net, 0
-lichtfestival.be, 1
-lichtfestival.gent, 1
-lichtfestivalgent.be, 1
-lichtfestivalgent.com, 1
-lichtfestivalgent.tv, 1
-lichtfestivalghent.be, 1
-lichtfestivalghent.com, 1
lichtjesavondkoedijk.nl, 1
lichtmetzger.de, 0
lichtplatformnsvv.nl, 1
@@ -89050,6 +88609,7 @@ lidaumba.com, 1
lidavidm.me, 1
lide.eu, 1
lidel.org, 1
+lidepla.com, 1
lidernaturascarlettbados.com, 1
liderok.tk, 1
lidkoping.se, 1
@@ -89115,7 +88675,6 @@ lifeatthemax.graphics, 1
lifeatthemax.marketing, 1
lifeaz.co, 1
lifeball.org, 1
-lifeboatmarketing.co.uk, 1
lifebymargot.co.uk, 1
lifecare.org, 1
lifecelebrated.org, 1
@@ -89167,6 +88726,7 @@ liferay.com, 1
lifereset.it, 1
lifesaverhindi.tk, 1
lifesciencedynamics.com, 1
+lifescribe.co.za, 1
lifeseatsers.ga, 1
lifeseatsest.ga, 1
lifeset.pp.ua, 1
@@ -89187,6 +88747,7 @@ lifestylexplocial.tk, 1
lifetech.com.my, 1
lifetecinc.com, 1
lifetimefitness.tk, 1
+lifetimeguaranteedhousepainting.com, 1
lifetimemedsers.ga, 1
lifetimemedsest.ga, 1
lifetimenursery.qa, 1
@@ -89212,6 +88773,7 @@ ligacontrachetos.tk, 1
ligadegamers.com, 1
ligadelconsorcista.org, 1
ligadosgames.com, 1
+ligand-research.com, 1
ligare-fp.com, 1
ligaro.nl, 1
light.law, 1
@@ -89224,8 +88786,6 @@ lightbox.co, 1
lightcraftmc.tk, 1
lightdark.xyz, 1
lightenenterprise.com, 1
-lightfestivalghent.be, 1
-lightfestivalghent.com, 1
lightfoot.co.uk, 1
lightfoots.co.uk, 1
lighthouseglobal.com, 1
@@ -89234,7 +88794,6 @@ lighthousepointfl.gov, 1
lightingagoura.com, 1
lightingcalabasas.com, 1
lightinghiddenhills.com, 1
-lightingmalibu.com, 1
lightingnewburypark.com, 1
lightingpacificpalisades.com, 1
lightman.cz, 1
@@ -89279,12 +88838,12 @@ ligo.be, 1
ligonier.com, 1
ligustinus.tk, 1
lih.lu, 1
+lihaoyu.cn, 1
lihatvirtual.com, 1
lihi-home.co.il, 1
lihj.me, 1
lihuenjardin.com, 1
liikluslab.ee, 1
-liilogme.info, 1
liip.ch, 1
liisauusitaloarola.fi, 1
liivimeretuulepark.ee, 1
@@ -89300,10 +88859,8 @@ lika21.ru, 1
likans.tk, 1
like-boss.ga, 1
like-rabota.tk, 1
-likeable.com, 1
likeablehub.com, 1
likeageek.tk, 1
-likeandlead.de, 1
likebee.gr, 1
likebot.ml, 1
likecrabwalkslowly.ml, 1
@@ -89375,6 +88932,7 @@ lilyallenlife.ga, 1
lilyandpeabody.com, 1
lilylasvegas.com, 1
lilypad.gg, 1
+lilypadspa.net, 1
lilypadwikisecret.tk, 1
lilysbouncycastles.com, 1
lilyvet.com, 1
@@ -89473,7 +89031,6 @@ lincolncountysd.gov, 1
lincolncountysheriffok.gov, 1
lincolncountytn.gov, 1
lincolncountywy.gov, 1
-lincolnfinewines.com, 1
lincolnil.gov, 1
lincolnimps.tk, 1
lincolnmoneyman.com, 1
@@ -89493,6 +89050,7 @@ lindalush.net, 1
lindamadu.com.br, 1
lindanblog.com, 1
lindaolsson.com, 0
+lindapark.com, 1
lindazi.com, 1
lindbladcruises.com, 1
lindemontessori.cz, 1
@@ -89506,13 +89064,13 @@ lindependant.ml, 1
lindernational.com, 1
lindeskar.se, 1
lindgrenracing.tk, 1
+lindin.com, 1
lindipendente.online, 1
lindler.rocks, 1
lindner-architektur.ruhr, 1
lindner-edv.at, 1
lindnerhof.info, 1
lindnerova.cz, 1
-lindo.ru, 1
lindogdahl.dk, 1
lindon.gov, 1
lindon.pw, 1
@@ -89533,18 +89091,20 @@ linea-nova.be, 1
lineacreative.com, 1
lineaesse5.it, 1
lineageos.org, 1
+lineamagazin.ru, 1
lineamortal.tk, 1
linebet.com, 1
linebooks.cf, 1
linedance.tk, 1
lineengraver.com, 1
+linefire.com, 1
lineinchina-enterprise.tw, 1
lineinchina.com.ua, 1
linejuby.dk, 1
+linelab.cz, 1
lineru.com, 1
lineshop.ml, 1
linestep.jp, 1
-linetechnology.xyz, 1
lineto.com, 1
linext.cn, 0
linfadenopatia.com, 1
@@ -89554,6 +89114,7 @@ lingerie.com.br, 1
lingeriebym.nl, 1
lingeriecollect.ga, 1
lingmax.ru, 1
+lingnong.com, 1
lingolia.com, 0
lingpy.org, 1
lingros-test.tk, 1
@@ -89569,6 +89130,7 @@ linguee.es, 1
linguee.fr, 1
lingvist.com, 1
lingvoclass.by, 1
+lingwa.com, 1
linhaoyi.com, 0
linherest.tk, 1
linhua.org, 1
@@ -89590,6 +89152,7 @@ link2serve.com, 1
link2u.tk, 1
link9.net, 1
linkagencia.co, 1
+linkai.com, 1
linkare.be, 1
linkare.com, 1
linkare.eu, 1
@@ -89691,8 +89254,8 @@ linoplan.net, 1
linoplan.nl, 1
linoscan.com, 1
linoscan.nl, 1
-linoskin.com, 1
linoskin.nl, 1
+linost.com, 1
linostor.com, 1
linostor.nl, 1
linoszpadel.tk, 1
@@ -89713,6 +89276,7 @@ linss.org.cn, 1
linssindustries.com, 1
lintmx.com, 1
linu.gq, 1
+linuos.com, 1
linuq.org, 1
linusdrop.tips, 1
linuslagerhjelm.se, 1
@@ -89900,9 +89464,9 @@ lishayut-prav.gq, 1
lishayut-prav.ml, 1
lishayut-prav.tk, 1
lisheencastle.com, 1
+lishizhen.com, 1
lisiano.eu, 1
lisieuxarquitetura.com.br, 1
-lisinoprilgp.online, 1
lisinphotography.com, 1
lisius.ga, 1
lislan.org.uk, 1
@@ -89919,12 +89483,11 @@ lissongallery.com, 1
list1.tk, 1
listach.tk, 1
listahu.org, 1
-listaotaku.com, 1
listapp.uz, 1
listclue.com, 1
+listcraft.top, 1
listekdo.fr, 1
listelist.com, 1
-listen.cn, 1
listen.dk, 1
listener.ga, 1
listening-skills.eu, 1
@@ -89998,12 +89561,10 @@ literoticavod.com, 1
litespeed-webserver.de, 1
litespeedhost.net, 1
litespeedwebserver.de, 1
-litfest.ru, 1
litfin.name, 1
lithesalar.se, 1
lithianissaneugeneparts.com, 1
lithiumhosting.com, 1
-lithuania-news.com, 1
litiab.tk, 1
litigatech.com, 1
litkicks.com, 1
@@ -90018,7 +89579,6 @@ little-brother.eu, 1
little-cake.com, 0
little-luk.com, 1
little-news.gq, 1
-little-shield.com, 1
little.recipes, 1
littlebar.tk, 1
littlebestfriend.de, 1
@@ -90035,7 +89595,7 @@ littlecompton.gov, 1
littlecourtcottages.com, 1
littlecreekhosting.com, 1
littledev.nl, 0
-littlediary.cn, 1
+littlediary.cn, 0
littleduck.xyz, 1
littlefairy.no, 1
littlefamilyadventure.com, 1
@@ -90136,7 +89696,6 @@ liveachievers.tk, 1
liveandalucia.es, 1
liveanimations.org, 1
livebandphotos.com, 1
-livebarmenu.com, 1
livebeachcam.net, 1
livebestbooks.gq, 1
livebookmark.ml, 1
@@ -90189,7 +89748,6 @@ liveperformersmeeting.net, 1
livepix.gg, 1
liveplaygo.com, 1
livepornguide.com, 1
-liveqio.info, 1
livequote.info, 1
liveregistratie.nl, 1
liverfoundation.org, 1
@@ -90238,7 +89796,7 @@ livingdex.ca, 1
livingdocs.io, 1
livinghebrew.tk, 1
livinginretrospect.com, 1
-livinglab.be, 1
+livingislands.org, 1
livinglifesecurely.com, 1
livinglink.be, 1
livingoutdoors.ga, 1
@@ -90270,6 +89828,7 @@ lixinnovations.com, 1
lixis.com, 1
lixx.org, 1
lixxil.de, 1
+liyaozhen.com, 1
liyin.date, 1
liz-ate.com, 1
liz.ee, 1
@@ -90338,13 +89897,12 @@ llcgeek.com, 1
llcig.com, 1
llcigroup.com, 1
llcj.com, 1
-llcradar.com, 1
+llcradar.com, 0
lldigital.co.il, 1
lleidanoticies.com, 1
llemoz.com, 1
llinck.fr, 1
llinternational.tk, 1
-llkterraplanagem.com.br, 1
llm-guide.com, 1
lloretparty.de, 1
lloyd-day.me, 1
@@ -90367,6 +89925,7 @@ lmb-gruppe.de, 1
lmbyrne.co.uk, 1
lmde.fr, 1
lmi-india.in, 1
+lmi3d.com, 1
lmintlcx.com, 1
lmis.gov.et, 0
lmmtfy.io, 1
@@ -90379,6 +89938,7 @@ lmtravis.com, 1
lmvsci.gov, 1
ln.gl, 1
ln.io, 1
+lncorp.be, 1
lndb.me, 1
lndns.net, 1
lndrive.space, 1
@@ -90450,6 +90010,7 @@ locadoraequiloc.com.br, 1
local-insight.com, 1
local-shop.com, 1
local360.net, 1
+localai.sk, 1
localassocier.tk, 1
localbandz.com, 1
localbiketrader.com, 1
@@ -90469,6 +90030,7 @@ localfirstbank.com, 1
localgaragedoorsfl.net, 1
localgrain.org, 1
localhandyman.work, 1
+localhero.biz, 1
localhorst.duckdns.org, 0
localiza.io, 1
localized.tk, 1
@@ -90500,6 +90062,7 @@ localstudio.tk, 1
localtownhouses.ga, 1
localtransitionslearning.eu, 1
locanada.ca, 1
+locar-lecridelharfang.xyz, 1
locas.me, 1
locatecellphone.gq, 1
location-appartement-dakar.com, 1
@@ -90578,11 +90141,11 @@ locksmithsanantoniotexas.com, 1
locksmithsbluff.com, 1
locksmithsbuda.com, 1
locksmithscottsdaleaz.com, 1
+locksmithservice-houston.com, 1
locksmithsinsanantoniotx.com, 1
locksmithsorlando.com, 1
locksmithspring.com, 1
locksmithspringtx.com, 1
-locksmithsprovidenceri.com, 1
locksmithssanmarcostx.com, 1
locksmithstaffordtx.com, 1
locksmiththewoodlands.com, 1
@@ -90662,11 +90225,13 @@ logbook.ch, 1
logcat.info, 0
logdoc.tk, 1
loge.fr, 1
+logement.com, 1
logement.tk, 1
logevou-immobilier.tk, 1
logfile.at, 1
logfile.ch, 1
logfro.de, 1
+logfurnitureplace.com, 1
logheavenvt.com, 1
logic8.ml, 1
logical-invest.com, 1
@@ -90681,6 +90246,9 @@ logicintel.com, 1
logicio.ch, 0
logicio.de, 0
logicio.net, 0
+logicmelon.co.uk, 1
+logicmelon.com, 1
+logicmelon.net, 1
logicne-hise.si, 1
logico.ar, 1
logicsale.com, 1
@@ -90741,7 +90309,6 @@ logopaediereinhard.de, 0
logopedickyden.cz, 1
logopedie-direct.nl, 1
logopedietaalrijk.nl, 1
-logopedischcentrum.nl, 1
logopedista.roma.it, 1
logopedistalanni.it, 1
logoprofi.tk, 1
@@ -90754,6 +90321,7 @@ logram.io, 1
lograr.me, 1
logrhythm.com, 1
logs.tf, 1
+logsped.cz, 1
logtalk.org, 1
logtenberg.eu, 1
logue.media, 1
@@ -90806,6 +90374,7 @@ lojaodo9.com.br, 1
lojaprimemed.com.br, 1
lojaprojetoagua.com.br, 1
lojaskd.com.br, 0
+lojasmary.com.br, 1
lojasoulstyle.com.br, 1
lojasvictoria.com.br, 1
lojasvirtuaisesites.com.br, 1
@@ -90901,7 +90470,6 @@ lolo17.com, 1
lols.gg, 1
lolware.net, 1
lolyoureallyscannedthisqrcodegeniusthatssketchy.de, 1
-lom.name, 0
loma.ml, 1
lomaster.tk, 1
lomayko.ml, 1
@@ -90950,6 +90518,7 @@ londontwpmi.gov, 1
londonukbasedvipcloseprotectionbodyguardservices.com, 1
londonvetspecialists.vet, 1
londonwomensclinic.com, 1
+londynka.pl, 1
lone-gunman.be, 1
lone-wolf.tk, 1
lonecesitope.com, 1
@@ -91074,7 +90643,6 @@ loonbedrijfdenboer.nl, 1
loonbedrijfwierda.nl, 1
looneymooney.com, 1
loonindex.be, 1
-loonylatke.com, 1
loop.com, 0
loop.us, 1
loopback.kr, 1
@@ -91150,6 +90718,7 @@ lore.azurewebsites.net, 1
loreedeslandes.com, 1
loremipsum.info, 1
lorena-salido.tk, 1
+lorenaandthetide.com, 1
lorenadumitrascu.ro, 1
lorengraff.net, 1
lorenstudioo.com, 1
@@ -91293,7 +90862,6 @@ lotnonline.com, 1
lotnonline.net, 1
lotnonline.nl, 1
loto-king.com, 1
-lotocash.com, 1
lotoperu.com, 1
lotos-ag.ch, 1
lotro-wiki.com, 1
@@ -91312,7 +90880,6 @@ lottomonks.com, 1
lottonigeria.com, 1
lottopark.com, 1
lottos.com.au, 1
-lottothaipro.com, 1
lottozambia.com, 1
lotus-den.com, 1
lotusbook247.com, 1
@@ -91336,6 +90903,7 @@ loudouncountyva.gov, 1
louerunhacker.fr, 1
louest.ch, 1
loueurmeublegestion.expert, 1
+loughkeygreenway.ie, 1
louhiranta.fi, 1
louhomeworkouts.com, 1
louisa.tk, 1
@@ -91345,13 +90913,13 @@ louisapolicefoundation.com, 1
louisapolicefoundation.org, 1
louisdefunes.tk, 1
louisefar.tk, 1
-louisehaugsted.dk, 1
louisemisellinteriors.co.uk, 1
louiserutkowski.tk, 1
louisianalifesciences.gov, 1
louisianamo.gov, 1
louisianamusicfactory.com, 1
louisiananetzero.gov, 1
+louisianarecoveryauthority.org, 1
louisianarural.gov, 1
louisianassbci.gov, 1
louisianatitlesearch.com, 1
@@ -91363,7 +90931,6 @@ louisvillefilmfestival.org, 1
louisvillene.gov, 1
louisvilleohio.gov, 1
louisvilletopchoiceroofing.com, 1
-louisvuittonoutletus.cyou, 1
louiza.tk, 1
loujaxx.net, 1
loukas-stoltz.fr, 1
@@ -91391,7 +90958,6 @@ love-and-hate.cf, 1
love-books.ga, 1
love-damono.com, 1
love-navigator.tk, 1
-love-palestine.com, 1
love-planeta.tk, 1
love-sent.com, 1
love-spells-tarot.com, 1
@@ -91410,13 +90976,13 @@ lovebombed.wtf, 1
lovebusinesseastmidlands.com, 1
lovebusinessexpo.co.uk, 1
lovebusinessnetworking.co.uk, 1
-lovechester.com, 1
lovecrystal.co.uk, 1
lovecsnov.tk, 1
lovedaleschool.tk, 1
lovedicas.com.br, 1
lovedutch.tk, 1
lovefoodhatewaste.com, 1
+lovefrankie.co, 1
lovegpl.com, 1
lovehairstyles.com, 1
loveherass.com, 1
@@ -91471,7 +91037,7 @@ lovethatmakeup.tk, 1
lovetheprint.co.za, 1
lovetime.co.il, 1
lovetowork.tk, 1
-loveweddingphotosandfilm.co.uk, 0
+loveweddingphotosandfilm.co.uk, 1
loveyouhome.ua, 1
lovg.ren, 1
lovi.at, 1
@@ -91519,6 +91085,7 @@ loyaltech.ch, 1
loyaltech.tk, 1
loyaltiq.com, 1
loyaltown-wi.gov, 1
+loyaltypoint.io, 1
loyaltyreviewers.ga, 1
loyd.co, 1
loyd.gg, 1
@@ -91581,7 +91148,6 @@ lrztp.org, 1
ls-alarm.de, 1
lsa-international.com, 1
lsbk.ch, 1
-lsbricks.com, 1
lsbttiq.org, 1
lsc-dillingen.de, 1
lsc-mn.gov, 1
@@ -91641,6 +91207,7 @@ ltn.pw, 1
lto.ru, 1
ltonlinestore.in, 0
ltransferts.com, 1
+ltxhost.org, 1
lty.best, 1
lty.name, 1
lty.space, 1
@@ -91690,7 +91257,6 @@ lucasgymnastics.com, 1
lucasjquinn.com, 1
lucaslarson.net, 1
lucasmateus.ga, 1
-lucasmz.eu.org, 1
lucastefanelli.dk, 1
lucasvieira.fr, 0
lucciolachile.com, 1
@@ -91716,6 +91282,7 @@ lucidplumbing.com.au, 1
lucidya.com, 1
lucie-parizkova.cz, 1
lucielavickova.com, 1
+luciezimmerova.cz, 1
luciferblog.tk, 1
luciferianism.tk, 1
lucille-thomas.fr, 1
@@ -91734,6 +91301,7 @@ lucksh.gq, 1
lucksh.tk, 1
luckwi.gov, 1
lucky-bul.tk, 1
+lucky-frog.co.uk, 1
lucky-numbers.ru, 1
lucky-time.tk, 1
lucky13strategies.com, 1
@@ -91743,7 +91311,6 @@ luckyblockland.fr, 1
luckycasino.se, 1
luckycastles.co.uk, 1
luckycloud.de, 1
-luckydag.com, 1
luckydoglodge.net, 1
luckyemail.ml, 1
luckyfrog.hk, 1
@@ -91765,6 +91332,7 @@ lucyparsonslabs.com, 0
lucysan.net, 1
luda.me, 1
luda.plus, 1
+ludasmith.co.uk, 1
lude.tk, 1
ludek.biz, 1
luden.tk, 1
@@ -91778,20 +91346,17 @@ ludmillaewagner.ga, 1
ludo-giuly.tk, 1
ludofantasy.fr, 1
ludogogy.co.uk, 1
-ludogue.net, 1
ludolust.tk, 1
ludomo.de, 1
ludotech.tk, 1
ludovic-frank.fr, 0
ludovic-muller.fr, 1
-ludovic.com.br, 1
ludovicfernez.com, 1
ludovicozitelli.it, 1
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
@@ -91809,7 +91374,6 @@ luftreiniger.biz, 1
lugandbezel.com, 1
lugansk-news.ru, 1
lugaresturisticosdeguatemala.ga, 1
-luggagecare.com, 1
luggagent.com, 1
lugimax.com, 1
luginbuehl.be, 1
@@ -91934,6 +91498,7 @@ luminabh.com.br, 1
luminal-creation.com, 1
luminaproject.ml, 1
luminary.pl, 1
+luminateimpactlab.com, 1
lumindigital.com, 0
lumineled.se, 1
lumingze.eu.org, 0
@@ -91999,7 +91564,6 @@ lundslist.uk, 1
lundslist.us, 1
lune-indigo.ch, 0
lune.gay, 1
-lunekes.com, 1
lunenburg-gilmanvt.gov, 1
lunenburgva.gov, 1
lunepieters.co.za, 1
@@ -92018,6 +91582,8 @@ lunlixiaozhan.icu, 1
lunshofequipment.com, 1
luntadila.ga, 1
lunulanails.nl, 1
+luo.bo, 1
+luobo8.com, 1
luoe.me, 1
luoh.cc, 1
luoh.me, 1
@@ -92109,7 +91675,6 @@ luve-gm.ch, 1
luvey.com, 1
luviantrade.com.ec, 1
luvmihome.com, 1
-luvs.one, 1
luvscent.com, 1
lux-house.tk, 1
lux-optica.pl, 1
@@ -92119,6 +91684,7 @@ luxaterra.com, 1
luxden.com, 1
luxe-in.gr, 1
luxe.digital, 1
+luxebadkameraccessoires.nl, 1
luxedent.ru, 1
luxedentalfl.com, 1
luxegram.co, 1
@@ -92181,6 +91747,7 @@ luzdelalma.net, 1
luzfaltex.com, 1
luzi-type.ch, 1
luzica.tk, 1
+luziekurth.com, 1
luzsaude.pt, 1
lv.com, 1
lv.lk, 1
@@ -92201,7 +91768,6 @@ lvguitars.com, 1
lvkasz.us, 1
lvkaszus.pl, 1
lvlv.cf, 1
-lvm.me, 1
lvna.capital, 1
lvnacapital.com, 1
lvnya.top, 1
@@ -92210,6 +91776,7 @@ lvovnews.ru, 1
lvoz2.duckdns.org, 1
lvtflooringstore.com, 1
lvwind.com, 1
+lvzui.com, 1
lwb.pt, 1
lwems.co.uk, 1
lwgwiki.com, 1
@@ -92220,7 +91787,6 @@ lwnlh.com, 1
lwqwq.com, 1
lwsl.ink, 1
lx-is.lu, 1
-lxai.net, 1
lxd.cc, 0
lxd.tw, 1
lxg.de, 1
@@ -92235,6 +91801,7 @@ lyam.fr, 1
lyanaprintable.com, 1
lyap-lyandiya.ga, 1
lyax.be, 1
+lycaknight.de, 1
lycaonsec.com, 1
lyceum.lk, 1
lychankiet.name.vn, 0
@@ -92242,7 +91809,9 @@ lycly.me, 1
lycoris.eu.org, 1
lydianibley.com, 1
lydiawebfans.tk, 1
+lydudlejning.net, 1
lyfbits.com, 1
+lyfeblud.org, 1
lyfepyle.com, 1
lyftservice.se, 1
lygus.lt, 1
@@ -92310,7 +91879,6 @@ lyrica.systems, 1
lyrical-nonsense.com, 1
lyricfm.ie, 1
lyricheaven.com, 1
-lyricsbase.com, 1
lyricsforyou.gq, 1
lyricsupdater.tk, 1
lyriki.com, 1
@@ -92377,6 +91945,7 @@ m-r-team.de, 1
m-ses.fr, 1
m-team.cc, 1
m-teq.nl, 0
+m-tower.nl, 1
m-warrior.tk, 1
m.ac, 1
m.facebook.com, 1
@@ -92407,7 +91976,6 @@ m2tm.fr, 1
m3-software.com, 1
m36533.com, 1
m3eng.co.uk, 1
-m3globalresearch.com, 1
m3rck.ch, 1
m3u8play.com, 1
m42-gmbh.de, 1
@@ -92475,7 +92043,6 @@ mabex-cybercore.de, 1
mabexcybercore.de, 1
mable.com.au, 1
mableton.gov, 1
-mabnn.org, 1
mabnn.ru, 1
mabnn.spb.ru, 1
mabra.com, 1
@@ -92502,7 +92069,9 @@ macaw.de, 1
macaw.lt, 1
macaw.net, 1
macaw.nl, 1
+macawi.com, 1
macawrescue.org, 1
+macbo.de, 1
macchinetta.com, 1
macdj.tk, 1
macdonaldcody.com, 1
@@ -92516,10 +92085,8 @@ maces-net.de, 1
macgasm.net, 1
macgeneral.de, 1
macgenius.com, 1
-mach-it.com.ar, 1
mach-it.com.uy, 1
mach-politik.ch, 1
-mach.com.ar, 1
macha.cloud, 1
machaaltricks.tk, 1
machbach.com, 1
@@ -92538,7 +92105,6 @@ machineidle.com, 1
machinerysafety101.com, 1
machinio.com, 1
machissenefre.ga, 1
-machled.com.ar, 1
machmit.tk, 1
macho-i-botan.tk, 1
machon.biz, 1
@@ -92680,7 +92246,6 @@ madisoncountyil.gov, 1
madisoncountyky.gov, 1
madisoncountyne.gov, 1
madisonent-facialplasticsurgery.com, 1
-madisonhind.com, 1
madisonmobilenotary.com, 1
madisonpressurewashing.com, 1
madisonprocaccini.tk, 1
@@ -92691,6 +92256,7 @@ madkids.ga, 1
madknight.tk, 1
madlabsol.io, 1
madlandezboard.tk, 1
+madlenphotography.fi, 1
madluging.tk, 1
madmasters.tk, 1
madmaxstore.it, 1
@@ -92728,7 +92294,6 @@ madspeed-performance.tk, 1
madsstorm.dk, 0
madteam.tk, 1
madtown.tk, 1
-madu369.com, 1
maduexclusive.com, 1
maduracion.com, 1
maduradas.info, 1
@@ -92757,7 +92322,6 @@ maestrocase.it, 1
maestrochalet.fr, 1
maestroholzbau.de, 1
maestrotuinhuizen.nl, 1
-maeterlinck100.be, 1
maeva-beauty.com, 1
maeva-beauty.fr, 1
maeva.com, 1
@@ -92916,7 +92480,6 @@ magicvoordeel.nl, 1
magieshop.nl, 1
magija.ga, 1
magikbyte.com, 1
-maginstal.pl, 1
magique.tk, 1
magiskzip.com, 1
magisterjuris.com, 1
@@ -92932,7 +92495,6 @@ magneetfolie.nl, 1
magnes.priv.pl, 1
magnesy-neodymowe.com.pl, 1
magnesy-neodymowe.pl, 1
-magnesy-tanio.net, 1
magnesy.de, 1
magnesy.net.pl, 1
magnesy.priv.pl, 1
@@ -92953,7 +92515,6 @@ magnetoai.com, 1
magnetoscopio.tk, 1
magnetoterapiapertutti.com, 1
magnetpass.uk, 1
-magnets.co.nz, 1
magnets.jp, 1
magnetto.ga, 1
magnettracker.com, 1
@@ -92969,6 +92530,7 @@ magnitola.ml, 1
magnolia.com.my, 1
magnolia.com.sg, 1
magnoliadoulas.com, 1
+magnoliaglobal.com, 1
magnoliaicecream.com.sg, 1
magnoliaicecreamth.com, 1
magnoliawi.gov, 1
@@ -92988,7 +92550,6 @@ magosmedellin.com, 1
magraebela.com, 1
magsdata.com, 1
magu.kz, 1
-maguire.email, 1
maguire.tk, 1
maguroalmare.com.br, 1
maguspace.com, 0
@@ -93002,6 +92563,7 @@ mahadhanconnect.com, 1
mahadihasan.cf, 1
mahalaraibanda.ro, 1
mahali.tk, 1
+mahallekulturu.com, 1
mahalligundem.com, 1
mahalux.com, 1
mahalux.cz, 1
@@ -93104,6 +92666,7 @@ maildrops.tk, 1
mailer-olivea.cz, 1
mailer.me, 1
mailer.su, 1
+mailerhosting.com, 1
mailex.cf, 1
mailexpresso.tk, 1
mailexx.ga, 1
@@ -93184,6 +92747,7 @@ mainzelmaennchen.net, 1
mainzer-allerlei.de, 1
maioresemelhores.com, 1
mair.best, 1
+mairaf.com, 1
mairangiautomotive.co.nz, 1
mairateam.com, 1
mairie-landry.com, 1
@@ -93217,7 +92781,6 @@ maisonpourtous.ca, 1
maisonrouge-musee.fr, 1
maisonsdenfrance-cls.fr, 1
maisproduzida.com.br, 1
-maistempo.com.br, 1
maitemerino.net, 1
maitheme.com, 1
maiti.info, 1
@@ -93227,7 +92790,6 @@ maitrechien.net, 1
maitrechiens.fr, 1
maitrise-orthopedique.com, 1
maitum.de, 1
-maiweave.com, 1
maizeks.gov, 1
maizuru-ongaku-kan.com, 1
majahesjedal.no, 1
@@ -93261,7 +92823,6 @@ majlovesreg.one, 1
majolka.com, 1
majorcore.com, 1
majorhifi.com, 1
-majorpaintingco.com, 1
majorsanat.com, 1
majstorov.info, 1
majstorov.rs, 1
@@ -93294,6 +92855,7 @@ makeitshort.ml, 1
makeitsimple.pt, 1
makejusticework.org.uk, 1
makelindazi.com, 1
+makellos-kosmetik.de, 1
makelpunt.nl, 1
makemejob.com, 1
makemillion.tk, 1
@@ -93354,7 +92916,6 @@ makowitz.cz, 1
makrama.shop, 1
makromedikal.com.tr, 1
maksa.ga, 1
-maksibetgiris.com, 1
maksima.kh.ua, 1
maksimmrvica.tk, 1
maksimyugai.com, 1
@@ -93384,8 +92945,8 @@ malamutedoalasca.com.br, 1
malardalenvvs.se, 1
malariaadvice.gq, 1
malariabehaviorsurvey.org, 1
+malariacellatlas.org, 1
malash.me, 1
-malattie.info, 1
malatyahaberleri.tk, 1
malavida.tk, 1
malavirgen.tk, 1
@@ -93577,6 +93138,7 @@ mamsds.com, 1
mamtapark.tk, 1
mamuko.nl, 1
mamunlyric.tk, 1
+mamy-blue.fr, 1
man-man.nl, 0
man-stuff.co.uk, 1
man3s.jp, 0
@@ -93604,7 +93166,7 @@ manageprefs.com, 1
managewp.com, 1
managment.io, 1
manalu.cz, 1
-manankanani.in, 1
+manankanani.in, 0
manaonetrading.com, 1
manasakcijas.lv, 1
manaspaul.tk, 1
@@ -93618,7 +93180,6 @@ manbetx1998.live, 1
manboy.tk, 1
mancaverevolution.com, 1
manchesterairportparking24.co.uk, 1
-manchesterkitchens.com, 1
manchestermn.gov, 1
manchestermoneyman.com, 1
manchestertechservices.co.uk, 1
@@ -93638,6 +93199,7 @@ mandiblackburnphoto.com, 1
mandmphotographie.com, 1
mandospersonalizados.es, 1
mandourlaw.com, 1
+mandraveselie.com, 1
mandynamic.gr, 1
mandysbeautysupply.com, 1
manegehenriet.tk, 1
@@ -93680,6 +93242,7 @@ manganimefan.tk, 1
mangareactor.tk, 1
mangas.eu.org, 1
mangaworld.gq, 1
+mangelot-hosting.nl, 1
mangeur-de-cigogne.tk, 1
mangga.cloud, 1
mangio.co.uk, 1
@@ -93730,7 +93293,7 @@ manipurmatka.net, 1
manisahaberleri.tk, 1
manitaggarwal.com, 0
manitasavila.com, 1
-manitbd.com, 1
+manitbd.com, 0
manito.kr, 1
manitoba.ca, 1
manitoulinairport.ca, 1
@@ -93767,7 +93330,6 @@ mankatomn.gov, 1
mankier.com, 1
mankomarketing.com, 1
manmatters.com, 1
-manmohanfurniture.com, 1
mann-und-maeuse.de, 1
mannafields.org, 1
mannat-hallmumbra.com, 1
@@ -93813,6 +93375,7 @@ manski.net, 1
mansle.fr, 1
mansoorkhan.tk, 1
mansora.io, 1
+mansora.net, 1
mansurov.tk, 1
mantachiepharmacy.com, 1
mantalak.com, 1
@@ -93822,12 +93385,14 @@ manteca.gov, 1
manteena.com.au, 1
mantella.nl, 1
mantenimiento-zaragoza.com, 1
+mantenimientodeinstalacioneselectricas.es, 1
mantenimientoimpresoras.com, 1
mantenimientosenjardineriaypiscinasveracruz.com, 1
mantenimientoweb.io, 1
mantex.ml, 1
manti.by, 1
manticore-projects.com, 1
+mantide.duckdns.org, 1
mantor.org, 0
mantra.pictures, 1
mantraptownshipmn.gov, 1
@@ -93887,6 +93452,7 @@ manzanagroup.ru, 1
manzanita-nsn.gov, 1
maomihz.com, 1
maone.net, 1
+maorilandfilm.co.nz, 0
maorx.cn, 1
maoshuai.bid, 1
maoshuai.cc, 1
@@ -93914,12 +93480,14 @@ map4erfurt.de, 1
map4jena.de, 1
mapa-airsoft-akci.cz, 1
mapadoacolhimento.org, 1
+mapailytics.com, 1
mapasmundi.com.br, 1
mapausenaturelle.fr, 1
mapblender.com, 1
mapchange.org, 1
mapduce.com, 1
mapdump.com, 1
+mapgear.nl, 1
mapi.eu.org, 1
mapillary.com, 1
maplebgm.cc, 1
@@ -93934,7 +93502,6 @@ maples.com, 1
mapletime.com, 1
mapletokyo.top, 1
mapletonmn.gov, 1
-mapletree.com.sg, 1
maplevalleytwpmi.gov, 1
maplewood.tk, 1
maplewoodnj.gov, 1
@@ -94058,6 +93625,7 @@ marco-burmeister.de, 1
marco-hegenberg.net, 1
marco-reitmeier.de, 1
marco-s.net, 1
+marco-stankowitz.de, 1
marcoaurelio.tk, 1
marcoduenki.ch, 1
marcoececilia.it, 1
@@ -94080,6 +93648,7 @@ marcretzlaff.com, 1
marcschlagenhauf.de, 0
marcsello.com, 1
marcsferraripage.tk, 1
+marcus-mueller.info, 1
marcus-scheffler.com, 1
marcus.pw, 0
marcusb.org, 1
@@ -94117,7 +93686,6 @@ margarethouse.co.uk, 1
margaridamendessilva.com, 1
margaritafries.com, 1
margaritamun.com, 1
-margatroid.com, 1
margaux-perrin.com, 1
margaux-perrin.fr, 1
margauxnennig.com, 1
@@ -94142,6 +93710,7 @@ marhobateren.tk, 1
maria-blanco.tk, 1
maria-kirilenko.tk, 1
maria-sharapova.tk, 1
+mariaalcazar.com, 1
mariaangelamacario.com, 1
mariadelcastillo.com, 1
mariaelisaejunior.ga, 1
@@ -94193,6 +93762,7 @@ mariescountymo.gov, 1
marieskyler.net, 1
marietta.sa, 1
marieutechnologycorporation.com, 1
+marijnroovers.eu, 1
marijuana-seeds.nl, 1
marijuanajobscannabiscareers.com, 1
marik.net.br, 1
@@ -94297,7 +93867,6 @@ markco.fi, 1
markdain.net, 1
markdixon.name, 1
markecubanos.com, 1
-markedplassen.no, 1
markedwithab.com, 1
markenet.co, 1
markentier.tech, 1
@@ -94443,6 +94012,7 @@ marlboroughchamber.nz, 1
marlboroughfarmersmarket.tk, 1
marlboroughmo.gov, 1
marlen.cz, 1
+marlenarosa.com, 1
marlenefavela.tk, 1
marlenekrasa.com, 1
marliesfens.nl, 1
@@ -94461,6 +94031,7 @@ marmista.roma.it, 1
marmitethegreyhound.com, 1
marmo.gallery, 1
marmo.tk, 1
+marmorariaembh.com, 1
marmotte.love, 1
marmurmedical.com, 1
marny.eu, 1
@@ -94497,7 +94068,6 @@ marrakechactivite.com, 1
marrakechairporttransfer.com, 1
marrakechauxiliaire.com, 1
marrakechcitytravel.com, 1
-marrakeche.com, 1
marredesefairebaladersurlenet.com, 1
marretada.org, 1
marriage-shrine.jp, 1
@@ -94635,13 +94205,12 @@ martinvillalba.info, 1
martinvillalba.net, 1
martinvillalba.org, 1
martinvotes.gov, 1
-martinwhelton.uk, 1
martnlab.com, 1
martonvaro.com, 1
martonveronika.tk, 1
martosaranda.com, 1
+martsinovskaolga.com.ua, 1
martstop.ir, 0
-martstroy.ru, 1
marty.me.uk, 1
martyrium.tk, 1
marufmusic.tk, 1
@@ -94722,7 +94291,6 @@ marywet.net, 1
mas.be, 1
mas.bg, 1
masaarchive.org, 1
-masadaoffensive.com, 1
masajilanver.tk, 1
masakanibu.ga, 1
masakigarden.com, 1
@@ -94747,6 +94315,7 @@ masdemexico.com, 1
masdr.sa, 1
masduta.co, 1
masdzub.com, 1
+masefieldvets.co.uk, 1
masepps.pe, 1
maservant.com, 1
maservant.net, 1
@@ -94801,6 +94370,7 @@ masoncountywaelections.gov, 1
masoncountywv.gov, 1
masonkysheriff.gov, 1
masonpelt.com, 1
+masonsrestaurant.co.uk, 1
masqueradecostumes.tk, 1
masr.social, 1
masrilanguage.tk, 1
@@ -94867,6 +94437,7 @@ master-education.jp, 1
master-net.org, 1
master-tech.com.au, 1
master-tmb.ru, 1
+master-zone.com, 1
master.shop, 1
masteranimal.tk, 1
mastercardpac.com, 1
@@ -94992,7 +94563,6 @@ matematicaevida.com.br, 1
matematik-ozel-ders.tk, 1
matematikformulleri.com, 1
matematikkulubu.tk, 1
-matematikyoldasi.com, 1
matematyka.wiki, 1
matemonsac.com, 0
mateoconlechuga.com, 1
@@ -95041,6 +94611,7 @@ mathematik.rocks, 1
matheo-schefczyk.de, 1
mathers.ovh, 1
mathes.berlin, 1
+mathesongas.com, 0
mathesonsteplock.ca, 1
matheusmacedo.ddns.net, 1
matheusrpsouza.com, 1
@@ -95178,6 +94749,7 @@ mattg.ca, 1
mattga.ca, 1
mattgemmell.com, 1
mattgoddardphotography.co.uk, 1
+mattgodwin.com, 1
matthew-carson.info, 1
matthewaker.com, 1
matthewbarnesmusic.com, 1
@@ -95206,7 +94778,6 @@ matthewthode.com, 1
matthewthode.net, 1
matthewthode.org, 1
matthey.nl, 1
-matthi.coffee, 1
matthi3u.xyz, 1
matthias-lohr.com, 1
matthias-lohr.net, 1
@@ -95241,6 +94812,8 @@ mattmoorcroft.com, 1
mattmorrissound.co.uk, 1
mattnetwork83.com, 1
mattonline.me, 1
+mattpetrie.music, 1
+mattpetrie.uk, 1
mattpippen.com, 1
mattprice.eu, 1
mattquintanilla.xyz, 1
@@ -95259,7 +94832,6 @@ mattressman.co.uk, 1
mattressomni.ng, 1
mattresspro.com, 1
mattrubin.me, 1
-mattrude.com, 1
matts.network, 1
matts.support, 1
matts.systems, 1
@@ -95423,7 +94995,6 @@ maxihyp.de, 1
maxilife.com.ph, 1
maxim-group.com, 1
maxim.live, 1
-maxima.at, 0
maximababy.de, 1
maximalsparen.com, 0
maximanet.tk, 1
@@ -95466,7 +95037,6 @@ maxmanroe.com, 1
maxmanus.ga, 1
maxmarket.bg, 1
maxmatthe.ws, 0
-maxmilton.com, 1
maxmind-test.com, 1
maxmind.com, 1
maxmuen.de, 1
@@ -95478,7 +95048,6 @@ maxopen.cf, 1
maxopolyworldnews.com, 1
maxostapenko.com, 1
maxp.info, 0
-maxpl0it.com, 1
maxpoint.it, 1
maxportal.tk, 1
maxr1998.de, 0
@@ -95488,6 +95057,7 @@ maxrider.tk, 1
maxroganov.tk, 1
maxs.com, 1
maxschleiffer.com, 1
+maxtire.com, 1
maxtransport.az, 1
maxtruxa.com, 1
maxtvstream.com, 1
@@ -95513,11 +95083,10 @@ mayamarquez.co, 1
mayanet.tk, 1
mayangateway.com, 1
mayansandtikal.com, 1
-mayapayme.info, 1
mayaroconstituency.org, 1
mayashoefke.tk, 1
-mayavi.co.in, 1
maybankfoundation.com, 1
+maybankjobs.com, 1
maybeonline.de, 1
maybeshewill.xyz, 1
maybeul.com, 1
@@ -95559,7 +95128,6 @@ mazartdesign.tk, 1
mazavto.ml, 1
mazda-mps.de, 1
mazda-thermote.com, 1
-mazda626.net, 1
mazdel.tk, 1
maze.com.br, 1
maze.fr, 0
@@ -95590,7 +95158,6 @@ mb.estate, 1
mb300sd.com, 1
mbaasy.com, 1
mbaestlein.de, 1
-mbageas.life, 1
mbainflatables.co.uk, 1
mbalaw.pl, 1
mbank.kg, 1
@@ -95620,7 +95187,6 @@ mblankhorst.nl, 1
mble.mg, 1
mbmassageterapi.se, 1
mbmbuild.com, 1
-mbmva.fr, 1
mbocentre.com, 1
mbong.kr, 1
mbpskill.co.id, 1
@@ -95734,6 +95300,7 @@ mcgrand.shop, 1
mcgregortx.gov, 1
mch2022.org, 1
mchaelkordomain.tk, 1
+mchalepersen.nl, 1
mchan.us, 1
mchdata.com, 1
mchel.net, 1
@@ -95761,7 +95328,6 @@ mckendry.consulting, 1
mckenna.academy, 0
mckenney.xyz, 1
mckenzielandscaping.ca, 1
-mckhan.com, 1
mckinleytk.com, 1
mckinneyisdtx.gov, 1
mckissock.com, 1
@@ -95791,7 +95357,7 @@ mcmillanskiclub.com.au, 1
mcmind.ddns.net, 1
mcmk.in, 1
mcnairinternational.com, 1
-mcnav.net, 0
+mcnavody.eu, 1
mcneill.io, 1
mcnet.care, 1
mcnext.net, 1
@@ -95832,6 +95398,7 @@ mcsnovatamabayan.com, 1
mcsoneca.tk, 1
mcsrvstat.us, 1
mcstaralliance.com, 0
+mcsteve.com, 1
mctea.tk, 1
mctherealm.net, 1
mctitan.net, 1
@@ -95891,6 +95458,7 @@ mdlayher.com, 1
mdleom.com, 1
mdma.net, 1
mdmck10.xyz, 1
+mdme.co, 1
mdmed.clinic, 1
mdmhukuk.com, 1
mdmpsicologiaclinica.com, 1
@@ -95940,7 +95508,6 @@ meangreenjunk.com, 1
meaningfulbits.io, 1
meanit.ie, 1
meanjstraininginstitute.com, 1
-meany.xyz, 1
meao.io, 1
meao.market, 1
meao.online, 1
@@ -96106,8 +95673,8 @@ meccrcog-oh.gov, 1
mecenat-cassous.com, 1
mecenatfoot.fr, 1
meceware.com, 1
+mecexis.com, 1
mechafightclub.com, 1
-mechanic.cn, 1
mechanical.tk, 1
mechanics-schools.com, 1
mechanicweb.com, 1
@@ -96146,7 +95713,6 @@ medbreaker.one, 0
medcartoon.com, 1
medcenter.online, 1
medcentr.online, 1
-medcheck.ma, 1
medcir.com.br, 1
medcof.com.br, 1
medcorfu.gr, 1
@@ -96169,7 +95735,6 @@ medfind.link, 1
medfoods.com.au, 1
medfordoregon.gov, 1
medfordwi.gov, 1
-medguide-bg.com, 1
medgyd.lt, 0
medhacooks.com, 1
medhiwa.com, 1
@@ -96203,7 +95768,6 @@ mediabackoffice.co.jp, 0
mediabogen.net, 1
mediabooks.ml, 1
mediaboutique.nl, 1
-mediabrook.com, 1
mediabutic.ro, 1
mediacenter.dynv6.net, 1
mediacheky.es, 1
@@ -96245,6 +95809,7 @@ mediarithmics.io, 1
mediarquita.com, 1
medias-presse.info, 1
mediasagasocialseo.com, 1
+mediasklep24.pl, 1
mediaspike.com, 1
mediassist.in, 1
mediassistindia.com, 1
@@ -96258,7 +95823,6 @@ mediation-mv.de, 1
mediationculturelleclp.ch, 0
mediatrust.org, 1
mediaukkies.nl, 0
-mediavalet.com, 0
mediawax.be, 1
mediawijzer.net, 0
mediawiki.com, 1
@@ -96409,6 +95973,7 @@ medpeer.co.jp, 1
medpeer.jp, 1
medportalmd.tk, 1
medpost.com, 1
+medreich.com, 1
medreseja.com, 1
medresponsive.com, 1
medrol.cf, 1
@@ -96455,7 +96020,6 @@ medz.ro, 1
medzinenews.com, 0
meedia.me, 1
meedoennoordkop.nl, 0
-meeerskincare.com, 1
meek.ml, 1
meekhak.com, 1
meeko.cc, 1
@@ -96490,7 +96054,6 @@ meetjeslandsetriathlon.tk, 1
meetmaps.com, 1
meetmarlo.com, 1
meetmibaby.co.uk, 1
-meetmonarch.com, 1
meetmygoods.com, 1
meetmyown.ga, 1
meetmyown.tk, 1
@@ -96524,7 +96087,6 @@ megabouncingcastles.com, 1
megacellenerji.com, 1
megadesignecv.com.br, 1
megadimensao.com.br, 1
-megadrol.com, 1
megaelettrostimolatore.com, 1
megafilez.tk, 1
megaflix.nl, 1
@@ -96566,7 +96128,6 @@ megapixel.cz, 1
megaplan.cz, 1
megaplan.ru, 1
megaportal.ga, 1
-megaportal.org, 1
megaportal.tk, 1
megaprofi.tk, 1
megaproject.com, 1
@@ -96583,6 +96144,7 @@ megavasoc.com.ar, 1
megaviews.tk, 1
megawebsite.tk, 1
megaxchange.cash, 1
+megaxchange.com, 1
megayachts.world, 1
megazigzag.com, 1
megeve-tourisme.fr, 1
@@ -96615,7 +96177,6 @@ mehhh.xyz, 1
mehibo.tk, 1
mehllegal.com, 1
mehlvilletermiteandpestcontrolinc.com, 1
-mehmet.net, 1
mehmetince.net, 1
mehmettaze.com, 1
mehostdd.com, 0
@@ -96635,7 +96196,6 @@ meido-rando.net, 1
meiekinnisvara.ee, 1
meierhofer.net, 1
meiersmarkus.de, 1
-meifacil.com, 1
meigetsuen1980.com, 1
meihuayi.com, 1
meijburg.com, 1
@@ -96655,7 +96215,6 @@ meimeistartup.com, 1
mein-arabischkurs.de, 1
mein-betriebsrat.digital, 1
mein-domizil.at, 1
-mein-es1.de, 1
mein-gehalt.at, 1
mein-muehlhausen.bayern, 1
mein-neuer-garten.de, 1
@@ -96688,9 +96247,9 @@ meinflirtportalcheck.de, 1
meinforum.net, 1
meingartenversand.de, 1
meinhard.com, 1
-meinpalestina.de, 1
meinpflegedienst.net, 1
meinprospekt.de, 1
+meinsite.online, 1
meinstartinsleben.com, 1
meinstartinsleben.de, 1
meinstift.ch, 1
@@ -96712,7 +96271,6 @@ meisterprep.com, 1
meistertask.com, 1
meistronamai.lt, 1
meitianyixiaobu.com, 1
-meiwa.web.id, 1
meiyi.ga, 1
meiyouad.com, 1
meizitu.net, 1
@@ -96724,9 +96282,11 @@ mejofi.org, 1
mejor-broker.com, 1
mejorator.net, 1
mejorator.org, 1
+mejorcoberturamovil.es, 1
mejores-webs-citas.com, 1
mejoresencuestas.com, 1
mejorespatineteselectricos.es, 1
+mejorestarifasmoviles.es, 1
mejorfiltrodeagua.com, 1
mejorlaptop.com, 1
mejovonakowogov.gq, 1
@@ -96806,7 +96366,6 @@ melderegister-auskunft.de, 1
meldjeaan.be, 1
meldknop.nl, 1
meldpuntemma.nl, 1
-meldsluikstort.gent, 1
mele.ro, 1
meleagrisartfestival.gr, 1
meleeweb.net, 1
@@ -96815,7 +96374,7 @@ meleracupuncture.com, 1
melhoria.co.uk, 1
melhortennis.com.br, 1
meli.la, 1
-melicove.com, 1
+melia.com, 1
melideluxe.org, 1
melihacar.com.tr, 1
melikoff.es, 1
@@ -96836,6 +96395,7 @@ melkboshigh.co.za, 1
melkiran.tk, 1
melkoghonning.no, 1
mellika.ch, 1
+mellingburgerschleuse.de, 1
mellonexia.ml, 1
mellonne.com, 1
mellow.io, 1
@@ -97021,6 +96581,7 @@ mentalhealthtimes.tk, 1
mentalizes.tk, 1
mentalpage.com, 1
mentalproblems.tk, 1
+mentalsea.co.uk, 1
mentecuriosa.net, 1
menteofficial.com, 1
menterarchitects.com, 1
@@ -97043,7 +96604,6 @@ menukart.com, 1
menupay.com, 1
menureader.ml, 1
menzel4you.tk, 1
-menzietti.it, 1
menzzo.com.br, 0
meo.cz, 1
meo.de, 1
@@ -97055,7 +96615,6 @@ meow.camera, 1
meow.cloud, 0
meow.enterprises, 1
meow.plus, 1
-meowmeowmeowmeowmeowmeowmeowmeowmeowmeowmeowmeowservice.stream, 1
meowstodon.net, 1
meowtech.network, 1
mepassport.com, 1
@@ -97078,6 +96637,7 @@ merafsolutions.com, 1
meraki.hu, 1
meralda.eu, 1
meralda.net, 1
+meralda.nl, 1
meralda.org, 1
meraldamulder.com, 1
meraldamulder.eu, 1
@@ -97118,13 +96678,18 @@ mercadopago.com.mx, 1
mercadopago.com.pe, 1
mercadopago.com.uy, 1
mercadopago.com.ve, 1
+mercadoshops.cl, 1
+mercadoshops.com, 1
+mercadoshops.com.ar, 1
+mercadoshops.com.br, 1
+mercadoshops.com.co, 1
+mercadoshops.com.mx, 1
+mercadoshops.com.ve, 1
mercanix.co.uk, 1
-mercans.co, 1
mercans.com, 1
mercatino-olomouc.cz, 1
mercatinomusicale.com, 1
mercatoday.com, 1
-mercatoitticosbt.it, 1
mercatotime.com, 1
mercazaragoza.es, 1
mercdev.com, 1
@@ -97158,6 +96723,7 @@ mercury.foundation, 0
mercury.photo, 0
mercurycards.com, 1
mercuryfinancial.com, 1
+mercurylodge.com, 1
mercuryproject.ch, 0
mercurysquad.tk, 1
mercyseverity.tk, 1
@@ -97168,7 +96734,6 @@ merelskleertjes.tk, 1
merenbach.com, 1
merenita.eu, 1
merenita.net, 1
-merenita.nl, 1
merezha.ua, 1
mergeedu.com, 1
mergegroup.com.au, 1
@@ -97214,11 +96779,12 @@ merrillanwi.gov, 1
merrimacwi.gov, 1
merrychristmas.ml, 1
merryxmas2015.tk, 1
-mersinodak.com, 1
merson.tv, 1
merstham.cricket, 1
mersthamcc.co.uk, 1
mertcangokgoz.com, 1
+mertonapp.com, 1
+mertonapprentice.com, 1
mertuslu.com, 1
meruhealth.com, 0
mervetekinmimarlikinsaat.com.tr, 1
@@ -97250,6 +96816,7 @@ meshekard.co.il, 1
meshflow.be, 1
meshflow.net, 1
meshintranet.com, 1
+meshnet.nl, 1
meshotes.com, 1
mesjumelles.fr, 1
meskdeals.com, 1
@@ -97262,12 +96829,10 @@ mesomeds.com, 1
mesonandino.tk, 1
mesondelcazador.com, 1
mesos.cl, 1
-mesotheliomacauses.top, 1
mesotheliomacentre.tk, 1
mesotheliomaclaims.top, 1
mesotheliomalawfirm-worldwide.tk, 1
mesotheliomasymptoms.top, 1
-mesotheliomatreatment.top, 1
mesquitegcd.gov, 1
mesquitelandscapeservices.com, 1
message-tool.com, 1
@@ -97328,7 +96893,6 @@ metacortex.cf, 1
metacred.com, 1
metacritic.com, 1
metadata.be, 1
-metadata.tokyo, 1
metadedi.net, 1
metadesign.com, 1
metaether.net, 1
@@ -97343,6 +96907,7 @@ metal-madness.tk, 1
metal-news.tk, 1
metal-pless.com, 1
metal-rock.tk, 1
+metalab-vorstand.at, 1
metalargentum.tk, 1
metalbear.co, 1
metalbus.tk, 1
@@ -97355,7 +96920,6 @@ metalequipped.com, 1
metalevolution.tk, 1
metalfans.be, 1
metalgie.work, 1
-metalgo.co, 1
metalgoth.tk, 1
metalhouse.tk, 1
metaljournal.tk, 1
@@ -97388,7 +96952,6 @@ metalurgicafundao.pt, 1
metalwarrior.tk, 1
metalweaverscreations.com, 1
metalworkingexpo.com, 1
-metamarkettrade.com, 1
metamente.me, 1
metameva.com, 1
metamorfosis.cf, 1
@@ -97438,6 +97001,7 @@ meteohuertamur.tk, 1
meteonederbetuwe.nl, 1
meteopievedicampo.ddns.net, 1
meteosat.tk, 1
+meteotorun.pl, 1
meteoweb.eu, 1
meteowiki.tk, 1
meter.md, 1
@@ -97446,6 +97010,7 @@ meterinsight.com, 0
metex.exchange, 1
metformin365.tk, 1
method.com, 0
+methoddemo.com, 0
methode.com, 1
methodisthealth.com, 1
methodistorthopedics.com, 1
@@ -97463,7 +97028,6 @@ metiers.ma, 1
metimedelivered.com, 1
metin2.community, 1
metin2.download, 1
-metin2arena.ro, 1
metin2dev.org, 1
metitlesearch.com, 1
metiz.site, 1
@@ -97488,7 +97052,6 @@ metrix.co.uk, 1
metro-detroit.com, 1
metro-vet.co.uk, 1
metro-web.net, 1
-metro1security.com, 1
metro2dev.com, 1
metroarchive.jp, 1
metrobank.com.ph, 1
@@ -97518,6 +97081,7 @@ metronik.it, 1
metronome.ga, 1
metrophone.vn, 1
metroplanorlando.gov, 1
+metroplex.me, 1
metropole.com.au, 1
metropolis.ga, 1
metropolis5000.tk, 1
@@ -97526,6 +97090,7 @@ metropolisdawn.net, 1
metropolisil.gov, 1
metropolitanmodels.com, 1
metrorealestatepros.com, 0
+metroscubicos.com, 1
metrothessalonikis.tk, 1
metroval.tk, 1
metroweb.cz, 1
@@ -97535,6 +97100,7 @@ metrss.eu, 1
metrss.net, 1
metsasta.com, 1
metsosivut.fi, 1
+metspoedbeschikbaar.nl, 1
mett.nl, 1
mettekorshoj.dk, 1
mettelenejohansson.dk, 1
@@ -97597,7 +97163,6 @@ meyerbeer.com, 1
meyersconstructionandconsulting.com, 1
meyner.com, 1
meys.io, 1
-meyvs.com, 1
mezcal.amsterdam, 1
mezedokamomata.tk, 1
meziblog.cz, 1
@@ -97610,7 +97175,6 @@ mf-fischer.de, 1
mf-natuurfotografie.nl, 1
mf.me, 1
mfa-inc.com, 1
-mfa.tw, 1
mfactory.ca, 1
mfamonitor.com, 1
mfapass.eu, 1
@@ -97660,7 +97224,6 @@ mgfgroup.com, 1
mgfgroup.mx, 1
mgfgroup.us, 1
mgfnow.com, 1
-mgfpatrimoine.com, 1
mghiorzi.com.ar, 0
mghr.co.nz, 1
mghw.ch, 1
@@ -97673,7 +97236,6 @@ mgknet.com, 1
mgldiffusion.fr, 1
mglobalservices.com, 1
mgm-constructeur.com, 1
-mgmd.org, 1
mgmeet.com, 1
mgmultiservicessrl.it, 1
mgo-ostenfelde.tk, 1
@@ -97731,6 +97293,7 @@ mhtdesign.net, 1
mhuig.top, 1
mhurologytriad.org, 1
mhutils.com, 1
+mhvs.co.uk, 1
mhw-bike.com, 1
mhw-bike.de, 1
mhw-bike.es, 1
@@ -97749,7 +97312,6 @@ mi.ras.ru, 1
mi1k.cn, 1
mi80.com, 1
mia-manager.dk, 1
-mia.gent, 1
mia.tf, 1
mia.tw, 0
mia3d.fr, 1
@@ -97786,8 +97348,6 @@ miasarafina.de, 1
miasegurado.com, 1
miasma.tk, 1
miasonne.com, 1
-miatfactory.be, 1
-miatgent.be, 1
miavierra.org, 1
mibaso.com, 1
mibeneficio.cl, 1
@@ -97828,7 +97388,6 @@ michaelabbas.tk, 1
michaelaelsner.de, 1
michaelamead.com, 1
michaelasawyer.com, 1
-michaelbaade.no, 1
michaelband.co, 1
michaelband.com, 1
michaelbeer.co.uk, 1
@@ -97859,7 +97418,6 @@ michaelkiske.tk, 1
michaelkleinert.de, 1
michaelklos.nl, 1
michaelkorsgill.tk, 1
-michaelkorsoutletshops.cyou, 1
michaelkuehn.tk, 1
michaelliunsky.cn, 1
michaelloveys.com, 1
@@ -97873,7 +97431,6 @@ michaelpnaughton.com, 1
michaelroemer.de, 1
michaelschmidt.ch, 1
michaelschubert.com, 0
-michaelsnoeren.nl, 0
michaelstoffer.com, 1
michaeltaboada.me, 1
michaeltittes.de, 1
@@ -97884,6 +97441,7 @@ michaelwermeester.com, 1
michaelwmckinney.com, 1
michaelworth.au, 1
michal-kral.cz, 0
+michal-smahel.cz, 1
michal-spacek.com, 1
michal-spacek.cz, 1
michalchomo.eu, 1
@@ -97893,6 +97451,7 @@ michalkral.tk, 1
michalkunicki.pl, 1
michalmlozniak.com, 1
michalpodraza.pl, 1
+michalsmahel.cz, 1
michalspacek.com, 1
michalspacek.cz, 1
michalstepar.cz, 1
@@ -97900,6 +97459,7 @@ michalszotkowski.cz, 1
michalwiglasz.cz, 1
michaonline.de, 1
micharts.biz, 1
+michaut.me, 1
michel-cloud.de, 1
michel-kratochvil.tk, 1
michel-paris.com, 1
@@ -97998,8 +97558,6 @@ microferma.site, 1
microfinance-crimea.ru, 0
microgroove.jp, 1
microhydrony.org, 1
-microl.ink, 1
-microland.one, 1
microlinkpc.com, 1
microloan.pk, 1
microlog-online.de, 1
@@ -98047,7 +97605,6 @@ middlesexwoodpigeonclub.co.uk, 1
middletowndelcopa.gov, 1
middletownny.gov, 1
middletownri.gov, 1
-middleware.services, 1
mide.gob.do, 1
midea.kg, 1
mideo.tk, 1
@@ -98064,7 +97621,6 @@ midiet.co.za, 1
midilibre.fr, 1
midipix.org, 1
midisgroup.com, 1
-midkam.ca, 1
midlandcountymi.gov, 1
midlandsfundays.co.uk, 1
midlandslotus.co.uk, 1
@@ -98117,7 +97673,6 @@ mielehybla.it, 1
mielelpinsapar.com, 0
mielenosoitukset.fi, 1
mielkan.com, 1
-mielke-it.ch, 1
miem.us, 1
miembarcacion.com, 1
miemus.eu, 1
@@ -98156,7 +97711,7 @@ migliori-siti-di-incontro.com, 1
miglioricasinoonline.info, 1
migliorini.adv.br, 1
mignet.io, 1
-mignonne.com, 1
+mignonne.com, 0
mignonneapi.com, 1
migrafill.net, 1
migraine-en-werk.nl, 1
@@ -98166,7 +97721,6 @@ migrainereliefplan.com, 1
migrantskillsregister.org.uk, 1
migrantworker.gov, 1
migraplus.ru, 1
-migratiolex.com, 1
migrationlawfirm.com.au, 1
migrations.tk, 1
migrinfo.fr, 1
@@ -98185,11 +97739,11 @@ miguelquijano.com.co, 1
miguelstreeservices.com, 1
miguia.tv, 1
mihaelacozma.ro, 1
+mihaijoe.fr, 1
mihaiordean.com, 1
mihaiturcu.ninja, 1
mihalgrameno.ml, 1
mihalicka.com, 1
-mihanroid.ir, 1
mihanwebtest.tk, 1
miharu.moe, 1
mihaylov.tk, 1
@@ -98219,8 +97773,6 @@ mijnejk.nl, 1
mijnenergiemissie.nl, 1
mijnetz.nl, 1
mijngeldcoach.nl, 1
-mijngent.be, 1
-mijnhosting.org, 0
mijnkantoor.net, 1
mijnkerstkaarten.be, 1
mijnkwadraad.nl, 1
@@ -98251,6 +97803,7 @@ mijnstembureau-coevorden.nl, 1
mijnstembureau-denhelder.nl, 1
mijnstembureau-dijkenwaard.nl, 1
mijnstembureau-eindhoven.nl, 1
+mijnstembureau-emmen.nl, 1
mijnstembureau-enschede.nl, 1
mijnstembureau-geldrop-mierlo.nl, 1
mijnstembureau-gilzerijen.nl, 1
@@ -98260,6 +97813,7 @@ mijnstembureau-haarlemmermeer.nl, 1
mijnstembureau-harderwijk.nl, 1
mijnstembureau-helmond.nl, 1
mijnstembureau-hilvarenbeek.nl, 1
+mijnstembureau-hilversum.nl, 1
mijnstembureau-hollandskroon.nl, 1
mijnstembureau-kerkrade.nl, 1
mijnstembureau-koggenland.nl, 1
@@ -98292,10 +97846,12 @@ mijnstembureau-westerkwartier.nl, 1
mijnstembureau-westerwolde.nl, 1
mijnstembureau-wierden.nl, 1
mijnstembureau-woensdrecht.nl, 1
+mijnstembureau-zaanstad.nl, 1
mijnstembureau-zoetermeer.nl, 1
mijnstembureau-zundert.nl, 1
mijnstembureau-zwijndrecht.nl, 1
mijnstembureau.nl, 1
+mijntrined.nl, 1
mijnvogaanvraag.nl, 1
mijnwefact.nl, 1
mijp.com, 1
@@ -98336,7 +97892,6 @@ mikelpradera.tk, 1
mikelundpainting.com, 1
mikemcgeephotography.com, 1
mikemooresales.com, 1
-mikenas.org, 1
mikeowens.us, 1
mikeprocopio.com, 1
mikerichards.email, 1
@@ -98461,6 +98016,7 @@ milesconsulting.io, 1
milesdewitt.com, 1
milesformigraine.org, 1
milesquaretechnologygroup.com, 1
+milestoneinternet.com, 1
milestonemachine.com, 1
miletic.net, 1
mileyweasel.de, 1
@@ -98523,9 +98079,6 @@ millburyma.gov, 1
millcreekut.gov, 1
millcreekwa.gov, 1
millefleurs.eu, 1
-millenialarts.xyz, 1
-millenialhouse.xyz, 1
-millenn.photos, 1
millennialbella.net, 1
millennium-thisiswhoweare.net, 1
millenniumfalcon.org, 1
@@ -98544,7 +98097,6 @@ millercountymo.gov, 1
millerfabricationsolutions.com, 1
millerfamilyfarmtx.com, 1
millerkaplan.com, 1
-millermotorswestbank.com, 1
milleron.net, 1
milleron.xyz, 1
millersburgoregon.gov, 1
@@ -98674,6 +98226,7 @@ mindfully.com, 0
mindfulnessjourney.ca, 1
mindfulslumber.com, 1
mindgard.co.uk, 1
+mindgtc.com, 1
mindhand.com, 1
mindingourway.com, 1
mindjee.tk, 1
@@ -98699,6 +98252,7 @@ mindstream.one, 1
mindtapestry.com, 1
mindthe5.com, 1
mindthe5.org, 1
+mindthebridge.com, 1
mindthemum.com, 1
mindtherock.com, 1
mindtickle.com, 1
@@ -98793,7 +98347,6 @@ mini-zoo.club, 1
mini2.fi, 1
minialbums.ga, 1
miniapp.global, 1
-miniapp.sh, 1
miniatomium.tk, 1
minibabi.site, 1
minibackpackgirls.cf, 1
@@ -98832,6 +98385,8 @@ minimalistbaker.com, 1
minimalistmenu.com, 1
minimaliston.com, 1
minimalmx.io, 1
+minimalytics.eu, 1
+minimalytics.nl, 1
minimayhemsoftplay.co.uk, 1
minimepet.com, 1
minimonies.tk, 1
@@ -98855,6 +98410,7 @@ minisoft4u.ir, 1
ministerioaguadevida.tk, 1
ministeriodeeducacion.gob.do, 1
ministory.tk, 1
+ministryhire.com, 1
ministryofinternet.eu, 1
ministryofsound.com, 1
ministryofvillas.com, 1
@@ -98891,6 +98447,7 @@ minnesotatitlesearch.com, 1
minng.cc, 1
minnisites.com, 1
minnit.chat, 1
+minoar.com, 1
minobar.com, 1
minocyclinee.gq, 1
minocyclinehere.gq, 1
@@ -98899,6 +98456,7 @@ minohtaurov.cf, 1
minorice.net, 1
minorisa.tk, 1
minoritywhip.gov, 1
+minorsurgery.co.uk, 1
minorukai.com, 1
minotauro.com.ar, 1
minotnd.gov, 1
@@ -98918,7 +98476,6 @@ mintclass.com, 1
mintdsmile.com.au, 1
mintea-noua.ro, 1
mintea.pw, 1
-mintea.xyz, 1
minterslab.com, 1
mintersvault.com, 1
mintert.net, 1
@@ -98957,6 +98514,7 @@ mio-ip.ch, 1
miobeach.nl, 1
miobt.eu.org, 0
miomiojoyeria.com, 1
+miomiorun.com, 0
miorganics.ro, 1
miottawavotes.gov, 1
mipadlettings.com, 1
@@ -99043,6 +98601,7 @@ mirkofranz.de, 1
mirkomainardi.com, 1
mirkout.com, 1
mirkvartir.tk, 1
+mirmax.ch, 0
mirnesnet.tk, 1
mirnews.ml, 1
miroirbythalia.shop, 1
@@ -99118,7 +98677,6 @@ miss-perruque.com, 0
miss.com.tw, 1
missadrastea.org, 1
missaocadastrobv.com.br, 1
-missapk.com, 1
missblisshair.com.au, 1
missdoertie.net, 1
missdream.org, 1
@@ -99170,11 +98728,9 @@ missworldinfo.tk, 1
missycosmeticos.com.br, 1
missycraindance.com, 1
missyjay.tk, 1
-missyou.link, 1
mist79.ru, 1
mistades.ga, 1
mistajsay.com, 1
-mistaken.pl, 1
mister-auto.co.uk, 1
mister-auto.com, 1
mister-auto.de, 1
@@ -99270,12 +98826,14 @@ mito-meishi.shop, 1
mitokashi.ml, 1
mitotalplay.com.mx, 1
mitozen.com, 1
+mitragacor.org, 1
mitranlogistik.com, 1
mitraseo.tk, 1
mitratech.com.br, 1
mitrausahagoto.com, 1
mitrausahatani.com, 1
mitrax.com.br, 1
+mitre-bedford.org, 1
mitre10.com.au, 0
mitrecaasd.org, 1
mitremai.org, 1
@@ -99291,8 +98849,8 @@ mitsubishi-stanok.ru, 0
mitsubishielectric-rce.eu, 1
mitsubishielectric.es, 1
mitsubishisurabayainfo.com, 1
+mitsuhashi.jp, 1
mitsuwashika.com, 1
-mitt.ca, 1
mittagonghomestead.com.au, 1
mittarinvaihto.fi, 1
mittdolcino.com, 0
@@ -99345,7 +98903,6 @@ mixedrecipe.com, 1
mixer.cz, 1
mixerfestival.com.br, 1
mixermate.com.au, 1
-mixescloud.com, 1
mixfix.com.br, 1
mixgreen.de, 1
mixi.social, 1
@@ -99357,7 +98914,6 @@ mixmastermitch.com, 1
mixmastersdeejays.tk, 1
mixmister.com, 1
mixmix.tk, 1
-mixmovi.com, 1
mixnix.tk, 1
mixnmojo.com, 1
mixom.net, 1
@@ -99469,7 +99025,6 @@ mkjoyeria.cl, 0
mkk.de, 1
mkkcrafts.com, 1
mkkkrc.ru, 1
-mkl.cn, 1
mklenterprisesacademy.com, 1
mklenterprisescoaching.com, 1
mklpedia.de, 1
@@ -99539,7 +99094,7 @@ mlohr.net, 1
mlokcleaning.com, 1
mlonline.com.mx, 1
mloska.tk, 1
-mlotfycarrental.com, 1
+mlotfycarrental.com, 0
mlp.horse, 1
mlpavimentosdehormigonimpreso.com, 1
mlpk.cz, 1
@@ -99551,7 +99106,6 @@ mlshh.pp.ua, 1
mlsp-art.com, 1
mlstav.sk, 1
mlstverse.org, 1
-mlsvallarta.com, 1
mltrade.ml, 1
mlukas.xyz, 1
mlv-psychosomatik.de, 1
@@ -99585,7 +99139,6 @@ mmdc.ru, 0
mmdriving.ca, 1
mme.re, 1
mmeaeasterndistrict.org, 1
-mmfbi.com, 1
mmgal.com, 1
mmhome.fr, 1
mmilog.hu, 1
@@ -99609,7 +99162,6 @@ mmogah.com, 1
mmoneko.com, 1
mmonit.com, 1
mmostats.com, 1
-mmot.sk, 1
mmpi-ci.com, 1
mmpiinternational.com, 1
mmpiservices.fr, 1
@@ -99647,8 +99199,6 @@ mne.moe, 1
mnec.io, 1
mneeb.de, 1
mnemonic.ninja, 1
-mnemonic.quest, 1
-mneti.ru, 1
mnews.it, 1
mngfam.ddns.net, 1
mnguyen.io, 1
@@ -99670,6 +99220,7 @@ mnogoknighek.tk, 1
mnogosofta.tk, 1
mnogoznai.tk, 1
mnotrioesdp.ml, 1
+mnpl.ir, 1
mnprairie.gov, 1
mnrloroli.tk, 1
mnrtechsolutions.com, 1
@@ -99697,7 +99248,6 @@ moaicar.com, 1
moalboaladventures.com, 1
moas.design, 1
moas.photos, 1
-moawards.com, 1
mob-tok-shop.hu, 1
mob2con.com.br, 1
mob4hire.com, 1
@@ -99709,7 +99259,6 @@ mobal.com, 0
mobappcreator.com, 1
mobclan.tk, 1
mobcsp.work, 1
-mobeewash.com, 1
mobele.fr, 1
moberi.com.ua, 1
mobex.biz, 0
@@ -99733,7 +99282,6 @@ mobile-ivr.tk, 1
mobile-news.tk, 1
mobile-retter.de, 1
mobile.de, 1
-mobile.eti.br, 1
mobile.tiaa.org, 1
mobile.united.com, 0
mobile.usaa.com, 0
@@ -99764,6 +99312,9 @@ mobileritelushi.com, 1
mobilesector.de, 1
mobilesettingers.ga, 1
mobilesignalsolutions.co.uk, 1
+mobilesmokeopacityglendora.com, 1
+mobilesmokeopacitytesting.com, 1
+mobilesmokeopacitytestinglosangeles.com, 1
mobilesms.io, 1
mobilesnewsworld.ga, 1
mobilestuff.tk, 1
@@ -99772,6 +99323,7 @@ mobileteleconferenceers.ga, 1
mobiletirer.tk, 1
mobiletraff.co, 1
mobilewikiserver.com, 1
+mobilfunk-talk.de, 1
mobilhaber.ga, 1
mobilhondatangsel.com, 1
mobilidadeurbana.ind.br, 1
@@ -99779,13 +99331,6 @@ mobilificio.roma.it, 1
mobilis.dz, 1
mobilisation-generale.org, 0
mobilistics.de, 1
-mobiliteit.gent, 1
-mobiliteitgent.be, 1
-mobiliteitsbedrijf-gent.be, 1
-mobiliteitsbedrijf.be, 1
-mobiliteitsbedrijfgent.be, 1
-mobiliteitsbedrijfstadgent.be, 1
-mobiliteitstadgent.be, 1
mobility-events.ch, 1
mobility-services.eu, 1
mobilityworld.tk, 1
@@ -99810,9 +99355,7 @@ mobiride.co, 1
mobistartv.ml, 1
mobius.network, 1
mobizent.com, 1
-mobizma.com, 1
moblkar.com, 1
-moblr.nl, 1
mobmp4.info, 1
mobobe.com, 1
mobolight.ml, 1
@@ -99828,8 +99371,10 @@ mobylette.tk, 1
moca-2081.com, 1
moca-2082.com, 1
mocanu.pro, 1
+mocasa.com, 1
mocent.de, 1
mochanstore.com, 1
+mochiai.blog, 0
mochilerostailandia.com, 1
mochiyuki.net, 1
mochizuki.moe, 0
@@ -99852,7 +99397,6 @@ modacompleta.com.br, 1
modafilmdmodafinil.com, 1
modafinil.wiki, 1
modafinilwizard.co, 1
-modafinilwizard.com, 1
modafinilyes.com, 1
modafo.com, 1
modahaber.com, 1
@@ -99940,6 +99484,7 @@ modesofcriticism.org, 1
modestoca.gov, 1
modetalente.com, 1
modetrends.tk, 1
+modfor.org, 1
modforwardteam.ru, 1
modgamer.gq, 1
modgnews.com, 1
@@ -99951,6 +99496,7 @@ modirhp.ir, 1
modisarkar.tk, 1
modistryusercontent.com, 1
modlimit.cf, 1
+modperl.pl, 1
modpop.se, 1
modscrew.com, 1
modsecurity.net, 1
@@ -99964,6 +99510,7 @@ modulex-gmbh.de, 1
modulkuhni.by, 1
modulo.ee, 1
modulos.com.au, 1
+modulos.engineer, 0
modulosdesign.com.au, 1
moduloseltaladro.com, 1
moduluscardprinters.co.uk, 1
@@ -100011,6 +99558,7 @@ moesborg.dk, 1
moescat.xyz, 0
moeslinger-gehmayr.com, 1
moetrack.com, 1
+moevps.com, 1
moewe.org, 1
moeyy.tech, 1
mofbinsurance.com, 1
@@ -100030,6 +99578,7 @@ moglie.xxx, 1
mogomix.cf, 1
mogradus.com, 1
mogs.lol, 1
+moguchat.ai, 1
mogwailabs.de, 1
mogyuchi.com, 1
moha-swiss.com, 0
@@ -100048,7 +99597,7 @@ mohammadhamed.tk, 1
mohammadreza-bakhtiari.tk, 1
mohammed.ga, 1
mohammedalrifai.tk, 1
-mohammedimranahmed.com, 1
+mohap.gov.ae, 1
mohave.gov, 1
mohawk89-kavita.duckdns.org, 1
mohela.com, 1
@@ -100135,7 +99684,6 @@ mold-tech.com, 1
mold.world, 1
moldova-news.com, 1
moldova-online.ml, 1
-moldovainformata.ro, 1
moldovanka.tk, 1
moldovawall.tk, 1
moldsearchers.ga, 1
@@ -100146,11 +99694,8 @@ molehill.it, 1
molenaagtekerke.tk, 1
molenaar-ricardo.tk, 1
molinillo.tk, 1
-moliporex.com, 1
-moliporex.pt, 1
molise.store, 1
molkerei-ammerland.com, 1
-moller.cn, 1
molleron.net, 1
molletjesveer.tk, 1
mollybears.org, 1
@@ -100170,13 +99715,13 @@ molpay.com, 1
molpek.com, 1
molsonmail.com, 1
moltapor.tk, 1
+moltenplastic.xyz, 1
molti.hu, 1
molusk.ml, 1
molwick.com, 1
mom.life, 1
moma.co.uk, 1
momentalno.tk, 1
-momentlocacoes.com.br, 1
momentosfriko.com, 1
momentum-tech.ca, 1
momentum.photos, 1
@@ -100199,6 +99744,7 @@ mommyinstinct.com, 1
mommylessoners.ga, 1
mommylessonest.ga, 1
mommypantsest.ga, 1
+momo.moda, 1
momo0v0.club, 1
momobako.com, 1
momochrome.online, 1
@@ -100276,7 +99822,6 @@ mondsee-psychotherapie.at, 1
mondsichtung.de, 1
mondzorgparkzicht.nl, 1
moneck.info, 1
-moneni.com, 1
moneoci.com.br, 1
monese.com, 0
moneshaq.fr, 1
@@ -100424,7 +99969,6 @@ monorthopedagogue.ca, 1
monosis.net, 1
monoskop.org, 1
monospazzole.roma.it, 1
-monostreambr.com, 1
monothesis.com, 1
monoworks.co.jp, 1
monoxoro.tk, 1
@@ -100463,10 +100007,10 @@ monstermoney.tk, 1
monsternet.pl, 1
monstersuniversity.ga, 1
monstertalesgame.com, 1
+monstertraxstudio.com, 1
monsterx.cn, 1
monstl.com, 1
monstresdesfetes.com, 1
-mont-blancpensonline.cyou, 1
mont-thabor.fr, 1
monta.nl, 1
montack.de, 1
@@ -100474,6 +100018,7 @@ montagetravel.com, 1
montagnainitalia.com, 1
montagne-vacances.com, 1
montagnicimes.com, 1
+montajtamirmobilya.com, 1
montala.com, 1
montalvofarret.xyz, 1
montanabiack.de, 1
@@ -100481,7 +100026,6 @@ montanacreativitymovement.tk, 1
montanaguard.gov, 1
montanaonlinedivorce.com, 0
montanarenewables.org, 1
-montanasky.tv, 1
montanatitlesearch.com, 1
montanawi.gov, 1
montarosa.tk, 1
@@ -100593,11 +100137,11 @@ moondsee.de, 1
moonfist.eu, 1
moonflux.com, 1
moonfreak.tk, 1
+moonglancecareer.com, 1
moonhaa.com.br, 1
mooninvoice.com, 1
moonkin.eu, 1
moonlabs.nl, 1
-moonlanders.nl, 0
moonlight-show.tk, 1
moonlightdesign.org, 1
moonlightlovers.com, 1
@@ -100628,6 +100172,7 @@ moonssif.com, 1
moonue.com, 0
moonwolfwiccanschool.tk, 1
moonzerotwo.tk, 1
+mooo.asia, 1
mooreandsmalley.co.uk, 0
mooreautoglass.com, 1
moorelife.cn, 1
@@ -100654,7 +100199,6 @@ moova.io, 1
moove-it.com, 1
moovemais.com.br, 1
mopak.tk, 1
-moparcraft.com, 1
moparcraft.net, 1
moparcraft.org, 1
moparinsiders.com, 1
@@ -100663,16 +100207,15 @@ moparisthebest.net, 1
moparisthebest.org, 1
moparpartsgiant.com, 1
moparscape.net, 1
-mope-blog.com, 1
moped-versichern.de, 1
mopedpress.com, 1
mopedreifen.de, 0
mopie.de, 1
-moplay.org, 1
mopliangxing.com, 1
moppeleinhorn.de, 1
moppelito.tk, 1
moppenfactory.tk, 1
+mopsly.com, 1
moquettes.roma.it, 1
mor-tv.com, 1
mor.estate, 0
@@ -100691,7 +100234,6 @@ moraxyc.com, 1
morbatex.com, 1
morbius.cz, 1
morbotron.com, 1
-morc.me, 1
morchstore.com, 1
morcillaencaldera.com, 1
mord-ost.de, 1
@@ -100710,11 +100252,9 @@ moreapp.co.uk, 1
morebus.co.uk, 1
morechance.de, 1
morecigarettes.tk, 1
-moreclarity.digital, 1
morecreativelife.com, 1
morediets.net, 1
moreeducation.tk, 1
-morehertz.com, 1
morehopefoundations.org.uk, 1
morellilaw.com, 1
morenadacentral.tk, 1
@@ -100751,6 +100291,7 @@ mori-cdc.com, 1
morimoto-d.com, 1
morimoto-tokai.com, 1
morinomiyako-a.co.jp, 1
+morioh.com, 1
morisakimikiya.com, 1
morishoji-english-school.com, 0
morishouse.com, 1
@@ -100804,7 +100345,6 @@ morphysm.io, 1
morphysm.org, 1
morr.cc, 1
morrellllc.com, 0
-morrellwine.com, 1
morrharet.se, 1
morris.computer, 1
morristownvt.gov, 1
@@ -100883,7 +100423,6 @@ mosnews.tk, 1
moso.io, 0
mosobl.tk, 1
mosostore.nl, 1
-mosquesofbangladesh.xyz, 1
mosquito-code.com, 1
mosquito-sklep.pl, 1
mosr.sk, 1
@@ -100912,9 +100451,8 @@ mostlyharmless.at, 1
mostlyoverhead.com, 1
mostmost.tk, 1
mostquoted.com, 1
-mosttaza.com, 1
+mostynlaw.com, 1
mosurist.tk, 1
-moswand.nl, 1
motability.co.uk, 1
motabilitychargeshare.co.uk, 1
motabilitydealer.co.uk, 1
@@ -100932,7 +100470,7 @@ motekforcelink.nl, 1
motekmedical.com, 1
motekmedical.eu, 1
motekmedical.nl, 1
-motekrysen.com, 0
+motekrysen.com, 1
moteksystems.com, 1
moteksystems.net, 1
motezazer.fr, 1
@@ -100956,7 +100494,6 @@ motion-tm.de, 0
motion504.com, 1
motional.com, 1
motiondata-vector.at, 1
-motiondata-vector.com, 1
motiondeveloper.com, 1
motionglobeers.ga, 1
motionory.com, 1
@@ -101010,6 +100547,7 @@ motorbiketenerife.com, 1
motorbiketourhanoi.com, 1
motorcityalignment.com, 1
motorcitycasino.com, 1
+motorcyclenews.com, 1
motorcyclestudies.org, 1
motordearranque.com.br, 1
motoreflex.pe, 1
@@ -101029,7 +100567,6 @@ motorsport-passion.com, 1
motorsport-wuerttemberg.de, 1
motorst.dk, 1
motortg.it, 1
-motorwatcher.com, 1
motorways.tk, 1
motorwrappen.nl, 1
motoryachtclub-radolfzell.de, 1
@@ -101099,7 +100636,6 @@ mountainspringsrentals.ca, 1
mountainstage.org, 1
mountaintree.net, 1
mountainutilities.eu, 1
-mountainvalleycenter.com, 1
mountainvalleygrowers.com, 1
mountainviewgrand.com, 1
mountainvistaretirement.com, 0
@@ -101196,7 +100732,9 @@ moviko.nz, 1
movil.uno, 1
movilandroide.com, 1
moviles.com, 1
+movilesconfibra.es, 1
moviltronix.com, 1
+movilysinpermanencia.es, 1
movimento-terra.it, 1
movimentoterra.roma.it, 1
moving-pixtures.de, 1
@@ -101210,7 +100748,6 @@ movingtonewcastle.com, 1
movingtonewcastle.com.au, 1
movio.ga, 1
moviro.net, 1
-movizland.space, 1
movlib.org, 1
movnest.com, 1
mowercountymn.gov, 1
@@ -101251,7 +100788,6 @@ mp.org, 1
mp3.cz, 1
mp3.tj, 1
mp3cut.net, 1
-mp3ddesigns.com, 1
mp3gratuiti.com, 0
mp3musicfind.ga, 1
mp3noi.com, 1
@@ -101265,6 +100801,8 @@ mpamag.com, 1
mpbio.com, 1
mpc-hc.org, 1
mpc-view.net, 1
+mpcenter.ru, 1
+mpcmsa.org, 1
mpdu.tk, 1
mpebrasil.tk, 1
mpeslearning.com, 1
@@ -101309,9 +100847,9 @@ mpsports.org, 1
mpssghosp.com, 1
mptdom.com, 1
mptenders.gov.in, 1
-mptool.pt, 1
mpu-ibbi.de, 1
mpu-vorbereitung.com.de, 1
+mputra.com, 1
mpy.ovh, 1
mqacg.com, 1
mqas.net, 1
@@ -101478,7 +101016,6 @@ mrvnt.co, 1
mrwacky.com, 1
mrwebb.ca, 1
mrwindow.co.uk, 1
-mrwp.ru, 1
mrwrestling.tk, 1
mrxn.net, 1
mryayapapaya.com, 1
@@ -101494,9 +101031,8 @@ msaludasuhogar.com, 1
msar.eu, 1
msbdocs.com, 1
msbmb.com, 1
+msc-fivem.shop, 1
mscc.mu, 1
-msch.pw, 1
-mschuessler.org, 1
msd-animal-health.com, 1
msd-tiergesundheit.de, 1
msda23.gov, 1
@@ -101510,7 +101046,6 @@ mserve.ddns.net, 1
mservers.cz, 1
msf-usa.org, 1
msfishingcharter.com, 1
-msftcnsi.com, 1
msg.org.tr, 1
msgallery.tk, 1
msganka.jp, 1
@@ -101518,7 +101053,6 @@ msgroupitaly.com, 1
msgru.com, 1
msgs.ee, 1
msgtrust.com, 1
-msh100.uk, 1
msha.gov, 1
mshastanddown.gov, 1
mshemailmarketer.com.au, 1
@@ -101548,10 +101082,10 @@ msn.cn, 1
msn.com, 1
msnarzedzia.pl, 1
msncash.cf, 1
+msnetworksetup.com, 1
msngr.com, 1
msnhdd.info, 1
msnr.net, 1
-msoc.gent, 1
msoffice-inc.net, 1
msoida.me, 1
msoll.de, 1
@@ -101596,6 +101130,7 @@ msuna.net, 1
msv-limpezas.pt, 1
msvbeveiliging.nl, 1
mswdtemplate.com, 1
+mswww.pl, 1
msx.org, 1
msxi.com, 1
msyndicate.com, 1
@@ -101649,6 +101184,7 @@ mtf.party, 1
mtf.rip, 1
mtf.wiki, 1
mtfgnettoyage.fr, 1
+mtg-drafter.com, 1
mtgims.com, 0
mtgoptex.com, 1
mtgsuomi.fi, 1
@@ -101656,7 +101192,7 @@ mthode.org, 1
mthrbrd.net, 1
mths.be, 0
mticareportal.com, 1
-mticket.tech, 1
+mtiga.org, 1
mtinz.com, 1
mtirc.co, 1
mtjoytwppa.gov, 1
@@ -101696,7 +101232,6 @@ mttoubkaltrek.com, 1
mtv.re, 1
mtvernonlisbonpd-ia.gov, 1
mtvroadies.tk, 1
-mtw.org, 1
mtwolfpa.gov, 1
mtz-bu.gq, 1
mtz-info.gq, 1
@@ -101824,6 +101359,7 @@ mukurtu.org, 1
mukwa.gov, 1
mula.solutions, 1
mula.tk, 1
+mulao.com, 1
mulberryar.gov, 1
mulberryfirear.gov, 1
mulberrypolicear.gov, 1
@@ -101832,7 +101368,6 @@ mulder.social, 1
mulderfamilie.tk, 1
mulej.net, 1
mulheres18.com, 1
-mulheresinvestindo.com.br, 1
muling.lu, 1
mulk.hopto.org, 1
mullen.net.au, 1
@@ -101898,7 +101433,6 @@ multiroom-streaming.de, 1
multischool.tk, 1
multiservice-group.eu, 1
multisite.ovh, 1
-multispaninc.com, 1
multistas.tk, 1
multitec.nl, 1
multitek.no, 1
@@ -101936,7 +101470,6 @@ mumusofa.com.tw, 1
muna.de, 1
munakata-cl.jp, 1
munch.me, 1
-munchcorp.com, 1
muncyt.es, 1
mund-interdisziplinaer.com, 1
mundo-otaku.tk, 1
@@ -101961,7 +101494,6 @@ mundoinfrarrojo.com, 1
mundojoven.tk, 1
mundomagicotv.com, 1
mundomovie.tk, 1
-mundonow.com, 1
mundopatchwork.online, 1
mundoperfecto.net, 1
mundorealtv.tk, 1
@@ -101996,13 +101528,11 @@ munnezza.tk, 1
munroads.com, 1
muntajati-om.com, 0
muntproever.nl, 1
-muntstuk.com, 0
munzlocal10.org.nz, 1
muoivancauhoivisao.com, 1
muonmarketing.com, 1
mup-republicanos.tk, 1
mupdf.com, 0
-mur-parfait.com, 1
mur-vegetal-interieur.fr, 0
muradiyetemizlik.com, 1
murakami-sah.com, 1
@@ -102017,7 +101547,6 @@ muratboyla.com, 1
muratcileli.tk, 1
muratoff.pp.ua, 1
muratore-roma.it, 1
-murbaut.my.id, 1
murciacobras.tk, 1
murciaprocuradores.tk, 1
murdercube.com, 1
@@ -102100,7 +101629,6 @@ musetti.tw, 1
museum.nl, 1
museumcenter.az, 1
museumjeugduniversiteit.nl, 1
-museumnachtgent.be, 1
museumplantinmoretus.be, 1
museumwaalsdorp.nl, 1
musexpo.net, 1
@@ -102122,7 +101650,6 @@ music-room.cz, 1
music-store-download.com, 1
music.amazon.com, 1
musica.com, 1
-musicademoz.com, 1
musicales.tk, 1
musicall.com, 1
musicalschwarzenburg.ch, 1
@@ -102155,6 +101682,7 @@ musickorea.tk, 1
musiclenta.tk, 1
musiclite.tk, 1
musicmasala.tk, 1
+musicnotesroom.com, 1
musicompare.com, 1
musicradar.co.il, 1
musicradio.ga, 1
@@ -102222,7 +101750,6 @@ mussonstrading.com, 1
musta.ch, 1
mustangapparel.ca, 1
mustangmessenger.net, 1
-mustard.llc, 1
mustasj.no, 1
mustat.com, 1
mustdonewzealand.co.nz, 1
@@ -102290,14 +101817,12 @@ muyinternetsante.tk, 1
muz2u.ru, 1
muzdv.ru, 1
muzenzacrianca.tk, 1
-muzetxe.com, 1
muzeumkomiksu.eu, 0
muzi-tips.tk, 1
muzi.cz, 1
muzicamp3.org, 1
muzicar.rs, 0
muzicari.tk, 1
-muziekcentrumdebijloke.gent, 1
muziekluisteren.eu, 1
muziekschatten.nl, 1
muziektermen.tk, 1
@@ -102350,7 +101875,7 @@ mvwoensei.xyz, 1
mvzstartpagina.tk, 1
mw-power.ru, 1
mw.search.yahoo.com, 0
-mwahyunz.id, 0
+mwahyunz.id, 1
mwai.edu.ph, 1
mwamitours.com, 1
mwancloud.com, 1
@@ -102441,7 +101966,6 @@ my-optika.ru, 1
my-pawnshop.com.ua, 0
my-pharmacie.com, 1
my-phone.tk, 1
-my-profile.org, 1
my-salesforce-communities.com, 1
my-salesforce-community-builder.com, 1
my-salesforce-community-live-preview.com, 1
@@ -102483,6 +102007,7 @@ myaccountview.net, 1
myactivity.google.com, 1
myadr.co, 1
myadvanpath.com, 1
+myaeon.com.my, 1
myaffiliateprogram.com, 1
myafweb.com, 1
myaggic.com, 1
@@ -102571,6 +102096,7 @@ mybzz.com, 1
mycafebarista.com, 1
mycaffee.ir, 1
mycake.me, 1
+mycalculators.tech, 1
mycam.gq, 1
mycandylove.com, 1
mycardplace.com, 1
@@ -102615,6 +102141,7 @@ mycoins.gallery, 1
mycoldjet.com, 1
mycolo.gq, 1
mycolorado.gov, 1
+mycomedy.uk, 1
mycommerce.tk, 1
mycommunity.sa, 1
mycompanion.cz, 1
@@ -102656,13 +102183,11 @@ mydarwin.co.uk, 1
mydataprotected.com, 1
mydating.be, 1
mydaymark.com, 1
-mydaymark.us, 1
mydaywebapp.com, 1
mydeardreams.com, 1
mydebian.in.ua, 1
mydedicatedservice.ca, 1
mydedicatedservice.com, 1
-mydentalplan.gr, 1
mydenverhomesource.com, 1
mydesignrules.com, 1
mydestiny.tk, 1
@@ -102684,6 +102209,7 @@ mydlonline.be, 1
mydnshost.co.uk, 1
mydoc.fr, 1
mydogispolite.tk, 1
+mydogsvax.ie, 1
mydolls.ml, 1
mydomen.ml, 1
mydoxod.tk, 1
@@ -102697,7 +102223,6 @@ mydslwebstats.co.uk, 1
mydsomanager.com, 1
mydx.ru, 1
mydxj.com, 1
-myeasybooking.de, 1
myeasyreversemortgage.com, 1
myebony.cam, 1
myecms.com, 1
@@ -102822,7 +102347,6 @@ myglobalnews.net, 1
myglobalopti.nl, 1
mygnmr.com, 0
mygo.pw, 1
-mygoalguide.com, 1
mygobelin.tk, 1
mygolfsimulator.com, 1
mygolod.com, 1
@@ -102871,6 +102395,7 @@ myhrconsultantllc.com, 1
myhub.eu.org, 1
myhurlburt.marketing, 1
myhuthwaite.com, 1
+myibmchq.com, 1
myibp.ph, 1
myicare.org, 1
myid.be, 1
@@ -102951,6 +102476,7 @@ mylocraft.tk, 1
mylofamily.com, 1
myloft.xyz, 1
myloneworkers.com, 1
+myloplaza.com, 1
mylosscontrolservices.com, 1
mylotto.co.nz, 1
mylover.be, 1
@@ -102988,6 +102514,7 @@ mymo.in.th, 1
mymommyworld.com, 1
mymoneycoin.ml, 1
mymoranguito.com, 1
+mymoretrip.com, 0
mymotor.nl, 1
mymovein.com, 1
mympdv.com, 1
@@ -103069,6 +102596,7 @@ mypayment.ai, 1
mypaypac.com, 1
mypaypac.com.au, 1
mypaypac.net, 1
+mypaypac.net.au, 1
mypaypac.org, 1
mypcb.tk, 1
mypeace.tk, 1
@@ -103123,14 +102651,12 @@ myraboats.tk, 1
myramadanmoon.com, 1
myrandomtips.com, 1
myrants.org, 1
-myrasp.eu, 1
myrays.cloud, 1
myraytech.net, 0
myreadingmanga.info, 1
myrealestateautomation.com, 1
myred.net, 1
myredfoxlabs.com, 1
-myredserver.com, 1
myref.net, 1
myreferral.systems, 1
myrekber.co.id, 1
@@ -103196,8 +102722,6 @@ myrig.com, 1
myrig.net, 1
myrom.tk, 1
myrotvorets.center, 1
-myrp.co, 1
-myrtlebeachdogtrainers.com, 1
myrunningcalendar.com, 1
myruststats.com, 1
myrvang.org, 1
@@ -103209,7 +102733,6 @@ mysa.tk, 1
mysafetygear.co.za, 1
mysafeway.com, 1
mysaldo.info, 1
-mysam.net, 1
mysanta.co, 1
mysantanderpension.co.uk, 1
mysavvastraining.com, 1
@@ -103269,7 +102792,6 @@ mysql-real-escape-string.xyz, 1
mysqldump-secure.org, 1
myssl.com, 1
mystaffonline.com, 1
-mystagic.cloud, 1
mysteriouscode.com, 1
mysteriouscode.io, 1
mystery-box.cf, 1
@@ -103331,6 +102853,7 @@ mytests.tk, 1
mythen-fonds.ch, 1
mythenfonds.ch, 1
mytherapist.com, 1
+mythicca.org, 1
mythicdelirium.com, 1
mythreesonshvac.com, 1
mytime.fr, 1
@@ -103388,6 +102911,8 @@ myviewboard.com, 1
myvirtualserver.com, 0
myvologda.tk, 1
myvotect.gov, 1
+myvoucher.ie, 1
+myvouchers.ie, 1
myvulcan-platinum.ru, 1
mywaffles.org, 1
mywalletcrypto.cf, 1
@@ -103403,6 +102928,7 @@ mywebpeople.net, 1
mywebpharmacy.tk, 1
mywebserver.ml, 1
myweightlosstips.tk, 1
+mywellness360.in, 1
mywestondental.com, 1
mywikis.net, 1
mywish.co.il, 1
@@ -103417,7 +102943,6 @@ myworldbbs.tk, 1
myworth.com.au, 1
mywrecklawyer.com, 1
myxnr.com, 1
-myxoadventures.com, 1
myxt.net, 1
myxxxsite.tk, 1
myykkusa.com, 1
@@ -103443,6 +102968,7 @@ mzademiryolu.com, 1
mzadqatar.com, 1
mzak.pro, 1
mzakariya.com, 1
+mzback.cc, 1
mzcdn.cc, 1
mzcsgo.top, 1
mzdy.cc, 1
@@ -103458,7 +102984,6 @@ mzr.jp, 1
mzstatic.cc, 1
mzuther.de, 1
mzyxsl.top, 1
-n-ag.de, 1
n-cis.ru, 1
n-design-service.de, 1
n-design.de, 1
@@ -103478,7 +103003,6 @@ n.ms, 1
n.rich, 0
n.tt, 1
n0.be, 1
-n0.pw, 1
n0099.net, 1
n03.top, 1
n0v1.com, 1
@@ -103487,19 +103011,16 @@ n15.org, 1
n1co68.freeboxos.fr, 1
n1mp.org, 1
n26.com, 1
-n29.co, 0
n2canada.ca, 0
n2diving.net, 1
n2o.io, 1
n2oclub.com, 1
n36533.com, 1
-n37.co, 1
n3oxid.fr, 1
n3rd.eu, 1
n3rd0rama.tk, 1
n3t.ch, 1
n4mullingartolongford.ie, 1
-n4ytcg.com, 1
n4zm.com, 1
n5197.co, 1
n61roscommon.ie, 1
@@ -103549,6 +103070,7 @@ naboplastic.com, 1
nabosoft.tk, 1
nabthat.com, 1
nabzgroup.com, 1
+nac-6.fr, 0
nac.gov.pl, 1
nacc.gov.lb, 1
nacds.org, 1
@@ -103565,8 +103087,8 @@ nachanimoroccotrips.com, 1
nachdenken-erlaubt.de, 1
nachhaltig-in-graz.at, 1
nachhaltige-anleger.de, 1
-nachnamen.net, 1
nachoblanco.tk, 1
+nachos.stream, 1
nachovni.org, 1
nachrichten-heute.net, 1
nachsendeauftrag.net, 0
@@ -103616,9 +103138,7 @@ nadoske.info, 1
nadsandgams.com, 1
naduvilathu.tk, 1
nadyaolcer.fr, 1
-naeemsafdar.net, 1
naehenfuerwahrekleinehelden.de, 1
-naehtalente.de, 0
naemnuk.tk, 1
naf-connect.com, 1
nafco-online.com, 1
@@ -103670,7 +103190,6 @@ nahtreich.de, 1
nahttps.tk, 1
nahue.ar, 1
nahue.com.ar, 1
-nahura.com, 1
naidoc.org.au, 1
naifix.com, 1
naijapickup.com, 1
@@ -103781,6 +103300,7 @@ namc-um.org, 1
name.am, 1
name.ax, 1
nameabusiness.com, 1
+nameabusiness.pro, 1
namecoin.info, 1
namecoin.org, 1
namedb.ru, 1
@@ -103820,7 +103340,6 @@ namu.live, 1
namu.moe, 1
namu.news, 1
namu.wiki, 1
-nan0.cloud, 1
nanaimo.ca, 1
nanaimoneighbourhoods.ca, 1
nanaka.love, 1
@@ -103853,6 +103372,7 @@ nankiseamansclub.com, 1
nanmu.me, 1
nannatextiles.com, 1
nannatextiles.de, 1
+nannostomus.com, 1
nannyandhousekeeper.uk, 1
nannydream.com, 1
nano.voting, 1
@@ -103865,6 +103385,7 @@ nanofy.org, 1
nanogi.ga, 1
nanohana-ganka.jp, 1
nanohatsolution.tk, 1
+nanoheal.com, 1
nanohostsolution.cf, 1
nanointeractive.cn, 1
nanolet.ga, 1
@@ -103948,6 +103469,7 @@ narasi.tv, 1
narcissism.tk, 1
narcocheck.com, 1
narcoticsanonymous.tk, 1
+narcoticsindia.nic.in, 1
nardamiteq.com, 1
nardpedro.tk, 1
narec.org, 1
@@ -103981,6 +103503,7 @@ naroska.name, 1
narpes.fi, 1
narrativ.com, 1
narrativasdigitais.pt, 0
+narrative-health.com, 1
narrative.network, 1
narrative.org, 1
narrenverein-wolkenschieber.de, 1
@@ -104012,6 +103535,7 @@ nasacxhacxha.org, 1
nasarawanewsonline.com, 1
nasavelkaceskoslovenskasvadba.eu, 1
nasbi.pl, 1
+nascenteseguros.pt, 1
naschart.com, 1
naschenweng.info, 1
naschenweng.me, 1
@@ -104022,6 +103546,7 @@ nasecasomira.cz, 1
naseehah.ga, 1
nasehyar.ir, 1
naserron.gr, 1
+nasets-marcusgard.se, 1
nash-dom.tk, 1
nash-megagid.tk, 1
nash-server.tk, 1
@@ -104107,7 +103632,6 @@ nateandxtina.wedding, 1
natedoss.com, 1
nateev.fr, 1
nategreen.org, 0
-natehobi.com, 1
natelefon.tk, 1
natenom.de, 1
natenzia.fr, 1
@@ -104132,7 +103656,6 @@ nathanaeldawe.com, 1
nathanbarry.com, 1
nathanbrownbuilding.com.au, 1
nathancrank.com, 1
-nathancuendet.ch, 1
nathanielknight.ca, 1
nathanielparker.co.uk, 1
nathanielparker.com, 1
@@ -104157,6 +103680,7 @@ nationalbank.gov, 1
nationalbanken.dk, 1
nationalbankhelp.gov, 1
nationalbanknet.gov, 1
+nationalbluebadge.com, 1
nationalcement.com, 1
nationalcybersecuritysociety.org, 1
nationaldebtcounsellors.co.za, 1
@@ -104164,12 +103688,12 @@ nationaldetailpros.com, 1
nationalemployertraining.co.uk, 1
nationaleyecenter.id, 1
nationalfleetparts.com, 0
+nationalfuse.com, 1
nationalgangcenter.gov, 1
nationalgridrenewables.com, 1
nationalhomequotes.com, 1
nationaljobservice.com, 1
nationalmall.gov, 1
-nationalmap.gov, 1
nationalmattressday.com, 1
nationalmemorialdayparade.com, 1
nationalmower.com, 1
@@ -104232,14 +103756,11 @@ natur-care.com, 1
natur-plus.tk, 1
natur-seele.de, 1
natur-udvar.hu, 1
-natur-und-kultur.de, 1
natura-sense.com, 1
natura2000.nl, 1
natura2000.tk, 1
-naturabis.com.mx, 1
naturabuy.fr, 1
natural-hazards-and-earth-system-sciences.net, 1
-natural.cn, 1
naturalbadbreathcures.com, 1
naturalbeautyadvisor.com, 1
naturalbladdercontrol.tk, 1
@@ -104277,7 +103798,6 @@ naturelk.org, 1
naturesain.fr, 0
naturesbest.co.uk, 1
natureshealthandbody.com, 1
-naturesinfusions.com.au, 1
naturesupply.eu, 1
naturfreunde.at, 1
naturheilkunde-sabine-klein.de, 1
@@ -104291,6 +103811,7 @@ naturschutz-holderbank.ch, 1
natuurinhuisheerenveen.tk, 1
natuurkundegeflipt.nl, 1
natuurlijk.tk, 1
+natuurlijkbesteld.nl, 1
natuurlijkehaarkleuring.nl, 1
natuurmonumenten.nl, 1
natuurophaarmooist.nl, 0
@@ -104336,7 +103857,6 @@ navarashtra.com, 1
navarrete.tk, 1
navasdelpinar.com, 1
navasoft.com.tr, 1
-naveengranites.com, 1
navegantesdelcosmos.ec, 1
navegarea.tk, 1
naveka.ga, 1
@@ -104369,7 +103889,6 @@ navyfederal.org, 1
navyleagueont.ca, 1
nawasyo.co.jp, 1
nawdar.tk, 1
-nawigroup.com, 1
nawir.de, 1
nawroth.info, 1
nawt.pl, 1
@@ -104397,27 +103916,55 @@ nazoryzakazniku.cz, 1
nazuna.blue, 1
nb.mba, 1
nb.zone, 1
-nb6.de, 1
nba-2k.com, 1
+nba.christmas, 1
nba.com.de, 1
nba.de.com, 1
+nba.download, 1
+nba.gd, 1
+nba.gs, 1
nba.gy, 1
+nba.hosting, 1
nba.im, 1
nba.live, 1
+nba.lu, 1
+nba.moe, 1
+nba.trade, 1
+nba2.com, 1
+nba2k.blog, 1
+nba2k.cc, 1
nba2k.co, 1
+nba2k.download, 1
+nba2k.live, 1
+nba2k.mt, 1
nba2k.net, 1
+nba2k.online, 1
+nba2k.tw, 1
+nba2kcn.com, 1
+nba2kmods.com, 1
+nba2kol.com, 1
+nba2konline.com, 1
+nba2konlinex.com, 1
nba2kqq.com, 1
+nba2kx.com, 1
nbaac.org, 1
nbabankonline.com, 1
nbadancers.com, 1
nbadao.com, 0
+nbade.com, 1
nbafile.com, 1
+nbagirls.com, 1
+nbaim.com, 1
nbaimg.com, 1
+nbalive.cn, 1
+nbalivecn.com, 1
+nbalivex.com, 1
nbao.ca, 1
nbaot.org, 1
nbapc.org, 1
nbapwned.com, 1
nbari.com, 1
+nbasky.com, 1
nbb.com, 1
nbc.com.tr, 1
nbc26.com, 1
@@ -104484,6 +104031,7 @@ nchaf-static.gov, 1
nchaf.gov, 1
nchainplatform.com, 1
nchangfong.com, 0
+nchirumbolo.com, 1
nchomeownerassistance.gov, 1
nchrd.org, 1
nci.com, 1
@@ -104503,6 +104051,7 @@ nclea.gov, 1
nclf.net, 0
ncli-design.com, 1
ncloud.freeddns.org, 1
+nclpagamentos.com.br, 1
ncmc.me, 1
ncmedicaidplan.gov, 1
ncmedicaidplans.gov, 1
@@ -104546,6 +104095,7 @@ ndbilje.si, 1
ndcurvemaster.com, 1
ndd.govt.nz, 1
ndeb-bned.ca, 1
+ndeoye.org, 1
ndesignprojects.com, 1
ndev.tk, 1
ndf.de, 1
@@ -104576,7 +104126,6 @@ ndr.world, 1
ndrew.me, 1
nds-online.ru, 1
ndscreening.com, 1
-ndtblog.com, 1
ndum.ch, 1
ndvlaw.com, 1
ndvr.com, 1
@@ -104707,6 +104256,7 @@ nefald.fr, 0
nefertitis.cz, 0
neff-pressen.de, 1
nefi.com, 1
+nefit-bosch.nl, 1
nefizhome.com, 1
nefro-cme.de, 1
nefthy.de, 1
@@ -104791,7 +104341,7 @@ nekoku.io, 1
nekomagic.com, 1
nekomanten.de, 1
nekomata.tk, 1
-nekomimi.cafe, 0
+nekomimi.cafe, 1
nekomimi.pl, 1
nekomimirouter.com, 1
nekomimix.net, 1
@@ -104839,6 +104389,7 @@ nema.gov.au, 0
nemagiya.tk, 1
nemahacountyne.gov, 1
nemberone.com, 1
+nemconcept.vn, 1
nemecl.eu, 1
nemesisenterprises.de, 1
nemesiz.tk, 1
@@ -104846,6 +104397,7 @@ nemez.net, 1
nemi.gov, 1
nemionline.org, 1
nemirow.tk, 1
+nemko.com, 1
nemkoff.tk, 1
nemnodes.org, 1
nemo.run, 1
@@ -104867,15 +104419,15 @@ nemyriv.tk, 1
nemzetizaszlok.hu, 1
nen-ga.jp, 1
nenapu.tk, 1
+nenasal.com, 1
nenco.nl, 1
nenderus.su, 1
nenergy.pt, 1
-nenesiosi.lt, 1
nenflow.com, 1
nenkin-kikin.jp, 1
neno.io, 1
neo-facade.be, 1
-neo-hosting.co.uk, 1
+neo-hosting.co.uk, 0
neo-novarion.com, 1
neo.iq, 1
neo1.com, 1
@@ -104902,7 +104454,7 @@ neofinancial.com, 1
neogames.com.co, 1
neogenindia.com, 1
neograftaustintx.com, 1
-neohu.com, 1
+neohu.com, 0
neojo.org, 1
neoko.fr, 1
neokobe.city, 1
@@ -104950,6 +104502,7 @@ neoverify.com, 1
neoverso.tk, 1
neowa.tk, 1
neowin.net, 1
+neoxam.com, 1
neoxcrf.com, 1
neoz.com.br, 1
neozeon.io, 1
@@ -105069,6 +104622,7 @@ nestlanddesign.com, 1
nestra.tk, 1
nestreeo.com, 1
neswec.org.uk, 1
+net-abuse.email, 1
net-combo-ja.com, 1
net-file.tk, 1
net-news.gq, 1
@@ -105111,7 +104665,6 @@ netco-privacy.de, 1
netco-system.de, 1
netconnect.at, 0
netcoresmartech.com, 1
-netcost-security.fr, 1
netcracker.com, 1
netcrew.de, 1
netculturejokes.tk, 1
@@ -105164,8 +104717,6 @@ netgazeti.ge, 1
netgenetiqs.de, 1
netgotowka.pl, 1
netgroup.dk, 1
-netguard.solutions, 1
-netguide.co.nz, 1
netguide.jp, 1
nethack.ninja, 1
nethackwiki.com, 1
@@ -105210,7 +104761,6 @@ netmaddy.com, 1
netmagellan.com, 0
netmagicas.com.br, 1
netmania.tk, 1
-netmedia.store, 1
netmedia.tk, 1
netmedicaitalia.it, 1
netmeister.org, 1
@@ -105235,7 +104785,6 @@ netracks.ga, 1
netradyne.com, 1
netraising.com, 1
netrecruituk.co.uk, 1
-netreputation.com, 0
netresec.com, 1
netreviews.tk, 1
netriders.academy, 1
@@ -105247,7 +104796,6 @@ netrino.io, 1
netroadshow.com, 1
netrogue.ninja, 1
netrunner.academy, 1
-netrunner.xyz, 1
netrunners.dk, 1
nets-cloud.com, 1
nets.com.sg, 1
@@ -105353,7 +104901,6 @@ networktrafficanalysis.net, 1
networktrafficanalyzer.net, 1
networktrafficmonitoring.net, 1
networld.to, 1
-networth.at, 1
networthpal.com, 1
networx-online.de, 1
netz-noe.at, 1
@@ -105364,7 +104911,6 @@ netzer.ml, 1
netzeroassetmanagers.org, 1
netzfabrik.com, 1
netzfrauen.org, 1
-netzona.org, 1
netzpolitik.org, 1
netzquelle.net, 1
netzsv.website, 1
@@ -105425,7 +104971,6 @@ neurologia.tk, 1
neurologie.tk, 1
neurologysantamonica.com, 1
neuromail.net, 1
-neuromoddevices.com, 1
neuron22.ru, 1
neurontinprice.ga, 1
neuropharmacology.com, 1
@@ -105473,8 +105018,6 @@ nevergonnatouchit.tk, 1
nevergreen.io, 1
neverhood-tv.tk, 1
neverland.link, 1
-neverlant.com, 1
-neverlant.org, 1
neverness.tk, 1
nevers.fr, 1
neversayretired.in, 1
@@ -105489,11 +105032,11 @@ nevolution.me, 1
nevoxo.com, 0
nevrodiversitet.no, 1
nevski.eu, 1
-nevychova.cz, 1
new, 1
new-1xbet.com, 1
new-black-order.com, 1
new-boiler-prices.co.uk, 1
+new-flyer-institute.com, 1
new-flyer.co, 1
new-mexico-sexcams.com, 1
new-ohtani-dent.com, 1
@@ -105529,7 +105072,6 @@ newaygo.gov, 1
newaygocountymi.gov, 1
newbabylon.tk, 1
newbackup.ml, 1
-newbalanceshoes.in.net, 1
newbasemedia.us, 1
newberlinwi.gov, 1
newberrycounty.gov, 1
@@ -105646,7 +105188,7 @@ newjerseytitlesearch.com, 1
newjerseyvideography.com, 1
newkaliningrad.ru, 1
newlands-fasteners.com.au, 1
-newlanefinance.com, 1
+newlanefinance.com, 0
newlegalsteroid.com, 1
newlifefund.org, 1
newlondonhospital.org, 1
@@ -105680,7 +105222,6 @@ newoldstock.uk, 1
newomnibank.com, 1
newonlineroad.com, 1
neworiflame.tk, 1
-newosis.life, 1
newparadigmventures.net, 0
newparrot.tk, 1
newplxx.gotdns.com, 1
@@ -105695,7 +105236,6 @@ newportplastic.com, 1
newportpropertygroup.com, 0
newportri.gov, 1
newposts.ru, 1
-newpowertv.com, 1
newpraguemn.gov, 1
newprairiepress.org, 1
newpress24.tk, 1
@@ -105756,7 +105296,6 @@ newsasia7.com, 1
newsatomic.com, 1
newsauto.tk, 1
newsbali.tk, 1
-newsbay.gr, 1
newsbeat.kiwi, 1
newsblogged.com, 1
newsbomba.ml, 1
@@ -105819,6 +105358,7 @@ newsuzbekistan.tk, 1
newsvideo.tk, 1
newsvirginian.com, 1
newsvoice.com, 1
+newswaker.com, 1
newswav.com, 1
newsweekme.com, 1
newsworld247.tk, 1
@@ -105880,7 +105420,6 @@ newz.to, 1
newzashitnik.tk, 1
newzealandadventure.tk, 1
newzealandheatpumps.co.nz, 1
-newzealandmedical.co.nz, 1
newzealandwaters.com, 1
newzen.fr, 1
newzvilla.ga, 1
@@ -105894,6 +105433,7 @@ nexflow.com, 1
nexgeneration-solutions.com, 1
nexgi.com, 1
nexhealth.info, 1
+nexiam.net, 1
nexicafiles.com, 1
nexinal.net, 1
nexinformatique.com, 1
@@ -105909,6 +105449,7 @@ nexiosandbox.com, 1
nexiostaging.com, 1
nexitdata.com, 1
nexiumgeneric.tk, 1
+nexocap.cl, 1
nexon.com.au, 1
nexril.net, 0
nexs.gg, 1
@@ -105926,6 +105467,8 @@ next24.io, 1
nextads.ch, 1
nextbike.tk, 1
nextcairn.com, 1
+nextcal.eu, 1
+nextcal.nl, 1
nextcloud-alpha.ddns.net, 1
nextcloud-bruehl.spdns.de, 1
nextcloud-miyamoto.spdns.org, 1
@@ -106057,6 +105600,7 @@ nft-qa-web.azurewebsites.net, 1
nft.io, 1
nftactually.com, 1
nftdelegation.com, 1
+nftnow.com, 1
nftshowroom.com, 1
nfwkh.de, 1
ng-musique.com, 1
@@ -106105,6 +105649,7 @@ ngtqa.com, 1
nguoimuahangmy.com, 1
nguru.net, 1
nguyenanhung.com, 1
+nguyencucthanh.com, 1
nguyenductrong.net, 1
nguyenduythiem.com, 1
nguyenfamily.cc, 1
@@ -106161,7 +105706,6 @@ niadd.com, 1
niagara.ru, 0
niagaraconstruction.org, 1
niagarafalls.ca, 1
-niagaraschoice.org, 1
niallator.com, 1
nianubo.net, 0
niawier-wetsens.tk, 1
@@ -106215,6 +105759,7 @@ nic.soy, 1
nic.xn--q9jyb4c, 1
nic.youtube, 1
nic.zip, 1
+nica.org.sg, 1
nicaieri.ro, 1
nicanordic.com, 1
nicastrosalvatore.tk, 1
@@ -106279,6 +105824,7 @@ nickhawn.com, 0
nickhitch.co.uk, 1
nickhowell.co.uk, 0
nickkallis.com, 1
+nickkatie.wedding, 1
nicklet.xyz, 1
nicklock.ml, 1
nickloose.de, 1
@@ -106469,8 +106015,8 @@ nighthawks.tk, 1
nighthawkstrategies.com, 1
nightingalebabyconcierge.com, 1
nightingalescareathome.com, 1
+nightinvasion.org, 1
nightkiss66.org, 1
-nightlife.gent, 1
nightlight.gg, 1
nightlive.tk, 1
nightmail.net, 1
@@ -106478,6 +106024,7 @@ nightmareabyss.top, 0
nightmarejoker2.com, 1
nightmoose.org, 1
nightoutrecords.tk, 1
+nightowl.consulting, 1
nightpass.tk, 1
nights-of-the-turntable.com, 1
nightscapes.tk, 1
@@ -106548,6 +106095,7 @@ nikeyichinese.com, 1
nikhilramakrishnan.tk, 1
nikhilsd.com, 1
nikimix.com, 0
+nikinterior2018.com, 1
nikitacartes.xyz, 0
nikitagukov.ru, 1
nikitenko.tk, 1
@@ -106559,7 +106107,6 @@ nikkei225jp.com, 1
nikkila.me, 1
nikkotaytay.tk, 1
nikksno.io, 1
-niklas.pw, 1
niklasbabel.com, 1
niklashagman.se, 1
niklasstinkt.com, 1
@@ -106576,6 +106123,7 @@ nikolai-schmidt.tk, 1
nikolaiknows.com, 1
nikolaipribylski.tk, 1
nikolaj-platoshkin.cf, 1
+nikolajmackowski.dk, 1
nikolasbradshaw.com, 1
nikon-photocontest.com, 1
nikoniko-dental-izumichuo.jp, 1
@@ -106617,6 +106165,7 @@ nils.moe, 1
nilslab.com, 1
nilslandscaping.com.au, 1
nilsnet.tk, 1
+nilupul.org, 1
nimahoda.net, 1
nimbl.nz, 1
nimble.com.br, 1
@@ -106668,7 +106217,6 @@ niniko.tk, 1
ninja-corner.tk, 1
ninja.it, 1
ninjacomputing.com, 1
-ninjahub.net, 1
ninjamagic.tk, 1
ninjaremap.com, 1
ninjaseo.es, 1
@@ -106682,7 +106230,6 @@ ninohaslach.ch, 1
ninoo.nl, 1
ninov.bg, 1
ninovayazilim.com, 1
-ninpang.com, 1
ninrio.com, 1
ninsin-akachan.com, 1
nintendo-europe-media.com, 1
@@ -106765,7 +106312,6 @@ nitrokey.com, 1
nitromaster.tk, 1
nitromaxnutrition.com.br, 1
nitropanel.com, 0
-nitropur.com, 1
nitropur.de, 1
nitschinger.at, 1
nitter.hu, 0
@@ -106788,7 +106334,6 @@ nix13.xyz, 1
nixcore.gq, 1
nixie.fashion, 1
nixonlibrary.gov, 1
-nixos.world, 1
nixpare.com, 1
nixplus.tk, 1
nixrepair.nl, 1
@@ -106810,7 +106355,6 @@ nizamialemdernegi.org.tr, 1
nizarvoiceover.tk, 1
nizhaoheng.com, 1
nizozemsku.nl, 1
-nizuc.com, 1
nja.au, 1
nja.id.au, 1
njapp.org, 1
@@ -106861,7 +106405,6 @@ nkfs.org, 1
nkg-mosbach.de, 1
nkg.com.au, 1
nkhr-c.com, 1
-nkhub.in, 1
nkjwmn.com, 1
nkjwrs.com, 1
nkkr.hu, 1
@@ -106908,7 +106451,6 @@ nmbtc.com, 1
nmcep.net, 0
nmd.so, 1
nmdoj.gov, 1
-nmegent.be, 1
nmeoverbetuwe.nl, 1
nmfinanciallaw.com, 1
nmhincorp.com, 1
@@ -106964,7 +106506,6 @@ nntb.no, 1
no-andishan.ir, 1
no-b.kiev.ua, 1
no-bet.ru, 1
-no-bigtech.com, 1
no-cookies.net, 1
no-data.tk, 1
no-dev.de, 1
@@ -107040,6 +106581,7 @@ nobunplease.com, 1
nobutwhy.com, 1
nobz.com.br, 0
noc.best, 1
+noc.ly, 1
noc.wang, 1
nocapplugins.xyz, 1
nocaseiscold.org, 1
@@ -107108,7 +106650,6 @@ nogema.net, 1
nogerondier.eu, 1
nogetime.com, 1
nogfwsite.com, 0
-nogger.nl, 1
nogluten.com, 1
nogradhont.hu, 1
nogyogyaszat.eu, 0
@@ -107120,7 +106661,6 @@ nohttps.org, 1
nohup.se, 1
nohup.xyz, 1
noideas.tk, 1
-noidlikes.coffee, 1
noiglosujemy.com.pl, 1
noiglosujemy.pl, 1
noihoidonganh.com, 1
@@ -107193,6 +106733,7 @@ nomadlist.com, 1
nomadnessmarketing.com, 1
nomadproject.io, 0
nomadtech.servehttp.com, 1
+nomadwallets.com, 1
nomadworld.net, 1
nomasfraudecolorado.gov, 1
nomaspicaduras.com, 1
@@ -107200,7 +106741,7 @@ nomee6.xyz, 1
nomercy.tv, 1
nomerel.com, 0
nomerodekors-esport.no, 1
-nomerodekors.no, 1
+nomerodekors.no, 0
nomesbiblicos.com, 1
nomial.co.uk, 1
nomifensine.com, 1
@@ -107226,7 +106767,6 @@ nonnaloreta.it, 1
nono.fi, 0
nono303.net, 1
nonobstant.cafe, 1
-nonostalgiazone.com, 1
nonpareilonline.com, 1
nonprofit.info, 1
nonprofitdrupal.org, 1
@@ -107281,7 +106821,6 @@ nopasswords.ca, 1
nopaste.eu, 1
nopaynocure.com, 1
nophelet.com, 1
-nopiamanual.net, 1
noprag.com.br, 1
nopropaganda.tk, 1
nopuedesdejarlopasar.es, 1
@@ -107365,7 +106904,6 @@ noref.tk, 1
noregrets.tk, 1
norelect.ch, 1
noreply.mx, 1
-norestfortheweekend.com, 1
norfipc.com, 1
norfolkonlinenews.com, 1
norgbass.com, 1
@@ -107374,6 +106912,7 @@ norichanmama.com, 1
noriel.ro, 1
norikazumatsuno.tk, 1
norilsk-news.ru, 1
+norion.no, 1
noripon.blog, 1
noris-color.de, 1
noriskit.nl, 1
@@ -107384,6 +106923,7 @@ normacampbell.com, 1
normaculta.com.br, 1
normalady.com, 0
normalil.gov, 1
+normalinlinden.de, 1
normalized.ga, 1
normalizuj.me, 1
normalporter.tk, 1
@@ -107424,6 +106964,7 @@ northatlantalawgroup.net, 1
northaugustasc.gov, 1
northbannockfire.gov, 1
northbaypolice.ca, 1
+northbaytechnical.com, 1
northbayvillage-fl.gov, 1
northbengaltourism.com, 1
northbranch-md.com, 1
@@ -107499,7 +107040,6 @@ northstarcommunitytrust.org, 1
northstarcommunitytrust.org.uk, 1
northstaredit.org.uk, 1
northstartrust.co.uk, 1
-northstartrust.com, 1
northstartrust.org, 1
northstartrust.org.uk, 1
northstate.net, 1
@@ -107511,7 +107051,6 @@ northtexaspiano.org, 1
northtexasvasectomy.com, 1
northtints.store, 1
northtopsailbeachnc.gov, 1
-northtowndental.ca, 1
northumberlandcountypa.gov, 1
northumbria.ac.uk, 1
northwestcareercollege.edu, 1
@@ -107574,10 +107113,8 @@ nostoautomaatti.fi, 1
nostosh.eu.org, 1
nostradansacornella.tk, 1
nostraforma.com, 0
-nostring.io, 1
nostrplebs.com, 1
nostrum.ee, 1
-nostrupload.com, 1
nosuch.site, 1
nosuch.website, 1
nosurfinbrighton.tk, 1
@@ -107594,6 +107131,7 @@ notabug.eu, 1
notabug.org, 1
notactivelylooking.com, 1
notadd.store, 1
+notaiomenghini.it, 1
notairejonquiere.ca, 1
notairejonquiere.com, 1
notairesjonquiere.ca, 1
@@ -107611,9 +107149,9 @@ notarisdecatalunya.org, 1
notariusz-bialystok.com, 1
notariuszprzybylowicz.pl, 1
notariuszsych.pl, 1
+notarize.com, 1
notary-tx.com, 1
notary24.ru, 1
-notarycam.com, 1
notarypublic.co.nz, 1
notbot.es, 1
notby.net, 1
@@ -107625,7 +107163,6 @@ note1024.tk, 1
note7forever.com, 1
noteapp.icu, 1
notebi.org, 1
-notebin.xyz, 1
notebleue.com, 1
noteboat.net, 1
notebook-alkatresz.hu, 1
@@ -107640,6 +107177,7 @@ notedinstyle.co.uk, 1
notenarchiv.eu, 1
notequal.me, 1
noterica.com, 1
+notes4z.com, 1
notesforpebble.com, 1
noteshare.net, 1
noteskeeper.ru, 1
@@ -107654,8 +107192,12 @@ noti.tg, 1
noticiaelmundo.com, 1
noticias7.org, 1
noticiasdeautos.site, 1
+noticiasdebrasiliaonline.com, 1
+noticiasdeminasgerais.com, 1
+noticiasdesp.com, 1
noticiasdetv.com, 1
noticiasdocambio.com.br, 1
+noticiasdoriodejaneiro.com, 1
noticiashoy.online, 1
noticiasrdo.com, 1
noticiassonaqui.com, 1
@@ -107673,7 +107215,6 @@ notif-moncompte-laposte.info, 1
notific.at, 1
notificami.com, 1
notify.gov, 1
-notifyed.com, 1
notilus.fr, 1
notime.tk, 1
notinglife.com, 1
@@ -107695,7 +107236,6 @@ notnl.com, 1
notomalayan.tk, 1
notonprem.com, 1
notora.tech, 1
-notorious.cn, 1
notoriousdev.com, 1
notre-planete.info, 1
notrefuse.tk, 1
@@ -107711,7 +107251,7 @@ notube.io, 1
notube.net, 1
notube.site, 1
notus-cfd.org, 1
-nou-inno-hyogo.jp, 1
+nou-inno-hyogo.jp, 0
nou9ta.tk, 1
noudiari.es, 1
noudjalink.nl, 1
@@ -107747,7 +107287,6 @@ novak.cf, 1
novakola.bg, 0
novalevante.info, 1
novalite.rs, 0
-novalnet.com, 1
novalnet.de, 1
novamont.com, 1
novanetwork.ml, 1
@@ -107764,8 +107303,9 @@ novasmilecr.net, 1
novasprint.tk, 1
novastores.co, 1
novatech.net, 0
-novatelecom.cl, 0
+novatelecom.cl, 1
novavax.com, 0
+novavistawindows.com, 1
novaway.ca, 1
novaya.media, 1
novaya.no, 1
@@ -107796,6 +107336,7 @@ noveltydoorest.ga, 1
novelvyretraite.fr, 1
novema.jp, 1
novenopiso.tk, 1
+novento.bg, 1
novezamky.tk, 1
novgorod-news.net, 1
novgorod24.tk, 1
@@ -107856,7 +107397,6 @@ novu.com, 1
novumclinic.pl, 1
novumnet.com.br, 1
novurania.com, 0
-novus365.com, 1
novy.software, 1
novy.vip, 1
novychas.online, 1
@@ -107925,6 +107465,7 @@ nphrm.com, 1
nphseagleeye.com, 1
npjobsite.com, 1
nplc.cc, 1
+npliga.org, 1
npm.li, 1
npmplus.org, 1
npportoes.com.br, 1
@@ -107946,7 +107487,6 @@ nrac.or.jp, 1
nrail.eu, 1
nrb06.ru, 1
nrbpublishing.com, 1
-nrbri.ru, 1
nrc-gateway.gov, 1
nrc.gov, 1
nrchealth.com, 1
@@ -108009,6 +107549,7 @@ nshipster.cn, 0
nshipster.co.kr, 1
nsics.co.jp, 1
nsikakimoh.com, 1
+nsimobilewatersolutions.com, 1
nsine.be, 1
nsinf.com, 1
nsinternational.com, 1
@@ -108090,7 +107631,6 @@ ntreizel.com, 1
nts.com, 0
ntsb.gov, 1
ntsp.team, 1
-ntt-buses.com, 1
ntvtelugu.com, 1
ntx360grad-fallakte.de, 1
ntz.im, 1
@@ -108123,11 +107663,9 @@ nuclea.site, 1
nuclearcake.de, 1
nuclearforum.tk, 1
nuclearhell.tk, 1
-nuclearmed.org, 1
nuclearnation.tk, 1
nuclearsky.tk, 1
nucleios.com, 1
-nucleix.com, 1
nucleomarketing.com.br, 1
nucleosynth.space, 1
nucleus-co.org, 1
@@ -108148,7 +107686,7 @@ nudo.tk, 1
nuecescountytx.gov, 1
nuel.cl, 1
nuernbergwillwandel.de, 1
-nuespacios.com, 1
+nuespacios.com, 0
nuestraboda.ec, 1
nuestrasdanzashn.tk, 1
nuetel.com, 1
@@ -108163,6 +107701,7 @@ nuffield.nl, 1
nuffieldtrust.org.uk, 1
nuforma.net, 1
nugdev.co, 0
+nugeopend.nl, 1
nuggit.ga, 1
nugmanov.net, 1
nugratis.nl, 1
@@ -108185,7 +107724,6 @@ null-life.com, 1
null48.net, 1
nullam.tech, 1
nullbit.tk, 1
-nullbox.co, 0
nullcon.net, 1
nulldev.org, 1
nulle-part.org, 1
@@ -108231,7 +107769,7 @@ numerli.com, 1
numero1.ch, 0
numero1.tk, 1
numerobis.tk, 1
-numerologist.com, 0
+numerologist.com, 1
numerosrojos.es, 1
numerossanos.com.ar, 1
numerouno.ml, 1
@@ -108247,7 +107785,6 @@ numxl.com, 1
nun.gl, 1
nunesgh.com, 1
nunesgh.org, 1
-nuneshost.com, 1
nunnenmacher.net, 0
nunnun.jp, 1
nunoarruda.com, 1
@@ -108267,7 +107804,6 @@ nuovaelle.it, 1
nuovaguardia.tk, 1
nuovicasino.it, 1
nupaybusiness.com.br, 1
-nupixemedia.com, 1
nupro.net, 1
nuquery.com, 1
nur-test.de, 1
@@ -108278,7 +107814,6 @@ nureg.net, 1
nuria-fergo.tk, 1
nuriaamat.com, 1
nuriacamaras.com, 1
-nuriastales.com, 1
nurkamol.com, 1
nurmio.fi, 1
nurnabi.ml, 1
@@ -108303,6 +107838,7 @@ nusailec.com, 1
nusantaraku.tk, 1
nusantararom.org, 1
nusapulsa.com, 1
+nussadoclub.org, 1
nussbaum-medien.de, 1
nussschale.eu, 1
nutbot.co.uk, 1
@@ -108437,7 +107973,6 @@ nx42.pw, 1
nxcloud.ml, 1
nxdomain.info, 1
nxedge.com, 1
-nxf.li, 1
nxit.ca, 1
nxlogis.kr, 1
nxnt.link, 1
@@ -108471,7 +108006,6 @@ nyantec.com, 1
nyap.org, 0
nyatane.com, 1
nyau.me, 1
-nyauth.com, 1
nyawau.ch, 1
nyawork.com, 1
nyb.agency, 1
@@ -108513,6 +108047,7 @@ nylevemusic.com, 1
nylipa.gov, 1
nyloc.de, 1
nylonmanila.com, 1
+nylonova.art, 1
nym.at, 1
nymanelectric.com, 1
nymbus.com, 1
@@ -108578,9 +108113,9 @@ nzelaweb.com, 1
nzfaponline.com, 1
nzhistory.govt.nz, 1
nzia.tk, 1
+nzlp.nz, 1
nzmca.org.nz, 1
nzmomentum.co.nz, 1
-nznetio.info, 1
nzno.org.nz, 1
nzozlipno.pl, 1
nzpost.ga, 1
@@ -108670,6 +108205,7 @@ oaken.duckdns.org, 1
oakesfam.net, 1
oakface.com.au, 1
oakharbor.gov, 1
+oakhill.com, 1
oakhillfl.gov, 1
oakhillseniors.com, 1
oakislandnc.gov, 1
@@ -108691,7 +108227,6 @@ oakwoodinternational.com, 1
oandgpr.com, 1
oanow.com, 1
oase-fuer-wohlbefinden.ch, 1
-oasegroen.nl, 1
oasis-info.co.uk, 1
oasisautospa.org, 1
oasisbodycare.jp, 1
@@ -108703,7 +108238,6 @@ oatmealdome.me, 1
oatycloud.spdns.de, 1
oauthaccountmanager.googleapis.com, 1
oauthdb.com, 1
-oazithromycin.online, 1
obagg.com, 1
obala.ga, 0
obalawebsolutions.ml, 1
@@ -108734,7 +108268,6 @@ obereg.ga, 1
obereg.ml, 1
oberg.co, 1
oberg.us, 1
-oberhofdrinks.com, 1
oberlinreview.org, 1
obermeiers.eu, 1
oberndorf-am-lech.de, 1
@@ -108876,7 +108409,6 @@ occupybakersfield.tk, 1
occurrence.fr, 1
ocd2016.com, 1
ocdadmin.com, 1
-ocddevelopment.com, 1
ocdelier.nl, 1
ocdhub.co.za, 1
ocealy.com, 1
@@ -108931,7 +108463,6 @@ ochemindessens.com, 1
ochevidcy.com, 1
ochioneta.es, 1
ochki-linzi.tk, 1
-ochobeatsmedia.net, 1
ochotnicky.com, 1
ochranaprirody.cz, 1
ochrepoint.com.au, 1
@@ -108950,8 +108481,6 @@ ockendenhemming.co.uk, 1
oclausen.com, 1
ocloudhost.com, 1
oclube.online, 1
-ocmw.gent, 1
-ocmwgent.be, 1
ocni-ambulance-most.cz, 1
ocnjapartment.com, 1
ocodo.ru, 1
@@ -109030,6 +108559,7 @@ ocufekojip.ga, 1
ocularbaby.com.br, 1
oculta.ml, 1
oculus.com, 1
+ocun.net, 1
ocunclaimed.gov, 1
ocuuc.org, 1
ocvote.gov, 1
@@ -109061,14 +108591,16 @@ oddsmoneyers.ga, 1
oddsnet.com, 1
oddsseeker.com, 1
oddtime.net, 0
+oddtx.org, 1
ode.red, 0
-odegua.com, 1
+odebouchage.fr, 1
odejdamoda.tk, 1
odeliabridal.com, 1
odensc.com, 1
odensc.me, 1
odenvilleal.gov, 1
odeonentertainment.co.uk, 1
+odesigning.com, 1
odessa-news.ru, 1
odessalove.tk, 1
odezdaotto.tk, 1
@@ -109077,13 +108609,11 @@ odiall.tk, 1
odiamoselregeton.tk, 1
odico.dk, 1
odifi.com, 1
-odiflucan.online, 1
odigitalmarketing.com.br, 1
odigo.com, 0
odijmond.nl, 1
odinpl.com, 1
odinraz.ga, 1
-odinserver.space, 1
odinseye.net, 1
odinson.tk, 1
odisealinux.com, 0
@@ -109095,7 +108625,6 @@ odlicomul.ga, 1
odmap.org, 1
odnostranichnik.tk, 1
odo-pro.ru, 1
-odo.online, 1
odontologiawilliampizarro.com, 1
odoo.co.th, 1
odoppelto.de, 1
@@ -109130,7 +108659,6 @@ oeconline.org, 1
oedeemboek.nl, 1
oeffnet.org, 1
oegd.at, 1
-oegemalogistics.nl, 1
oeh.ac.at, 1
oeilpouroeilcreations.fr, 0
oeirasmoveteclab.pt, 1
@@ -109160,7 +108688,6 @@ oessi.eu, 1
oesv.at, 1
oettig.de, 1
oetzies-quiz.com, 1
-of-sound-mind.com, 1
of2106.dnsalias.org, 1
of2m.fr, 1
ofa.org, 1
@@ -109196,7 +108723,6 @@ offensivesentinel.es, 1
offentligsektormedmoln.se, 1
offeo.com, 1
offer-today.ml, 1
-offer.cn, 1
offerfit.ai, 1
offerground.com, 1
offerhome.com, 1
@@ -109241,12 +108767,12 @@ officeinteriors.co.nz, 1
officemaps.net, 1
officemovepro.com, 1
officeplant.pl, 1
+officereg.com, 1
officerjones.tk, 1
officert.ga, 1
officesib.ddns.net, 1
officetechrentals.com.br, 1
official-sensitive.org, 1
-official.cn, 1
official.link, 1
official.my, 1
officialdubaidev.com, 1
@@ -109257,9 +108783,9 @@ officialpyramids.com, 1
officialsunset.com, 1
officina.roma.it, 1
officina.tk, 1
-officium.tech, 1
offis.de, 0
offlineauthentication.com, 1
+offnet.ie, 1
offpages.cf, 1
offpages.gq, 1
offpages.ml, 1
@@ -109306,7 +108832,6 @@ ofsetas.lt, 1
oftamedic.com, 0
oftn.org, 1
ofuquemalitaestoy.tk, 1
-ofzenandcomputing.com, 0
oga.fit, 0
ogamerezine.tk, 1
ogar.ga, 1
@@ -109435,6 +108960,7 @@ ojjdp.gov, 1
ojk.ee, 0
ojo-publico.com, 1
ojoconmipisto.com, 1
+ojos.tv, 1
ojp.gov, 1
ok-ise.com, 1
ok-travel.tk, 1
@@ -109460,9 +108986,9 @@ okburrito.com, 1
okcasino.ga, 1
okchousebuyer.com, 1
okcp.ca, 1
+okdisasterhelp.org, 1
okdousho.com, 1
-oke.com.tw, 1
-okea.org, 1
+okea.org, 0
okeechobeecountyfl.gov, 1
okeeferanch.ca, 0
okeepixels.ru, 1
@@ -109505,7 +109031,6 @@ okna.ua, 1
oknakz-astana.kz, 1
oknavdom.tk, 1
oknopvh.ml, 1
-okobojitech.com, 1
okokorecepten.nl, 1
okosg.kr, 1
okotelecom.ml, 1
@@ -109612,7 +109137,6 @@ oldskoolanthemz.net, 1
oldskoolreviews.tk, 1
oldskooltunes.com, 1
oldskooltunez.com, 1
-oldsoul.id, 0
oldspice.com, 1
oldspokeshome.com, 1
oldsql.tk, 1
@@ -109642,14 +109166,12 @@ oleksii.name, 0
olemon.eu.org, 1
olenergies.com, 1
olenergies.eu, 1
-olennolla.fi, 1
olennolla.net, 1
oleodecopayba.com.br, 1
olepiraatti.fi, 1
olered.com, 1
oleren.com, 0
olerogas.xyz, 1
-olerth.com, 1
oles-hundehaus.de, 1
olesaradio.tk, 1
olevalmis.ee, 1
@@ -109675,12 +109197,10 @@ olimpicmoradebre.tk, 1
olimplask.pl, 1
olimpoao.tk, 1
olingermr.com, 1
-olinux.fr, 1
oliode.tk, 1
olip.com, 1
olisius.com, 1
olive.dental, 1
-olive.my, 1
olivea.cz, 0
olivedon.com, 1
olivehealth.co.uk, 1
@@ -109719,7 +109239,6 @@ oliviervaillancourt.com, 1
olivinehoney.com.au, 1
olivlabs.com, 1
oljyakatemia.fi, 1
-olk9mo.com, 1
ollerom.com, 1
ollerom.nl, 1
ollie.io, 1
@@ -109748,6 +109267,7 @@ oloadvid.tk, 1
olofa.org, 1
olofly.com, 1
olofsson.cc, 1
+ololmke.org, 1
olomercy.com, 1
olopp.org, 1
olphseaside.org, 1
@@ -109758,7 +109278,6 @@ olsenban.de, 1
olshop.ai, 1
olson25.org, 0
olsonproperties.com, 1
-oltayagelme.org, 1
oluchiedmundmusic.com, 1
oludeniz.tk, 1
olustvere.edu.ee, 1
@@ -109780,6 +109299,7 @@ olympicfitness.com.mx, 1
olympiclodge.com, 1
olympiclodgebyayres.com, 1
olympionici.cz, 1
+olympsec.io, 1
olymptrade.com, 1
olympusx.co.za, 1
om.yoga, 1
@@ -109832,7 +109352,6 @@ omegahosting.net, 1
omegamc.ua, 1
omegathermoproducts.nl, 1
omegleporn.to, 1
-omenprinting.com.au, 1
omenu.co.uk, 1
omeopatiadinamica.it, 1
omerdanismaz.com, 0
@@ -109854,11 +109373,6 @@ omgdevil.com, 1
omgevingsdiensthaaglanden.nl, 1
omgidol.com, 1
omgit.works, 1
-omgpu.com, 1
-omgvaneyckwashere.be, 1
-omgvaneyckwashere.com, 1
-omgvaneyckwashere.eu, 1
-omgvaneyckwashere.gent, 1
omhome.net, 1
omicawholesale.com, 1
omid16b.com, 1
@@ -109866,7 +109380,6 @@ omidfan.ir, 0
omiltem.net, 1
omintmais.azurewebsites.net, 0
omipicon.io, 1
-omira.pt, 1
omitech.co.uk, 1
omkarpathak.in, 1
omlpar.gov, 1
@@ -109908,6 +109421,7 @@ omniterm.com, 1
omnitrattore.it, 1
omnits.pro, 1
omny.info, 1
+omolines.tv, 1
omoo.co, 0
omorashi.org, 1
omoteura.com, 1
@@ -109953,14 +109467,11 @@ ona.io, 1
onaboat.se, 1
onaccount.co.nz, 1
onai.es, 1
-onair.ovh, 1
onarto.com, 1
onavstack.net, 1
onawaymi.com, 1
onbettertech.com, 1
onbley.com.br, 1
-onboardmail.co.uk, 1
-onboardweb.co.uk, 1
onbrand.me, 1
oncall.health, 1
oncc.org, 1
@@ -109970,8 +109481,8 @@ oncentive.io, 1
onceuagain.tk, 1
onceuponabow.org, 1
onceuponarainbow.co.uk, 1
-oncf.asso.fr, 1
onchclub.tk, 1
+onclouds.tech, 1
onco-grandest.fr, 1
oncore-eurofins.com, 1
oncotarget.ru, 1
@@ -109986,9 +109497,7 @@ ondeapostar.pt, 1
ondeck.com.au, 1
ondemandassociate.com, 1
onderka.com, 1
-onderwijscentrum.gent, 1
-onderwijscentrumgent.be, 1
-onderzoeksraad.nl, 0
+onderzoeksraad.nl, 1
ondevamosjantar.com, 1
ondiet.biz, 1
ondoline.ch, 1
@@ -110026,6 +109535,7 @@ onebreadcrumb.com, 1
onebreadcrumb.com.au, 1
onecarsource.com, 1
onecauseuk.org, 1
+onecellatatime.org, 1
onecharge.biz, 1
onechoice.co.nz, 1
onechronos.com, 1
@@ -110174,6 +109684,8 @@ onezero24.net, 1
onfaloc.tk, 1
onfilm.tk, 1
onfleet.com, 1
+onfo.eu, 1
+onformative.eu, 1
onformative.net, 1
ong.ng, 1
ong.or.at, 1
@@ -110200,7 +109712,6 @@ oninpresento.ga, 1
onion.net.eu.org, 1
onionbot.ga, 1
onionbot.me, 1
-onionplay-network.stream, 1
onionshare.org, 1
onionsocial.com, 1
onionyst.com, 1
@@ -110268,7 +109779,6 @@ online24.pt, 1
online365.ga, 1
onlineaccess.io, 1
onlinebathrooms.ie, 1
-onlinebettingacademy.com, 1
onlinebiller.com, 1
onlinebillingform.com, 1
onlinebookmarks.tk, 1
@@ -110287,6 +109797,7 @@ onlinecasinoselite.org, 1
onlinecasinosportugal.pt, 1
onlinecasinosspelen.com, 1
onlinecasinotrend.nl, 1
+onlinecasinozed.com, 1
onlinechallenge.nl, 1
onlinecollegeessay.com, 1
onlinecosmeticsstore.tk, 1
@@ -110336,7 +109847,6 @@ onlinepay.tk, 1
onlinepaydayloans365.tk, 1
onlineplay.ml, 1
onlinepokies.me, 1
-onlineprogrammingbooks.com, 1
onlineprojects.in, 1
onlineradio.com.pl, 1
onlineradio.pp.ua, 1
@@ -110415,6 +109925,7 @@ onlyveg.tk, 1
onlyvintagewatches.com, 1
onmaps.de, 1
onmaru.com, 1
+onmyodev.com, 1
onmyside.com, 1
onnatuurlijk.tk, 1
onnee.ch, 1
@@ -110435,6 +109946,7 @@ onrampwallet.com, 1
onrangetout.com, 1
onrealt.ru, 0
onrr.gov, 1
+onsatv.com, 1
onscript.study, 1
onsemediagroup.ml, 1
onsenlaichelesdoigts.be, 1
@@ -110511,12 +110023,11 @@ oo6957.co, 1
oo9297.co, 1
oo9728.co, 1
oodlessoftplay.co.uk, 1
-ooeste.com, 0
+ooeste.com, 1
oofishing.ru, 0
oog-osaka.jp, 1
oogami.name, 1
oogartsennet.nl, 1
-oogent.be, 1
ooharttemplates.com, 1
oohcoloring.com, 1
ooii.net, 1
@@ -110534,6 +110045,7 @@ ooonja.de, 1
oooo.loan, 1
oooo.plus, 1
ooooo.cz, 1
+ooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo.ooo, 1
ooove.ru, 1
oopsfamily.com, 1
oorbellen.nl, 1
@@ -110545,7 +110057,6 @@ oostendevooranker.be, 0
oot.rs, 1
ootoolkit.us, 1
op3racional.eu, 1
-opacity.au, 1
opaco.tk, 1
opadaily.com, 1
opale-concept.com, 1
@@ -110565,6 +110076,7 @@ opcionpublicitaria.com, 1
opcod3.io, 1
opcoes.net.br, 1
opcom.ro, 1
+opcteknoloji.com, 1
opd.co.nz, 1
opdera.org, 1
opdi.aero, 1
@@ -110582,6 +110094,7 @@ open-desk.org, 1
open-fixture-library.org, 1
open-future.info, 1
open-greenenergy.com, 1
+open-ibd.info, 1
open-infrastructure.net, 1
open-letters.de, 1
open-mesh.org, 1
@@ -110692,7 +110205,6 @@ openpowerfoundation.org, 1
openproton.cf, 1
openprovider.nl, 0
openqnx.com, 1
-openquery.com.au, 1
openrainbow.ae, 1
openrainbow.com, 1
openrainbow.health, 1
@@ -110725,6 +110237,7 @@ Free Softwareecology.de, 1
Free Software.rocks, 1
Free Softwaresurvey.org, 1
Free Softwarex.tk, 1
+openspf.ca, 1
openspot.tk, 1
opensrc.one, 1
openssl.org, 1
@@ -110759,6 +110272,8 @@ operacdn.com, 1
operaceizrael.cz, 1
operacionlimpieza.com, 1
operad.fr, 1
+operadorescon5g.es, 1
+operadoreslowcost.es, 1
operadotejo.org, 1
operahedeland.dk, 1
operamrhein.de, 1
@@ -110769,13 +110284,14 @@ operationkiwi.work, 1
operationlifeline.ca, 0
operationlifeline.org, 0
operationturkey.tk, 1
-operationwarm.org, 1
+operationwarm.org, 0
operator.tk, 1
operatorcnc.pl, 1
operatoresanitario.it, 1
operaunica.tk, 1
operd.gob.do, 1
opfin.com, 1
+opforintel.com, 1
opgani7.info, 1
ophelia-escort.de, 1
ophelia.ink, 0
@@ -110822,7 +110338,6 @@ oportunidadinfinita.tk, 1
opos.cf, 1
oposicionescorreos.es, 1
oposicionesprofesores.tk, 1
-opp.moe, 1
oppa888.com, 1
oppa888.net, 1
oppabet.com, 1
@@ -110839,6 +110354,7 @@ oppositionsecurity.com, 1
oppostore.co.uk, 1
oppoweb.ml, 1
oppress.life, 1
+oppressed.news, 1
oppstartslos.no, 1
oppsvt.org, 1
oppwa.com, 1
@@ -110899,6 +110415,7 @@ optikabane.com, 1
optikflow.com, 1
optikoscolombia.com, 1
optilan.tk, 1
+optim-wise.com, 1
optimakers.pl, 1
optimale.co.uk, 1
optimall.tk, 1
@@ -110925,6 +110442,7 @@ optimon.io, 1
optimumactuaires.com, 1
optimumactuariat.ca, 1
optimumfinancier.ca, 1
+optimumfinancier.com, 1
optimumfinanciere.fr, 1
optimumfmw.com, 1
optimumgam.ca, 1
@@ -110936,6 +110454,8 @@ optimummarinemanagement.net, 1
optimummenhealth.com, 1
optimumnutrition.com, 1
optimumpacific.net, 1
+optimumre.ca, 1
+optimumre.com, 1
optimumship.net, 1
optimumti.ca, 1
optimumvie.com, 1
@@ -110943,7 +110463,6 @@ optimumvie.fr, 1
optimumwebdesigns.com, 1
optimus.io, 1
optimuscrime.net, 1
-optimuslearningschool.com, 1
optimusprime.pl, 1
optinetconsulting.com, 1
optinf.ca, 1
@@ -110966,12 +110485,13 @@ optolamp.com.br, 1
optome.com, 1
optometry.org, 1
optoms.tk, 1
-optoutday.de, 1
optoutpod.com, 1
optru.eu.org, 1
+optrust.com, 1
opture.ch, 1
optykgill.pl, 1
optymyze.com, 1
+opulentdivision.com, 1
opus-codium.fr, 1
opus-labs.fr, 1
opus-nail.com, 1
@@ -110983,7 +110503,6 @@ opussystems.com.au, 1
opusztaszer.hu, 1
opvakantie-noorwegen.nl, 1
opvakantie-zweden.nl, 1
-opvoedingswinkelgent.be, 1
opwaarts.tk, 1
opwekking.tk, 1
opzich.nl, 1
@@ -111049,7 +110568,6 @@ orbesurgeons.com.au, 1
orbik.com, 1
orbit.aero, 1
orbit.church, 1
-orbita.com.tr, 1
orbita.zp.ua, 1
orbitabaja.com, 1
orbitaclub.cf, 1
@@ -111074,7 +110592,6 @@ orcamarine.tk, 1
orcas.tk, 1
orcasecurity.io, 1
orchardnh.org, 1
-orchardtitle.com, 1
orchestra-ppm.io, 1
orchestra.tk, 1
orchestremetropolitain.com, 1
@@ -111087,6 +110604,7 @@ orchidparfum.eu, 1
orchidplantscare.com, 1
orchids.ua, 1
orcomsilver.tk, 1
+orcon.de, 1
orcsnet.com, 1
orcw.gov, 1
ord-airportparking.com, 1
@@ -111126,8 +110644,8 @@ ordoptimisten.se, 1
ordoro.com, 1
ordr.net, 1
ordr.no, 1
+ordremk.fr, 1
orduhaberleri.tk, 1
-ore.cool, 1
orebate.com.br, 1
oreber.com, 1
orebro.se, 1
@@ -111177,7 +110695,6 @@ orgamco.com.br, 1
organaqsis.com, 1
organdonor.gov, 1
organic.pk, 1
-organicae.com, 1
organicappraisalers.ga, 1
organicchurch.com, 1
organicconsumers.org, 1
@@ -111283,7 +110800,6 @@ orlando-marijuana-doctor.com, 1
orlandojones.com, 1
orlandooutdoor.com, 1
orleansiowa.gov, 1
-orleika.io, 0
orleika.ml, 1
orlowisko.pl, 1
ormondcatclinic.com, 1
@@ -111338,6 +110854,7 @@ orthopedic-shoes.tk, 1
orthopedicsalon.tk, 1
orthoquest.ca, 1
orthotrafficest.ga, 1
+orthotrain.de, 1
ortiatuttogas.it, 1
ortigasmalls.com, 1
ortigueira.ga, 1
@@ -111360,7 +110877,6 @@ orwell.tk, 1
orxxin.com, 1
oryva.com, 1
oryxlabs.com, 1
-oryxserver.ch, 1
orzado.com, 1
orzado.com.ua, 1
orzechot.pl, 1
@@ -111383,7 +110899,6 @@ osaka-culture-art.com, 1
osaka-hero-project.com, 0
osakaevoce.com.br, 1
osakagasaustralia.com.au, 1
-osakayuku.com, 1
osakerekisteri.fi, 1
osaketori.fi, 1
osallistuvavantaa.fi, 1
@@ -111425,7 +110940,6 @@ osci.io, 1
oscilloquartz.com, 1
oscom.tk, 1
oscontracting.com, 1
-oscpi.com, 1
oscreen.ru, 1
osdeployment.com, 1
osdeployments.com, 1
@@ -111522,11 +111036,13 @@ ostechnix.com, 1
ostek.tk, 1
ostendorf.com, 1
osteolaclusaz.com, 0
+osteopathe-grandfougeray.fr, 1
osteopathe-voisine.com, 1
osteopatiaymasaje.com, 1
osteriadelponte.tk, 1
osterkraenzchen.de, 1
ostern-osterfest.tk, 1
+osterzopf.com, 1
ostgotakonst.se, 1
osti.gov, 1
ostimwebtasarim.name.tr, 1
@@ -111545,6 +111061,7 @@ ostrovseocitra.gq, 1
ostrovseocitra.ml, 1
ostseebad-sellin.de, 1
osttopst.online, 1
+ostylelimo.com, 1
osuarez3.com, 1
osun.eu, 1
osuszanie-krakow.pl, 1
@@ -111575,7 +111092,6 @@ otakurepublic.com, 1
otakurumi.de, 1
otakuzonefanzine.tk, 1
otariarutiunian.com, 1
-otaris.de, 1
otdel16.tk, 1
otdelka56.ml, 1
otdelka76.tk, 1
@@ -111603,7 +111119,6 @@ otipax.ru, 1
otiumtech.com, 1
otixz.com, 1
otkm-stuttgart.tk, 1
-otmns.net, 1
otng.us, 1
otnij.pl, 1
otogeworks.com, 1
@@ -111667,11 +111182,11 @@ otuts.eu, 1
otvaracie-hodiny.sk, 1
otya.me, 1
otzyvy.cc, 1
+otzyvy.ws, 1
ouaibe.qc.ca, 1
ouaie.be, 1
ouaisetalors.fr, 1
ouattara.ch, 1
-oudedokken.be, 1
oudemuziek.nl, 1
ouders-uit-elkaar.nl, 1
oudersvannu.nl, 1
@@ -111684,6 +111199,7 @@ ouglor.com, 1
oui-mais-toscope.info, 1
ouin.land, 1
ouiouibunny.ch, 1
+ouipharma.fr, 1
oujj.link, 1
ouldlamara.tk, 1
oulunjujutsu.com, 1
@@ -111730,7 +111246,6 @@ ournewsindia.ga, 1
ourocg.cn, 1
ourodaestrela.pt, 1
ouroestrela.pt, 1
-ouroh2.com, 1
ouronyx.com, 0
ouropal.com, 1
ourpharmacynetwork.com, 1
@@ -111741,6 +111256,7 @@ oursmartcity.au, 1
oursportscentral.com, 1
ourstory.rip, 1
oursweb.com, 1
+oursweb.net, 1
oursweb.org, 1
ourtableforseven.com, 1
ouruglyfood.com, 1
@@ -111749,6 +111265,7 @@ ourwildsavorykitchen.com, 1
ourwits.com, 1
ourworldindata.org, 0
ourworldspeaks.com, 1
+ousho.me, 1
oust.ch, 0
oustaou-connect.com, 0
out-of-england.cf, 1
@@ -111761,7 +111278,6 @@ outandproud.pl, 1
outbackspectacular.com.au, 1
outbankapp.com, 1
outbound.tk, 1
-outbrain.com, 1
outcasts-guild.eu, 1
outcomes10.com, 1
outdoorfurniture.ie, 1
@@ -111776,8 +111292,6 @@ outdoorphoto.co.za, 1
outdoorswithmax.com, 1
outdoorsytravel.com, 1
outerface.net, 1
-outerheaven.pro, 1
-outerlandstravel.com, 1
outerlimitsdigital.com, 1
outernet.tk, 1
outerspace.ga, 1
@@ -111790,7 +111304,6 @@ outhwaite.com, 1
outilsfroids.net, 1
outincanberra.com.au, 1
outinnationalsecurity.org, 1
-outka.xyz, 1
outlaw-star.tk, 1
outlet-center.by, 1
outletcity.bg, 1
@@ -111803,18 +111316,17 @@ outlookbythebay.com, 1
outlookcomponents.com, 1
outlookprivacy.com, 1
outlooktransfer.com, 1
-outloudradio.uk, 1
outnetic.com, 1
outnow.ch, 1
outofservice.com, 1
outofthefog.net, 1
-outofyourcomfortzone.net, 1
outplayed.in, 1
outplayhq.com, 1
outplnr.fr, 1
outpost.network, 1
outrank.co.uk, 1
outreach.studio, 1
+outreel.de, 1
outrider.ai, 1
outshinesolutions.nl, 1
outsize.tk, 1
@@ -111852,7 +111364,6 @@ ovenrepairaustin.com, 1
over-50s-insurance.uk, 1
overa.net, 1
overallscanners.tk, 1
-overbyte.nl, 1
overca.sh, 1
overcached.com, 1
overcame.cf, 1
@@ -111913,7 +111424,6 @@ oveweddings.com, 0
ovez.ga, 1
ovhcdn.pw, 1
oviasport.com, 1
-ovidiusbouwbedrijf.nl, 1
ovidro.pt, 1
ovirt.org, 1
oviser.ml, 1
@@ -111935,6 +111445,7 @@ ovv.lt, 1
ovvv.top, 1
ovvy.net, 0
ow.gr, 1
+ow.ls, 1
owatonna.gov, 1
owatonnagrows.gov, 1
owdeutschland.org, 1
@@ -111958,7 +111469,6 @@ owlandbee.com.au, 1
owlandbee.eu, 1
owlandbee.uk, 1
owlandrabbitgallery.com, 1
-owlazy.com, 1
owlbee.be, 1
owlbee.co.uk, 1
owlbee.de, 1
@@ -112005,8 +111515,6 @@ owozi.com, 1
owozz.com, 1
owrt-risk.dedyn.io, 1
owyheecounty.gov, 1
-owynsafety.com, 1
-owysgarden.com.au, 1
ox.restaurant, 1
oxalato.com, 1
oxaliz.gq, 1
@@ -112041,7 +111549,6 @@ oxidecomputer.social, 1
oxidized.org, 1
oxigenoinformatica.tk, 1
oximedia.ga, 1
-oximio.com, 1
oximoron.tk, 1
oxinarf.pt, 1
oxizonia.com, 0
@@ -112051,7 +111558,6 @@ oxo.cloud, 0
oxona.eu, 1
oxopackaging.com.au, 0
oxos.com, 1
-oxots.com, 1
oxotscovid.com, 1
oxq.io, 1
oxt.co, 1
@@ -112074,6 +111580,7 @@ oxylog.fr, 1
oxymail.ru, 1
oxymoron.tk, 1
oxynux.xyz, 1
+oxypteros.com, 1
oxytocin.org, 1
oxytocin.wiki, 1
oxyx.tk, 1
@@ -112110,7 +111617,6 @@ oz-style.com, 1
ozacek.fun, 1
ozark-serial.net, 1
ozarkinspected.com, 1
-ozat-tools.com, 1
ozaukeecounty.gov, 1
ozawadental.com, 1
ozaymotor.com, 1
@@ -112280,16 +111786,16 @@ paccar.com, 0
pacch.io, 1
pacco.tk, 1
paccolat.name, 1
-pace.car, 0
+pace.car, 1
pace.cool, 1
pacecare.com, 1
pacecounsel.com, 1
paceda.nl, 1
+pacegenerative.com, 1
pacelink.de, 1
pacem.global, 1
pacemakers.ml, 1
pacepharmacy.com, 1
-pachaiyappas.org, 1
pachalingo.tk, 1
pachamamaproduct.com, 1
pachamamita.de, 1
@@ -112304,15 +111810,14 @@ pacificbeachpub.com, 1
pacificblue.kiwi, 1
pacificblue.software, 1
pacificcashforcars.com.au, 1
-pacificcoast.com, 1
pacificcycling.ga, 1
pacificdatastream.ca, 1
+pacificdomes.com, 1
pacificgynsurgicalgroup.com, 1
pacifichospitalists.com, 1
pacificlife.my.id, 1
pacifico.com.pe, 1
pacificocooler.com, 1
-pacificpackaging.com.au, 1
pacificpalisadeselectric.com, 1
pacificpalisadeselectrical.com, 1
pacificpalisadeslandscapelighting.com, 1
@@ -112332,7 +111837,6 @@ pack296.com, 1
pack50cubs.org, 0
packagestours.com, 1
packaging-gateway.com, 1
-packaginghouse.co.nz, 1
packagingproject.management, 1
packagist.jp, 1
packagist.org, 0
@@ -112388,7 +111892,6 @@ paddle.com, 1
paddlethecreek.com, 1
paddy.rocks, 1
padichota.tk, 1
-padidehkhodro.com, 1
padis-store.com, 1
padisahbilisim.tk, 1
padle.ml, 1
@@ -112410,7 +111913,6 @@ paermartinsson.se, 1
paesa.es, 1
paf.com, 1
paf.network, 1
-paff.xyz, 1
paga.red, 1
pagalofacil.com, 1
pagalworld-news.ml, 1
@@ -112449,6 +111951,7 @@ pages-tocaven.com, 1
pagespeedwizard.com, 1
pagestash.net, 1
pagetools.co, 1
+pageuk.org, 1
pageuppeople.com, 1
pagevitals.com, 1
pagewizz.com, 1
@@ -112459,7 +111962,6 @@ paginamaravillosa.tk, 1
paging.blog, 0
pagliucadb.ddns.net, 1
pagodart.com.br, 1
-pagodil.it, 1
pagoonline.com.br, 1
pagueveloz.com.br, 1
paguponku.com, 1
@@ -112487,7 +111989,6 @@ paimboeuf.fr, 1
paincareehr.com, 1
painclinic.tk, 1
paincore.tk, 1
-paindata.dk, 1
paine.tv, 1
painefamily.co.uk, 1
painesvillemunicipalcourt-ohio.gov, 1
@@ -112502,12 +112003,10 @@ paintbrush.ga, 1
paintcolorsbysue.com, 1
painted-designs.tk, 1
painteddesertfrenchies.com, 1
-paintednickelfarm.ca, 1
painter1.com, 1
paintingindurban.co.za, 1
paintingrepair.ga, 1
paintingtips.net, 1
-paintlabcustom.com.br, 1
paintpaina.com, 1
paintscratch.com, 1
paintstaintt.com, 1
@@ -112574,11 +112073,11 @@ palakkad.tk, 1
palamaailmalta.fi, 1
palant.info, 1
palantir.com, 1
-palariviera.com, 1
palateatro.cl, 1
palatin.at, 1
palatineil.gov, 1
palationtrade.com, 1
+palatofrisco.com, 1
palatte.ml, 1
palau-pizza.fr, 1
palavalbasket.it, 1
@@ -112619,11 +112118,11 @@ paletsdemetal.com, 1
paletten.tk, 1
palfut.com, 1
palhomeinterior.com, 1
+palian.co.za, 1
paliucuiciucci.tk, 1
palkiviadika.ru, 1
palladium46.com, 1
pallavibhattdesigns.com, 1
-palletflow.com, 1
pallhed.se, 1
palliativ-del.de, 1
palm-springs.org, 1
@@ -112644,7 +112143,6 @@ palmedconsultants.com, 1
palmedconsultants.org, 1
palmen-apotheke.de, 1
palmerenginc.com, 1
-palmettogba.com, 1
palmex.com, 1
palmiye.tk, 1
palmknihy.cz, 1
@@ -112686,6 +112184,7 @@ pamorana.net, 1
pamperedpersians.com, 1
pamplicosc.gov, 1
pamsorel.co.za, 1
+pamukhaliyikama.net, 1
pamvo.com, 1
pan-lleveme.com, 1
pan-portugal.com, 1
@@ -112693,7 +112192,6 @@ pan.digital, 1
pana4ucloud.ddns.net, 1
panaceainfosec.com, 1
panaceallc.net, 1
-panagenda.com, 1
panamacity.gov, 1
panamacitypolice.gov, 1
panamatravel.tk, 1
@@ -112770,6 +112268,7 @@ pandorageorgia.ge, 1
pandorarecovery.com, 1
pandorarox.com, 1
pandorawiki.org, 1
+pandorrah.nl, 1
pandorum.cf, 1
pandos.pl, 1
panduan-hamil.tk, 1
@@ -112851,7 +112350,6 @@ pansermuseet.dk, 1
pansermuseum.dk, 1
pansino.net, 1
pansion-differently.tk, 1
-panskeet.xyz, 1
pansys.de, 1
panszelescik.pl, 1
pantagraph.com, 1
@@ -112861,7 +112359,6 @@ pantera.tk, 1
panthenolplus.co.uk, 1
panthenolplus.com, 1
pantherage.co.uk, 1
-panthercitysand.com, 1
panthi.lk, 1
pantingly.tk, 1
pantonshire.com, 1
@@ -112900,6 +112397,7 @@ papa.com, 1
papabrand.tk, 1
papadoccaffe.pt, 1
papadopoulos.me, 1
+papago-taiwan.com, 1
papaimama.ru, 1
papajohns.com.ec, 1
papakarlohas.ru, 1
@@ -112926,9 +112424,7 @@ paperandpage.com, 1
paperhoney.by, 1
paperless.spdns.eu, 1
paperlessparts.com, 1
-papermuseum.jp, 1
papernest.com, 1
-paperplus.com.au, 0
paperpress.gq, 1
papersmart.net, 1
papersowl.com, 1
@@ -112937,7 +112433,6 @@ papertracker.net, 1
paperwork.co.za, 1
paperwritinghelp.net, 1
paperwritten.com, 1
-papgift.com, 1
papi.com, 1
papieri.dental, 1
papierniak.net, 1
@@ -112971,7 +112466,6 @@ paradies-baar.ch, 1
paradiesgirls.ch, 1
paradigma-med.ru, 1
paradigmas.tk, 1
-paradigmshift.com.pk, 1
paradiscapacitados.site, 1
paradise-engineer.com, 1
paradise-engineering.com, 1
@@ -112982,7 +112476,6 @@ paradisehomecare.com, 1
paradiselost.com, 0
paradisemassagenj.com, 1
paradisend.tk, 1
-paradiseprivatehospital.com, 1
paradisetownshipmi.gov, 1
paradisim.tk, 1
paradisu.fr, 1
@@ -112993,6 +112486,7 @@ paradymecompanies.com, 0
paraelganzo.tk, 1
parafarmacia.it, 1
paragliding-lessons.com, 1
+paragon-access.com, 1
paragonremodeling.com, 0
paragonsigns.tk, 1
paragreen.net, 1
@@ -113108,12 +112602,8 @@ paridurable.com, 1
parikmag-pm.ru, 1
parikmaxeru.tk, 1
parimatch-best.com, 1
-parimatch-betting.com, 1
parimatch-chance.com, 1
parimatch-email.com, 1
-parimatch-live.com, 1
-parimatch-play.com, 1
-parimatch-plus.com, 1
parimatch-sport.com, 1
parimatch-sports.com, 1
parimatch-world.com, 1
@@ -113121,7 +112611,6 @@ parimatch.co.tz, 1
parimatch.com, 1
parimatch.in, 1
parimatch.kz, 1
-parimatchlive.com, 1
parimatchsports.com, 1
parimatchtop.com, 1
parina.vn, 1
@@ -113181,21 +112670,6 @@ parkeer.nl, 1
parkeerserviceboxtel.nl, 1
parkefficient.de, 1
parken-duesseldorfflughafen.de, 1
-parken-flughafenamsterdam.de, 1
-parken-flughafenbremen.de, 1
-parken-flughafendortmund.de, 1
-parken-flughafendresden.de, 1
-parken-flughafeneindhoven.de, 1
-parken-flughafenfrankfurt.de, 1
-parken-flughafenhahn.de, 1
-parken-flughafenhannover.de, 1
-parken-flughafenkoeln.de, 1
-parken-flughafennuernberg.de, 1
-parken-flughafenstuttgart.de, 1
-parken-flughafentegel.de, 1
-parken-flughafenweeze.de, 1
-parken-hamburgflughafen.de, 1
-parken-leipzigflughafen.de, 1
parkenamflughafen.de, 1
parkenflughafen-muenchen.de, 1
parkenflughafenbrandenburg.de, 1
@@ -113209,21 +112683,8 @@ parkercs.tech, 1
parkercs.tk, 1
parkeren.in, 1
parkerenamsterdamcentrum.nl, 1
-parkerenbremen-airport.nl, 1
-parkerenbrussel-airport.nl, 1
-parkerencharleroi-airport.nl, 1
-parkerendusseldorf-airport.nl, 1
-parkereneindhoven-airport.nl, 1
-parkerenfrankfurt-airport.nl, 1
-parkerengroningen-airport.nl, 1
-parkerenhahn-airport.nl, 1
-parkerenkeulen-airport.nl, 1
-parkerenlelystad-airport.nl, 1
-parkerenrotterdam-airport.nl, 1
parkerenrotterdamcentrum.nl, 1
-parkerenschiphol-airport.nl, 1
parkerenutrechtcentrum.nl, 1
-parkerenweeze-airport.nl, 1
parkerforum.cf, 1
parkerforum.tk, 1
parkers.cf, 1
@@ -113315,6 +112776,7 @@ parosvoyages.gr, 1
parovozov.ga, 1
paroxetine.gq, 1
parperfeito.pt, 1
+parqcloud.com, 1
parque-batlle.tk, 1
parquebatlle.tk, 1
parquestejo.pt, 1
@@ -113366,6 +112828,7 @@ partigoldendoodle.com, 1
partii.tk, 1
partijtjevoordevrijheid.nl, 0
partijvoordedieren.nl, 1
+partik.com.br, 1
partilino.com, 1
partin.nl, 0
partiono.com, 1
@@ -113435,7 +112898,6 @@ partymusikband.de, 1
partypearl.de, 1
partypeeps.tk, 1
partyphoto.tk, 1
-partyrehabb.com, 1
partyrocksbounce.co.uk, 1
partyschnaps.com, 1
partyshop.ge, 1
@@ -113451,7 +112913,7 @@ parxanalytics.com, 1
parxsolutions.com, 1
parys.org, 1
pas-meeting.org, 1
-pasabahcemagazalari.com, 0
+pasabahcemagazalari.com, 1
pasadena.gov, 1
pasadenapooch.org, 1
pasarella.eu, 1
@@ -113534,7 +112996,6 @@ passport.yandex.ru, 1
passport.yandex.ua, 1
passportapproved.com, 1
passportcorporate.com, 1
-passporttrails.com, 1
passrhce.com, 1
passrhcsa.com, 1
passthrough.com, 1
@@ -113550,7 +113011,6 @@ password.consulting, 1
passwordass.org, 1
passwordgenerator.ml, 1
passwordlist.io, 0
-passwordrecoverytools.com, 1
passwords.google.com, 1
passwordsapp.org, 1
passwordscon.com, 1
@@ -113566,10 +113026,10 @@ pastaenprosecco.nl, 1
pastaroomers.ga, 1
pastaroomest.ga, 1
paste.fedoraproject.org, 1
-paste.gg, 1
paste.quest, 1
paste.rodeo, 1
paste.to, 1
+pasteanon.com, 1
pastebin.bet, 1
pasteblin.com, 1
pasteht.ml, 1
@@ -113580,6 +113040,7 @@ pasternok.org, 1
pasteros.io, 1
pastetot.com, 1
pasteurinstituteindia.com, 1
+pasteworks.com, 1
pasticceria.milano.it, 1
pasticcerialorenzetti.com, 1
pasticceriaveneziana.ga, 1
@@ -113624,6 +113085,7 @@ patel.sh, 1
pateley-bridge.com, 1
patent-sternika.pl, 1
patentmanufaktur.video, 1
+patentmatik.com, 1
patentpanelers.ga, 1
patentpanelest.ga, 1
patentu.ga, 1
@@ -113636,6 +113098,7 @@ pathearn.ai, 1
pathfinderbank.com, 1
pathfindercut.com, 1
pathfindergeo.com, 1
+pathforworldpeace.com, 1
pathofexile2.com, 0
pathogen.nl, 1
pathologie-dna.nl, 1
@@ -113645,7 +113108,7 @@ pathwayscenterforgrief.org, 1
pathwayscenterforgriefandloss.org, 1
pathwaysthroughgrief.org, 1
pathzero.com, 0
-patient.info, 0
+patient.info, 1
patientcheckin.com, 1
patientenverfuegung.digital, 1
patientjourneyapp.com, 0
@@ -113655,7 +113118,6 @@ patientys.com, 1
patiga.ga, 1
patikabiztositas.hu, 1
patikakristaly.hu, 1
-patiliyoruz.com, 1
patimbanservisindonesia.co.id, 1
patin.cf, 1
patioboreal.ca, 1
@@ -113691,7 +113153,6 @@ patrickaudley.com, 1
patrickbusch.net, 1
patrickcontainerrotator.ga, 1
patrickdankers.nl, 1
-patrickdecokere.be, 1
patrickderitter.nl, 1
patrickhoving.com, 1
patrickhoving.nl, 1
@@ -113715,7 +113176,6 @@ patris-querre.com, 1
patrisnews.com, 1
patrocinio.com.br, 1
patrogers.org, 1
-patrovic.com, 1
patrycjamichera.com, 1
patryk.cf, 1
patrz.eu, 1
@@ -113741,6 +113201,7 @@ paul-barton.co.uk, 1
paul-online.tech, 1
paul-sitarz.com, 1
paul-vierhaus.de, 1
+paul-zhang.de, 1
paul.media, 1
paul.reviews, 1
paulahot.tk, 1
@@ -113829,7 +113290,6 @@ pavajebucovina.ro, 1
pavamtio.cz, 1
pavando.com, 0
pavcomm.com, 1
-pavel.cc, 1
pavel.co.il, 1
paveldesign.tk, 1
pavelfojt.cz, 1
@@ -113897,6 +113357,7 @@ pay.cleaning, 1
pay.condos, 1
pay.construction, 1
pay.contractors, 1
+pay.dance, 1
pay.dentist, 1
pay.dog, 1
pay.equipment, 1
@@ -114043,11 +113504,12 @@ paytm.in, 1
paytmlabs.com, 1
paytowriteessays.net, 1
payu.com, 1
-payufin.in, 1
+payufin.in, 0
payupay.ru, 1
payvalida.com, 1
payward.com, 1
payzang.com, 1
+pazaracik.com, 1
pazarlab.com, 1
pazescomoingles.com.br, 1
pazyarmonia.tk, 1
@@ -114056,7 +113518,6 @@ pb-eatz.com, 1
pb.ax, 0
pback.se, 1
pband.ch, 1
-pbatourexperience.com, 1
pbbm.com.ph, 1
pbc.gov, 1
pbcables.tk, 1
@@ -114110,7 +113571,9 @@ pcast.gov, 1
pcbarchitect.com, 1
pcbfl.gov, 1
pcbmarketing.gq, 1
+pcbmilling.com, 1
pcbmodel.com, 1
+pcbprototyping.com, 1
pcbricole.fr, 1
pcbuildinggr.com, 1
pcc.iq, 1
@@ -114146,7 +113609,6 @@ pcisecuritystandards.org, 1
pcissc.org, 1
pcivellophotography.com, 1
pclgroup.co.nz, 1
-pclicensekeys.com, 1
pcloud.com, 1
pcmania.tk, 1
pcmaw.com, 1
@@ -114176,6 +113638,7 @@ pcsbrasil.ml, 1
pcscotus.gov, 1
pcservice.slask.pl, 1
pcsetting.com, 1
+pcsoft.fr, 1
pcsolutionsofwillis.ga, 1
pcsolutionsofwillis.gq, 1
pcstoronto.ca, 1
@@ -114214,7 +113677,6 @@ pdf4pro.com, 1
pdfbear.com, 1
pdfbook-dl.ml, 1
pdfbooksonline.gq, 1
-pdfbox.ai, 1
pdfconvert.me, 1
pdfflier.cf, 1
pdfhelp.net, 1
@@ -114239,6 +113701,7 @@ pdpa.ai, 1
pdq.com, 1
pds.police.uk, 1
pdsk.ch, 1
+pdtech.ltd, 1
pdtppfl.gov, 1
pdvault.co, 1
pdxcoinclub.org, 1
@@ -114247,6 +113710,9 @@ pe-bank.jp, 1
pe-netz.de, 1
pe-portal.de, 1
pe.search.yahoo.com, 0
+pe7k.com, 1
+pe7k.de, 1
+pe7k.nl, 1
peabodytile.com, 1
peace-is-possible.net, 1
peaceandjava.com, 1
@@ -114575,7 +114041,6 @@ penopoly.ga, 1
penopoly.gq, 1
penopoly.ml, 1
penopoly.tk, 1
-penoray.ru, 1
penosa.ga, 1
penril.net, 1
penrite.pl, 1
@@ -114615,7 +114080,6 @@ pentagram.cf, 1
pentagrid.ch, 1
pentahobigdata.com, 1
pentamexicali.tk, 1
-pentandra.com, 1
pentapaints.com, 1
pentaquin.com, 1
pentaquin.net, 1
@@ -114623,6 +114087,7 @@ pentatonik.tk, 1
pentechmc.blog, 1
pentekdograma.com, 1
pentera.io, 1
+pentescope.com, 1
pentest.blog, 1
pentesterlab.com, 1
pentestit.com, 1
@@ -114645,8 +114110,6 @@ penza-on-line.tk, 1
penza-today.tk, 1
penzaonline.cf, 1
penzionvzahrade.cz, 1
-penztargepforum.hu, 1
-penztargepnagyker.hu, 1
people-press.org, 1
people.deloitte, 1
people2hire.co.uk, 1
@@ -114679,6 +114142,7 @@ peoplesplatform.tk, 1
peoplesrepublicofchinasucks.com, 1
peoplesrights.org, 1
peoplesunderwriters.com, 1
+peopleubeda.es, 1
peoriacounty.gov, 1
peoriaelections.gov, 1
peoriaevents.com, 1
@@ -114701,14 +114165,12 @@ pepix.pl, 1
peplex.ddns.net, 1
peplex.nl, 1
peppelmedi.fi, 1
-pepperandpartner.com, 1
peppermillinteriors.com, 1
peppertalks.com, 1
pepperydance.top, 1
peppyflora.com, 1
pepsi.investments, 1
pepta.net, 1
-pepul.com, 1
pepwaterproofingllc.com, 1
peqal.cf, 1
pequenaitalia.com.br, 1
@@ -114747,7 +114209,6 @@ peregrinefund.org, 1
peregrinus.es, 1
pereiravillela.com.br, 1
peremena.ml, 1
-peren-solutions.fr, 1
perenne.ee, 1
perennialte.ch, 1
perennialwomens.com, 1
@@ -114774,7 +114235,6 @@ perfect-tour.ro, 1
perfect8.com.tw, 1
perfectbalance.tech, 1
perfectbitches.com, 1
-perfectcloud.org, 1
perfectcommunity.ga, 1
perfecteclass.com.cy, 1
perfectfocuseyecare.com, 1
@@ -114832,6 +114292,7 @@ pergam.kz, 1
pergamentka-apartments.cz, 1
periapsis.cc, 1
pericsope.gq, 1
+peridoc.org, 1
peridotcapitalpartners.com, 1
periferiaegyesulet.hu, 1
perigon.ch, 1
@@ -114856,6 +114317,7 @@ perksofcoffee.com, 1
perksplus.com, 1
perkypavla.com, 1
perl6.org, 1
+perlaphotography.com.au, 1
perlbanjo.com, 1
perlego.com, 1
perlina.co.il, 1
@@ -114931,6 +114393,7 @@ persey-ssm.com.ua, 1
persey.tk, 1
persian-clan.tk, 1
persiandating.tk, 1
+persiandevelopers.ir, 1
persianmassagetherapy.com, 1
persianrom.com, 1
persiart.shop, 1
@@ -114972,7 +114435,6 @@ persondatakonsulenterne.dk, 1
personetics.com, 1
personjob.ru, 1
personlookup.com.au, 1
-personnalisathion.be, 1
personnedisparue.fr, 1
personnelplusinc.com, 1
persoonlijkeblog.nl, 1
@@ -115025,7 +114487,6 @@ pescanetworks.tk, 1
pescans.com, 1
pescco.com.br, 1
peshakoo.com, 1
-pesinatsizsenetle.com, 1
pesitalia.tk, 1
pesnik.tk, 1
pesnitut.ga, 1
@@ -115178,7 +114639,6 @@ petitmaison.net, 1
petitnuagephotographie.be, 1
petitsfrenchies.com, 1
petitu.mx, 1
-petjoy.co.za, 1
petkiss.ga, 1
petknight.ga, 1
petknob.com, 1
@@ -115224,17 +114684,14 @@ petrifiedhaggis.dedyn.io, 1
petrifiedhaggis.net, 1
petrifiedhaggis.org, 1
petrkulik.cz, 1
-petro.cn, 1
petrochemprojects.ga, 1
petrol-power.tk, 1
-petrol.cn, 1
petrol.com.ua, 1
petroleum-schools.com, 1
petroleumservicecompany.com, 1
petroll.ga, 1
petropoulos.ng, 1
petroscand.eu, 1
-petrostar.com, 1
petrostathis.com, 0
petrotamin.ir, 1
petrotranz.com, 1
@@ -115268,7 +114725,6 @@ petsulcatatortoise.com, 1
petsurreal.ga, 1
pettanko.top, 1
pettauer.net, 1
-pettenant.com, 1
pettersatlher.com.br, 1
pettisclerk.gov, 1
pettopsecret.ga, 1
@@ -115295,8 +114751,6 @@ pewo.com, 1
pewresearch.org, 1
pewsocialtrends.org, 1
pex.digital, 0
-pexlab.net, 1
-peyote.com, 1
peyote.org, 1
peyote.wiki, 1
peytonwebster.com, 1
@@ -115398,7 +114852,6 @@ pgsindustries.com.au, 1
pgsolusi.com, 1
pgsupplier.com, 1
pgtca.ca, 1
-pgwap.com, 1
pgwellnesscoach.it, 1
ph-brand.jp, 1
ph-consult.sk, 1
@@ -115408,7 +114861,6 @@ ph3r3tz.net, 1
ph4nt0m.ddns.net, 0
ph89.de, 1
pha.pub, 1
-phaedranyx.co.uk, 1
phaenos.com, 1
phagyo.com, 1
phannuoc.net, 1
@@ -115451,6 +114903,7 @@ pharmasyncers.ga, 1
pharmasyncest.ga, 1
pharmgkb.org, 1
pharmica.uk, 1
+pharos-labs.com, 1
pharosconsulting.com, 1
pharosiq.com, 1
pharside.dyndns.org, 1
@@ -115519,7 +114972,6 @@ philenews.com, 1
philia-sa.com, 0
philiip11.de, 1
philinnon.net, 1
-philip.im, 1
philipbuckmaster.co.uk, 1
philipdb.com, 1
philipdb.nl, 1
@@ -115546,7 +114998,6 @@ philippehannes.fr, 1
philippekhau.tk, 1
philippemunn.photo, 1
philippheenen.de, 0
-philippians2foundation.org, 1
philippinegreenparty.tk, 1
philippinenewsvanguard.tk, 1
philippkaindl.de, 1
@@ -115582,7 +115033,7 @@ philosophers.tk, 1
philosopherswool.com, 1
philosophy-colleges.com, 1
philosophyguides.org, 1
-philosophytalk.org, 1
+philosophyofatheism.com, 1
philphonic.de, 1
philpropertygroup.com, 0
philrights.org, 1
@@ -115593,7 +115044,6 @@ philwilson-green.ga, 1
philwilson-green.gq, 1
philwilson-green.ml, 1
phimbop.top, 1
-phimbop.xyz, 1
phimmoingay.org, 1
phimtor.com, 1
phinikarides.net, 1
@@ -115629,7 +115079,6 @@ phoenixsalon.eu, 1
phoenixurbanspaces.com, 0
phoenixville.online, 1
phoenixwebsitedesign.com, 1
-phographer.com, 0
phol.io, 1
pholder.com, 1
pholio.com, 1
@@ -115640,7 +115089,6 @@ phonearena.com, 1
phonedoc.it, 1
phonefilter.co.uk, 1
phonefleet.fr, 1
-phonegnome.com, 1
phoneia.com, 1
phoneincentivesers.ga, 1
phoneincentivesest.ga, 1
@@ -115851,7 +115299,6 @@ phyrone.de, 1
phyrone.eu, 1
phys.ir, 0
physia.gr, 1
-physica.no, 1
physicalism.com, 1
physicalist.com, 1
physicalmedicineandrehab.com, 1
@@ -115956,7 +115403,6 @@ pickawaycountyohio.gov, 1
picked.cf, 1
pickemsheet.com, 1
pickenscountysc.gov, 1
-pickeringhouse.org, 1
picketfence.tk, 1
pickhdtvers.ga, 1
pickhdtvest.ga, 1
@@ -115964,7 +115410,6 @@ pickle-publishing.com, 1
pickleland.com, 1
picklinik.id, 0
pickmysoap.gr, 1
-picknclickonline.com, 1
picknetworkiscoming.sg, 1
picknrg.com, 1
picksin.club, 1
@@ -116005,7 +115450,6 @@ pictoplasma.com, 1
pictoriastudios.com, 1
pictorzo.com, 1
pictr.nl, 1
-picturedent.org, 1
picturegenetics.com, 1
picturepower.nl, 1
picturesalon.com, 1
@@ -116030,6 +115474,7 @@ piedrahita.tk, 1
piedrasblancas.gov, 1
piedroshop.nl, 1
piefed.social, 1
+piefed.world, 1
piekacz.co.uk, 1
piekacz.eu.org, 1
piekacz.net, 1
@@ -116056,11 +115501,9 @@ piercraft.com, 1
pierdoling.org, 1
pieregister.com, 1
pierianservices.com, 1
-pieropuschiavo.it, 1
pierpaoloamarante.it, 0
pierre-denoblens.net, 1
pierre-schmitz.com, 1
-pierrearnaud.com, 1
pierreborgmann.de, 1
pierrejeansuau.fr, 1
pierreloizeau.com, 1
@@ -116071,6 +115514,7 @@ pierrot-bg.com, 1
piersmana.com, 1
pierson.tk, 1
pierstone.com, 1
+pierugo.ch, 1
piesel-piepser.de, 1
pietbrakman.tk, 1
pietechsf.com, 0
@@ -116140,7 +115584,6 @@ pilatespt.nl, 1
pilatesstation.co.th, 1
pilbaraports.com.au, 1
pilchuck.org, 1
-pildat.org, 1
pile.systems, 1
pileawayremovals.com, 1
pilgermaske.org, 1
@@ -116148,8 +115591,6 @@ pili-serv.ovh, 1
pilipinas.cc, 1
piliszek.net, 1
pillar.fi, 1
-pillar.ninja, 1
-pillar.us, 1
pillargrc.com, 1
pillitteriobgyn.com, 1
pillow.sk, 1
@@ -116237,7 +115678,7 @@ pinellastaxcollector.gov, 1
pinemountbaptistchurch.org, 1
pineradelolmo.com, 1
pinerivermi.gov, 1
-pinesol.com, 1
+pinesol.com, 0
pinetreeadvisors.us, 1
pineviewlogan.com, 1
pinfong.com, 1
@@ -116260,7 +115701,7 @@ pinigseu.xyz, 1
pinimg.com, 1
pink-check.school, 1
pink-panther.tk, 1
-pink.nl, 1
+pink.nl, 0
pinkadventuretours.com, 1
pinkband.tk, 1
pinkbaummer.com.br, 1
@@ -116281,6 +115722,10 @@ pinkpop.nl, 1
pinkpussy.tv, 1
pinkpussypics.com, 1
pinksec.com.au, 1
+pinkshow.com, 1
+pinksolution.ca, 1
+pinksolutions.ca, 1
+pinksolutions.mx, 1
pinkster.tk, 1
pinktara.hu, 1
pinktrilliumphotography.com, 1
@@ -116304,6 +115749,7 @@ pinole.gov, 1
pinoservers.tk, 1
pinot.it, 1
pinotag.ru, 1
+pinoy-santi.com, 1
pinoydeal.ph, 1
pinoysurvey.com, 1
pinoytambayan.ga, 1
@@ -116449,7 +115895,6 @@ pistats.ddns.net, 1
pistolnz.org.nz, 1
pistonkandidatu.tk, 1
piszmak.pl, 1
-pit-book.com, 1
pit-stop-sto.tk, 1
pit.edu.ph, 1
pitakashop.hu, 1
@@ -116497,6 +115942,7 @@ pittsvillemd.gov, 1
pittsvillewi.gov, 1
pitu.gov, 1
piu.moe, 1
+piuralift.nl, 1
piurvolium.tk, 1
piute.gov, 1
piutesd.gov, 1
@@ -116554,6 +116000,7 @@ pixelmonworld.fr, 1
pixelonl.com, 1
pixelorastudio.com, 1
pixelpaper.org, 1
+pixelpartyplay.com, 1
pixelplex.io, 1
pixelprint.la, 1
pixelrain.info, 1
@@ -116590,6 +116037,7 @@ pixloc.fr, 1
pixma140.com, 1
pixodo.tk, 1
pixojo.tk, 1
+pixon-chemie.com, 1
pixouno.com, 1
pixshop.fr, 1
pixstudio.ai, 1
@@ -116653,8 +116101,6 @@ pkfbpo.pl, 1
pkfszkolenia.pl, 1
pkg.one, 1
pkgbuild.com, 1
-pkgroupglobal.com, 1
-pkgs.observer, 1
pkgt.de, 0
pki.com.ru, 1
pkirwan.com, 1
@@ -116663,7 +116109,6 @@ pkov.cz, 1
pkservice.tk, 1
pkshs.my, 1
pkspskov.tk, 1
-pkvgamesqq.asia, 1
pkvmanager.info, 1
pkwebsolutions.cf, 1
pl-cours.ch, 0
@@ -116691,7 +116136,6 @@ placestovisitasia.com, 1
placidoandriolo.tk, 1
placiena.jp, 1
placker.com, 1
-plagiarism-checker.top, 1
plagiarismcheck.org, 1
plagiary.org, 1
plagu.ee, 1
@@ -116727,7 +116171,6 @@ plamenapanayotova.co.uk, 1
planable.io, 1
planafy.com, 1
planate.com, 0
-planbase.com, 1
planchasvertical.es, 1
plancke.io, 1
plandecorones.net, 1
@@ -116805,6 +116248,7 @@ planisware.cn, 1
planisware.io, 1
planisware.live, 1
planisys.net, 1
+planit-inc.com, 1
planitz.com, 1
planitz.net, 1
planitz.org, 1
@@ -116818,17 +116262,16 @@ planmemberpartners.com, 1
planned-cities.com, 1
plannedlink.com, 1
plannedparenthooddirect.org, 1
+plannerap.com, 1
planning.center, 1
planning.ga, 1
planningcenter.com, 0
planningsagenda.nl, 1
plano.gq, 1
-planodesaude.net.br, 1
planogaragedoor.net, 1
planresto.com, 1
planriean.com, 1
planrow.com, 1
-plansaude.med.br, 1
planshetnik.tk, 1
plant-gift.jp, 1
plantarportugal.org, 1
@@ -116838,6 +116281,7 @@ plantbasedblonde.com, 1
plantcare.es, 1
plantcareforbeginners.com, 1
planteforum.no, 1
+plantennatuurlijk.nl, 1
plantenvinder.nl, 1
plantepakken.dk, 1
plantes.ch, 1
@@ -116852,7 +116296,6 @@ plantrustler.com, 1
plantsupplement.co.uk, 1
plantuml.online, 1
planujemywesele.pl, 1
-planungsdetail.de, 1
planungsregion-abw.de, 1
planview.com, 1
planvoyages.com, 1
@@ -116868,6 +116311,7 @@ plaskiewicz.pl, 1
plasma.nl.eu.org, 1
plasmainc.xyz, 1
plasmatrap.com, 1
+plasmoth.org, 1
plasofficial.it, 1
plassmann.ws, 1
plast.bg, 1
@@ -116877,6 +116321,7 @@ plastex.tk, 1
plastic2print.com, 1
plasticdoctor.co.uk, 1
plasticdonut.tk, 1
+plasticeyesurgery.com, 1
plasticflash.com, 1
plasticisers.org, 1
plasticobiodegradable.com, 1
@@ -117021,7 +116466,6 @@ playsoftware.tk, 1
playsportal.com, 1
playsprout.industries, 1
playstation-network.ga, 1
-playstation5.es, 1
playstationplus.es, 1
playstationtrophies.org, 1
playtheme.ru, 1
@@ -117058,6 +116502,7 @@ pleasantvillepd.org, 1
please-uwu.me, 1
pleaseuseansnisupportedbrowser.ml, 1
pleasure-science.com, 1
+pleasure.box, 1
pleasured.tk, 1
pleasureplanetbrothel.com.au, 1
pleb.cc, 1
@@ -117129,9 +116574,11 @@ ploof-cleaning.gr, 1
plooij.it, 1
ploom.com, 1
ploomber.io, 1
+ploppis.org, 1
ploptec.tk, 1
plothost.com, 1
plotly.com, 0
+plotscout.ae, 0
plougastel.com, 1
ploulech.fr, 1
plov.loan, 1
@@ -117145,6 +116592,8 @@ plugin-planet.com, 1
pluginhayati.tk, 1
plugintema.com, 1
pluginthemehub.com, 1
+pluginuri-wordpress.ro, 1
+plugmeubelen.nl, 1
plugnroll.com, 1
plugshare.com, 1
pluimveeplanner.nl, 1
@@ -117174,7 +116623,6 @@ plumlocosoft.com, 1
plumnet.ch, 0
plumperthumbs.com, 1
plumpie.net, 0
-plumplat.com, 1
plumsail.com, 1
plumz.me, 1
plungepools.ae, 1
@@ -117184,15 +116632,14 @@ pluricosmetica.com, 1
plurilock.com, 1
pluriumint.com, 1
plus-project.co.uk, 1
+plus.ai, 1
plus.google.com, 1
plus.sandbox.google.com, 1
-plus.st, 1
plus15.ml, 1
plus15.tk, 1
plus1s.site, 1
plusamed.com, 1
plusbot.tk, 1
-pluscitizen.com, 1
plusfitness.com.au, 1
plusgrandevilledefrance.com, 1
plushev.tk, 1
@@ -117218,7 +116665,6 @@ plymouthshawneeindians.org, 1
plymouthtownshippa.gov, 1
plymouthwi.gov, 1
plz.report, 1
-plzdontpwn.me, 1
plzen-sadrokarton.cz, 1
plzen.fun, 1
plzh4x.me, 1
@@ -117251,11 +116697,9 @@ pmcancerclasses.ca, 1
pmcancerrehab.ca, 1
pmcaregiver.ca, 1
pmconsulting.es, 1
-pmcouvrie.com, 1
pmctcg.com, 1
pmctire.com, 0
pmdealerest.ga, 1
-pmdfanfiction.com, 1
pmdistributors.com.au, 1
pmessage.ch, 1
pmf.gov, 1
@@ -117300,6 +116744,7 @@ pneu74.fr, 1
pneuhaus-lemp.ch, 1
pneumania.fr, 1
pneumatici.roma.it, 1
+pneumogen.net, 1
pneupro.ma, 1
pnevmo-trade.ru, 1
pnfiles.tk, 1
@@ -117411,7 +116856,6 @@ poc886.com, 1
poc8866.com, 1
poc887.com, 1
poc8877.com, 1
-poc888.com, 1
poc889.com, 1
poc8899.com, 1
poc899.com, 1
@@ -117451,6 +116895,7 @@ pockettradesman.com, 1
pockettraveling.tk, 1
poco.se, 1
pococo.tk, 1
+pocomo.ca, 1
pocopizza.co.uk, 1
pocze.ch, 1
pod-emnik.by, 1
@@ -117466,7 +116911,6 @@ podarochek.tk, 1
podarochkki.tk, 1
podatrans.com, 1
podawful.com, 1
-podawful.pizza, 1
podcast.rs, 1
podcast.style, 1
podcast.wf, 1
@@ -117486,7 +116930,6 @@ podcrto.si, 1
podcrypters.ga, 1
podcryptest.ga, 1
podd.xyz, 1
-podfastlane.com, 1
podia.com.gr, 0
podia.gq, 1
podipod.com, 1
@@ -117554,7 +116997,6 @@ pogljad-brest.tk, 1
pogodavolgograd.tk, 1
pogodok.tk, 1
pogomate.com, 1
-pogoswine.com, 1
pogotowie-komputerowe.tk, 1
pogotowiekomputeroweolsztyn.pl, 1
pogrebeniq-sofia.com, 1
@@ -117567,7 +117009,6 @@ poimel.ga, 1
poimenidou.gr, 1
poin.tk, 1
poinsot.info, 1
-point.pink, 1
pointagri.com, 1
pointbarre.tk, 1
pointblog.com, 1
@@ -117641,8 +117082,6 @@ pokeraddressers.ga, 1
pokeraddressest.ga, 1
pokeram.ml, 1
pokerblog.tk, 1
-pokerdom-ck7.top, 1
-pokerdom-cq6.top, 1
pokeridioters.ga, 1
pokeridiotest.ga, 1
pokerigrach.com, 1
@@ -117705,6 +117144,7 @@ polarisapp.xyz, 1
polarisengineering.com, 1
polarispool.com, 0
polaroidmag.com, 1
+polarsy.com, 1
polaschin.ch, 1
polatas.com.tr, 1
polatsemih.com, 1
@@ -117778,7 +117218,6 @@ polisi.go.tz, 1
polisipati.tk, 1
polismar.com, 1
polismar.pt, 1
-polismar.uy, 1
polisport.tk, 1
polisynazycie.com.pl, 1
polit-it.pro, 1
@@ -117802,7 +117241,6 @@ politicsnews.ga, 1
politicsnews.ml, 1
politicsnews.tk, 1
politicsnigeria.com, 1
-politiegent.be, 1
politik-bei-uns.de, 1
politik-kommunikation.de, 1
politikainavigator.hu, 1
@@ -117851,6 +117289,7 @@ polski-dentysta-birmingham.uk, 1
polskiadwokat.org, 1
polskiemalzenstwo.org, 1
polskienewsy.tk, 1
+polskieogloszenia.pl, 1
polskimoskwa.ru, 1
polspam.pl, 1
poltava-news.ru, 1
@@ -117873,15 +117312,14 @@ polymathian.com, 1
polymerexpert.biz, 1
polymesh.network, 1
polymics.com, 1
-polymtl.ca, 0
polyna.eu, 1
polynesia.tech, 1
polynomapp.com, 1
+polynoob.com, 1
polypane.rocks, 1
polyr.xyz, 1
polyring.ch, 1
polysfarm.com, 1
-polytarian.com, 1
polytekniskforening.dk, 1
polyvalents.fr, 1
pomadas.com, 1
@@ -117923,7 +117361,6 @@ pondband.net, 1
pondof.fish, 1
pondsama.com, 1
pondsec.com, 1
-poneiras.com, 1
ponga.se, 1
pongplace.com, 1
ponio.org, 1
@@ -117967,7 +117404,6 @@ poolsafely.gov, 1
poolsafety.gov, 1
poolsonline.tk, 1
poolspa.es, 1
-pooltools.net, 1
poolvilla-margarita.net, 1
poon.io, 1
poonawallafincorp.com, 0
@@ -117975,7 +117411,6 @@ poopa.loan, 1
poopjournal.rocks, 1
poopr.ru, 1
poorclarepa.org, 1
-pooriaarab.com, 1
poortenautomatiseren.be, 1
pop-culture.tk, 1
pop.dk, 1
@@ -118051,7 +117486,6 @@ populardogs.ga, 1
populardogs.gq, 1
populardogs.ml, 1
popularhairstyles.org, 1
-popularityradar.com, 1
popularmedianews.com, 1
population-ethics.com, 1
population.gov.au, 0
@@ -118129,14 +117563,12 @@ pornline.sex, 1
pornloupe.com, 1
pornmax.net, 1
pornmega.net, 1
-pornmei.com, 1
porno-geschichten.com, 1
porno-stars-video.ru, 1
pornobilder.pics, 1
pornoclips.net, 1
pornodvdkopen.nl, 1
pornogo.sex, 0
-pornogo.tube, 1
pornohypnosis.tk, 1
pornomens.be, 1
pornomovies.mobi, 1
@@ -118157,7 +117589,6 @@ porntop100.com, 1
porntube-vidios.ml, 1
porntvclip.com, 1
pornultra.net, 1
-pornvideodb.net, 1
pornvideos-tour.com, 1
pornvideos-tube.com, 1
pornvideos.tv, 1
@@ -118181,7 +117612,6 @@ port67.org, 1
portable-games.tk, 1
portablespeakers.tk, 1
portablespeakersfinder.com, 1
-portagebay.com, 1
portagecounty-oh.gov, 1
portagedessiouxmo.gov, 1
portagein.gov, 1
@@ -118210,11 +117640,11 @@ portaldogremista.com.br, 1
portalelavoro.org, 1
portaleldense.tk, 1
portalexpressservices.com, 1
+portalinmobiliario.com, 1
portall.in, 1
portalm.tk, 1
portalmundo.xyz, 1
portalpandalandia.tk, 1
-portalquiro.com, 1
portalutil.com, 1
portalutil.com.br, 1
portalvetmax.com.br, 1
@@ -118316,7 +117746,6 @@ poshcastles.co.uk, 1
poshe.tk, 1
poshmark.com, 1
poshsecurity.com, 1
-poshvine.com, 0
posicionament.tk, 1
posied.ga, 1
posijson.stream, 1
@@ -118563,7 +117992,6 @@ powercounty.gov, 1
poweredbybp.nl, 1
poweredbyiris.nl, 1
powerembedded.com.br, 1
-powerenglish.cl, 1
powerentertainment.tv, 1
powerfifty.com, 1
powerforpeople.tk, 1
@@ -118581,7 +118009,6 @@ powerling.com, 1
powerlp.com, 1
powerman.name, 1
powermeter.at, 1
-powerpc.pt, 1
powerpilot.co.za, 1
powerplan.com, 1
powerplantmall.com, 1
@@ -118655,6 +118082,7 @@ poznajteneryfe.pl, 1
poznavatelno.ml, 1
pozo.in, 1
pozzitiv.ro, 1
+pp-performance.com, 1
pp.es, 1
pp3345.net, 1
pp5197.co, 1
@@ -118717,9 +118145,9 @@ prabharealty.in, 1
prabhasakshi.com, 1
prabirghosh.tk, 1
prac.to, 1
+prachidigital.com, 1
prachiiimohite.tk, 1
pracovita.pl, 1
-pracovnaverzia.online, 1
pracownia-kasi.pl, 1
pracsuite.com, 1
practical-lean.com, 1
@@ -118738,6 +118166,7 @@ practisforms.com, 1
practixdevelopment.com, 1
practo.com, 1
practodev.com, 1
+practopulse.com, 1
pracusalev.tk, 1
pradeek.tk, 1
pradeepagrawal.com, 1
@@ -118752,7 +118181,6 @@ praeparation-keppner.de, 1
praerien-racing.com, 1
praetzlich-hamburg.de, 1
praew.com, 1
-pragata.id, 1
pragatiparasguesthouse.co.in, 1
prageeth-niranjan.tk, 1
pragm.co, 1
@@ -118775,7 +118203,6 @@ prahavsprachy.cz, 1
praia.studio, 1
praiagrande.tk, 1
prairiedulongil.gov, 1
-prairienursery.com, 1
prairietechsolutions.com, 1
prairievilletwp-mi.gov, 1
praiss.net, 1
@@ -118797,6 +118224,7 @@ praktijktian.be, 1
praktijktoetsen.nl, 1
praktiker.hu, 1
praktikum.tk, 1
+praladofuturo.blog, 1
praleria.com, 1
pramadillo.com, 1
pramuwaskito.org, 1
@@ -118813,7 +118241,6 @@ prankawards.ga, 1
pranksearch.ml, 1
prankstercompany.com, 1
praoshealth.com, 1
-praquify.com, 1
praser.net, 1
prashantcafe.tk, 1
prasinoscomputers.ml, 1
@@ -118904,12 +118331,11 @@ precisioncourt.com, 1
precisiondentalnyc.com, 1
precisiondentistrynj.com, 1
precisiondigital-llc.com, 1
-precisionhockey.net, 1
precisionicerinks.com, 0
precisionlender.com, 1
precisionmachineservice.com, 1
-precisionmarketdata.com, 1
precisionvaccinations.com, 1
+precitaj.si, 0
precoro.com, 1
precoro.us, 1
precure.me, 1
@@ -118941,7 +118367,6 @@ prefereal.org, 1
preference.ga, 1
preferredathlete.com, 1
preferredinsights.co, 1
-preferredreverse.com, 1
preferredservice.ca, 1
prefix.eu, 1
preflighthomeinspections.com, 1
@@ -118990,7 +118415,6 @@ premierdesigns.org, 1
premierdisco.co.uk, 1
premieresloges.ca, 1
premierevents.ie, 1
-premierheart.com, 1
premierlacewigs.com, 1
premierleague.gq, 1
premierloto.cg, 1
@@ -119000,12 +118424,12 @@ premierloto.co.mz, 1
premierloto.ml, 1
premierloto.mw, 1
premierloto.td, 1
-premiermaldives.com, 1
premiermarketing.co.nz, 1
premierokchomebuyers.com, 1
premierpavingandasphalt.com, 1
premierpedsny.com, 1
premierpups.com, 1
+premiersalesaz.com, 1
premiership-predictors.co.uk, 1
premiersimgl.com, 1
premioambiente.it, 1
@@ -119014,7 +118438,7 @@ premiosprodu.com, 1
premiovapozicovna.sk, 1
premiovicentejorgesilva.pt, 0
premised.land, 1
-premium-job.ru, 1
+premium-leech.com, 1
premium-rum.de, 1
premium.web.id, 1
premiumcredit.am, 1
@@ -119086,7 +118510,6 @@ preserveart.org, 1
preservecrownhill.cf, 1
preservecrownhill.ga, 1
preserveourhillcountry.org, 1
-preserverollinspass.org, 1
preserving.tk, 1
presgrp.com, 1
presgrp.net, 1
@@ -119137,7 +118560,6 @@ pressureradio.com, 1
pressurewashers.ml, 1
pressurewashersandiego.com, 1
pressurewashingchicago.com, 1
-pressurewatcher.com, 1
presta-div-airs.fr, 1
prestaandsons.com.au, 1
prestaclip.com, 1
@@ -119163,7 +118585,6 @@ prestigehealthservices.au, 1
prestigehealthservices.com.au, 1
prestigelegalgroup.com.au, 1
prestigesigns.net, 1
-prestigeworldwidepr.com, 1
prestigia.com, 1
prestoinventario.com, 1
prestonadamscountywi.gov, 1
@@ -119175,7 +118596,7 @@ prestupniki.tk, 1
pretabelamodas.com.br, 1
pretalx.com, 1
pretessencias.com.br, 1
-pretimmobilier.ch, 0
+pretimmobilier.ch, 1
pretix.eu, 1
pretome.info, 1
pretor-sa.com, 1
@@ -119200,6 +118621,7 @@ preums.co, 1
preussner-grafik-design.de, 1
prevajalska-agencija.si, 1
prevascloud.com, 1
+prevencia.net, 0
preventive-therapy.com, 1
preventshare.com, 1
preview-it-now.com, 1
@@ -119219,7 +118641,6 @@ prevodkazet.cz, 1
prevu3d.com, 1
prexxorvita.com, 1
prezentmarzen.com, 1
-prezes.win, 1
prezista.com, 1
preziti.eu, 1
prfanfiction.tk, 1
@@ -119227,8 +118648,6 @@ prg.rs, 1
prgrmmr.nl, 1
pri.email, 1
pribehyzlednice.cz, 1
-price-spider.com, 1
-price-tracker.duckdns.org, 1
price.com.hk, 1
priceaccesshire.com.au, 1
priceactionhelp.com, 1
@@ -119316,7 +118735,6 @@ primariachisineucris.ro, 1
primarium.info, 1
primary.health, 1
primarycareconnect.com.au, 1
-primarydomain.us, 1
primarypetvet.com, 1
primasmartwatches.de, 1
primatejs.com, 1
@@ -119326,6 +118744,7 @@ primavera-capital.com, 1
primbit.ru, 1
prime, 1
prime-host.ml, 1
+prime-likes.com, 1
prime-seo.net, 1
prime4ktv.com, 1
primeauconsultinggroup.com, 1
@@ -119342,6 +118761,7 @@ primeexecutiveoffices.com, 1
primegiftindia.com, 1
primeinspiration.com, 1
primekinoshita.com, 1
+primeleech.com, 1
primelogistics.cf, 0
primemotive.com, 0
primemotive.com.au, 1
@@ -119354,6 +118774,7 @@ primerogueinc.com, 1
primersbc.com.br, 1
primesense.com.br, 1
primesensecosmeticos.com.br, 1
+primetal.ro, 1
primetechpa.com, 1
primetics.co.uk, 0
primeticsseed.com, 1
@@ -119408,6 +118829,7 @@ prinesec.com, 1
prineville.gov, 1
prinice.org, 1
print-street.tk, 1
+printa.nu, 1
printable-map-az.com, 1
printablemapaz.com, 1
printablemapforyou.com, 1
@@ -119433,6 +118855,7 @@ printpoint.tk, 1
printscan.com, 1
printsfinds.com, 1
printsimple.eu, 1
+printstudio.kiev.ua, 1
printtara.me, 1
printtolife.com.au, 1
printus.de, 1
@@ -119462,6 +118885,7 @@ prioritynissannewportnewsparts.com, 1
prioritysignsandgraphics.com, 1
priorlakemn.gov, 1
priscillacouto.com.br, 1
+prism-glass.com, 1
prisma.io, 0
prisma.tk, 1
prismacloud.com, 1
@@ -119513,7 +118937,6 @@ privacysecuritybrainiacs.com, 1
privacystatement.tk, 1
privacysvcs.net, 1
privacytrust.sg, 1
-privacywe.com, 0
privacyweek.at, 1
privacyweek.de, 1
privacyweek.eu, 1
@@ -119528,7 +118951,6 @@ private-diary-taka.com, 1
private-krankenversicherung.tk, 1
private-net.spdns.org, 1
private-relay.email, 1
-private.cn, 1
privateadvisorgroup.com, 1
privateamateure.com, 1
privateaudiobooks.stream, 1
@@ -119576,7 +118998,7 @@ privtell.com, 1
privu.me, 1
privw.com, 1
privy-staging.com, 1
-privy.com, 1
+privy.com, 0
privylabs.com, 1
prix-carburants-info.fr, 1
prix-carburants.gouv.fr, 1
@@ -119662,6 +119084,7 @@ probiancanarias.com, 1
probiller.com, 1
probinarin.ga, 1
probioticnacistila.si, 1
+problem-24.de, 1
problem-solver.ml, 1
problemlos-privat-versichert.de, 1
problemstate.com, 1
@@ -119715,13 +119138,13 @@ proctorauth.com, 1
proctorial.cf, 1
proctorio.com, 1
proctorio.net, 1
-procupros.com, 1
procurant.com, 1
procurement.moscow, 0
procurs.us, 1
procursus.social, 1
prod-bp-geotab-api.azurewebsites.net, 1
prod-vigl-www-master.azurewebsites.net, 1
+prodapt.com, 1
prodcdn.com, 1
prodemos.nl, 1
prodesigntools.com, 1
@@ -119737,6 +119160,7 @@ prodinfra.org, 1
prodinger.com, 0
prodmazul.com, 1
prodottitipicidellatoscana.it, 1
+prodpo.com, 1
produc.ro, 1
producentbalustrad.pl, 1
producentparapetow.pl, 1
@@ -119765,12 +119189,14 @@ produkt.cf, 1
produra.nl, 1
produtosdeacademia.com, 1
produttori.it, 1
+produweb.be, 1
proefexamenbvca.nl, 1
proefexamensvhsocialehygiene.nl, 1
proeflokaalbakker.nl, 1
proefteksten.nl, 0
proekt.moscow, 1
proekt.tk, 1
+proelectro.pro, 1
proemployeeprotection.com, 1
proemployeeprotection.net, 1
proenfar.com, 1
@@ -119778,6 +119204,7 @@ proesb.net, 1
prof, 1
prof-toplivo.ru, 1
prof-waldowski.de, 1
+prof.lv, 1
profarea.ru, 1
profautoservice.pl, 1
profbigbang.ru, 1
@@ -119844,6 +119271,7 @@ profloorstl.com, 1
profmatheus.com, 1
profmetod.com, 1
profondeville-sharks.be, 1
+profoodgroup.com.br, 1
profor.cz, 1
proformer.io, 1
proformi.com, 1
@@ -119866,7 +119294,6 @@ prog24.net, 1
progamehackers.tk, 1
progarr.com, 1
progas-diva.de, 1
-progas.de, 1
progaudio.be, 1
progea.com, 1
progenda.be, 1
@@ -119876,7 +119303,7 @@ progeste.pt, 1
progettodighe.it, 1
progettograjau.com, 1
progettolegalita.it, 1
-progettonazionale.it, 1
+progettonazionale.it, 0
progezi.com, 1
progg.no, 1
proggersession.com, 1
@@ -119895,7 +119322,6 @@ programagetit.com.br, 1
programagrowup.com.br, 1
programalidera.com.br, 1
programando.tk, 1
-programaneurofood.com, 1
programar.pt, 1
programarya.com, 1
programaticon.tk, 1
@@ -119904,7 +119330,6 @@ programmads.com, 0
programmaticmagic.com, 1
programmatv.tk, 1
programme-launch28-code854-com.ml, 1
-programmerhumor.org, 1
programmervibe.com, 1
programmes-neufs-corse.fr, 1
programming-solutions.tk, 1
@@ -119943,7 +119368,7 @@ prohibition.tk, 1
prohost24.tk, 1
prohrcloud.com, 1
proi.net, 1
-proid.studio, 0
+proid.studio, 1
proitlb.com, 1
proj.org.cn, 1
proj3ct.me, 1
@@ -120005,7 +119430,6 @@ projectsplus.com.mt, 1
projectstem.org, 1
projecttalent.be, 1
projectte.ch, 1
-projectunity.io, 1
projectvault.ovh, 1
projectveritasaction.com, 0
projectweb.gr, 1
@@ -120025,7 +119449,6 @@ projest.ch, 0
projet-fly.ch, 1
projet-saara.com, 1
projetofinancas.com.br, 1
-projetomovase.com, 1
projetsvl.com, 1
prokaza.tk, 1
prokey-marburg.de, 1
@@ -120044,6 +119467,7 @@ prologicabg.com, 1
prologin.org, 1
prologin.pt, 1
proloyalweb.com, 1
+promail.co.in, 1
promajna.tk, 1
promark365.com, 1
promaster.bg, 1
@@ -120062,6 +119486,7 @@ prometheanfire.org, 1
promethen.com, 1
prometheus.cf, 1
promiflash.de, 1
+promina.ai, 1
promisedland.tk, 1
promisesaplus.com, 1
promislovik.tk, 1
@@ -120098,7 +119523,6 @@ promorder.ru, 1
promosjungle.com, 1
promosolucoes.tk, 1
promossale.com, 1
-promotech.pro, 1
promoteiq.com, 0
promotennis.ch, 1
promoteroute.com, 1
@@ -120123,6 +119547,8 @@ pronto-intervento-fognature.it, 1
prontointerventofognature.roma.it, 1
prontointerventoimmediato.it, 1
prontolockandkey.com, 1
+prontopaga.com, 1
+prontoprint.com.ua, 1
prontossl.com, 1
pronty.it, 1
proofby.ac, 1
@@ -120216,7 +119642,6 @@ proskauertaxtalks.com, 1
proslimdiets.com, 1
prosocialmachines.com, 1
prosoft.com.es, 1
-prosony.es, 1
prospa.digital, 1
prospectky.gov, 1
prospecto.com.au, 1
@@ -120236,6 +119661,7 @@ prospo.co, 1
prosportovani.cz, 1
prostaffplumbing.com, 1
prostaglandina.com, 1
+prostatecellatlas.org, 1
prostavropol.cf, 1
prostecheat.xyz, 1
prostitutka.cf, 1
@@ -120293,14 +119719,12 @@ protek.si, 1
protek.tk, 1
proteka.com.tr, 1
protekpainters.com, 1
-protempore.fr, 1
protesthongkong.com, 1
protetorsunpro.com.br, 1
proteus-eretes.nl, 1
protez.ga, 1
protez.ml, 1
protez.tk, 1
-protic.online, 1
protic.pt, 1
proticketing.com, 1
protiksana.gr, 1
@@ -120308,7 +119732,6 @@ protipster.com, 1
proto.io, 1
protobetatest.com, 1
protocol.co.il, 1
-protocoloantiotario.com.br, 1
protogenbrainbooster.tk, 1
protogrid.com, 1
protok.tk, 1
@@ -120317,7 +119740,6 @@ proton.me, 1
protonbg.bg, 1
protonmail.ch, 1
protonmail.com, 1
-protonpartnersglobal.com, 1
protonpix.com, 1
protonvpn.com, 1
protopia.ai, 1
@@ -120379,7 +119801,6 @@ provlas.se, 1
provo.gov, 1
proweb-design.no, 0
prowebservices.ca, 1
-prowechsel.de, 1
prowi.se, 1
prowindow.sk, 1
prowise.com, 1
@@ -120392,6 +119813,7 @@ prox.ru, 1
proxaccess.com, 1
proxar.co.uk, 1
proxidize.com, 1
+proxiel.com, 1
proxify.io, 1
proximity.foundation, 1
proximity.ga, 1
@@ -120465,6 +119887,7 @@ przemekgrabecki.ddns.net, 1
przepisykolejowe.tk, 1
przerabianiezdjec.pl, 1
przybys.eu, 1
+przyciemnianieszyb.waw.pl, 1
ps-clinic.jp, 1
ps-fr.ddns.net, 1
ps-provider.co.jp, 1
@@ -120498,7 +119921,6 @@ psb4ukr.org, 1
psbanywhere.com, 1
psc-elsene.be, 1
psc-europe.eu, 1
-pschierl.com, 1
pscosigngroup.com, 1
pscp.tv, 1
pscr.gov, 1
@@ -120622,12 +120044,12 @@ psw-training.de, 1
psy-web.fr, 1
psyart.tk, 1
psycenter.tk, 1
-psych2go.me, 1
psych2go.net, 1
psychcare.cz, 1
psychcaremd.com, 1
psychedelia.wiki, 1
psycheteelia.com, 1
+psychiatrie-ricany.cz, 1
psychiatriepapezova.net, 1
psychiatriepraktijkutrecht.nl, 1
psychiatry-clinic.com.tw, 1
@@ -120741,11 +120163,11 @@ pticoaching.nl, 1
ptit-trocoeur.fr, 1
ptite-banane.com, 1
ptjobsite.com, 1
+ptks.si, 1
ptlibrary.ml, 1
ptm.ro, 1
ptmarquees.ie, 1
ptmco.org, 1
-ptmobiles.com.au, 1
ptmodularleisure.com, 1
ptnam.com, 1
ptpasi.ddns.net, 1
@@ -120783,7 +120205,6 @@ pubertytalk.com, 1
pubi.me, 1
pubkgroup.com, 1
publanda.nl, 1
-public-files.com, 1
public-g.de, 1
public-measures.com, 1
public-projects.com, 1
@@ -120811,12 +120232,12 @@ publicintegrity.org, 1
publicintelligence.net, 1
publicishealth.es, 1
publicitar.tk, 1
+publicjustice.org, 1
publicmgovcloud.in, 1
publicnode.com, 1
publicnoticesbaycountyfl.gov, 1
publicntp.org, 1
publicpickups.com, 1
-publicrea.com, 1
publicschoolreview.com, 1
publicserviceloanforgiveness.gov, 1
publicsevasolution.com, 1
@@ -120856,7 +120277,6 @@ pueblanmilksnake.com, 1
pueblocantabro.tk, 1
pueblocc.edu, 1
pueblosamerica.com, 1
-puella.xyz, 1
puenteviejo.tk, 1
puer.eu.org, 1
puer8.cn, 1
@@ -120864,9 +120284,9 @@ puercovalleyfireaz.gov, 1
puertaparaiso.com.mx, 1
puertocadiz.com, 1
puertodramaturgia.tk, 1
-puertomalaga.com, 1
puestifiestas.mx, 1
puetter.eu, 1
+puffverse.pro, 1
puffyan.us, 1
pugachev.ml, 1
puggan.se, 1
@@ -120930,7 +120350,6 @@ pumpen-blum.de, 1
pumuntincu.eu.org, 1
punaise-de-lit-paris.com, 1
punat.tk, 1
-puncakpass.net, 1
punchadragon.com, 1
punchdrunk.com, 1
punchlinetheatre.co.uk, 1
@@ -120946,7 +120365,6 @@ punematka.com, 1
pungatv.ml, 1
punikonta.de, 1
punishment.institute, 1
-punitsheth.com, 1
punjabsind.in, 1
punk-jazz.tk, 1
punkapoule.fr, 1
@@ -120976,6 +120394,7 @@ puntonium.hu, 1
puntopropiedad.com, 1
puntoremov.ga, 1
puntualseo.com, 1
+pup-riley.gay, 1
pup.systems, 1
pupaganda.com, 1
pupboss.com, 1
@@ -121007,9 +120426,7 @@ puragreement.tk, 1
puralifesciences.com, 1
puravayalchurch.tk, 1
puravida-estate.com, 1
-puravidadivers.com, 1
puravidaeamor.com.br, 1
-puravive.com, 1
purchasebestone.tk, 1
purchaserprotect.co.uk, 1
purchasescooters.ga, 1
@@ -121168,13 +120585,10 @@ putomani.rs, 1
putre.io, 1
putrock.be, 1
putstrategii.ru, 0
-putten.nl, 0
putty.org, 1
puttymonos.club, 1
puttymonos.work, 1
putzigdesign.de, 1
-puur.gent, 1
-puurgent.be, 1
puurzeewolde.nl, 1
puuur-interiors.nl, 1
puxlit.net, 1
@@ -121183,9 +120597,6 @@ puyblanc.info, 1
puzi.nl, 1
puzz.gg, 1
puzzlage.com, 1
-puzzlage.net, 1
-puzzlage.org, 1
-puzzlage.us, 1
puzzle-welt.ch, 1
puzzle2048.net, 1
puzzle2048.org, 1
@@ -121201,7 +120612,7 @@ pvao.gov.ph, 0
pvawa.com.au, 1
pvda.nl, 1
pvdplanet.tk, 1
-pvebuilds.xyz, 1
+pver.nl, 1
pvgvethospital.co.uk, 1
pvh-membrany.ru, 1
pvhe.pl, 1
@@ -121247,6 +120658,7 @@ pwneytelecom.com, 1
pwoss.xyz, 1
pwr990ay.pl, 1
pws.my, 1
+pwskills.com, 1
pwsplash.com, 1
pwss.gov.au, 0
pwud.ga, 1
@@ -121330,6 +120742,7 @@ pyxisfreelance.co, 1
pyxisfreelance.com.au, 1
pyxo.net, 0
pyxyp.com, 1
+pzasa.pl, 1
pzc.nl, 1
pzsearch.nl, 1
pzu-masa.pl, 1
@@ -121433,6 +120846,7 @@ qcuarto.com.py, 0
qdabogados.com, 1
qde.com, 1
qde.org, 1
+qde.rip, 1
qdep.net, 1
qdm.tw, 1
qdmnotizie.it, 1
@@ -121443,6 +120857,7 @@ qdrat.ml, 1
qdrcst.com, 1
qdstationary.co.uk, 1
qdstationery.co.uk, 1
+qdzx.net.cn, 1
qe-lab.at, 1
qed.ai, 0
qeddi.com.au, 1
@@ -121474,7 +120889,6 @@ qiancao.cf, 1
qiancao.ml, 1
qianglie.com, 1
qianlong.net, 0
-qianmo.com, 1
qiannews.net, 0
qianqiao.me, 1
qiantuwenlu.com, 0
@@ -121505,6 +120919,7 @@ qingpat.com, 0
qingpei.me, 1
qingran.net, 1
qingsha.com, 1
+qingshanasd.cn, 1
qingyule.com, 1
qinlili.bid, 1
qionouu.cn, 1
@@ -121681,11 +121096,14 @@ quadrantrd.com, 1
quadratimkreis.tk, 1
quadreon.com, 1
quadriga-hochschule.com, 1
+quadroadvertising.it, 1
quadron.hu, 1
quadros.shop, 1
quaedam.org, 1
quafe.tech, 1
quai.ly, 1
+quail.ink, 1
+quaily.com, 1
quakekare.com, 1
quakeroaksfarm.org, 1
quaketips.ga, 1
@@ -121731,7 +121149,6 @@ quall.com, 1
qualli.com, 1
qualtrics.com, 1
qualyven.com, 1
-quande.com, 1
quanmei.com, 1
quanquan.space, 1
quantability.net, 1
@@ -121748,7 +121165,6 @@ quanti.au, 1
quanticlab.com, 1
quantifiedcommerce.com, 1
quantikstudio.tk, 1
-quantiphi.com, 1
quantiply.tech, 1
quantitysolution.com, 1
quantivate.com, 1
@@ -121780,8 +121196,10 @@ quantuminformationframework.com, 1
quantumlink.tk, 1
quantumortho.com.sg, 1
quantumpair.net, 1
+quantumpartyrentals.com, 1
quantumrehab.com, 1
quantumshade.ca, 1
+quantumsportscenter.com, 1
quantumweb.ml, 1
quantuscreative.com, 0
quantweb.tk, 1
@@ -121791,7 +121209,6 @@ quapawnation.gov, 1
quape.com, 1
quarantadue.digital, 1
quarantine-system.com, 0
-quareal.ru, 1
quarep.org, 1
quarim.cz, 1
quark.com.pl, 1
@@ -121867,9 +121284,16 @@ queer.pl, 1
queercinema.ch, 0
queerfest.tk, 1
queerlelystad.nl, 1
+queerlinq.com, 1
+queermerk.com, 1
+queermerk.eu, 1
+queermerk.nl, 1
queersin.space, 1
queerspirit.net, 1
queerumich.com, 1
+queerwerk.com, 1
+queerwerk.eu, 1
+queerwerk.nl, 1
queirozmiotto.adv.br, 1
queirozmiotto.com.br, 1
quel-dj.com, 1
@@ -121931,14 +121355,12 @@ questthree.com, 1
quetiapine.life, 1
quetico.tk, 1
queuebuster.co, 1
-queueworks.net, 1
queup.net, 1
queverenespana.org, 1
quevisiongrafica.com, 1
quews.news, 1
quezoncity.ml, 1
quforce.org, 1
-quhyu.xyz, 1
quible.tk, 1
quic-hosting.de, 1
quic.cf, 1
@@ -122036,7 +121458,6 @@ quintessa.org, 1
quintobarrio.tk, 1
quintonic.fr, 0
quipcheck.com, 1
-quiq-api.com, 1
quiq-cdn.com, 1
quiq-frp.com, 1
quiq-in.com, 1
@@ -122058,7 +121479,6 @@ quiqurl.com, 1
quiqurls.com, 1
quira.sh, 1
quire.io, 1
-quiriarte.com, 1
quisildenafil.gq, 1
quitri.tk, 1
quitwithzero.com, 1
@@ -122099,6 +121519,7 @@ quotemegoods.com, 1
quotemoto.com, 1
quoteoftheday300.ga, 1
quotescover.com, 1
+quotesnsayings.net, 1
quotesofgta.tk, 1
quotev.com, 1
quotidiani.net, 1
@@ -122134,6 +121555,7 @@ qwant.com, 1
qwantjunior.com, 1
qwanturank.news, 1
qwarkhealth.com, 1
+qwasar.io, 0
qwaser.fr, 1
qwcphoto.com, 1
qwdqwd.de, 1
@@ -122146,8 +121568,10 @@ qwikdash.com, 1
qwords.com, 1
qwq.icu, 0
qwq2333.top, 1
+qwqjsq.com, 1
qwqjsq.net, 1
qwqjsq8.com, 1
+qwqjsq9.com, 1
qwrk.io, 1
qwus.cf, 1
qwus.tk, 1
@@ -122219,6 +121643,7 @@ r6957.co, 1
r7.com.au, 1
r72w.com, 1
r7h.at, 1
+r7w7m4p0w1r2t8k6y3x4j5q2z8b4d.eu, 1
r82365.com, 1
r9297.co, 1
r9728.co, 1
@@ -122232,7 +121657,6 @@ raadgiverborsen.com, 1
raadtilpenge.dk, 1
raadvanstate.nl, 0
raadvoorrechtsbijstand.org, 1
-raaf-kommunikation.de, 1
raafwelfaretrustfund.gov.au, 1
raailto.com, 1
raakvlak.net, 1
@@ -122251,13 +121675,11 @@ rabatz.tk, 1
rabbisacks.org, 1
rabbit.finance, 1
rabbitcallcenter.com, 1
-rabbitcare.ae, 1
rabbitcare.com, 1
rabbitcare.id, 1
rabbitcare.my, 1
rabbitcare.ph, 1
rabbitcare.qa, 1
-rabbitcare.tl, 1
rabbitcare.vn, 1
rabbitdns.org, 1
rabbitfinance.com, 1
@@ -122286,7 +121708,6 @@ racamera.com, 1
racasdecachorro.org, 1
racco.com.br, 1
raccoltadifferenziata.it, 1
-raccoltarifiuti.com, 1
raccoltarifiuti.milano.it, 1
raceandecology.ca, 1
racedrop.tk, 1
@@ -122324,7 +121745,6 @@ rackoon.de, 1
raclet.co.uk, 1
raconconsulting.co.uk, 1
racontemonhistoire.fr, 1
-raconteurs.gent, 1
racquetdepot.co.uk, 1
racsoft.cl, 1
ract.au, 1
@@ -122338,7 +121758,6 @@ racunalo.com, 1
racunovodstvo-prina.si, 1
rad-route.de, 1
rad.com, 1
-rad.plus, 1
rad2share.com, 1
rada-group.eu, 1
radaar.io, 1
@@ -122366,9 +121785,11 @@ radartek.com, 1
radbag.de, 1
radbag.nl, 1
radbee.com, 1
+radcanton.com, 1
radcepojisteni.cz, 1
radchakan.com, 1
radcliffky.gov, 1
+radcloud.de, 1
radconinc.net, 1
raddeluxe.com, 1
radechefonne.it, 1
@@ -122376,7 +121797,6 @@ radegundisfest.de, 1
radekmazar.eu, 1
rader.ninja, 1
radgi.com, 1
-radhalle.io, 1
radharanikijay.tk, 1
radiadores.tk, 1
radiadoresalternativos.cl, 1
@@ -122410,7 +121830,6 @@ radio-club.ml, 1
radio-delmare.tk, 1
radio-fly.tk, 1
radio-luikie.tk, 1
-radio-luzern.ch, 1
radio-mix.ml, 1
radio-mouse.tk, 1
radio-news.tk, 1
@@ -122495,6 +121914,7 @@ radiohlam.cf, 1
radiohlam.ga, 1
radiohouse.tk, 1
radioibiapina.tk, 1
+radioilusion.es, 1
radioilusiones.tk, 1
radioiman.net, 1
radioj.fr, 0
@@ -122510,7 +121930,6 @@ radiolatinafm.tk, 1
radioldpr.ru, 1
radiolibertad.tk, 1
radioliberty.ga, 1
-radiolla.com, 1
radiolodz.pl, 1
radiomacuto.gq, 1
radiomagicafm.tk, 1
@@ -122544,7 +121963,6 @@ radioperfect.tk, 1
radiopharereims.tk, 1
radiopicaflor.tk, 1
radioplayer.ie, 1
-radiopleer.net, 1
radiopolarniki.spb.ru, 1
radiopranfm.cf, 1
radioprimerodemayo.tk, 1
@@ -122595,7 +122013,6 @@ radioxanadu.tk, 1
radiozetta.tk, 1
radiozilverster.tk, 1
radisnoir.com, 1
-radito.com, 1
raditool.com, 1
raditool.pl, 1
radium-it.ru, 1
@@ -122647,6 +122064,7 @@ rafaprialv.com, 1
rafaroca.net, 1
rafclan.tk, 1
rafd.me, 1
+rafes.co.id, 1
rafinad.io, 1
rafo.tech, 1
rafo.tk, 1
@@ -122707,6 +122125,7 @@ raidingue.fr, 1
raidkeeper.com, 1
raidstone.net, 1
raidstone.rocks, 1
+raidtcg.com, 1
raiffeisen-gv.ch, 1
raiffeisen-kosovo.com, 0
raiffeisen.al, 0
@@ -122735,6 +122154,7 @@ railgun.com.cn, 0
railgun.email, 1
railjob.cn, 1
raillto.com, 1
+railmarket.com, 1
railorama.nl, 1
railpassie.nl, 1
railroadhistory.net, 1
@@ -122783,6 +122203,11 @@ rainbowsushi.dk, 1
rainbowswingers.net, 1
rainbowtransport.com, 1
rainchq.com, 1
+raincoastherapeutic.com, 1
+raincoastherapy.com, 1
+raincoastmassage.com, 1
+raincoasttherapeutic.com, 1
+raincoasttherapy.com, 1
raincoat.systems, 1
rainel.at, 1
rainerstoll.at, 1
@@ -122803,7 +122228,6 @@ rainville.me, 1
raipet.no-ip.biz, 1
raipet.spdns.eu, 1
raise-educationandwellbeing.co.uk, 1
-raisecorp.com, 1
raisects.co.uk, 1
raisedandrooted.com, 1
raisetheyouth.co.uk, 1
@@ -122843,6 +122267,7 @@ rajsolankimusic.ga, 1
rajudhoni.ga, 1
rak-business-service.com, 1
rakennuspeli.com, 1
+rakeprofit.com, 1
rakeshkaryana.com, 1
raketa.travel, 1
raketaholst.com.ua, 1
@@ -122889,7 +122314,6 @@ rallyekrumlov.cz, 1
rallyfotosaswin.tk, 1
rallysweden.com, 1
rallytrophy.tk, 1
-ralphbisschops.com, 1
ralphdeal.com, 1
raltha.com, 1
ralvke.rocks, 1
@@ -122942,7 +122366,6 @@ ramsor-gaming.de, 1
ramt.tk, 1
ramtechmodular.com, 1
ramusa.org, 1
-ramyamk.com, 1
ramydent.no, 1
ramynetwork.tk, 1
ramzinex.com, 1
@@ -122966,6 +122389,7 @@ randdtaxcreditspecialists.com, 1
randmevape.net, 1
randoequipement.com, 1
randolf.ca, 1
+randolfrichardson.com, 1
randolphcountyal.gov, 1
randolphcountyil.gov, 1
random-abstract.com, 1
@@ -123054,6 +122478,7 @@ ranktis.com, 1
rankya.com, 1
rannamoisaaiasalong.ee, 1
rannseier.org, 1
+ransomspares.co.uk, 1
ranson.com.au, 1
ransonwv.gov, 1
rantalaholcomb.tk, 1
@@ -123094,7 +122519,6 @@ rapidoo.com.br, 1
rapidooo.fr, 1
rapidrepair.in, 1
rapidscale.net, 1
-rapidseo.net, 1
rapidshit.net, 1
rapidspike.com, 1
rapidssl.com.ru, 1
@@ -123114,6 +122538,7 @@ rapwoyska.tk, 1
raqebpress.com, 1
raqoo.jp, 1
raquelmolinacases.tk, 1
+raquest.com, 1
rar.moe, 1
rare-x.org, 0
rarebookschool.org, 1
@@ -123159,6 +122584,7 @@ rasmushaslund.com, 1
rasnyder.com, 1
raspclock.com, 1
raspinaparvaz.com, 1
+raspinerd.de, 1
raspitec.ddns.net, 1
rassadacvetov.com, 0
rasset.ie, 1
@@ -123199,6 +122625,7 @@ ratiocontent.de, 0
rationalcreation.com, 1
rationalism.com, 1
rationalops.com, 1
+ratiotechnik-milde.de, 1
ratirl.be, 1
ratkovichproperties.com, 1
ratman.xyz, 1
@@ -123268,11 +122695,6 @@ ravnareka.tk, 1
ravne.land, 1
ravron.com, 1
ravse.dk, 1
-raw-pearls.co.uk, 1
-raw-pearls.com, 1
-raw-pearls.net, 1
-raw-pearls.org, 1
-raw-pearls.org.uk, 1
raw.nl, 1
rawa-ruska-union-nationale.fr, 1
rawballs.nl, 1
@@ -123289,10 +122711,6 @@ rawmathub.gr, 1
rawmedia.ma, 1
rawpearls.co.uk, 1
rawpearls.com, 1
-rawpearls.net, 1
-rawpearls.org, 1
-rawpearls.org.uk, 1
-rawpearls.uk, 1
rawr.sexy, 1
rawrvixen.com, 1
raxion.cf, 1
@@ -123328,7 +122746,6 @@ raysei.com, 1
raysmtp.ga, 1
raysolutions.tk, 1
raytonne.cn, 1
-raytonne.com, 1
rayusradiology.com, 1
raywisdom.tk, 1
rayworks.de, 1
@@ -123366,7 +122783,6 @@ rbclub.cz, 1
rbcosmetici.it, 1
rbd.events, 1
rbensch.com, 0
-rbergson.org, 1
rbet.tk, 1
rbfalcon.com, 1
rbh.co.uk, 1
@@ -123381,7 +122797,6 @@ rbmafrica.co.za, 1
rbmediaglobal.com, 1
rbmland.com, 1
rbnet.xyz, 1
-rbocache.com, 1
rbprosthodontics.com, 1
rbs.co.uk, 1
rbs.com, 1
@@ -123405,7 +122820,6 @@ rc3n.com, 1
rc7.ch, 1
rca2015.ru, 1
rcbanger.tk, 1
-rcbtrace.net, 1
rccars.info, 1
rcclub.com, 1
rccofeaston.org, 1
@@ -123422,7 +122836,6 @@ rcelectronica.com, 1
rcfl.gov, 1
rcflood.gov, 1
rcforex.com, 1
-rcg.org, 1
rcgoncalves.pt, 1
rchavez.site, 1
rchrdsn.uk, 1
@@ -123556,7 +122969,6 @@ read.family, 1
readabilitychecker.com, 1
readable.pw, 1
readapt-nutrition.com, 1
-readaster.com, 1
readbar.com, 1
readcomics.gq, 1
readersfavorite.com, 1
@@ -123582,6 +122994,7 @@ readyclassroomcentral.com, 1
readycolorado.gov, 1
readycontacts.com, 1
readydedis.com, 1
+readydesign.studio, 1
readyeutaw.gov, 1
readyfiction.com, 1
readyit.pl, 1
@@ -123638,7 +123051,7 @@ realestategreenville.tk, 1
realestatekanada.tk, 1
realestatelegalupdate.com, 0
realestatemaryland.tk, 1
-realestateofnewmexico.com, 1
+realestateofnewmexico.com, 0
realestates.istanbul, 1
realestatesales.gov, 1
realestatestagingassociation.com, 1
@@ -123655,7 +123068,6 @@ realhypnosistraining.com.au, 1
realidad.tk, 1
realincest.tv, 1
realinsurance.com.au, 1
-reality.cn, 1
realitycrazy.com, 1
realitydudes.com, 1
realitydudesnetwork.com, 1
@@ -123669,7 +123081,6 @@ realives.com, 1
realizarse-japan.com, 1
realizegov.com, 1
realkeywords.ga, 1
-reall.uk, 1
realliance.net, 1
reallife-it.de, 1
reallifeforums.com, 0
@@ -123677,6 +123088,7 @@ reallight.ge, 1
reallinux.tk, 1
reallove.com, 1
reallovetab.ga, 1
+really-simple-ssl.com, 1
reallyangryaboutchipshops.com, 1
reallybadidea.tk, 1
reallycooljobs.ga, 1
@@ -123688,7 +123100,6 @@ realmake.com, 1
realmaturetube.com, 1
realmixwell.tk, 1
realmjoin.com, 1
-realmofespionage.xyz, 1
realmoney.games, 1
realneo.me, 1
realnet.tk, 1
@@ -123703,7 +123114,6 @@ realschule-rain.de, 1
realtechreviews.com, 1
realtimenetworks.com, 1
realtimeregister.com, 1
-realtruth.org, 1
realty-pochta.tk, 1
realtybymonica.com, 1
realtyfeature.com, 0
@@ -123834,7 +123244,6 @@ recipekensaku.com, 1
recipesbyjaz.com, 1
recipeslist.tk, 1
recipesmadeeasy.co.uk, 1
-recipewebbook.com, 1
recipex.ru, 1
recipeyak.com, 1
recipito.tk, 1
@@ -123888,7 +123297,6 @@ recoveryonline.org, 1
recoverytoolbox.com, 1
recoveryunplugged.com, 1
recraft-ventures.com, 1
-recraftmobility.com, 1
recraftventures.com, 1
recreatiewoningverzekeringen.nl, 1
recroommasters.com, 1
@@ -123896,7 +123304,6 @@ recruit.net, 1
recruitcrm.io, 0
recruiterbox.com, 1
recruiting.ai, 1
-recruitnow.nl, 1
recruitpediacorp.com, 1
recruitsecuritytraining.co.uk, 1
recruitsecuritytraining.com, 1
@@ -124009,6 +123416,7 @@ redenethosting.com, 1
redensarten-index.de, 1
redenvelope.co, 1
redes-neuronales.tk, 1
+redeyecare.com, 1
redeyeguatemala.tk, 1
redeyenetworks.com, 1
redfish.tk, 1
@@ -124062,7 +123470,6 @@ redkite.se, 1
redknothomes.com, 1
redlands.gov, 1
redlandspd.gov, 1
-redlaneio.info, 1
redlatampp.org, 1
redletter.link, 1
redlight.net, 1
@@ -124128,6 +123535,7 @@ redtails.tk, 1
redte.com, 1
redteam-pentesting.de, 1
redteam.coach, 1
+redteamabseiling.co.uk, 1
redtomato.ga, 1
redtsar2000papers.tk, 1
redtube.com, 1
@@ -124135,7 +123543,6 @@ redtubeplatinum.com, 1
redtubs.tk, 1
redtune.jp, 1
reducealcoholism.com, 1
-reducedlens.org, 1
reducer.co.uk, 1
reduceritop.ro, 1
reducto.tk, 1
@@ -124149,16 +123556,15 @@ redvent-decor.ru, 1
redvent.ru, 1
redware.co.uk, 1
redwater.co.uk, 1
-redwaybattery.com, 1
redwaymu.cf, 1
redweb.ws, 1
redweek.com, 1
redwheelweiser.com, 1
redwiki.tk, 1
redwillowcountyne.gov, 1
-redwood.pw, 1
redwoodcounty-mn.gov, 1
redwoodsgroup.com, 1
+redwoodshop.hu, 1
redwoodtoxicology.com, 1
reebelo.co.nz, 1
reebelo.com.au, 1
@@ -124183,7 +123589,6 @@ reenio.com, 1
reenio.cz, 1
reenio.sk, 1
reentry.gov, 1
-reentrycenterofocala.com, 1
reerguer.pt, 1
rees-carter.net, 1
reesefortraviscounty.org, 1
@@ -124191,10 +123596,10 @@ reesmichael1.com, 1
reeson.at, 1
reeson.de, 1
reeson.info, 1
-reeson.org, 1
+reeson.org, 0
reesrichards.co.uk, 1
reevaappliances.co.uk, 1
-reeves-family.com, 1
+reeves-family.com, 0
reevoo.com, 1
reezocar.com, 1
reface.ai, 1
@@ -124218,7 +123623,6 @@ refernet.de, 1
referralforest.com, 1
referrer.website, 1
reffect.io, 1
-refillthecity.eu, 1
refinedimagelawnlandscape.ca, 1
refinedinspectionservices.com, 1
refinedlightingaz.com, 1
@@ -124343,7 +123747,6 @@ regencywalkinclinic.com, 1
regencywines.ca, 1
regendevices.eu, 1
regeneo.cz, 1
-regenerapoint.it, 1
regenpfeifer.net, 1
regensburg-repariert.de, 1
regent.ac.za, 1
@@ -124410,6 +123813,7 @@ registrarplus.nl, 1
registrarsconnect.co.uk, 1
registre.quebec, 1
registrierung.tk, 1
+registroparteviajeros.com, 1
registry.google, 1
registry.quebec, 1
registryplus.net, 1
@@ -124425,7 +123829,6 @@ regression.tk, 1
regtech.tk, 1
regtify.com, 1
regtransfers.co.uk, 1
-reguanli.com, 1
reguladordevoltagem.com.br, 1
regularlabs.com, 1
regulations.gov, 1
@@ -124437,7 +123840,6 @@ rehabilitologist.ru, 1
rehabthailand.com, 1
rehabthailand.org, 1
rehansaeed.com, 1
-reharmonize.jp, 1
rehasport-informationen.de, 1
rehasport-marketing.de, 1
rehasportwelt.de, 1
@@ -124524,7 +123926,6 @@ reissnehme.com, 1
reisspecialistdevalk.nl, 1
reitbeteiligungen.ch, 1
reitmeier.me, 1
-reitoracle.com, 1
reitstall-goettingen.de, 1
reittherapie-tschoepke.de, 1
reivernet.com, 0
@@ -124599,7 +124000,6 @@ relaypay.io, 1
relayto.com, 1
release-monitoring.org, 1
releasedate.me, 1
-releaseinternational.org, 1
releases.live, 1
releasetimes.io, 1
releezme.net, 1
@@ -124610,6 +124010,7 @@ reley.me, 1
reliabilityweb.com, 1
reliable99.com, 1
reliablecanadianpharmacy.com, 1
+reliablegun.com, 1
reliablemaids.co.uk, 1
reliablemojo.com, 1
reliableparts.com, 1
@@ -124647,6 +124048,7 @@ relycomply.com, 1
relyhost.io, 1
relyon-plasma.cn, 1
relyon-plasma.com, 1
+rem.info, 1
rem0te.net, 1
remain.london, 1
remake-projects.tk, 1
@@ -124665,6 +124067,7 @@ remedionaturales.com, 1
remedioparaherpes.com, 1
remedios.com.br, 1
remedioscaseros.guru, 1
+remedium.net.pl, 1
remejeanne.com, 1
remembear.com, 1
rememberingjordan.org, 1
@@ -124734,7 +124137,6 @@ remotepeople.com, 1
remoteroom.jp, 1
remoteshack.cf, 1
remoteshack.ml, 1
-remoteworkertech.asia, 1
remoteworkingpal.com, 1
remotewx.com, 1
remotish.com, 1
@@ -124755,6 +124157,7 @@ remyphotography.fr, 1
remyroguevolution.tk, 1
remzi.info, 1
renaatsioncke.com, 1
+renaissanceklc.com, 1
renaissanceproperty.ie, 1
renalco.ch, 1
renard-pierne-avocats.fr, 1
@@ -124818,6 +124221,7 @@ renewittke.com, 1
renewmdcoastal.com, 1
renewmedispa.com, 0
renewpfc.com, 1
+renhub.no, 1
renicimery.com.br, 1
renjyaku-dental.com, 1
renkenlaw.com, 1
@@ -124846,6 +124250,7 @@ renoproject.org, 1
renorun.ca, 1
renorun.com, 1
renos.tk, 1
+renovalar.com.br, 1
renovandoingresos.com, 1
renovation-abm.fr, 1
renovation-appartement.net, 1
@@ -124857,15 +124262,15 @@ renovation-interieur.net, 1
renovation-interieur.paris, 1
renovation-maison-93.fr, 1
renovation-maison.paris, 1
+renovationbm.ca, 1
+renovationbm.com, 1
renovationen.com, 1
renovationmp.fr, 1
renovationsatl.com, 1
renovationsf.cf, 1
renovationsf.ga, 1
-renovera.be, 1
renovum.es, 1
renpac.org, 1
-renren.pro, 0
renrenche.com, 0
rens.nu, 1
rent-a-c.io, 1
@@ -124882,6 +124287,7 @@ rentacarizmir.com.tr, 1
rentaciudadana.co, 1
rentadrunk.org, 1
rentalboatsafety.com, 1
+rentalcar.com.ge, 1
rentalharmony.co.za, 1
rentalmobilbali.net, 1
rentalseleutheraisland.com, 1
@@ -124917,6 +124323,7 @@ rentyard.net, 1
renuo.ch, 1
renusoni.ga, 1
renusson.com, 1
+renut.com.np, 1
renverse.co, 1
renvillecountymn.gov, 1
renvisegrad.hu, 1
@@ -124965,9 +124372,9 @@ repay.com, 1
repeat.gg, 1
repeatresponse.com.au, 1
repettoshoes.tk, 1
-repexsportswear.store, 1
repharmacy.com, 1
repin.in.ua, 1
+repinger.com, 1
repinger.my.id, 1
repl.ga, 1
replacebase.co.uk, 1
@@ -124982,17 +124389,18 @@ replicagold.ml, 1
replici.net, 1
replikatelefon.tk, 1
repliksword.com, 1
-repo.ml, 1
+repobox.jp, 1
repology.org, 1
-repomansez.xyz, 1
report-incident.de, 1
report-it.trade, 1
report-uri.com, 1
report.cf, 1
+reportband.gov, 1
reporte.tk, 1
reportercareer.ga, 1
reportermagazin.cz, 1
reporting.gov, 1
+reportkey.ru, 1
reportoid.tk, 1
reportoverdose.com, 1
reportquest.com, 1
@@ -125005,6 +124413,7 @@ represii.net, 1
reproaccess.gov, 1
reproductive-revolution.com, 1
reproductiveaccess.gov, 1
+reproductivecellatlas.org, 1
reproductivehealthservices.gov, 1
reproductiverevolution.com, 1
reproductiverights.gov, 1
@@ -125015,6 +124424,7 @@ reprogramming-predators.com, 1
reprogrammingpredators.com, 1
reprolegaldefensefund.org, 1
reprolegalhelpline.org, 1
+reprook.com, 1
reprorights.gov, 1
reprotech.com, 1
repsltd.co.uk, 1
@@ -125055,6 +124465,7 @@ reregu.cf, 1
reroboto.com, 1
reroboto.eu, 1
reroboto.net, 1
+reroboto.nl, 1
reroboto.org, 1
reroboto.social, 1
reroll.tv, 1
@@ -125073,7 +124484,6 @@ research-panel.jp, 1
research.facebook.com, 0
researchallofus.org, 1
researchmarathi.com, 1
-researchnews.cc, 1
researchrealm.net, 1
researchresults.com, 1
researchstory.com, 1
@@ -125222,6 +124632,7 @@ restaurantesimonetti.com.br, 1
restaurantguru.com, 1
restauranthugo.nl, 1
restaurantmadeinitaly.be, 1
+restaurants-reunion.re, 1
restaurants.sg, 1
restauranttester.at, 1
restaurantzumsternen.ch, 1
@@ -125280,7 +124691,6 @@ resurspartner.tk, 1
resveratrolsupplement.co.uk, 1
retailbankerinternational.com, 1
retailcleaners.ga, 1
-retailcybersolutions.com, 1
retaildisplaystands.com.au, 1
retailer-plattform.de, 1
retailing.cf, 1
@@ -125319,7 +124729,6 @@ retiringaccountant.co.uk, 1
retiringifa.co.uk, 1
retivabet.com, 1
retmig.dk, 1
-retmus.com, 1
reto.ch, 0
reto.io, 1
retohaeberli.com, 0
@@ -125412,6 +124821,7 @@ revers.tk, 1
reverse1999.wiki, 0
reverseaging.site, 1
reverseaustralia.com, 1
+reversec.com, 1
reversecanada.com, 1
reversecrucifixkm.altervista.org, 1
reversedns.tk, 1
@@ -125467,7 +124877,6 @@ revivalprayerfellowship.com, 1
revive-me.org, 1
reviveourhearts.com, 1
reviveplumbingmelbourne.com.au, 1
-revivewellholistichealth.com, 1
revivicor.com, 1
reviviendolavilla.tk, 1
revizor-online.cf, 1
@@ -125524,7 +124933,6 @@ rewoven.au, 1
rewriteguru.com, 1
rewriters.it, 1
rewritertools.com, 1
-rex.red, 1
rex.st, 0
rexandkarygalloway.com, 1
rexbang.tk, 1
@@ -125645,13 +125053,11 @@ rhinelander.ca, 1
rhinelanderpd.gov, 1
rhinesuchus.com, 1
rhino-inquisitor.com, 1
-rhinobase.net, 1
rhinoplay.co.uk, 1
rhinosf1.com, 1
rhinostics.com, 1
rhmods.com, 1
rhnet.at, 1
-rho.cc, 1
rho.co, 1
rhode-island-sexcams.com, 1
rhodeislandhealth.tk, 1
@@ -125666,6 +125072,7 @@ rhost.nl, 1
rhris.com, 1
rhrplumbing.com, 0
rhsb.ch, 1
+rhsc.ie, 1
rhswl.com, 1
rhubarb.land, 1
rhumblineadvisers.com, 1
@@ -125702,7 +125109,6 @@ rib-leipzig.com, 1
rib-software.com, 1
riba-lov.ga, 1
ribafs.tk, 1
-ribapo.com, 1
ribeirocavalcante.com.br, 1
ribella.net, 1
ribfixation.com, 1
@@ -125725,7 +125131,6 @@ ricassiocosta.me, 1
ricaud.me, 1
riccardogiannetto.com, 1
ricciardoantoninotindaro.art, 1
-riccocoffeeco.com, 1
riccy.org, 1
riceadvice.info, 1
ricecountymn.gov, 1
@@ -125746,7 +125151,6 @@ richardcrosby.co.uk, 1
richardepiggle.it, 1
richardgrifno.com, 0
richardharpur.com, 1
-richardhicks.us, 1
richardhouts.tk, 1
richardinesrolltop.com, 1
richardkorom.hu, 1
@@ -125796,6 +125200,7 @@ richlandwa.gov, 1
richlewis.com, 1
richlj.net, 1
richlogic.blog, 1
+richmix.org.uk, 1
richmond.com, 1
richmondca.gov, 1
richmondcountync.gov, 1
@@ -125899,12 +125304,12 @@ rift.pictures, 1
rifugioselvabella.tk, 1
rigabeerbike.lv, 1
rigelro.ga, 1
-rigeltarot.com, 1
riggsloves.me, 1
riggsmarkham.com, 1
riggtech.com.au, 1
righettod.eu, 1
right.wtf, 0
+right360.com, 1
rightathomeinteriors.com, 1
rightblog.tk, 1
rightcapital.com, 0
@@ -126038,7 +125443,6 @@ riosoil.co.uk, 1
riosoil.com, 1
riosoils.co.uk, 1
riosoils.com, 1
-riotest.xyz, 1
riotseeds.cloud, 1
ripadores.tk, 1
ripcorddesign.com, 1
@@ -126048,6 +125452,8 @@ ripe.cash, 1
ripenapps.com, 1
ripetizioni.roma.it, 1
ripin.org, 1
+ripitout.eu, 1
+ripitout.nl, 1
ripjar.com, 1
ripon-wi.gov, 1
ripp-it.com, 1
@@ -126064,6 +125470,7 @@ rippleproduction.com.tr, 1
rippling.com, 1
riproduzionichiavi.it, 1
riptidetech.io, 1
+ripvip.ie, 1
riri-tendedasole.it, 1
riri.my, 1
ririro.com, 1
@@ -126089,6 +125496,7 @@ risecannabis.com, 1
risecannabis.io, 1
risecomedy.com, 1
risecstate.gov, 1
+risen.today, 1
riseofmiddle-earth.tk, 1
riseproject.ro, 1
riseshost.ml, 1
@@ -126110,7 +125518,7 @@ riskconsole.com, 1
riskiq.com, 0
riskledger.com, 1
riskmitigation.ch, 1
-risko.com, 1
+risksciences.com, 1
riskstudio.com, 1
riskxchange.co, 1
risky.services, 1
@@ -126201,7 +125609,6 @@ riverrun.tk, 1
rivers.gov, 1
riverschool.net, 1
riversedge.pl, 1
-riversidebaptistchurch.net, 1
riversidecrc.ca, 1
riversideiowa.gov, 1
riversidemo.gov, 1
@@ -126225,7 +125632,6 @@ rivingtongreenwich.co.uk, 1
rivirliving.com, 1
rivistadipsichiatria.it, 1
rivmedia.co.uk, 1
-rivoflor.it, 1
rivolta.tk, 1
rivus.net, 1
riwaya.co.uk, 1
@@ -126282,7 +125688,6 @@ rlove.org, 1
rlptoday.de, 1
rm-it.de, 1
rm2brothers.cc, 1
-rmb.li, 1
rmbnsw.org.au, 1
rmbs.de, 1
rmbs.org, 1
@@ -126296,8 +125701,6 @@ rmdis.au, 1
rmdlingerie.com.br, 1
rmdscreen.com, 1
rme.li, 0
-rmf.io, 1
-rmfscrubs.com, 1
rmgb.in, 1
rmgoe.org, 0
rmgsm.ir, 1
@@ -126377,7 +125780,6 @@ roanboute.be, 1
roannais-tourisme.com, 1
roanoke.com, 1
roaringforkfire.gov, 1
-roastely.com, 1
roaster.ga, 1
roastrepublic.de, 1
rob006.net, 1
@@ -126454,7 +125856,6 @@ robinguy.fr, 1
robinhallnursery.org.uk, 1
robinhor10.tk, 1
robinhordon.tk, 1
-robinloeffel.ch, 1
robinminto.com, 1
robinmurez.com, 1
robinopletal.com, 1
@@ -126491,7 +125892,6 @@ roborehber.com, 1
robot-invest.cf, 1
robot-invest.ml, 1
robot.car, 1
-robotask.in, 1
robotattack.org, 1
robotbattle.tk, 1
robotcoral.de, 1
@@ -126508,6 +125908,7 @@ robotstxt.com, 1
robottelepites.hu, 1
robottip.com, 1
robowars.ga, 1
+robox.info, 1
robpol86.com, 1
robpot.com, 1
robs-info.eu, 0
@@ -126541,7 +125942,6 @@ rochesterymca.org, 1
rochow.me, 1
rocis.gov, 1
rock-base.tk, 1
-rock-zottegem.be, 1
rock4life.be, 1
rocka.me, 1
rockabilly-sinners.tk, 1
@@ -126570,6 +125970,7 @@ rocketdoctor.us, 1
rocketeer.tk, 1
rocketgnomes.com, 1
rocketjump.eu, 1
+rocketlabcorp.com, 1
rocketmill.co.uk, 1
rocketmulejunkremoval.com, 1
rocketnet.ml, 1
@@ -126601,7 +126002,6 @@ rocketsales.ro, 1
rocketsales.se, 1
rocketsales.si, 1
rocketsales.sk, 1
-rocketscraper.com, 1
rocketsworld.tk, 1
rockettube.com, 1
rockfallsil.gov, 1
@@ -126619,6 +126019,8 @@ rockitinflatables.co.uk, 1
rockjumperbirding.com, 1
rocklandbrownwi.gov, 1
rocklandcountyny.gov, 1
+rockler.com, 1
+rocklerpro.com, 1
rocklinhousecleaning.com, 1
rocklinhsflash.net, 1
rockman.in, 1
@@ -126657,6 +126059,7 @@ rodab.party, 1
rodacloud.ddns.net, 1
rodafe.sk, 1
rodapiao.com.br, 1
+rodapies.com, 1
rodarion.pl, 1
rodchapman.com, 0
roddis.net, 1
@@ -126702,6 +126105,7 @@ roelenscitynews.ml, 1
roelfs.org, 1
roelhollander.eu, 1
roeljoyas.com, 1
+roelkoops.nl, 1
roelmagdaleno.com, 1
roelof.io, 1
roelonline.tk, 1
@@ -126753,7 +126157,6 @@ roguetech.ca, 1
roguevalleywinecountry.com, 1
rohal.tk, 1
rohanbassett.com, 1
-rohankondvilkar.com, 1
rohansingh.cf, 1
rohde.de, 0
rohedaten.de, 1
@@ -126765,8 +126168,6 @@ rohrle.com, 1
rohrle.net, 1
rohrreinigung-zentrale.de, 1
rohrstock.at, 1
-roi-project.be, 1
-roi-project.eu, 1
roi4presenter.com, 1
roiblozyxfswe.ga, 1
roidsstore.com, 1
@@ -126800,12 +126201,10 @@ rolandog.com, 1
rolandok.gov, 1
rolandoredi.com, 1
rolandozarate.tk, 1
-rolandreed.cn, 1
rolandsgrocery.com, 1
rolandszabo.com, 1
rolandvanipenburg.com, 1
rolc.org.sg, 1
-roldeco.nl, 1
rolecontj.com, 1
roleplayhome.com, 1
rolf.org, 1
@@ -126838,12 +126237,12 @@ rollinspass.org, 1
rollo-fix.com, 1
rollthedice.tk, 1
rollwerk-berlin.de, 1
-rolossalon.com, 1
rolotrans.cf, 1
rolotrans.ga, 1
rolotrans.gq, 1
rolotrans.ml, 1
rolstoelappartementen.tk, 1
+roltech.ru, 1
rolzzandik.cf, 1
roma-lindenhof.de, 1
roma-servizi.it, 1
@@ -126866,6 +126265,7 @@ romania-film.ml, 1
romaniacompany.com, 1
romanian.cam, 1
romank.com.np, 1
+romankondratev.com, 1
romankozak.cz, 1
romano.guru, 1
romanodermatt.ch, 1
@@ -126897,6 +126297,7 @@ romatoday.it, 1
romatours.pt, 1
romatrip.it, 1
rombarte.pl, 1
+rombey.capital, 1
romcom.info, 1
romdrop.com, 1
rome-airport.net, 1
@@ -126933,7 +126334,6 @@ ronchonrongeurs.com, 1
roncoutilities.com, 1
ronda.tk, 1
rondekker.nl, 0
-rondine.cn, 1
rondommen.nl, 1
rondouin.fr, 1
ronem.com.au, 1
@@ -126968,9 +126368,7 @@ roofingomaha.com, 1
roofobservations.com, 1
roofonline.com, 1
roofpost.gq, 1
-roofride.com, 1
roofsbyempire.com, 1
-roofsrenewed.com, 1
rooijakkers.software, 1
rooik.at, 0
rooiratel.red, 1
@@ -127045,7 +126443,6 @@ rootnician.com, 1
rootonline.de, 1
rootpak.com, 1
rootperov.tech, 1
-rootpigeon.com, 1
rootprompt.at, 1
rootrelativity.com, 1
rootroo.com, 1
@@ -127069,6 +126466,7 @@ roozbeh.tk, 1
rop.cx, 1
ropd.info, 1
ropesmart.com, 1
+ropoxcheats.ru, 1
roquebrunesurargens-tourisme.fr, 1
roques.tk, 1
roquesevilla.com, 1
@@ -127188,7 +126586,7 @@ roswellcity.tk, 1
rosystemsint.com, 1
rot256.io, 1
rot47.net, 1
-rot8nutrition.com, 1
+rota.te.it, 1
rotamap.net, 1
rotanaval.tk, 1
rotaquote.com, 1
@@ -127216,6 +126614,7 @@ rotbo.site, 1
roteam.tk, 1
rotek.at, 0
roten.email, 1
+rotential.com, 1
rotespotsdam.tk, 1
rothbruederlein.tk, 1
rothco.com, 1
@@ -127395,7 +126794,6 @@ royalpainters.co, 1
royalpalmbeachfl.gov, 1
royalpanda.com, 1
royalrace.tk, 1
-royalreach.eu, 1
royalsblue.com, 1
royalsleeping.com, 1
royalstylefit.com, 1
@@ -127428,13 +126826,14 @@ rozar.eu, 1
rozar.sk, 1
rozataki.com.tr, 1
rozemaandag.tk, 1
-rozemuller.com, 1
+rozemuller.com, 0
rozhodce.cz, 1
rozprodat.cz, 1
rozsvitsvet.cz, 1
rp-megapolis.tk, 1
rp-murk.tk, 1
rpa.gov, 1
+rpa1.sk, 1
rpadonline.com, 1
rpatechnologies.es, 1
rpcinmobiliaria.net, 0
@@ -127443,6 +126842,7 @@ rpg-maker.org, 1
rpgchan.cf, 1
rpgfactory.tk, 1
rpgfan.com, 1
+rpgmaker.es, 1
rpgmakers.tk, 1
rpgresearch.com, 1
rpguru.com, 1
@@ -127453,7 +126853,7 @@ rpj.life, 1
rpm-oldtimer-events.ch, 1
rpmdrivingschool.com.au, 1
rpmglobal.com, 1
-rpmrecords.dk, 1
+rpmrecords.dk, 0
rpora.co, 1
rpower.com, 1
rpowerpos.com, 1
@@ -127466,7 +126866,6 @@ rpts.edu, 1
rpus.co, 1
rpy.xyz, 1
rq-labo.jp, 1
-rqvmovies.com, 1
rr30019.com, 1
rr5197.co, 1
rr6729.co, 1
@@ -127493,12 +126892,10 @@ rrvmz.cf, 1
rrwolfe.com, 1
rs-cloud.ddns.net, 1
rs-devdemo.host, 1
-rs-facility.de, 1
rs-maschinenverleih.de, 1
rs-sh.ru, 1
rs.wiki, 1
rsa-erp.com, 1
-rsa-services.com, 1
rsa-services.ng, 1
rsadowski.de, 1
rsap.ca, 1
@@ -127509,7 +126906,6 @@ rsblake.net, 1
rsc-cronenberg.de, 1
rsc.wiki, 1
rsca.org, 1
-rschooltoday.com, 1
rscturmoil.com, 1
rsdantyslab.lt, 1
rsdbyroos.nl, 1
@@ -127546,14 +126942,17 @@ rss.org.uk, 1
rss.sh, 0
rss3.co, 1
rss3.io, 0
+rssatom.eu, 1
rssfeedblast.com, 1
rssfeedonline.tk, 1
+rsshub.com, 1
rssicons.pl, 1
rssl.me, 1
rssproject.nl, 1
rssr.ddns.net, 1
rssr.se, 1
rssreaderone.com, 1
+rssready.eu, 1
rstadler.com, 1
rstforums.com, 1
rstsecuritygroup.co.uk, 1
@@ -127567,6 +126966,7 @@ rswebsols.com, 1
rswm.in, 1
rt-inc.com, 1
rt-praxis-barbara-scheibel.de, 1
+rt.com, 1
rt22.ch, 1
rta-aus.net, 1
rtarabic.com, 1
@@ -127646,14 +127046,12 @@ ruangangkasa.com, 0
ruanglaptop.com, 1
ruanmi.de, 1
ruanwen168.com, 1
-ruavan.com, 1
rubashki-opt.ml, 1
rubashki.tk, 1
rubbaduckee.tk, 1
rubber.cf, 1
rubberband.com, 1
rubberduckers.co.uk, 1
-rubberduckit.com, 1
rubbermaidoutlet.com, 0
rubbleedenvale.co.za, 1
rubblekempton.co.za, 1
@@ -127789,8 +127187,6 @@ ruimian.com, 1
ruimonteiro.pt, 1
ruimoreira.co.uk, 1
ruimtelijkeplannen.nl, 1
-ruimtevoor.gent, 1
-ruimtevoorgent.be, 1
ruinme.tk, 1
ruinsofchaos.com, 1
ruiruigeblog.com, 1
@@ -127834,6 +127230,7 @@ rummage4property.co.uk, 1
rummey.co.uk, 1
rumoclock.dk, 1
rumtaste.com, 1
+rumusbilangan.com, 1
rumussoal.com, 1
run-it-direct.co.uk, 1
run.cz, 1
@@ -127862,7 +127259,6 @@ runescape.wiki, 1
runescapelordsconquest.tk, 1
runesforbeginners.com, 1
runet.cf, 1
-runetracker.org, 1
runeworldforums.tk, 1
runews.cf, 1
runfitcoaching.com, 1
@@ -127874,7 +127270,7 @@ runicspells.com, 1
runklesecurity.com, 1
runlet.gq, 1
runlevel3.de, 1
-runmyprocess.com, 0
+runmyprocess.com, 1
runmyqubit.com, 1
runmyqubit.de, 1
runmyvillage.com, 1
@@ -127890,7 +127286,6 @@ runrun.es, 1
runrun.sk, 0
runschrauger.com, 1
runvs.io, 1
-runwaydoll.org, 1
runyonit.com, 1
ruobiyi.com, 0
ruobr.ru, 1
@@ -127952,7 +127347,6 @@ ruskamodra.cz, 1
ruskcountytx.gov, 1
ruski.tk, 1
ruskin200.com, 1
-ruskod.net, 1
ruslandautohuur.nl, 1
rusmir.tk, 1
rusmodel.tk, 1
@@ -127992,7 +127386,6 @@ russian-page.tk, 1
russianbearsmotorsport.tk, 1
russianbluecatsguide.com, 1
russianbrides.cf, 1
-russianbridge.org, 1
russianbristol.tk, 1
russiancrimes.in.ua, 1
russianews.cf, 1
@@ -128024,6 +127417,7 @@ rustomjee.com, 1
rustonla.gov, 1
rustorch.com, 1
rustup.rs, 1
+rustwood.fun, 1
rusty44.com, 1
rustyrambles.com, 0
rustytub.com, 1
@@ -128061,6 +127455,7 @@ rutlandvets.co.uk, 1
rutorka.tk, 1
ruttenadvocaat.be, 1
ruttentuttels.nl, 1
+rutterroy.com, 1
ruud-online.tk, 1
ruudkoot.nl, 1
ruvoip.net, 1
@@ -128076,7 +127471,6 @@ ruzaevka.tk, 1
ruzomberok.bike, 1
ruzovyslon.cz, 1
rv-level-assist.com, 1
-rv-lyfe.com, 1
rva.gov, 1
rvaneijk.io, 1
rvantwembeke.tk, 1
@@ -128114,6 +127508,7 @@ rx-base.nl, 1
rx-diet.com, 0
rx-safety.com, 0
rx2go.com, 1
+rxbn.de, 1
rxbusiness.com, 1
rxcarbon.com, 1
rxcom.net, 1
@@ -128149,7 +127544,6 @@ ryanrichardwalker.com, 1
ryansmithphotography.com, 1
ryazagro.ru, 1
ryazan-news.net, 1
-ryazan-region.ru, 1
ryazancity.tk, 1
rybak-opt.ru, 1
rybak-russia.ru, 1
@@ -128234,6 +127628,7 @@ s-ms.org, 1
s-n-unso.com, 1
s-on.li, 1
s-ppc.com, 1
+s-pro.io, 1
s-s-paint.com, 1
s-si.com, 1
s-sisters.ru, 1
@@ -128251,7 +127646,6 @@ s.servemp3.com, 1
s.td, 1
s.team, 1
s.tt, 1
-s.wtf, 1
s007.co, 1
s01.top, 1
s0laris.co.uk, 1
@@ -128387,7 +127781,6 @@ sabtifa.site, 1
sabworldtricks.tk, 1
sac-cu2.org, 1
sac-shoes.fr, 1
-sacabc.ca, 1
sacademica.tk, 1
sacaentradas.com, 1
saccani.net, 1
@@ -128401,6 +127794,7 @@ sacfreightlines.com, 1
sacha-botz.com, 0
sacharidovejednotky.eu, 1
sachasmets.be, 1
+sachbharat.in, 1
sachi.lk, 1
sachiepvien.net, 1
sachinchauhan.ml, 1
@@ -128442,7 +127836,6 @@ sadeem.space, 1
sadesign.co.uk, 1
sadev.co.za, 1
sadhana.cz, 1
-sadhanaclub.de, 1
sadiejanehair.com, 1
sadiestavern.cf, 1
sadiestavern.ga, 1
@@ -128454,6 +127847,7 @@ sadiqstore.com, 1
sadjawebsolutions.com, 1
sadkodesign.com.ua, 1
sadmansh.com, 1
+sadou.co.kr, 1
sadou.kyoto.jp, 0
sadoun.com, 1
sadovskiy.tech, 1
@@ -128521,9 +127915,9 @@ safefreepornsites.com, 1
safegas.com.ua, 1
safegold.ca, 1
safegroup.pl, 1
-safeguardhosting.ca, 1
safeguardproperties.com, 1
safeguardpss.com, 1
+safehealthcenter.com, 1
safehero.com, 1
safeheron.com, 0
safeheron.vip, 1
@@ -128569,14 +127963,12 @@ safetrax.in, 1
safety-in-construction.tk, 1
safety.co.nz, 1
safety360elite.co.za, 1
-safetycloud.me, 1
safetydrivessuccess.com, 1
safetymeasuresas.com, 1
safetymp3.com, 1
safetynames.com, 1
safetynetwork.me, 1
safetypay.com, 1
-safetyrange.com, 1
safetyrisk.net, 0
safetysite.tips, 1
safetysource.co.nz, 1
@@ -128641,6 +128033,7 @@ sagsaga.org, 1
saguaro.care, 1
saguarocc.com, 1
sahabatnesia.com, 1
+sahabatsawit.com, 1
sahafekitap.com, 1
sahakamfi.com, 1
sahalin.tk, 1
@@ -128660,7 +128053,6 @@ sahih.nl, 1
sahilbahl.com, 1
sahilten.com, 1
sahinozgenhukuk.com, 1
-sahinpierresnaturelles.com, 1
sahkotyot.eu, 1
sahovski.com, 1
sahpa.co.za, 1
@@ -128708,6 +128100,7 @@ sailyun.cc, 1
saimedia.net, 0
saimoe.moe, 1
saimoe.org, 1
+sainaracademy.com, 1
sainet.xyz, 1
sainetworks.net, 1
sainews.net, 1
@@ -128777,10 +128170,8 @@ sairai.bid, 1
sairlerimiz.tk, 1
sairus.fr, 1
saisandesh.org, 1
-saisao.com, 1
saisecure.net, 1
saiserve.xyz, 1
-saiserver.net, 1
saisons-fruits-legumes.fr, 1
saisyuusyou-ikebukuro.com, 1
saisyuusyou-omiya.com, 1
@@ -128800,7 +128191,6 @@ saiyeh.ir, 0
sajabesaya.tk, 1
sajbersove.rs, 1
sajetekengineering.com, 1
-sajjadrezaei.fit, 1
sajt-vizitka-nedorogo.ru, 1
sajter.ga, 1
sakac.cz, 1
@@ -128839,11 +128229,11 @@ sakuraspanj.com, 1
saladgo.id, 1
saladin.vn, 1
salalfoundation.ca, 0
-salalgrano.com.mx, 1
salamanders.tk, 1
salamence.tk, 1
salamkisan.com, 1
salamon-it.de, 1
+salamzibaei.com, 1
salariominimo.com.co, 1
salaryfinance.com, 1
salas.cf, 1
@@ -128918,7 +128308,7 @@ salesoutcomes.com, 1
salesparrow.com, 1
salesprocessing.gq, 1
salesroom.com, 1
-saletodo.com, 1
+saletodo.com, 0
saleturs.tk, 1
saletzki.de, 1
salework.net, 1
@@ -128958,7 +128348,6 @@ salmaghanim.com, 1
salman.agency, 1
salmanravoof.com, 1
salmanshafi.net, 1
-salmati.de, 1
salmelainenwalter.tk, 1
salminencrane.tk, 1
salmo-rybak.ru, 1
@@ -129098,6 +128487,7 @@ samcollin.be, 1
samdev.io, 1
same.lol, 1
samedamci.com, 1
+samedayglendoracleantruckcheck.com, 1
samedis.care, 1
samegoal.com, 1
samegoal.org, 1
@@ -129117,7 +128507,6 @@ samesound.ru, 1
sametcanaz.tk, 1
sameteem.com, 1
sametimetomorrow.tk, 1
-samfw.com, 1
samhall.se, 1
samhsa.gov, 1
samhuri.net, 1
@@ -129171,7 +128560,6 @@ samplechapterpodcast.com, 1
samplefashion.nl, 1
samplehc.com, 1
sampsoncountync.gov, 1
-sampsonplumbing.com, 1
samquick.me.uk, 1
samroelants.com, 1
samsara.nl, 1
@@ -129202,6 +128590,7 @@ samuelkyalo.tk, 1
samuelphotos.com, 1
samuels-graphics.tk, 1
samuelsmithsbrewery.co.uk, 1
+samuelsuiri.info, 1
samuidiving.net, 1
samuiluxuryboats.com, 1
samuirehabcenter.com, 1
@@ -129281,7 +128670,6 @@ sandbox-simplevisa.net, 1
sandbox.i.ng, 1
sandbox.mydigipass.com, 0
sandcastle.eu.org, 1
-sanddollarsstudio.com, 1
sandelduggal.com, 1
sanderdesign.tk, 1
sanderdorigo.nl, 1
@@ -129299,6 +128687,7 @@ sandetailing.ru, 1
sandfield.co.nz, 1
sandgatebaysidedental.com.au, 1
sandhillspet.com, 1
+sandhitransformer.xyz, 1
sandholt.is, 1
sandiegocomicconnews.com, 1
sandiegolifechanging.org, 1
@@ -129319,7 +128708,6 @@ sandownpolicenh.gov, 1
sandpaper.com, 1
sandr0.tk, 1
sandra-perlbach.de, 1
-sandrabay.com, 1
sandrabernardo.com, 1
sandragortemaker.nl, 1
sandrainden.nl, 1
@@ -129358,7 +128746,6 @@ sandybigboobs.net, 1
sandycreekrvpark.com, 1
sandykeymedical.com, 1
sandyspringadventurepark.org, 1
-sandytoesgifts.co.uk, 1
sandyvazquez.com, 1
sanemind.de, 1
sanetschka.tk, 1
@@ -129397,6 +128784,7 @@ sanitairwinkel.be, 1
sanitairwinkel.com, 1
sanitairwinkel.nl, 1
sanitaria.it, 1
+sanithais.com, 1
sanitix.com, 1
sanity.host, 1
sanity.io, 1
@@ -129436,6 +128824,7 @@ sanne-content.de, 1
sanneburen.nl, 1
sannefoltz.com, 1
sannhakhoa.vn, 1
+sanniescustoms.com, 1
sannikfk.gq, 1
sanodent-focsani.ro, 1
sanodent.com.ua, 1
@@ -129445,6 +128834,7 @@ sanowski.download, 1
sanowski.eu, 1
sanowski.net, 1
sanoyalab.com, 1
+sanpablo.go.cr, 1
sanpablo.tk, 1
sanpancrazio.tk, 1
sanpatigroup-beautysalon.jp, 1
@@ -129616,6 +129006,7 @@ sarafani.tk, 1
sarafrazan.tk, 1
sarafshop.tk, 1
sarah-brown.tk, 1
+sarah-bundy.com, 1
sarah-harding.tk, 1
sarah-huenten.de, 1
sarah-jane.nl, 1
@@ -129649,6 +129040,7 @@ sararoylance.com, 1
saraskins.space, 1
sarasotadentistry.com, 1
sarasotaroboticurology.com, 1
+sarastan.com, 1
saratogasprings-ut.gov, 1
saratogawi.gov, 1
saraton-kasalligi.cf, 1
@@ -129707,10 +129099,10 @@ sarkom.tk, 1
sarkoziadam.hu, 1
sarkvideos.cf, 1
sarmpel.tk, 1
-sarndipity.com, 1
sarny.at, 1
saro.ee, 1
sarogiw.tk, 1
+saromile.be, 1
saropa.com, 1
sarosegrupp.ee, 1
sarpsb.org, 1
@@ -129742,10 +129134,10 @@ sashabognibov.tk, 1
sashaclothing.tk, 1
sashakrasnoyarsk.tk, 1
sashascollections.com, 1
-sashka.com.ua, 1
sashleighaust.com, 1
sashok724.net, 1
sashroy.shop, 1
+sashroyee.com, 1
sashware.com, 1
sasioglu.co.uk, 1
sasken.com, 1
@@ -129817,7 +129209,7 @@ satsumi.tk, 1
satta-company.tk, 1
sattaresult.net, 1
sattaresult.net.in, 1
-satuenergy.com, 1
+satuenergy.com, 0
saturdayenterprises.ga, 1
saturn-test.network, 1
saturne.tk, 1
@@ -129847,7 +129239,6 @@ sauerland-rundflug.de, 1
sauerland-schnittgruen.de, 1
sauerwetter.tk, 1
saugatuckcabin.com, 1
-saugatuckcapital.com, 1
saugatucktownshipmi.gov, 1
saugatuckvacationhomerental.com, 1
saulchristie.com, 1
@@ -129877,10 +129268,11 @@ savagecore.eu, 1
savagecore.uk, 1
savanna.io, 1
savanna.vn.ua, 1
+savannahgraham.com, 1
savannahhappycats.com, 1
savannapro.vn.ua, 1
savant-dagen.nl, 1
-savantcare.com, 1
+savantcare.com, 0
savart.blog, 1
savart.pro, 1
savatha.tk, 1
@@ -129955,6 +129347,7 @@ savvice.com.ph, 1
savvycleaner.com, 1
savvydevelopment.com, 1
sawansasaram.ml, 1
+sawayaka-hitachilaw.jp, 1
sawiday.at, 1
sawiday.be, 1
sawiday.com, 0
@@ -130003,7 +129396,6 @@ sayfr.com, 0
sayhanabi.eu.org, 1
sayhi.com, 1
sayingimages.com, 1
-sayiw.com, 1
saymonz.net, 1
sayprepay.com, 1
sayura.net, 1
@@ -130100,6 +129492,8 @@ scaffalature.roma.it, 1
scaffoldhiremidrand.co.za, 1
scaffoldhirerandburg.co.za, 1
scaffoldhiresandton.co.za, 1
+scaffoldinghiresandton.co.za, 1
+scaffoldingmidrand.co.za, 1
scaffoldingsandton.co.za, 1
scag9.com, 1
scala.click, 0
@@ -130160,7 +129554,6 @@ scansnus.com, 1
scantrics.io, 1
scanutracker.com, 1
scanyachat.cf, 1
-scape.sg, 1
scapin.dk, 1
scapp9565.xyz, 1
scappoose.gov, 1
@@ -130168,6 +129561,7 @@ scarabcoder.com, 1
scaracloud.ddns.net, 1
scarafaggio.it, 1
scarboroughscrapcars.com, 1
+scarboroughtec.ac.uk, 1
scardracs.blog, 1
scarecrow-cn.com, 1
scaricamusica.tk, 1
@@ -130192,7 +129586,8 @@ scbcameroun.net, 1
scbdh.org, 1
scbodner.com, 1
sccan.scot, 1
-sccd.co.uk, 1
+sccc.tech, 1
+sccellfie.org, 1
scchealthdept.com, 1
sccoaching.io, 1
scdmx.de, 1
@@ -130279,6 +129674,7 @@ schellenberg-web.de, 1
schellenberg.ac, 1
schellevis.net, 0
schenectadycountyny.gov, 1
+schengenerhaff.lu, 1
schenkel.eti.br, 1
schenkel.tk, 1
schenkes.de, 0
@@ -130321,6 +129717,7 @@ schinkelplatz.com, 1
schipholwatch.nl, 1
schipholwatch.org, 1
schiriportal.ch, 1
+schistosomulacellatlas.org, 1
schittscreek.shop, 1
schizoid.tk, 1
schizoids.net, 1
@@ -130401,7 +129798,6 @@ schnucks.com, 1
schnyder-werbung.ch, 0
schody-rozycki.pl, 1
schoenstatt-fathers.link, 1
-schoenstatt-fathers.us, 1
schoenstatt.link, 1
schoental.de, 1
schoepski.de, 1
@@ -130476,7 +129872,7 @@ schooltransport.com.au, 1
schoolyogainstitute.com, 1
schoonheidssalon-annelies-santpoort.nl, 1
schoonheidssalon-annelies-velserbroek.nl, 1
-schoop.me, 1
+schoop.me, 0
schopenhauer-institut.de, 1
schorel.eu, 0
schorel.ovh, 1
@@ -130502,7 +129898,7 @@ schrijnwerkerij-deconinck.be, 1
schrijnwerkerij-deconinck.com, 1
schrijverspunt.nl, 1
schritt4fit.de, 1
-schroders.com, 1
+schroders.com, 0
schroderusa.cf, 1
schroeder-immobilien-sundern.de, 1
schroederdennis.de, 0
@@ -130526,7 +129922,6 @@ schuhzoo.de, 1
schulden.tk, 1
schulderinsky.de, 1
schuldnerberatung-schulz.de, 1
-schule.wtf, 0
schuler.st, 1
schulewirtschaft-bayern.de, 1
schulferien.org, 1
@@ -130536,7 +129931,6 @@ schull.ch, 0
schulte-collection.eu, 1
schulung-eup.de, 1
schulz-partner-rechtsanwaelte.de, 1
-schulze-gunst.de, 1
schulzentrum.com, 1
schuman.tk, 1
schumanandmonnet.eu, 1
@@ -130574,7 +129968,6 @@ schwedischezahnaerztin.de, 1
schweiz-sextreffen.ch, 1
schweizerbanken.tk, 1
schweizers-restaurant.de, 1
-schwellensittiche.de, 1
schwerkraftlabor.de, 1
schwertkriege.de, 1
schwertshop.de, 1
@@ -130602,6 +129995,7 @@ science-questions.org, 1
science-texts.de, 1
science.gov, 1
science360.gov, 1
+science4everyone.org, 1
scienceasfashion.ga, 1
sciencebase.gov, 1
scienceeducation.tk, 1
@@ -130638,7 +130032,6 @@ scigacz.pl, 1
scigov.xyz, 1
scijinks.gov, 1
scindustries.it, 1
-scintillating.stream, 1
sciolism.de, 1
scion-architecture.net, 1
scionasset.com, 0
@@ -130659,6 +130052,7 @@ scloud.link, 1
sclsnglssttldwn.com, 1
sclub7esp.tk, 1
scm-2017.org, 1
+scm360.co.uk, 1
scmestetic.pl, 1
scmhandling.com, 0
scmitchell.com, 1
@@ -130666,7 +130060,6 @@ scml.pt, 1
scms.com.my, 1
scn9a.com, 1
scnow.com, 1
-scoaladewebsiteuri.ro, 1
scoebg.org, 1
scoffable.com, 1
scolacdn.com, 1
@@ -130709,6 +130102,7 @@ scoro.com, 1
scorobudem.ru, 1
scorpia.co.uk, 1
scorpiogroup.net, 1
+scorpioguitars.com, 1
scorpiomarine.co.in, 1
scorpioncomputers.nl, 1
scorpiongames.tk, 1
@@ -130807,6 +130201,7 @@ scrapautobuyer.com, 1
scrapbookdecorations.ga, 1
scrapbot.cl, 1
scrapcarbrampton.ca, 1
+scrapcarremovalmilton.com, 1
scrapcars.net.au, 1
scrapfly.io, 1
scrapmartine.tk, 1
@@ -130823,7 +130218,7 @@ screen-fox.de, 1
screen64.tk, 1
screenclaim.com, 1
screenfax.de, 1
-screenfox.info, 1
+screenfox.de, 1
screenfox.net, 1
screeningmaster.jp, 1
screeningxchange.com, 1
@@ -130843,6 +130238,7 @@ scribd.com, 1
scribesecurity.com, 1
scripo-bay.com, 1
scrippsnews.com, 1
+script-sign.com, 1
script.google.com, 1
scriptamanent.org, 1
scripter.co, 1
@@ -130882,10 +130278,10 @@ sctiger.me, 1
sctiger.men, 1
sctiger.ml, 1
sctm.at, 1
-sctrainingllc.com, 1
scubadiving-phuket.com, 1
scubahirefiji.com, 1
scubaland.hu, 1
+scubly.com, 1
scul.net, 1
sculpteo.com, 1
sculptor.com, 1
@@ -130952,16 +130348,17 @@ sdp.training, 1
sdpay.com, 1
sdpokieswiry.ga, 1
sdpokieswiry.tk, 1
+sdpp.cc, 1
sdrp.org, 1
sdruzeniprovltavu.cz, 1
sds-marburg.de, 0
sdsbd.top, 1
sdsite.tk, 1
+sdslandscaping.uk, 1
sdsmanagement.me, 0
sdsmt.engineering, 1
sdstack.com, 1
sdsucollegian.com, 1
-sdtpro.online, 1
sduconnect.nl, 0
sdut.gq, 1
sdvx.net, 0
@@ -130981,14 +130378,13 @@ sea-force.com.au, 1
sea-godzilla.com, 1
sea.global, 1
sea.zapto.org, 1
-seaapio.info, 1
seaborn.top, 0
+seacowtech.com, 1
seadrive.cc, 1
seadus.ee, 1
seaemporium.com, 1
seagull-seafarer.org, 1
seahaweb.org, 1
-seaholmwines.com, 1
seaif.org, 1
seal-tite.eu, 1
sealart.pl, 1
@@ -131033,6 +130429,7 @@ search.gov, 1
search.yahoo.com, 0
search4stores.com, 1
searchable.ml, 1
+searchbin.ca, 1
searchbyimages.com, 1
searchcandy.uk, 1
searchcoloradohouses.com, 1
@@ -131056,14 +130453,13 @@ seark.edu, 1
searlesnorfolklodges.co.uk, 1
searsucker.com, 1
searx.be, 1
-searx.ca, 1
searx.ee, 1
searx.nu, 1
-searx.one, 0
searx.org, 1
searx.party, 1
searx.run, 1
searx.space, 1
+searx.stream, 1
searxng.cf, 1
searxng.com, 1
seashkey.com, 1
@@ -131185,7 +130581,6 @@ seclms.net, 1
seclore.com, 1
secnd.me, 1
secnet.ga, 1
-secnode.xyz, 1
secolve.com, 1
secomea.com, 1
second-life-partner-ichien.com, 1
@@ -131194,6 +130589,7 @@ secondlife.tk, 1
secondmeasure.com, 1
secondnature.bio, 1
secondperson.net, 1
+secondsightmgt.com, 1
secondthought.ai, 1
secondtreasuresmv.com, 1
secondversion.com, 1
@@ -131232,7 +130628,6 @@ secretsdujeu.com, 1
secretservercloud.ca, 1
secretsofuniverse.in, 1
secretstomartialarts.tk, 1
-secretum.tech, 1
secretworld.ml, 1
secretzone.bg, 1
secrium.io, 1
@@ -131310,7 +130705,7 @@ securesense.nl, 1
securesite.pro, 1
securesiteaccess.com, 1
securestage.com, 1
-securesuite.co.uk, 0
+securesuite.co.uk, 1
securetalks.com.br, 1
securetaxcpa.com, 1
secureteam.co.uk, 1
@@ -131331,7 +130726,6 @@ securiti.ai, 1
securitum.pl, 1
security-24-7.com, 1
security-brokers.com, 1
-security-systems.nl, 0
security-xanthi.gr, 1
security.de, 1
security.gives, 1
@@ -131343,10 +130737,14 @@ security.xn--q9jyb4c, 1
securityabstract.com, 1
securityanalystservices.com, 1
securityaware.me, 1
+securitybasegroup.com, 1
securitybrief.asia, 1
+securitybrief.ca, 1
securitybrief.co.nz, 1
+securitybrief.co.uk, 1
securitybrief.com.au, 1
-securitybrief.eu, 1
+securitybrief.in, 1
+securitybrief.news, 1
securitydelta.nl, 1
securityfest.com, 1
securitygladiators.com, 1
@@ -131392,13 +130790,11 @@ sedico.mx, 1
sedicomm.com, 0
sedirector.net, 1
sedkisghairi.com, 0
-sedlex.fr, 1
sedmicka.sk, 0
sedoexpert.nl, 1
sedoexperts.nl, 1
sedro-woolley.gov, 1
seduzironline.com.br, 1
-see22.de, 1
seearmenia.tk, 1
seebetterlab.com, 1
seecat.biz, 1
@@ -131455,7 +130851,6 @@ seewang.me, 1
seewhatididhere.com, 1
seewines.com, 1
seexw.com, 1
-seezeitlodge-bostalsee.de, 1
sef.co.za, 1
sefan.ru, 1
sefareshpardeh.com, 1
@@ -131499,7 +130894,11 @@ seguroauto.com.br, 1
seguroestastu.com, 1
seguromail.com.br, 1
segurosbantrab.com.gt, 1
+seguroscochedesustitucion.es, 1
+segurosdecochehistorico.es, 1
segurosdesaluddominicanos.com, 1
+segurosinternacionalcoche.es, 1
+segurosmatriculaextranjera.es, 1
segurosmr.es, 1
segurosocial.gov, 0
segurossura.com.pa, 1
@@ -131617,6 +131016,7 @@ selenegames.com, 1
seleondar.ru, 1
selerix.com, 1
selesnafes.com, 0
+selexgalileo.com, 1
selezionebarbrboguaccero.cf, 1
selezionebarbrboguaccero.ga, 1
selezionebarbrboguaccero.tk, 1
@@ -131649,14 +131049,13 @@ selfquestion.pt, 1
selfrealize.ga, 1
selfretire.cf, 1
selfserverx.com, 0
-selfswrecker.com, 1
+selfswrecker.com, 0
selftech.tk, 1
selfycheck.it, 1
selimcerkezi.tk, 1
selistina.tk, 1
selkiemckatrick.com, 1
selkirkelementary.com, 1
-sell.is, 1
sell2orbit.com, 1
sellajoch.com, 1
sellbit.io, 1
@@ -131717,7 +131116,6 @@ semaine-cevenole.fr, 1
semalt.net, 1
semanarioaqui.tk, 1
semantic-systems.com, 1
-semantica.cz, 0
semantics.ga, 1
semaphore-studios.com, 1
sembosihosting.tk, 1
@@ -131854,6 +131252,7 @@ seniorie-sart-tilman.be, 1
seniorlivinginvestments.eu, 1
seniormanager.cz, 1
seniornavigator.org, 1
+seniorpremium.pl, 1
seniorsupportservicesohio.com, 1
seniortailwaggers.com, 1
senioxtreme.it, 1
@@ -131936,6 +131335,7 @@ senzoripresiune.com, 1
seo-analyse.com, 1
seo-blog12.tk, 1
seo-dr-it.com, 1
+seo-dvizh.ru, 1
seo-forum.nu, 0
seo-inc.ru, 1
seo-linz.at, 1
@@ -131970,6 +131370,7 @@ seobook2015.ga, 1
seobook2015.gq, 1
seobook2016.gq, 1
seoclubs.tk, 1
+seocluj.com, 0
seocontents24.tk, 1
seocraft.me, 1
seocreator-blog24.tk, 1
@@ -132006,7 +131407,6 @@ seomaton.org, 1
seomaxion.com, 1
seomedo.com, 1
seomen.biz, 1
-seomonk.com, 1
seonaut.org, 1
seonoco.com, 1
seonow.ga, 1
@@ -132042,6 +131442,7 @@ seosof.com, 1
seosos.gq, 1
seosos.ml, 1
seospace.ro, 1
+seospecialist.ma, 1
seosprint.gq, 1
seostrit.cf, 1
seostrit.tk, 1
@@ -132056,7 +131457,6 @@ seotrend.hu, 1
seoturkey.tk, 1
seotutorials32.tk, 1
seoulartcollective.tk, 1
-seoulcrush.com, 1
seoulsummit.kr, 1
seovisit.tk, 1
seovisits.tk, 1
@@ -132193,6 +131593,7 @@ serifu.org, 1
seringe.com, 1
seriouss.am, 1
serioussam.ml, 1
+serizon.net, 1
serkanyarbas.com.tr, 1
serkozh.me, 1
sermerkt.is, 1
@@ -132223,11 +131624,12 @@ serreshikeclub.tk, 1
sertaobom.eco.br, 1
sertaovivo.tk, 1
sertasimmons.com, 1
-sertec.com.mx, 0
+sertec.com.mx, 1
sertim.tk, 1
serval-concept.com, 1
serval-formation.com, 1
servant42.com, 1
+servantsofgrace.org, 1
servantweb.fr, 1
servbay.com, 1
serve.com, 1
@@ -132251,6 +131653,7 @@ server-kiste.de, 1
server-zugang.eu, 1
server.fm, 1
server.pro, 1
+server.vote, 1
server4london.one, 1
server4london.site, 1
server72a.ddns.net, 1
@@ -132280,7 +131683,6 @@ serveroffline.net, 1
serverpedia.de, 1
servers.vg, 1
serverscan.com, 1
-serversfrom.space, 1
serversify.host, 1
serverstatus.tk, 1
serverstuff.info, 1
@@ -132292,6 +131694,7 @@ serveur.nl, 1
serveursminecraft.org, 1
servfefe.com, 1
serviabs.com, 1
+serviall.com, 1
service-auto-baneasa.com, 1
service-auto-baneasa.ro, 1
service-centre.cf, 1
@@ -132329,6 +131732,7 @@ servicestelle-jba.de, 1
servicevie.com, 0
servicewash.it, 1
servicii-funerare.tk, 1
+servicii-wordpress.ro, 1
serviciodebarralibreparaeventos.com, 1
serviciodemanitas.es, 1
serviciolegal.com.co, 1
@@ -132410,7 +131814,6 @@ sesarju.com, 1
sesarju.eu, 1
sesarju.org, 1
sescoen.tk, 1
-sescommercialroofing.com, 1
seseai.ga, 1
sesenaonline.tk, 1
sesliturkgencligi.tk, 1
@@ -132441,7 +131844,6 @@ sethoedjo.com, 1
sethriedel.com, 1
sethvargo.com, 1
seti-germany.de, 0
-setiajaya.co.id, 1
setin.srl, 1
setis.com.br, 1
setit.co.za, 1
@@ -132453,6 +131855,7 @@ setphaserstostun.org, 0
settberg.de, 1
setterirlandes.com.br, 1
settimanadellascienza.it, 1
+settle.gg, 1
settleapp.co, 1
settleinestonia.ee, 1
settlingin.ga, 1
@@ -132477,7 +131880,6 @@ sevendevilsnc.gov, 1
sevenfoureight.ml, 1
sevengang.tk, 1
sevenicealimentos.com.br, 1
-sevenmatches.com, 1
sevenrooms.com, 0
sevenseasons.bg, 1
sevenstudioconfigurator.ph, 1
@@ -132516,7 +131918,6 @@ sex-test.com, 1
sex-vergleich.com, 1
sex5.com, 1
sexandthecitty.tk, 1
-sexastr.club, 1
sexastr.com, 1
sexawynet.cam, 1
sexblag.club, 1
@@ -132526,6 +131927,7 @@ sexdel.com, 1
sexdocka.nu, 1
sexedquickies.com, 1
sexedrescue.com, 1
+sexfirehub.com, 1
sexflare.net, 1
sexgamesclub.com, 1
sexgarage.de, 1
@@ -132608,7 +132010,6 @@ sexyteens.net, 1
sexyvenushuegel.org, 1
seychely.com, 1
seyfarth.de, 1
-seyirmuzik.com, 1
seykapuertasautomaticas.com, 1
seymourfanclub.tk, 1
seymourpowell.com, 1
@@ -132693,8 +132094,6 @@ sfile.eu, 1
sfilm.cz, 1
sfinance.cz, 1
sfinance.eu, 1
-sfirat-haomer.com, 1
-sfjs.org, 1
sfleatherdistrict.org, 1
sfleisure.com, 1
sflhidta.gov, 1
@@ -132707,14 +132106,12 @@ sfondo.info, 1
sformule.cz, 1
sfotbal.cz, 1
sfotbalem.cz, 1
-sfp.net.tr, 1
sfpdev.com, 1
sfpebblesstones.com, 1
sfpuc.gov, 1
sfrms-app.fr, 1
sfs.buzz, 1
sfslashing.com, 1
-sft-framework.org, 1
sftool.gov, 1
sfumusic.com, 1
sfvonline.nl, 1
@@ -132786,6 +132183,7 @@ sh0rt.zone, 1
sh0u.jp, 1
sh0uld.net, 1
sh1mar.in, 1
+sha.bi, 1
sha512.online, 1
shabaka.org, 1
shabashka.ml, 1
@@ -132844,8 +132242,6 @@ shadrinsk-city.ru, 1
shadynook.net, 1
shadypark.tk, 1
shaffer-law.com, 1
-shaffer.media, 1
-shaffer.network, 1
shaffermixers.com, 1
shafrental.id, 1
shaftofdarkness.club, 0
@@ -132872,6 +132268,7 @@ shahzaibm.com, 1
shaicoleman.com, 1
shaiden-porn.com, 1
shaik.pl, 1
+shailendra.in, 1
shailendra.org, 1
shailendramishra.com, 1
shailendramishra.in, 1
@@ -132964,7 +132361,7 @@ shapes-audio.dk, 1
shapesouthcarolina.gov, 1
shapeyourcity.ca, 1
shapeyourcityhalifax.ca, 1
-shaping.cn, 1
+shapps.online, 1
sharaf.net, 1
sharanyamunsi.net, 1
sharanyan.com, 1
@@ -133005,7 +132402,6 @@ sharepointconsultant.com.au, 1
sharepointconsultants.com.au, 1
sharepointdrive.com, 1
sharepointtrainer.com, 1
-sharerotic.com, 1
sharescope.co.uk, 1
shareselecttools.com, 1
sharethe.link, 1
@@ -133022,7 +132418,6 @@ shariftown.tk, 1
sharik-msk.ga, 1
sharik.ml, 1
sharine.nl, 1
-sharingbipolar.com, 1
sharingcolombia.com, 1
sharingphotos.co, 0
sharisharpe.com, 1
@@ -133032,7 +132427,6 @@ shark5060.net, 1
sharkblog.tk, 1
sharkey.tk, 1
sharkeyscuba.com, 1
-sharkie.org.za, 1
sharking.gq, 1
sharko.tk, 1
sharkpaint.tk, 1
@@ -133081,6 +132475,7 @@ shawanocountywi.gov, 1
shawarmapressfranchise.com, 1
shawcentral.ca, 0
shawclan.id.au, 1
+shawfactor.com, 1
shawfamily.au, 1
shawfamily.id.au, 1
shawiah.tk, 1
@@ -133136,7 +132531,6 @@ sheet.host, 1
sheetengine.net, 1
sheetseeker1486.it, 1
sheetsindonesia.com, 1
-sheetstutorial.com, 1
sheezy.art, 1
sheezy.blog, 1
sheezy.chat, 1
@@ -133154,7 +132548,6 @@ shefftunes.tk, 1
shehaal.com, 1
shehata.com, 1
sheilasdrivingschool.com, 1
-sheisrecovering.com, 1
shek.zone, 1
shelbycounty-il.gov, 1
sheldon.sk, 1
@@ -133166,6 +132559,7 @@ shelfieretail.com, 1
shelfordsandstaplefordscouts.org.uk, 1
shellavartanian.tk, 1
shellday.cc, 1
+shelleyparts.co.uk, 1
shellfire.de, 1
shellfire.es, 1
shellfire.it, 1
@@ -133196,7 +132590,6 @@ shemsconseils.ma, 1
shemy.eu, 1
shena.co.uk, 1
shenandoahrealestate.org, 1
-shenandoahwoodwork.com, 1
shenannigans.tk, 1
shenbibi.com, 0
shenderman.ml, 1
@@ -133267,7 +132660,7 @@ shibeflix.com, 1
shibleysmiles.com, 1
shibui.art, 1
shibumi.com, 1
-shichidadoma.ru, 1
+shichidadoma.ru, 0
shico.org, 1
shidai88.cc, 1
shielder.com, 1
@@ -133293,6 +132686,7 @@ shiftj.is, 1
shiftkey.com, 1
shiftkey.pl, 1
shiftleft.io, 1
+shiftscale.ai, 1
shiga1.jp, 1
shigaben.or.jp, 1
shiganmartialarts.com, 1
@@ -133305,6 +132699,7 @@ shih-tzu-dogs.com, 1
shihabuddin.tk, 1
shihadwiki.com, 1
shiji.info, 1
+shijij.com, 1
shijing.me, 1
shikaku-test.com, 1
shikiryu.com, 1
@@ -133318,7 +132713,6 @@ shilvister.net, 1
shimi.blog, 1
shimi.guru, 1
shimi.net, 1
-shimi.photography, 1
shimitower.pw, 1
shimmo.de, 1
shimmy1996.com, 1
@@ -133347,7 +132741,6 @@ shinnyosangha.org, 0
shinochip.ru, 1
shinodadc-nakano.com, 1
shinsandenki.com, 1
-shinshu.id, 1
shinsyo.com, 1
shinta.ro, 1
shintoism.com, 1
@@ -133492,6 +132885,7 @@ shoelevel.com, 1
shoemakerywc.com, 1
shoenji.net, 1
shoeracks.uk, 1
+shoerenew.ca, 1
shoesonline.co.il, 1
shoesoutlet.tk, 1
shoestorebiz.tk, 1
@@ -133595,7 +132989,6 @@ shoporangetheory.com, 1
shoposal.com, 1
shopperexpertss.com, 1
shoppersdepuertorico.com, 1
-shoppersvineyard.com, 1
shoppies.tk, 1
shopping-cart-migration.com, 1
shopping-il.org.il, 1
@@ -133645,7 +133038,6 @@ shoppingeastbay.ga, 1
shoppingecho.ga, 1
shoppingecono.ga, 1
shoppingelectra.ga, 1
-shoppingenterprises.uk, 1
shoppingenvy.ga, 1
shoppingepic.ga, 1
shoppingexcel.ga, 1
@@ -133766,10 +133158,10 @@ shopunderwear.tk, 1
shopunilever.com, 1
shopupnorth.com, 1
shopzona.biz, 1
+shorakagroup.com, 1
shore.co.il, 1
shorebreaksecurity.com, 1
shorecomp.com, 1
-shorehamdental.ca, 1
shorehamfort.co.uk, 1
shorehillgolf.com, 1
shorelinelaserdesigns.com, 1
@@ -133814,7 +133206,6 @@ shossain.tk, 1
shost.ga, 1
shota-sekkotsuin.com, 1
shota.pictures, 1
-shota.soy, 1
shotbow.net, 1
shotdeck.com, 1
shotoniphone.ga, 1
@@ -133834,6 +133225,7 @@ shouldtest.net, 1
shouldtest.org, 1
shouohkai-dental.com, 1
shoushui.com, 1
+shoutmecrunch.com, 1
shoveltoss.com, 0
shovonhasan.com, 0
show.ad.jp, 1
@@ -133877,7 +133269,6 @@ shrapnel.com, 0
shrapnel.ga, 1
shraymonks.com, 1
shred.ch, 0
-shred.chat, 1
shredder.tk, 1
shredoptics.ch, 0
shreesatya.org, 1
@@ -133900,7 +133291,6 @@ shropshireautonomy.co.uk, 1
shropshirebowls.tk, 1
shrovetide.tv, 1
shrsl.com, 1
-shrt.ink, 1
shrub.ca, 1
shrug.fyi, 1
shrug.ml, 0
@@ -134012,6 +133402,7 @@ siapcn.it, 1
siava.ru, 1
sibalogtv.com.mx, 1
sibanyestillwater.com, 1
+sibasiach.ch, 1
sibauto.club, 1
sibekohirescaffolding.co.za, 1
siberas.de, 1
@@ -134055,7 +133446,6 @@ sicilyactivities.com, 1
sickbrothers.tk, 1
sicken.eu, 1
sickhouse.se, 1
-sicklyio.info, 1
sickmadworld.tk, 1
sicksadworld.space, 1
sicomasp.com, 1
@@ -134078,6 +133468,7 @@ sideleau.com, 1
sidemount-tauchen.com, 1
sideofburritos.com, 1
sideofburritos.social, 1
+sidepodcast.com, 1
sidepodcastdaily.com, 1
sidepodcastextra.com, 1
sideral.is, 1
@@ -134099,7 +133490,7 @@ sidomulyo.tk, 1
sidomunculstore.com, 1
sidorovich.tk, 1
sidpod.ru, 1
-sidsdock.org, 1
+sidrodrigues.com, 1
siduga.com, 1
sie.at, 1
siebenhirten7.at, 1
@@ -134178,7 +133569,6 @@ sigi.tk, 1
sigint.pw, 0
sigio.nl, 1
sigma-apartments.com, 1
-sigma-explorer.com, 1
sigma957.net, 1
sigmacomputers.ga, 1
sigmacomputing.com, 1
@@ -134211,7 +133601,6 @@ signalsblog.ca, 1
signalstart.com, 1
signalstuff.com, 1
signatu.com, 1
-signature.in.th, 1
signature365.com, 1
signaturedallas.com, 0
signatureplants.co.nz, 1
@@ -134296,7 +133685,6 @@ silberkiste.com, 1
silbox.ch, 1
sildenafilcitrate.cf, 1
sildenafilcitrate100mg.ga, 1
-sileanth.pl, 1
silent-clean.de, 1
silent.se, 1
silentartifact.org, 1
@@ -134446,7 +133834,7 @@ silversgarage.org, 1
silvershadow.cc, 1
silverspringdowntown.com, 1
silvertas.com, 1
-silvertime.co.uk, 1
+silvertoken.com, 1
silvertoncolorado.com, 1
silvertorrents.cf, 1
silverwaregames.io, 1
@@ -134491,6 +133879,7 @@ sime.am, 1
simeam-frank.de, 1
simeam.cloud, 1
simeam.de, 1
+simelek.com, 1
simeonoff.ninja, 1
simeononsecurity.ch, 1
simeononsecurity.com, 1
@@ -134528,7 +133917,6 @@ simoncommunity.org.uk, 0
simoncotsworth.com, 1
simone.pl, 1
simone.sh, 1
-simonehair.com, 1
simoneicolaro.online, 1
simonetti.nl, 1
simonevans.uk, 1
@@ -134585,7 +133973,7 @@ simplecrypt.io, 1
simplecryptoconvert.com, 1
simpledesk.net, 1
simpleflying.com, 1
-simplefx.com, 1
+simplefx.com, 0
simplegoodhealth.com, 1
simplehome.ml, 1
simplehrtime.com, 1
@@ -134608,6 +133996,7 @@ simpleports.net, 1
simpleports.org, 1
simpleprivacy.fr, 1
simpleprivacy.ovh, 1
+simplerandbetter.com, 1
simplereport.gov, 1
simplerezo.com, 1
simplerses.com, 1
@@ -134647,7 +134036,6 @@ simply-bob.de, 1
simply-pattinson.tk, 1
simply-pdf.de, 1
simply-premium.com, 1
-simply-quotes.net, 1
simply.com, 1
simply.scot, 1
simply2020.com, 1
@@ -134672,7 +134060,6 @@ simplyjet.tk, 1
simplymadeapps.com, 1
simplymeatsmoking.com, 1
simplymidget.tk, 1
-simplyml.com, 1
simplyowners.net, 1
simplyplans.co.uk, 1
simplyregister.net, 1
@@ -134692,17 +134079,24 @@ simrail.nl, 1
simranmehta.ga, 1
sims4hub.ga, 1
simsaddicts.info.hu, 1
+simsapras.my.id, 1
simscale.com, 1
simsek.biz.tr, 1
+simsid-dev-adpapi.azurewebsites.net, 1
simsid-dev-applnchrapi.azurewebsites.net, 1
+simsid-dev-audit.azurewebsites.net, 1
simsid-dev-datamanager.azurewebsites.net, 1
simsid-dev-newsalertsapi.azurewebsites.net, 1
+simsid-dev-oneroster.azurewebsites.net, 1
+simsid-dev-timetable.azurewebsites.net, 1
simsid-partner-aplaucherapi.azurewebsites.net, 1
+simsid-partner-audit.azurewebsites.net, 1
simsid-partner-datamanager.azurewebsites.net, 1
-simsid-partner-errorlogging.azurewebsites.net, 1
simsid-partner-newsalertsapi.azurewebsites.net, 1
+simsid-partner-oneroster.azurewebsites.net, 1
simsid-partner-sp.azurewebsites.net, 1
simsid-partner-stsapi.azurewebsites.net, 1
+simsid-partner-timetable.azurewebsites.net, 1
simsim.in, 1
simsimeki.com, 1
simsimi.ml, 1
@@ -134789,6 +134183,7 @@ singingblackbird.tk, 1
singingwillow.nl, 1
singita.com, 1
single-in-stuttgart.de, 1
+singlecellcourse.org, 1
singleeuropeansky.aero, 1
singlehandedsailing.tk, 1
singlenine.gq, 1
@@ -134844,16 +134239,14 @@ sint-joris.nl, 1
sint-sebastianus.tk, 1
sint-servattumus.tk, 1
sinta-d.com, 1
+sintaksenjadigital.com, 1
sintas.lt, 1
sintaxis.org, 1
-sintbaafsabdij.gent, 1
-sintbaafsabdijgent.be, 1
sintegrapi.com.br, 1
sinterama.biz, 1
sinterklaas-spelletjes.nl, 1
sinterklaasnet.tk, 1
sintomasdocancer.com, 1
-sintpietersabdijgent.be, 1
sintsationeel.nl, 1
sinuate.gq, 1
sinuel.ai, 1
@@ -134864,7 +134257,6 @@ sinustreatment.com.sg, 1
sinvideovault.com, 1
sinvik.com.ua, 1
sinzig.de, 1
-sioargentina.com.ar, 1
siofok.hu, 1
sion-colony.tk, 1
sion.info, 1
@@ -134881,6 +134273,7 @@ sipede.tk, 1
siphalor.de, 1
sipner.com, 1
sipo.tk, 1
+siproj.com.br, 0
sipse.gov.bf, 1
sipsevdi.com.tr, 1
sipstix.co.za, 1
@@ -134931,6 +134324,7 @@ sirtaptap.com, 1
sirtuins.com, 1
sirupybartonik.cz, 1
sirvio.eu, 1
+sirvival.be, 1
sirvoy.ca, 1
sirvoy.co.nz, 1
sirvoy.co.uk, 1
@@ -134944,6 +134338,7 @@ sirvoy.fi, 1
sirvoy.fr, 1
sirvoy.ie, 1
sirvoy.jp, 1
+sirvoy.me, 1
sirvoy.nl, 1
sirvoy.no, 1
sirvoy.se, 1
@@ -135041,7 +134436,6 @@ sitemap.solutions, 1
sitemaxiphilippe.ch, 1
sitemydesk.fr, 1
sitenv.org, 1
-sitepex.com, 1
siteplug.com, 1
sitepokupok.ru, 1
siterank.cf, 1
@@ -135106,7 +134500,6 @@ sixeyeshigh.com, 1
sixforkurd.tk, 1
sixgungroup.com, 0
sixmilepost.com, 1
-sixnines.net, 1
sixpack.gr, 1
sixpackband.tk, 1
sixpackholubice.cz, 1
@@ -135160,12 +134553,14 @@ sjs.org.hk, 1
sjtpo.org, 1
sjtravel.guru, 1
sjuhawknews.com, 1
+sjukom.net, 1
sjwheel.net, 1
sk-ii.com, 1
sk.tl, 1
skaala.com, 1
skaalen.com, 1
skaapkraalonline.co.za, 1
+skabour.co.uk, 1
skachat-filmi.info, 1
skachat-programmylini.ga, 1
skachat-shablon-rezyume-na-angliyskom-yazyk.tk, 1
@@ -135182,7 +134577,6 @@ skandia.se, 1
skankofamerica.com, 1
skanray.com, 0
skarke.se, 1
-skarla.com, 1
skarox.com, 1
skarox.ee, 1
skarox.eu, 1
@@ -135210,17 +134604,19 @@ skblab.ru, 1
skbrgy177.com, 1
skcmanagement.com, 1
skcwood.com, 1
-skday.com, 0
skedda.com, 1
skeditor.tk, 1
skeeley.com, 1
skeetads.com, 1
skegnesstec.ac.uk, 1
skei.org, 1
+skendongpoetry.com, 1
skepneklaw.com, 1
skepp.com, 1
skepticalsports.com, 1
+skeptichaven.org, 1
skeptics.org, 1
+skepticsinthepub.org, 1
skeptik.tk, 1
skeptikon.fr, 1
skeptvet.com, 1
@@ -135229,7 +134625,7 @@ sketch.jpn.com, 1
sketchbox.tk, 1
sketchmagazine.net, 1
sketchmonk.tk, 1
-sketchnote.co, 0
+sketchnote.co, 1
sketchy.tk, 1
skew.ch, 1
skezi.eu, 1
@@ -135243,7 +134639,6 @@ skhosting.eu, 1
skhron.com.ua, 1
skhron.eu, 1
ski-planet.com, 1
-ski.org, 1
skiaustria.at, 1
skibbereencomhaltas.tk, 1
skibikers.tk, 1
@@ -135279,6 +134674,7 @@ skill.tk, 1
skillablers.com, 1
skilldnsproc.com, 1
skilletfood.com, 1
+skillfloor.com, 1
skillmoe.at, 1
skillnestpro.cloud, 1
skillonnet.com, 1
@@ -135290,6 +134686,7 @@ skillsenhancementtx.gov, 1
skillsfactory.at, 1
skillshare.com, 1
skillsoftcompliance.com, 1
+skilltory.com, 1
skilltran.com, 1
skillup.co, 0
skillwaze.com, 1
@@ -135299,11 +134696,11 @@ skimonarch.com, 1
skin-cosmetic.eu, 1
skin-fluencer.com, 1
skin.club, 1
+skinarma.id, 1
skinboost.ga, 1
skinboost.ml, 1
skincare-note.com, 1
skincareagent.cf, 1
-skindb.net, 1
skineducation.eu, 1
skinetic.eu, 1
skinews.tk, 1
@@ -135364,6 +134761,7 @@ sklave-daniel.org, 1
sklepbhp.online, 1
sklepsnowboardowy.pl, 1
sklepwielobranzowymd.com, 1
+sklexpert.ru, 1
sklisen.tk, 1
skloposud.com, 1
sklotechnik.cz, 1
@@ -135387,6 +134785,7 @@ skoleforeningen.org, 1
skolem.de, 1
skolfederation.se, 1
skolid.se, 1
+skolkavazka.cz, 1
skolni-system.eu, 1
skolnieks.lv, 1
skolniweby.cz, 1
@@ -135425,6 +134824,7 @@ skriptorium.de, 1
skrivargarden-nes.cf, 1
skrivebordet.tk, 1
skrsv.net, 1
+skruffl.wtf, 1
skrundz.ca, 1
skrundz.com, 1
skrundz.id, 1
@@ -135494,7 +134894,6 @@ skyclinic.ua, 0
skycmd.net, 1
skyder.com.mx, 0
skyder.mx, 0
-skydiveaddiction.com, 1
skydivegeronimo.com.au, 1
skydiverecuador.com, 1
skydivingexperiences.co.uk, 1
@@ -135543,7 +134942,6 @@ skylineservers.com, 1
skylocker.net, 1
skyltd.com.ua, 1
skyltmax.se, 1
-skym-mc.fr, 1
skymail.de, 1
skymass.xyz, 1
skyminds.net, 1
@@ -135562,7 +134960,6 @@ skyoceanblue.com, 1
skyoy.com, 0
skypanic.com, 1
skypark.tk, 1
-skypc.com.ar, 1
skypce.net, 1
skype, 1
skype.com, 0
@@ -135605,9 +135002,7 @@ skyterrawellness.com, 1
skytickets.ga, 1
skytiger.ga, 1
skytown.ga, 1
-skytterlogg.no, 1
skytterloggen.no, 1
-skyvacation.xyz, 1
skyvr.mx, 1
skywalkersa.ga, 1
skywallphotography.com, 1
@@ -135670,7 +135065,6 @@ slate.fr, 1
slate.to, 1
slatechart.com, 1
slated.ie, 0
-slatemc.com, 1
slatemc.fun, 1
slateteams.com, 0
slathering.cf, 1
@@ -135693,7 +135087,6 @@ slavnineznami.cz, 1
slavyansk-news.ru, 1
slaws.io, 1
slayden.com, 1
-slayer.tech, 1
slayersonline.net, 1
slaytec.com, 1
slb.ru, 1
@@ -135742,7 +135135,6 @@ sleio.com, 1
sleismann.de, 1
sleismann.eu, 1
sleismann.org, 1
-slekta.online, 1
slektforsker.no, 1
slemen.tk, 1
slepsluzbabeograd.org, 1
@@ -135767,6 +135159,7 @@ slidemembers.com, 1
slideproducts.com, 1
slides.zone, 1
slideshare.net, 1
+slidingright.com, 1
slido.com, 1
slidstvo.info, 1
sliedrecht.nl, 1
@@ -135783,7 +135176,6 @@ slimetutorial.com, 1
slimgrafix.cz, 1
slimhost.com.ua, 0
slimonomics.com, 0
-slimopweg.be, 1
slimpay.com, 1
slimspots.com, 1
slimster.nl, 1
@@ -135813,6 +135205,7 @@ slizgawka.eu, 1
slizzrapp.com, 1
slks.dk, 1
slksoftware.com, 1
+sllabonneetoile.fr, 1
sllatina.tk, 1
slm-sla.tk, 1
slma.tk, 1
@@ -135846,7 +135239,6 @@ slotcatalog.com, 1
sloterplas-management.nl, 1
slotfara.net, 1
slotgames.pro, 1
-slotgratisonline.net, 1
slothless.com, 1
sloths.org, 1
sloticagames.com, 1
@@ -135921,6 +135313,7 @@ sm-supplements.gr, 1
sm.ms, 1
sm161.cn, 1
sm2016.ch, 1
+sm2ct.cn, 1
sma-dev.de, 1
sma-europe.eu, 0
sma-gift.com, 1
@@ -135929,6 +135322,7 @@ sma.org.rs, 1
smaakvolnh.nl, 1
smackhappy.com, 0
smadav.ml, 1
+smahelova.cz, 1
smajlovic.info, 1
smaksbanken.no, 1
smalandscountryclub.tk, 1
@@ -135987,6 +135381,7 @@ smaragderna.tk, 1
smares.de, 1
smaridibor.tk, 1
smarinintgal.tk, 1
+smark.ai, 1
smarpshare.com, 1
smarriti.it, 1
smart-bezpeka.com, 1
@@ -136062,14 +135457,15 @@ smartfit.cz, 1
smartfixmarburg.de, 1
smartfons.tk, 1
smartftp.com, 1
+smartfusion.solutions, 1
smartgirledits.com, 1
smartgirls.tk, 1
smartglassworld.net, 1
-smartgridsecurity.com, 1
smartguardzone.kr, 1
smarthdd.com, 1
smarthealthinnovationlab.com, 1
smarthrms.com, 1
+smarthus-elektro.no, 1
smartick.com.do, 1
smartiflix.com, 1
smartius.it, 1
@@ -136107,7 +135503,6 @@ smartnoob.de, 1
smartoctopus.art, 1
smartology.net, 1
smartoneclub.com, 1
-smartours.com, 1
smartpanelsmm.com, 1
smartpatika.hu, 1
smartpheromones.com, 1
@@ -136129,7 +135524,6 @@ smartrak.com, 1
smartrecruiters.com, 1
smartrentacar.ro, 1
smartrequest.com, 1
-smartrise.us, 1
smartroutes.ie, 1
smartroutes.io, 1
smartsecurity.com.ua, 1
@@ -136169,7 +135563,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
@@ -136237,6 +135631,7 @@ smileback.co.uk, 1
smilebert.at, 1
smilecliniq.com, 1
smilecon.cf, 1
+smiledentalriverview.com, 1
smiledirectsales.com, 1
smiledoctors.com, 1
smileeye.com.tw, 1
@@ -136286,7 +135681,6 @@ smithsystem.net, 1
smithteresa.tk, 1
smithvillehomehardware.ca, 1
smithwealth.com.au, 1
-smits.com, 1
smits.frl, 1
smitsdesigncenter.nl, 1
smitsmail.net, 1
@@ -136322,7 +135716,8 @@ smokefreeclinic.com.au, 1
smokefreerowan.org, 1
smokefreestage.jp, 1
smokehouse.com, 1
-smokeping.pl, 1
+smokeopacitytestingglendora.com, 1
+smokeping.pl, 0
smoker.tk, 1
smokesignalnews.net, 1
smokestore.bg, 1
@@ -136342,8 +135737,11 @@ smolensk.tk, 1
smolkatours.com, 1
smolnikova.tk, 1
smolny.org, 1
+smolsites.eu, 1
+smolyanvote.com, 1
smoo.st, 1
smooth-e.net, 1
+smoothambler.com, 1
smoothfreight.ca, 1
smoothics.at, 1
smoothics.com, 0
@@ -136386,7 +135784,7 @@ smsg-dev.ch, 0
smshub.com, 1
smsinger.com, 1
smsk.email, 1
-smskeywords.co.uk, 1
+smskeywords.co.uk, 0
smskmail.com, 1
smsnic.com, 0
smssalesforce.online, 1
@@ -136397,6 +135795,7 @@ smstr.cz, 1
smsyi.com, 1
smszone.tk, 1
smtchahal.com, 1
+smtcinema.com, 0
smtcn.cc, 1
smtenants.cn, 1
smtji.com, 1
@@ -136420,6 +135819,7 @@ smx.net.br, 1
smxconventioncenter.com, 1
smys.uk, 1
smzero.com.br, 1
+sn-tim.de, 1
sn0int.com, 1
snab-ural.ga, 1
snabbacash.no, 1
@@ -136451,6 +135851,8 @@ snap-ci.com, 1
snapaffiliate.net, 1
snapappointments.com, 1
snapbuzz.tk, 1
+snapewife.com, 1
+snapfairs.com, 1
snapfinance.com, 1
snapintegrations.net, 1
snapkit.com, 1
@@ -136538,7 +135940,6 @@ snj.pt, 1
snlianshang.com, 1
snnwes.de, 1
sno-tek.net, 1
-snoerendevelopment.nl, 0
snooker.tk, 1
snoonet.org, 1
snoot.club, 1
@@ -136590,10 +135991,9 @@ snowshoedistrictwv.gov, 1
snowsphere.com, 1
snowsubs.moe, 1
snowvictoria.ga, 1
-snowy.land, 1
snowyluma.com, 1
snowyluma.me, 1
-snrat.com, 0
+snrat.com, 1
snrd-africa.net, 1
snrd.de, 1
snrd.eu, 1
@@ -136604,7 +136004,6 @@ sns-dev.com, 1
sns-tg.pl, 1
snsirius.cf, 1
snsp.es, 1
-snsp.nl, 1
snsp.ro, 1
snt-izumrud.ru, 1
sntry.cc, 1
@@ -136708,7 +136107,6 @@ socialmarketingday.nl, 1
socialmatch.de, 1
socialmaturityscore.com, 1
socialmedia-manager.gr, 1
-socialmediadisruption.com, 1
socialmedias.tk, 1
socialmeeps.ml, 1
socialnet.ml, 1
@@ -136770,13 +136168,13 @@ sociosjournal.com, 1
socious.io, 1
sociusian.gq, 1
sockfetish.net, 1
-sockscap64.com, 1
socksfromholland.com, 1
socktopus.io, 1
socomforums.tk, 1
soconj.gov, 1
soconnect.com.br, 1
socoselling.com, 1
+socosolarpower.com, 1
socprime.com, 1
socradar.io, 1
socratec-pharma.de, 1
@@ -136800,10 +136198,7 @@ soderestore.com, 1
sodermans.com, 1
soderparr.com, 1
sodexam.pro, 1
-sodi.gent, 1
sodi.nl, 1
-sodigent.be, 1
-sodigent.gent, 1
sodirace.com, 0
sodo.top, 1
sodo969.org, 1
@@ -136909,6 +136304,7 @@ softwarebeveiligingtestdomein.be, 1
softwarechris.com, 1
softwarecloud.ml, 1
softwareclub.tk, 1
+softwaregeek.nl, 1
softwarehexe.de, 1
softwarepara.net, 1
softwarepatenten.tk, 1
@@ -136973,8 +136369,11 @@ solalnathan.com, 1
solalt.com, 1
solana-active.tk, 1
solanacasinos.io, 1
+solanawizard.com, 1
+solandsimonasphalt.com, 1
solanocounty.gov, 1
solanowonen.nl, 1
+solar-projects.eu, 1
solarace.tk, 1
solaradventures.icu, 1
solarafrica.com, 1
@@ -137028,7 +136427,6 @@ solcyber.com, 1
soldamontanhabeachwear.com.br, 1
soldarizona.ga, 1
soldaten-genealogie.tk, 1
-soldbygagan.com, 1
soldbypatrice.com, 1
solden.be, 1
soldesduck.be, 1
@@ -137044,7 +136442,6 @@ soledadpenades.com, 0
soleil33.net, 1
solemare-hotel.it, 1
solencell.com.tr, 1
-solentbasketball.co.uk, 1
solentbubblesandbounce.co.uk, 1
solfegiator.ch, 0
solfipinformatique.org, 1
@@ -137122,12 +136519,11 @@ solongandthanksforallthe.fish, 1
soloparati.cf, 1
solopress.com, 1
soloprivacidad.com, 1
+soloproaudio.com, 1
soloproductos.top, 1
soloroboto.com, 0
solosesso.tk, 1
solostocks.com, 1
-solostocks.com.ar, 1
-solostocks.com.br, 1
solostocks.com.co, 1
solostocks.com.mx, 1
solostocks.it, 1
@@ -137222,7 +136618,6 @@ sommercamp.wien, 0
sommerhusudlejning.com, 1
sommerkult.de, 1
sommerles.no, 1
-sommerplassen.no, 1
sommerrodelbahn-gutach.de, 1
somnam.tk, 1
somni.one, 1
@@ -137240,6 +136635,7 @@ sompo.com.br, 1
sompohorizon.com, 1
somsak.de, 1
somspiritualcenterla.org, 1
+somtelecom.cat, 1
somtumder.com, 1
somuchbetterwithage.com, 1
somweyr.de, 1
@@ -137257,7 +136653,6 @@ son-tolkovatel.tk, 1
son.ru, 1
sona-gaming.com, 1
sona.fr, 1
-sonalisharma.co.in, 1
sonalsrinath.com, 1
sonar.ga, 1
sonaraamat.com, 1
@@ -137267,6 +136662,7 @@ sonarsource.com, 1
sonavankova.cz, 1
sonaza.com, 1
sonaza.fi, 1
+sonciel.com, 1
soncini.ch, 1
soncnaura.si, 1
sondebase.com, 1
@@ -137482,7 +136878,6 @@ sosmicro.tk, 1
sosnovka.ga, 1
soso.ga, 1
soso.loan, 1
-soso.stream, 1
sosoft.tk, 1
sosoftplay.co.uk, 1
sosok.tk, 1
@@ -137534,6 +136929,7 @@ soukka-seura.fi, 1
soukodou.jp, 1
soul-of-style.com, 1
soul-source.co.uk, 1
+soul2path.com, 1
soulberber.com, 1
soulc.ml, 1
soulcasa.com.br, 1
@@ -137560,7 +136956,6 @@ soulyfunerals.co.nz, 1
soulyi.io, 1
soumen.tk, 1
soumikghosh.com, 1
-soumission-assurances.ca, 1
soumissionalarme.ca, 1
soumya.xyz, 1
soumya92.me, 1
@@ -137610,7 +137005,6 @@ sounds-resource.com, 1
sounds.koeln, 1
soundservice.gr, 1
soundshepard.tk, 1
-soundslike.gent, 1
soundthenaline.com, 1
soundtrace.com, 1
soundtrash.tk, 1
@@ -137620,7 +137014,6 @@ soundwavefestival.tk, 1
soundzimega.tk, 1
soungui.cm, 1
soungui.com, 1
-soungui.net, 1
soupbuahtaza.id, 1
soupleyoga.com, 1
souqfriday.com, 1
@@ -137664,7 +137057,7 @@ southbridge-ma.gov, 1
southcarolinahealth.tk, 1
southcarolinatitlesearch.com, 1
southcentral.edu, 1
-southcoastlocksmiths.com.au, 1
+southcoastlocksmiths.com.au, 0
southdakotahealth.tk, 1
southdakotanet.tk, 1
southeastasianarchaeology.com, 1
@@ -137694,7 +137087,6 @@ southfieldtownshipmi.gov, 1
southfloridaopenhousesearch.com, 1
southforkamericanriver.net, 1
southgatemi.gov, 1
-southgatesystems.com, 1
southjacksonville-il.gov, 1
southjerseyhomes.info, 1
southkentschool.org, 1
@@ -137824,7 +137216,7 @@ sp-moebel.net, 1
sp-pn.com, 1
sp-sites.com.au, 1
sp03.de, 1
-sp2fe.eu, 1
+sp2fe.eu, 0
sp2hari.com, 1
spa-center.tk, 1
spa-cloud.com, 1
@@ -137834,6 +137226,7 @@ spac2stock.com, 1
spaccamuro.it, 1
space-art.tk, 1
space-combat.tk, 1
+space-for.business, 1
space-inc.co.jp, 1
space-it.de, 1
space-mining.cf, 1
@@ -137945,7 +137338,6 @@ spanner.works, 1
spanningtreenetworks.com, 1
spanpine.gq, 1
spanstindrundt.no, 1
-spantrix.com, 1
spanyolul.hu, 1
spar-dich-frei.com, 1
spar-ics.com, 1
@@ -137965,9 +137357,7 @@ spare.no, 1
spare.se, 1
sparefoot.com, 1
sparendirekt.at, 0
-sparepartsnow.de, 1
spargrancanaria.es, 1
-spark.cn, 1
sparkandglass.com, 1
sparkar.com, 1
sparkasse-pos.de, 1
@@ -138029,6 +137419,7 @@ spazioasperger.it, 1
spaziobenedetti.com.br, 1
spazturtle.co.uk, 1
spazzacamino.roma.it, 1
+spb-apple-helpgroup.com, 1
spb-clean.ru, 1
spb-electric.ru, 1
spbatelec.fr, 1
@@ -138090,6 +137481,7 @@ specialplasticparts.com, 1
specialproperties.com, 0
specialsite.tk, 1
specialtechnique.tk, 1
+specialty-air.com, 0
specialtyalloys.ca, 1
specialtyjets.ca, 1
specialtyrigging.com, 1
@@ -138176,7 +137568,6 @@ speich.net, 1
spek.tech, 1
spekit.com, 1
spelaspelautomater.ga, 1
-speleio.info, 1
speleo-explo.fr, 1
speleo.live, 1
speletrodomesticos.com.br, 1
@@ -138201,7 +137592,6 @@ spenglerei-shop.de, 1
spenny.tf, 1
spensix-pekalongan.tk, 1
spentra.com, 1
-sperandii.it, 1
sperformance.shop, 1
sperkmoda.cz, 1
sperrmuell-berlin.de, 1
@@ -138223,7 +137613,6 @@ sphericalmagic.com, 1
sphericalvision.cz, 1
sphseagleeye.com, 1
sphynx-cats.com, 1
-sphynx.cat, 1
sphynxboyz.com.au, 1
spi-ind.com, 1
spicandspanroofrestoration.com.au, 1
@@ -138353,7 +137742,6 @@ spithoven.tk, 1
spjaet.dk, 1
splashily.gq, 1
splat00n.ink, 1
-splatjov.space, 1
splatnet3.net, 1
splawoffice.com, 1
splconsulenza.it, 1
@@ -138412,9 +137800,11 @@ sponsor.software, 1
spoofhaus.com, 1
spoofy.ee, 1
spookbook.net, 1
+spookhost.xyz, 1
spookquest.com, 1
spooks.ga, 1
spookyinternet.com, 1
+spookysrv.com, 1
spoorcam.nl, 1
spoorts.io, 1
spordiinfo.ee, 1
@@ -138439,6 +137829,7 @@ sportabee.com, 0
sportadictos.com, 1
sportal.se, 1
sportalliance.com, 1
+sportausbildung.com, 1
sportbikeadventures.com, 1
sportboot.mobi, 1
sportburo.kz, 1
@@ -138493,6 +137884,7 @@ sports-news-today.ml, 1
sports-online.cf, 1
sports-sites.ml, 1
sports-wear.tk, 1
+sportsandgames.co.tt, 1
sportsandnews.tk, 1
sportscanada.tk, 1
sportscentreuk.co.uk, 1
@@ -138547,7 +137939,6 @@ spotlessohio.com, 1
spotlike.me, 1
spotme.fit, 1
spotmefit.com, 1
-spotnews18.com, 1
spotonlive.dk, 1
spotonphoto.co.nz, 1
spotpetins.com, 1
@@ -138678,6 +138069,7 @@ spstechnical.com, 1
spt.tf, 1
spthk.com, 1
sptk.org, 1
+spu.ac.za, 1
spuda.net, 1
spuffin.com, 1
spufpowered.com, 1
@@ -138699,8 +138091,8 @@ spyequipmentuk.co.uk, 1
spyoptionstraders.com, 1
spypornone.com, 1
spyprofit.ru, 1
-spyre.com, 1
-spyretx.com, 1
+spyre.com, 0
+spyretx.com, 0
spyroszarzonis.com, 1
spysder.com, 1
spyse.com, 1
@@ -138723,7 +138115,6 @@ sql-query-tool-exact-online.nl, 1
sql-query-tool.com, 1
sql-und-xml.de, 1
sqlapius.net, 1
-sqldbm.com, 1
sqli.cz, 1
sqli.rocks, 1
sqlinjection.cz, 1
@@ -138753,6 +138144,7 @@ square.it, 1
square.ly, 1
square.mx, 1
square.site, 1
+square1.de, 1
squarecdn.com, 1
squaredancedance.tk, 1
squaredaway.co.nz, 1
@@ -138771,7 +138163,6 @@ squareinstallments.com, 1
squareinvite.com, 1
squareinvoices.com, 1
squarelab.it, 1
-squaremeter24.com, 1
squaremetres.ng, 1
squaremktg.com, 1
squareoffer.com, 1
@@ -138792,7 +138183,6 @@ squeezemetrics.com, 1
squelcher.cf, 1
squibby.ml, 1
squid.gay, 1
-squided.co, 1
squidnovels.tk, 1
squido.ch, 1
squidparty.com, 1
@@ -138868,6 +138258,7 @@ sritvermont.tk, 1
srix.ml, 1
srkarra.com, 1
srkb.net, 1
+srlconsult.ro, 1
srle.tk, 1
srmi.biz, 1
srmllc.net, 1
@@ -138929,7 +138320,6 @@ ssab.gov, 1
ssatpa.com, 1
ssatripura.com, 1
ssb.ee, 1
-ssbjk.org, 1
ssbljk.com, 1
ssbrm.ch, 1
ssbwanamingo.com, 1
@@ -139020,6 +138410,7 @@ sst-racing.ch, 1
sst.ru, 1
sstaging.com, 1
sstarnation.com, 1
+ssu.edu.ph, 1
ssuiteoffice.com, 1
ssuitesoft.com, 1
st-annen-museum.de, 1
@@ -139029,7 +138420,6 @@ st-kilian-markt-erlbach.de, 1
st-li.com, 0
st-news.de, 1
st-nicolaus.sk, 1
-st-sleek.com, 1
st-steuern.de, 1
st3tailor.com.br, 1
st42.fr, 1
@@ -139048,12 +138438,12 @@ staatvanhetnederlandscheinternet.nl, 1
staatvanhetnederlandseinternet.nl, 1
stabekkskole.no, 1
stabelino.tk, 1
-stabila.online, 1
stabilimento.it, 1
stabilizatory.ga, 1
stableflect.finance, 1
stablelib.com, 1
stablina.tk, 1
+stacabinetdepot.com, 1
staceygillinphotography.com, 1
stacisezeptat.cz, 1
stackery.io, 1
@@ -139066,7 +138456,6 @@ stackstartup.tech, 1
stacykeifer.com, 1
stacylight.com, 1
stad.gent, 1
-stadgent.be, 1
stadiamaps.com, 1
stadiaworld.com, 1
stadionmanager.com, 1
@@ -139074,7 +138463,6 @@ stadionwelt-business.de, 1
stadionwelt.de, 1
stadlwirt.at, 1
stadm.com, 1
-stadspaleizengent.be, 1
stadt-frechen.de, 1
stadtbauwerk.at, 0
stadtcentrum.it, 1
@@ -139083,7 +138471,6 @@ stadtfabrikanten.org, 0
stadtkapelle-oehringen.de, 1
stadtpapa.de, 1
stadtplan-ilmenau.de, 1
-stadtreinigung.hamburg, 1
stadtteilhaus-gaisental.de, 1
stadtwerke-sw.de, 1
staer.ro, 1
@@ -139160,7 +138547,6 @@ stagingbox.uk, 1
stagingcleargrain.com.au, 1
stagingelpactest.eu, 1
stagingpepocoin.com, 1
-stagmarketim.com, 1
stagoz.com, 1
stahlen.dk, 1
stahlfors.com, 1
@@ -139180,7 +138566,6 @@ stairmaster.tk, 1
stairnosingfirst.co.uk, 1
stairsupply.dk, 1
stajka.tk, 1
-stake-tr.com, 1
stakecalc.com, 1
staked.us, 1
stakeholders.ca, 1
@@ -139212,7 +138597,6 @@ staltrade.uz, 1
stalwartshopping.com, 0
stalworld.tk, 1
stalynajem.cz, 1
-stamant.org, 1
stamboomforum.nl, 1
stamboomgids.nl, 1
stamgent.be, 1
@@ -139254,6 +138638,7 @@ standardmetrics.io, 1
standardnotes.com, 1
standards.bible, 1
standards.gov, 1
+standardsofexcellencelv.org, 1
standardstraversal.jp, 1
standardwohnungsbaukredit.ag, 1
standardwohnungsbaukredit.biz, 1
@@ -139282,8 +138667,6 @@ standwithhaiti.org, 1
stanfordny.gov, 1
stang.moe, 1
stangeland.tk, 1
-stanicezoo.cz, 1
-stanislav-lysenko.lawyer, 1
stankingma.com, 1
stankingma.nl, 1
stanleyblackanddecker.com, 1
@@ -139322,7 +138705,6 @@ starbeans.vn, 1
starbucks.vn, 1
starburns.audio, 1
starbusiness.ml, 1
-starbyte.co.uk, 1
starchild.uk, 1
starcitizen-kantine.de, 1
starcitizen.tools, 1
@@ -139357,6 +138739,7 @@ stargate.how, 1
stargazer.de, 1
stargift.ch, 1
starglancer.ddns.net, 1
+starhaven.io, 1
starherald.com, 1
starheroes.io, 1
stariders.com, 1
@@ -139399,10 +138782,10 @@ starreview.tk, 1
starring.work, 1
starrosesandplants.com, 1
starry.blue, 1
+starryhometex.com, 1
starrynight.com, 1
starryvoid.com, 1
starsam80.net, 1
-starsandmanifolds.xyz, 0
starsbattle.net, 1
starsessions.cc, 1
starsguru.com, 1
@@ -139432,10 +138815,8 @@ starter.social, 1
startersiteweb.com, 1
startgaming.net, 1
startgeophysical.ga, 1
-starthubs.uk, 1
starti.com.ua, 1
startinganllcbusiness.com, 1
-startingent.be, 1
startingyourbusiness.com, 1
startinnov.com, 1
startit.bot, 1
@@ -139445,7 +138826,6 @@ startle.cloud, 1
startle.studio, 1
startlgvtraining.co.uk, 1
startlinks.tk, 1
-startliste.info, 1
startmail.com, 1
startner.com, 1
startnowcornwall.org.uk, 1
@@ -139453,6 +138833,7 @@ startpage.com, 1
startpage.info, 1
startpage4u.tk, 1
startplats.tk, 1
+startplaying.games, 1
startpoint.tk, 1
startrekwiki.com, 1
starts.sh, 1
@@ -139462,9 +138843,7 @@ startup-stack.com, 1
startup-stack.tech, 1
startupbros.com, 1
startupchile.org, 1
-startupery.com, 1
startupgov.lt, 1
-startuphakk.com, 1
startupislandtaiwan.com, 1
startupislandtaiwan.net, 1
startupislandtaiwan.org, 1
@@ -139487,7 +138866,6 @@ startupswitzerland.com, 1
startuptechstack.com, 1
startupum.ru, 1
startupweb.io, 1
-startupyourmind.com, 1
startw.cf, 1
startwithcompassion.com, 1
startwithpieter.com, 0
@@ -139558,7 +138936,6 @@ stationmedia.tk, 1
stationnement-angouleme.com, 1
stationnement-stdizier.fr, 1
stationnement-villeurbanne.fr, 1
-stationstuinenbarendrecht.nl, 0
statista.com, 1
statistik-online.org, 1
statistik-seminare.de, 1
@@ -139599,7 +138976,9 @@ stavropol-news.net, 1
stavros.ovh, 1
staxflax.tk, 1
stay-curious.at, 1
+stay.at, 1
stay4all.nl, 1
+stayaka.com, 1
stayby.me, 1
staycurrent.eu, 1
staycurrent.nl, 1
@@ -139608,6 +138987,7 @@ stayglam.com, 1
stayhotelwaikiki.com, 1
stayinbusiness.nl, 1
stayingfitter.com, 1
+stayksa.com, 1
staylovely.tk, 1
stayme.cz, 1
stazi.tk, 1
@@ -139701,6 +139081,7 @@ steef389.eu, 1
steel-pc.fr, 1
steel-pc.lu, 1
steel-roses.de, 1
+steel.gov.in, 1
steelbeasts.org, 0
steelecountymn.gov, 1
steelecountynd.gov, 1
@@ -139788,7 +139169,6 @@ steinmetz.cloud, 1
stek-usa-shop.com, 1
stek-usa.com, 1
stekelenburg.me, 1
-steklein.de, 1
steleentechnischevraag.com, 1
steleentechnischevraag.eu, 1
steleentechnischevraag.nl, 1
@@ -139811,6 +139191,7 @@ stellarium-gornergrat.ch, 1
stellarosa-clinic.net, 1
stellarpurr.me, 1
stellartraderacademy.co.uk, 1
+stelleflix.club, 1
stelleninserate.de, 0
steller.co, 1
stelletjeafgebeuktemongolen.tk, 1
@@ -139872,8 +139253,10 @@ stephaniecalahan.com, 1
stephaniedeady.ie, 1
stephaniedeiters.com, 1
stephaniedorrphotography.com, 1
+stephaniefarbermd.com, 1
stephanieklein.com, 1
stephanielacroix.nl, 1
+stephanielantry.com, 1
stephanieleonidasfan.tk, 1
stephanieschreiber.com, 1
stephanoptiek.nl, 1
@@ -139885,7 +139268,6 @@ stephencorp.com, 1
stephencreilly.com, 1
stephenhaunts.com, 1
stephenheathphotography.com, 1
-stephenj.co.uk, 1
stephenperreira.com, 1
stephenreescarter.net, 1
stephenschirle.gq, 1
@@ -140053,7 +139435,6 @@ stgeorgeks.gov, 1
stgermainwi.gov, 1
stghv.com, 1
stgiannanorthfieldnj.org, 1
-stgileshotels.com, 1
stgy.it, 1
sth.sh, 1
sthelen.eu, 1
@@ -140074,7 +139455,7 @@ stichtingtwigadukina.nl, 1
stichtingvermogensdoel.nl, 1
stichtingwerkopmaat.nl, 1
stichtingwwtoegankelijk.nl, 1
-stichtsevecht.nl, 1
+stichtsevecht.nl, 0
stick2bike.de, 1
stickandpoketattookit.com, 1
stickerapp.com, 1
@@ -140094,6 +139475,7 @@ sticky.to, 1
stickypassword.com, 1
stickypigbbq.com, 1
stickywilds.com, 1
+sticonline.in, 1
stidmobile-id.com, 1
stiebel-eltron.com.au, 1
stiebel.co.nz, 1
@@ -140112,7 +139494,6 @@ stiftung-lq.com, 1
stiftung-lq.net, 1
stiftungleostrauss.com, 1
stiftunglq.com, 1
-stiftungsland.de, 1
stigaview.com, 1
stihi-na-zakaz.net, 1
stihiya.tk, 1
@@ -140190,8 +139571,6 @@ stjustin.org, 1
stkeverneparishcouncil.org.uk, 1
stkevin-stbenedict.org, 1
stkildaosteopathy.com.au, 1
-stl-models.com, 1
-stl-models.gallery, 1
stla.net, 1
stlautoenhancements.com, 1
stlawco.gov, 1
@@ -140235,7 +139614,6 @@ stmatthewri.org, 1
stmattsparish.com, 1
stmattsucc.org, 1
stmfdky.gov, 1
-stmgoods.com, 1
stmichaellvt.com, 1
stmichaelmn.gov, 1
stmichaelsmajors.tk, 1
@@ -140290,7 +139668,6 @@ stoddardwi.gov, 1
stodieck.com, 1
stodlinjen.se, 1
stoeckel.info, 0
-stoemp.gent, 1
stoffelnet.de, 1
stoffhandwerk.tk, 1
stoffkontor-wennigsen.de, 1
@@ -140353,13 +139730,13 @@ stonemain.eu, 1
stonemanbrasil.com.br, 1
stoneproperty.ie, 1
stoneriverhardwoods.com, 1
-stoners-euphoria.com, 1
stonerwitch.tk, 1
stonesfamilyrestaurant.com, 1
stonesgarden.pl, 1
stonetribute.tk, 1
stonewallwcidtx.gov, 1
stoneworld.ga, 1
+stonexbullion.com, 1
stoneydsp.com, 1
stoningtonboroughct.gov, 1
stonkslab.com, 1
@@ -140421,7 +139798,6 @@ stopthethyroidmadness.com, 1
stopthinkconnect.jp, 1
stopves.tk, 1
stor-guard.com, 1
-stora.mn, 1
storables.com, 1
storage-base.de, 1
storage-books.gq, 1
@@ -140514,7 +139890,6 @@ storyliebe.de, 1
storylingoo.com, 1
storymalayalam.com, 1
storyoneforty.com, 1
-storysaver.co.kr, 1
storysift.news, 1
storytea.top, 1
storytel.ae, 1
@@ -140546,6 +139921,7 @@ stovokzal.com.ua, 1
stowarzyszeniegetback.pl, 1
stoxford.com, 1
stp-ip.com, 1
+stp-ip.net, 1
stp.dev, 1
stpatrick.tk, 1
stpatrickathenscatskill.org, 1
@@ -140578,7 +139954,7 @@ straffordpub.com, 1
strahlende-augen.info, 1
strahlkennel.com, 1
strahovanienet.tk, 1
-strahovshik.online, 1
+straightbeam.com, 1
straightcurlyhair.tk, 1
straightlinetutoring.com, 1
straightnude.com, 1
@@ -140634,6 +140010,7 @@ strassberger.tk, 1
strasweb.fr, 1
stratagemlabs.tech, 1
stratahealth.com, 1
+stratcat.com, 1
stratebi.com, 1
strategery.io, 1
strategia.tk, 1
@@ -140818,7 +140195,6 @@ strictlycanvas.com, 1
strictlynormal.com, 1
strideengineering.com.au, 1
strietwaelder-blaettche.de, 1
-strijdmeevoorvrede.gent, 1
strijkkraal.tk, 1
strijkshop.be, 1
strikeone.io, 1
@@ -140834,6 +140210,7 @@ stripeassets.com, 1
striped.horse, 1
stripped-anarchy.xyz, 1
strippersinthehoodxxx.com, 1
+stripperweb.club, 1
striptizer.tk, 1
stritai.ru, 1
strixmusic.com, 1
@@ -140953,7 +140330,6 @@ stuartcrawford.nz, 1
stuarteggerton.com, 1
stuartfl.gov, 1
stuartgroup.co.uk, 1
-stuartmcbride.com, 1
stuartmorris.id.au, 1
stuartmorris.me, 1
stuartmorris.name, 1
@@ -140978,11 +140354,11 @@ student.faith, 1
studentaid.gov, 1
studentclearinghouse.biz, 1
studentclearinghouse.com, 1
+studentclearinghouse.info, 1
studentclearinghouse.net, 1
studentclearinghouse.org, 1
studentclearinghouse.site, 1
studentdebil.com, 1
-studentenmobiliteit.be, 1
studentenplaza.tk, 1
studentenwerk.sh, 1
studentenwoordenboek.nl, 1
@@ -140990,7 +140366,6 @@ studenterguiden.dk, 1
studentforums.biz, 1
studenti.tk, 1
studentinaneta.com, 1
-studentingent.be, 1
studentite.bg, 1
studentjournalist.ml, 1
studentklinikk.no, 1
@@ -141000,7 +140375,6 @@ studentpop.com, 1
studentproject.be, 1
studentquickpay.com, 1
studentrobotics.org, 1
-students4sports.org, 1
studentse.fr, 1
studentsfirstnb.com, 1
studentstc.cz, 1
@@ -141042,7 +140416,6 @@ studioadevents.com, 1
studioamoureus.nl, 1
studioandrew.tk, 1
studioarcadia.fun, 1
-studioat55.com, 1
studioavvocato.milano.it, 1
studioavvocato.roma.it, 1
studioavvocato24.it, 1
@@ -141112,6 +140485,7 @@ studybay.com, 0
studybeans.org, 1
studyclerk.com, 1
studyero.com, 1
+studyfurniture.lv, 1
studyhacker.jp, 1
studyhacker.net, 1
studyhatch.com, 1
@@ -141134,7 +140508,6 @@ stuetzredli.ch, 1
stufen-los.de, 1
stuffi.fr, 1
stuffiwouldbuy.com, 0
-stuffsearth.com, 1
stuhrs.dk, 1
stuka-art.de, 1
stulda.cz, 1
@@ -141167,7 +140540,6 @@ stupidest.org, 1
stupidstatetricks.com, 1
stupidthoughts.tk, 1
stupino-stroy.cf, 1
-sturdybusiness.com, 1
sturents.com, 1
sturfee.com, 1
sturgeonbaywi.gov, 1
@@ -141204,7 +140576,6 @@ styleclub.tk, 1
styledbysally.com.au, 1
styleelite.tk, 1
styleetvieperfumes.com, 1
-stylefashion.uk, 1
styleflow.nl, 1
stylemall.tk, 1
stylepixo.com, 1
@@ -141227,7 +140598,6 @@ stylight.fr, 1
stylight.it, 1
stylight.nl, 1
stylingstudio.ga, 1
-stylishealthyliving.com, 1
stylishentertainment.co.uk, 1
stylishweddingdisco.co.uk, 1
stylistbazaar.com, 0
@@ -141265,7 +140635,6 @@ subbdom.com, 1
subcenter.io, 1
subcollab.com, 1
subdev.org, 1
-subdimension.org, 1
subdivider.tk, 1
subestan.tk, 1
subgirl.ga, 1
@@ -141282,6 +140651,7 @@ sublimated.tk, 1
sublimationsouthafrica.com, 1
sublimesurface.fr, 1
sublimigeek.fr, 1
+subliminalfa.com, 1
subliminalrecorder.com, 1
subliminalrecordingsystem.com, 1
submeet.vet, 1
@@ -141342,7 +140712,6 @@ successemails.ml, 1
successible.net, 1
successive.tech, 1
successminds.com, 1
-successor.cn, 1
successrice.com, 1
successwizard.com, 1
succmy.wang, 1
@@ -141368,6 +140737,7 @@ sucsses.ga, 1
sucsses.gq, 1
sucyshop.fr, 1
sudabaus.com, 1
+sudafri.net, 1
sudak-turizm.tk, 1
sudametrica.tk, 1
sudanell.tk, 1
@@ -141407,7 +140777,6 @@ suerteloteria.com, 1
suessenbecker.de, 1
suessundbitter.de, 1
suevia-ka.de, 1
-suff.co, 1
suffix.ru, 1
suffolkcountyny.gov, 1
sufix.cz, 1
@@ -141417,6 +140786,7 @@ sufni.space, 1
sufundamento.com, 1
sufuorg.com, 1
sug.hr, 0
+sugar-homes.com, 1
sugarbeatsentertainment.com, 1
sugarbrother.com, 0
sugarcribs.com, 1
@@ -141440,7 +140810,6 @@ sugaru.pe, 1
sugatime.tk, 1
sugattor.ga, 1
sugayaganka.net, 1
-suggea.com, 1
suggestim.ch, 0
suginoharyu.com, 1
sugoicraft.tk, 1
@@ -141489,7 +140858,6 @@ sukker-oaxaca.com, 1
sukoyakapp.com, 1
sukrie.net, 1
sukruarslan.tk, 1
-suksiriwan.com, 1
suksit.com, 0
sukys.lt, 1
sulabs.org, 1
@@ -141507,6 +140875,7 @@ sullivancontractingct.com, 1
sullivancountypa.gov, 1
sulman4paf.tk, 1
sulphurspringsar.gov, 1
+sultan-bahoo.com, 1
sultanrecords.com, 1
sultans.tk, 1
sultengterkini.id, 1
@@ -141540,6 +140909,7 @@ sumbur.ga, 1
sumcrevillent.tk, 1
sume.at, 1
sumecho.com, 1
+sumesgutner.net, 1
sumguy.com, 1
sumhost.ml, 1
sumiko.moe, 1
@@ -141563,7 +140933,6 @@ summaryexecution.com, 1
summaryexecution.net, 1
summaryexecution.org, 1
summer.ga, 1
-summer.today, 1
summeracademy-china.org, 1
summerbo.at, 1
summercampthailand.com, 1
@@ -141628,7 +140997,6 @@ sunchild.ml, 1
suncity288.com, 1
suncity288.net, 1
suncity8118.cn, 1
-suncity8118.com, 1
suncity818.com, 1
suncity818.net, 1
suncity8338.cn, 1
@@ -141649,7 +141017,7 @@ sundayfundayjapan.com, 1
sundaysky.com, 1
sunderland.ac.uk, 1
sunderlandmoneyman.com, 1
-sundeskole.no, 1
+sundeskole.no, 0
sundhedsdatastyrelsen.dk, 0
sundhedsvejen.dk, 1
sundialpowdercoating.com, 1
@@ -141679,7 +141047,6 @@ sunkar.tk, 1
sunkavallymd.com, 1
sunkendreams.com, 1
sunkimurology.com, 1
-sunlit.cloud, 1
sunmail.uk, 1
sunme-jp.com, 1
sunmeiren.com, 1
@@ -142107,7 +141474,6 @@ surrycountyncvotes.gov, 1
surskiekraski.ru, 1
surthriveak.com, 1
suruifu.tk, 1
-suruno.com, 0
survature.com, 1
surveer.com, 1
surveyapp.io, 1
@@ -142149,7 +141515,6 @@ sushifrick.de, 1
sushiginzaonoderala.com, 1
sushikatze.de, 1
sushilmedicos.tk, 1
-sushiprints.com, 1
sushrutaproject.org, 1
susiestoddart.tk, 1
suska.tk, 1
@@ -142170,7 +141535,6 @@ sustainability.gov, 1
sustainabilityknowledgegroup.com, 1
sustainabilitysociety.hk, 1
sustainablefibre.org, 1
-sustainableputnam.org, 1
sustainableux.com, 1
sustainableweb.dk, 1
sustainalists.com, 1
@@ -142244,7 +141608,6 @@ suzukitradajateng.co.id, 1
suzukitradajatim.co.id, 1
suzukiumc.co.id, 1
suzuneu.com, 1
-suzuran-dentalclinic.jp, 1
sv-1966-medenbach.de, 0
sv-ec-ditzingen.de, 1
sv-gymlil.de, 1
@@ -142340,7 +141703,6 @@ svhni.nl, 1
svia.nl, 1
sviatzoo.com, 1
svin.loan, 1
-svinfotech.net, 1
svirel.ga, 1
svitilny.cz, 1
sviz.pro, 1
@@ -142367,7 +141729,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
@@ -142426,6 +141787,7 @@ swavlambancard.gov.in, 1
sway-cdn.com, 1
sway.com, 1
swayampaaka.com, 1
+swbruce.co.uk, 1
swc-cfc.gc.ca, 1
swc-the.exchange, 1
swcempire.dk, 1
@@ -142482,8 +141844,8 @@ sweetnest.com, 1
sweetparis.cf, 1
sweetpinkpussy.org, 1
sweetpummelfee.com, 1
-sweets-from-heaven.co.za, 1
sweets-mimatsu.com, 1
+sweetscrap.ru, 1
sweetsideofsweden.com, 1
sweetsinner.com, 1
sweetsusinrw.org, 1
@@ -142527,7 +141889,7 @@ swiftmodders.com, 1
swiftpak.co.uk, 1
swiftqueue.com, 1
swiftradiant.com, 1
-swiftrecharge.com, 1
+swiftrecharge.com, 0
swiftsensors.com, 1
swiggles.com, 1
swilabible.be, 0
@@ -142680,7 +142042,6 @@ syakonavi.com, 1
syarah.com, 1
sybersense.com, 1
syc-rotterdam.tk, 1
-sycca.com, 1
sychov.pro, 1
sycorr.com, 1
sycuan.gov, 1
@@ -142725,6 +142086,7 @@ sylvantownshipmi.gov, 1
sylveon.social, 1
sylvia.my.id, 1
sylviamartinez.com, 1
+sylviemifsud.fr, 1
sylwiart.pl, 1
sylwiaspychala.pl, 1
sym01.com, 1
@@ -142747,7 +142109,6 @@ symend.com, 0
symeonchen.com, 1
symetrix.tk, 1
symetryk.tk, 1
-symflower.com, 1
symfony.com, 1
symfora-meander.nl, 1
symgateway.com.au, 1
@@ -142820,7 +142181,6 @@ synetiq.co.uk, 1
synfrait.com, 1
synitsa.tk, 1
synlab.es, 1
-synology-distribution.de, 1
synony.me, 1
synonym24.at, 1
synoptek.com, 1
@@ -142834,7 +142194,6 @@ synthax.codes, 1
synthesis.ru, 1
syntheticgrasscentralcoast.com, 1
syntheticgrassliving.com.au, 1
-synthetictrading.com, 1
synthetis.com, 1
synthezis.tk, 1
synthgularity.net, 1
@@ -142887,6 +142246,7 @@ syscap.com, 1
syscap.uk, 1
syscapassetfinance.uk, 1
syscaponline.co.uk, 1
+sysco.biz, 1
syscom.be, 1
sysconautomation.com, 1
syscoon.com, 1
@@ -142894,9 +142254,9 @@ sysctl.se, 1
syscurve.com, 1
sysdb.io, 1
sysdig.com, 1
-syselg.com, 1
sysert.tv, 0
sysgap-gsci.com, 1
+sysi.no, 1
syslogic.io, 1
sysmanagement.it, 1
sysmike.de, 1
@@ -142932,8 +142292,8 @@ systemausfall.org, 1
systemb.ch, 1
systemblog.tk, 1
systemd.ch, 0
+systemd.eu.org, 1
systemd.info, 0
-systemerka.pl, 1
systemerr.tk, 1
systemhaus.saarland, 1
systeminformer.com, 1
@@ -142947,6 +142307,7 @@ systemology.com, 1
systemonthego.com, 1
systems-thinking.eu, 1
systemsense.com.au, 1
+systemsikkerhet.no, 1
systemsinblue.tk, 1
systemsoftwareleader.com, 1
systemtoto.ml, 1
@@ -143080,6 +142441,7 @@ t0r.site, 1
t12u.com, 1
t1cloud.com, 1
t1f.ru, 1
+t1movie.com, 1
t2-sit-test.tk, 0
t2000headphones.com, 1
t2000laserpointers.com, 1
@@ -143370,6 +142732,7 @@ taiwaniacapital.com, 1
taiwaniha.org.tw, 1
taiwantechtrek.tk, 1
taiwantour.info, 0
+taiway.com, 1
taj-portal.tk, 1
tajbrighton.tk, 1
tajemna-mista.cz, 1
@@ -143451,6 +142814,7 @@ takotv.com, 1
takotv.live, 1
taks.nl, 1
taksaft.tk, 1
+takshni.com, 1
taksihesaplama.com, 1
taktak.co.uk, 0
taktika.tk, 1
@@ -143481,6 +142845,8 @@ talented.ga, 1
talentedagents.ga, 1
talentexcellence.com, 1
talentguru.ml, 1
+talenthope.com, 1
+talenthope.com.cn, 1
talenthubmpi.com, 1
talentideal.com, 1
talentimpuls.de, 1
@@ -143506,17 +142872,18 @@ talichi.com, 1
talichi.es, 1
talideon.com, 0
talikotang.tk, 1
+talinhandmade.com, 1
talisadesign.fi, 0
talisman-amulet.ga, 1
talk-local.com, 1
talk.google.com, 1
talkan.ru, 1
-talkapp.top, 1
talkappin.com.au, 1
talkbasket.net, 1
talkbitz.com, 0
talkeducation.com, 1
talkgadget.google.com, 1
+talkhaled.com, 1
talki.tk, 1
talkinators.tk, 1
talkingbittersweet.com, 1
@@ -143612,7 +142979,6 @@ tamistuff.com, 1
tammie.ga, 1
tammiku.edu.ee, 1
tammvee.ee, 1
-tammy.pro, 1
tamoxifen-citrate.gq, 1
tamoxifen-citrate.ml, 1
tamoxifenformen.ga, 1
@@ -143671,7 +143037,6 @@ tangier.academy, 1
tangier.tk, 1
tangiertours.ma, 1
tangipahoa.gov, 1
-tangle-teezer.net, 1
tanglepatterns.com, 1
tango-cats.de, 1
tango-networks.com, 0
@@ -143729,7 +143094,7 @@ tantalos.nl, 1
tantejulia.tk, 1
tantetilli.de, 0
tanto259.name, 1
-tantor.com, 1
+tantor.com, 0
tantrabali.tk, 1
tantrafilms.com, 1
tantravoorlichting.nl, 1
@@ -143770,7 +143135,6 @@ tapcheck.com, 1
tapchiphaidep.info, 1
tapcloud.com, 1
tapcon.com, 1
-tapeoandaluz.com, 1
tapestries.tk, 1
tapestryhomes.org, 1
tapestryjournal.com, 1
@@ -143834,6 +143198,10 @@ targoncavasarlas.hu, 1
targray.com, 1
tarhunfirin.com, 1
tarif-pellets.fr, 1
+tarifasconroaming.es, 1
+tarifasdegasnatural.es, 1
+tarifasparapensionistas.es, 1
+tarifasprepago.es, 1
tarife.at, 1
tarihpedia.com, 1
tarihvakti.com, 1
@@ -143858,11 +143226,11 @@ tarot-online.it, 1
tarot.vn, 1
tarotcarmenruiz.com, 1
tarotgratis.vip, 1
-tarotistasyvidentesdeamor.com, 1
tarotistayastrologa.com, 1
tarotreadingexplained.com, 1
tarotyvidente.es, 1
tarper24.net, 1
+tarpin.com, 1
tarpnogym24.pl, 1
tarpsnow.com, 0
tarrantandharman.com, 1
@@ -143886,7 +143254,7 @@ tasarimgazetesi.com, 1
tasarimrehberi.com, 1
tasawehala.com, 1
tascas.ga, 1
-tasconnect.com, 0
+tasconnect.com, 1
tascuro.com, 1
tasefiling.gov, 1
tasfil.com, 1
@@ -143894,6 +143262,7 @@ tashicell.com, 1
tasirrigation.com.au, 1
taskforce.eu, 1
taskhorizon.audio, 1
+taskido.pl, 1
taskin.me, 1
taskman.london, 1
taskotron.fedoraproject.org, 1
@@ -143917,6 +143286,7 @@ tastefullyminimalist.com, 1
tastehungary.com, 1
tastenewwines.com, 1
tasteville.com.au, 1
+tastiquo.com, 1
tastycake.net, 0
tastycool.io, 1
tastyfx.com, 1
@@ -143991,6 +143361,7 @@ taubenweiss.net, 1
taubin.cc, 1
tauedu.org, 1
taufers.info, 1
+taufiqzainal.com, 1
tauntonme.org.uk, 1
tauntonpdma.gov, 1
taunusstein.net, 1
@@ -144037,7 +143408,6 @@ tavoseimai.lt, 1
tavr.org.tw, 1
tavsiyeforumu.com, 1
tavsys.net, 1
-tavukdiyari.net, 1
tawzea.com, 0
tax-brain.net, 1
tax-guard.com, 1
@@ -144200,14 +143570,15 @@ tcdww.cn, 1
tcec-chess.com, 1
tcepc.com, 1
tcf.org, 1
+tcg.cards, 1
tcgbridge.com, 1
tcgc-adms.com, 1
tcgcardcare.com, 1
tcgcollector.com, 1
tcglobal.com, 1
tcgpraktijk.nl, 1
+tcgprinter.com, 1
tcgrepublic.com, 1
-tch-forum.com, 1
tchadinfos.com, 1
tchak.be, 1
tchaka.top, 1
@@ -144245,6 +143616,7 @@ tcspartner.eu, 1
tcspartner.net, 1
tcttire.com, 1
tcuprs.com, 1
+tcust.edu.tw, 1
tcvafrica.agency, 1
tcvanbuuren.tk, 1
tcvonline.vic.gov.au, 1
@@ -144331,7 +143703,6 @@ teachpeople.org, 1
teachwithouttears.com, 1
teacuppersiancats.com, 1
teacupyorkiespets.com, 1
-teaeggss.com, 1
teagardenspa.com, 1
teaguepdtx.gov, 1
teahawaii.ga, 1
@@ -144358,12 +143729,12 @@ team-eklund-motorsport.tk, 1
team-io.net, 1
team-royal.tk, 1
team-russia.tk, 1
+team-slicrown.com, 1
team-swami.com, 1
team-toranomon.com, 1
team-wolf.ch, 1
team-work.online, 1
team.house, 0
-team.nl, 0
team005helpdesk.ddns.net, 1
team3s.org, 1
team5943.org, 1
@@ -144407,7 +143778,7 @@ teamkgsr.com, 1
teamkilled.tk, 1
teamkiller.tk, 1
teamkoncert.pl, 1
-teamlab.art, 1
+teamlab.art, 0
teamleader-apps-by-invantive.com, 1
teamlightning.tk, 1
teamliquid.com, 1
@@ -144459,17 +143830,6 @@ teamsecure.li, 1
teamsecure.lt, 1
teamsecure.lu, 1
teamsecure.lv, 1
-teamsecure.md, 1
-teamsecure.me, 1
-teamsecure.mk, 1
-teamsecure.pl, 1
-teamsecure.pt, 1
-teamsecure.ro, 1
-teamsecure.rs, 1
-teamsecure.ru, 1
-teamsecure.se, 1
-teamsecure.si, 1
-teamsecure.sk, 1
teamsherry.realtor, 1
teamshirts.at, 1
teamshirts.be, 1
@@ -144551,6 +143911,7 @@ tecart-system.de, 0
tecart.de, 1
tecartcrm.de, 1
tecatebeerusa.com, 0
+tecdoor.pt, 1
tece.com, 1
tece.de, 1
tece.se, 1
@@ -144592,10 +143953,10 @@ techarchive.tk, 1
techarea.fr, 1
techarkansas.tk, 1
techask.it, 1
-techbaba.co, 1
techbelife.com, 1
techboostclark.com, 1
techbrawl.org, 1
+techbridge.jp, 1
techbuz.net, 1
techcavern.ml, 1
techcentral.ml, 1
@@ -144614,12 +143975,13 @@ techcult.com, 1
techcultivation.de, 0
techcultivation.net, 0
techcultivation.org, 1
-techdailylife.uk, 1
techday.asia, 1
techday.co.nz, 1
+techday.co.uk, 1
techday.com, 1
techday.com.au, 1
-techday.network, 1
+techday.in, 1
+techdayca.com, 1
techdirt.com, 1
techdocscove.xyz, 1
techdoms.tk, 1
@@ -144628,6 +143990,7 @@ techeasyblog.com, 1
teched-creations.com, 1
techexeter.uk, 1
techexpert.tips, 1
+techexplorist.com, 1
techfibian.tk, 1
techfinancials.co.za, 1
techfishnews.com, 1
@@ -144646,16 +144009,16 @@ techguides.tk, 1
techgurubiz.com, 1
techhackhome.tk, 1
techhappy.ca, 1
+techharbor.lt, 1
+techharbor.nl, 1
techhh.ca, 1
techhubs.gov, 1
techie-show.com, 1
techiecomputers.com, 1
techiehall.com, 1
techieidiots.ml, 1
-techieshideaway.com, 1
techiesmart.tk, 1
techikoma.social, 1
-techimprovement.uk, 1
techindiana.tk, 1
techindo.cf, 1
techinet.pl, 1
@@ -144681,13 +144044,11 @@ techlore.tech, 1
techlovers.com, 1
techlr.de, 1
techmagazine.tk, 1
-techmagazinespure.com, 1
techmagick.com, 0
techmahindrafoundation.org, 1
techmaish.com, 1
techmammal.de, 1
techmanstan.com, 1
-techmap.uk, 1
techmatter.tk, 1
techmatterglobal.com, 1
techmatters.org, 1
@@ -144716,11 +144077,11 @@ technicaltoolboxes.com, 1
technicaltrainer.co.za, 1
technicalustad.com, 1
technician.academy, 1
-technician.cn, 1
technicus.nl, 1
technicv.com, 1
technikforum-backnang.de, 1
technikoma.com, 1
+technikoma.de, 1
technikoma.eu, 1
technikoma.net, 1
technikoma.org, 1
@@ -144811,33 +144172,6 @@ techorbiter.com, 1
techpartes.com.br, 1
techpartneralliance.com, 1
techpedia.it, 1
-techpeer.al, 1
-techpeer.at, 1
-techpeer.be, 1
-techpeer.bg, 1
-techpeer.ch, 1
-techpeer.co.uk, 1
-techpeer.cz, 1
-techpeer.de, 1
-techpeer.dk, 1
-techpeer.ee, 1
-techpeer.es, 1
-techpeer.eu, 1
-techpeer.fr, 1
-techpeer.hu, 1
-techpeer.lt, 1
-techpeer.lu, 1
-techpeer.lv, 1
-techpeer.md, 1
-techpeer.me, 1
-techpeer.nl, 1
-techpeer.pl, 1
-techpeer.pt, 1
-techpeer.ro, 1
-techpeer.rs, 1
-techpeer.se, 1
-techpeer.si, 1
-techpeer.sk, 1
techpilipinas.com, 1
techpoint.org, 0
techpp.com, 1
@@ -144851,7 +144185,6 @@ techrevolution.lt, 1
techs.cf, 1
techsalot.com, 1
techsat.tk, 1
-techsaviours.org, 1
techsecrets.tk, 1
techseo.pro, 1
techserve.ml, 1
@@ -144970,7 +144303,6 @@ teddysquad.com, 1
teddyss.com, 0
teddywayne.com, 1
teddywp.com, 1
-tedgautsch.com, 0
tedhardy.com, 1
tedirgin.tk, 1
tedroche.com, 1
@@ -144999,7 +144331,6 @@ teencounseling.com, 1
teengamer.tk, 1
teengamingnights.net, 1
teengirlpics.com, 1
-teenlifequotes.com, 1
teenmissions.org, 1
teenmoviesgallery.ga, 1
teenoverload.com, 1
@@ -145019,6 +144350,7 @@ teenworlds.tk, 1
teenxxx-tube.com, 1
teenytinyhomes.com.au, 1
teepak.ml, 1
+teerapatde.online, 1
teerer.tk, 1
teestore.ru, 1
teestudio.nz, 1
@@ -145070,20 +144402,17 @@ teiph.online, 1
teiron.ml, 1
teiseken.tk, 1
teixobactin.com, 1
-tejascorp.com.np, 1
-tejasnetworks.com, 1
tejo.tk, 1
tejomaya.net, 1
tek-el.ru, 1
teka.ro, 1
tekanswer.com, 1
-tekcafe.vn, 1
tekila.cf, 1
tekila.ga, 1
tekila.tk, 1
+tekinfo.co.id, 1
tekingb.com, 0
tekirdagemlak.tk, 1
-tekittak.com, 1
tekkenzone.net, 1
tekmarc.com, 1
tekme.pt, 1
@@ -145112,6 +144441,7 @@ teksnologi.com, 1
teksol-boat.ru, 1
tekstover.tk, 1
tekstpesni.tk, 1
+tektorg.ru, 1
tektuts.com, 1
tekyou.com.br, 1
telalresort.ae, 1
@@ -145127,6 +144457,12 @@ telc.asia, 1
telco-motor.fr, 1
telco.si, 1
telcodb.net, 1
+telconews.asia, 1
+telconews.ca, 1
+telconews.co.nz, 1
+telconews.com, 1
+telconews.com.au, 1
+telconews.in, 1
teldak.pt, 1
teldoop.my.id, 0
tele-alarme.ch, 1
@@ -145149,6 +144485,7 @@ telecharger-videos.com, 1
telecharger-winrar.com, 1
telechirkut.xyz, 1
telechnics.com.au, 1
+telecinesound.it, 1
teleclaro.com, 1
teleclases.com, 1
telecom-sudparis.eu, 1
@@ -145159,6 +144496,7 @@ telecommutejobs.com, 1
telecomwestland.nl, 1
teledatos.tk, 1
teledhil.eu, 1
+teleflow.net, 1
telefon.report, 1
telefonabonnement.dk, 1
telefoncek.si, 1
@@ -145186,7 +144524,6 @@ telekollektiv.org, 1
telekom-mms.com, 1
telekomiker.tk, 1
telekominfo.com, 1
-teleleafpa.com, 1
telelog.ml, 1
telema.tk, 1
telemaco.tk, 1
@@ -145240,6 +144577,7 @@ telework.gov, 1
teleworkouts.com, 1
telexit.de, 1
telexsus.com, 1
+teleyal.blog, 1
telezon.ru, 1
telfaircountyga.gov, 1
telfas.de, 1
@@ -145280,6 +144618,7 @@ telugudesam.org, 1
tely360.com, 1
tema-q.com, 1
temaflex.tk, 1
+temaju.com, 1
temakel.com, 1
temariosoposiciones.tk, 1
tembusulaw.com, 1
@@ -145292,9 +144631,6 @@ teml.in, 1
temnacepel.cz, 1
temnikova.tk, 1
temofoundation.com, 1
-temogroup.com, 1
-temogroup.org, 1
-temogroupe.com, 1
temoinfidele.fr, 1
temonews.org, 1
temp-lars.army, 1
@@ -145322,6 +144658,7 @@ tempo.co, 1
tempocams.com, 1
tempocams.net, 1
tempocams.org, 1
+tempoforce.de, 1
temporada-alta.com, 1
temporada.icu, 1
temporada.tk, 1
@@ -145350,7 +144687,6 @@ tenber.ge, 1
tenberg.com, 1
tencent.xn--vuq861b, 1
tenchiu.com, 1
-tenckhoff.de, 1
tencur.com, 1
tenda.com, 1
tendanceaumasculin.fr, 1
@@ -145396,6 +144732,7 @@ tennis-academy-weserbergland.de, 1
tennis-agesc.fr, 1
tennis-altai.tk, 1
tennis-hameln.de, 1
+tennis-open.it, 1
tennisadmin.com, 1
tennisapp.de, 1
tenniscritic.ga, 1
@@ -145426,7 +144763,9 @@ tentevents.nl, 1
tenthirtyonepictures.com, 1
tenthousandcoffees.com, 1
tentinger.co, 1
+tentrentals.com, 1
tentries.com, 1
+tentsforsale.com, 1
tenue-traditionnelle.fr, 1
tenyx.de, 1
tenzer.dk, 1
@@ -145458,15 +144797,16 @@ tepui.io, 1
teq-automotive.com, 1
teqip-pms.gov.in, 1
tequenikality.net, 1
+tequilaavion.com, 1
tequilamessenger.com, 1
tequilazor.com, 1
terabyte.services, 1
terabyteharddrive.net, 1
-terabyteit.co.uk, 0
teracloud.at, 1
teradatta.ga, 1
teradatta.gq, 1
teradatta.tk, 1
+teraflop.it, 1
terahtaylor.com, 1
teramind.co, 1
teramundi.com, 1
@@ -145545,6 +144885,7 @@ terra.fitness, 1
terra7.net, 1
terrab.de, 1
terrabela.tk, 1
+terracapital.ma, 0
terracloud.de, 0
terraco.ga, 1
terracom.gr, 1
@@ -145648,7 +144989,6 @@ tesorion.nl, 1
tespent.cn, 1
tessierashpool.de, 1
tessla.org, 1
-test-deployment.xyz, 1
test-eligibilite-isolation.com, 1
test-iq.gq, 1
test-my.tk, 1
@@ -145683,7 +145023,6 @@ testdemoweb.tk, 1
testdevelocidad.com, 1
testdomens.ga, 1
testdrogue.fr, 1
-testecta.top, 1
testehogs.tk, 1
testem.de, 1
testemo.tk, 1
@@ -145699,9 +145038,9 @@ testhcai.ca, 1
testheat.org, 1
testikel.be, 1
testing-server.tk, 1
-testing.cn, 1
testingbot.com, 1
testingtask.tk, 1
+testingthe.net, 1
testingxperts.com, 1
testiowa.gov, 1
testispdomain.ml, 1
@@ -145741,7 +145080,6 @@ testspsicotecnicos.org, 1
testsweb.ml, 1
testthis.cf, 1
testufo.com, 1
-testuje.net, 1
testvision.nl, 1
testyonline.tk, 1
tetam.dynv6.net, 1
@@ -145755,7 +145093,6 @@ tethys.fr, 1
teto.nu, 1
tetonas.tk, 1
tetonka.ch, 1
-tetontherapypc.com, 0
tetorix.gq, 1
tetovaweb.tk, 1
tetovo.tk, 1
@@ -145898,7 +145235,7 @@ tfadictivo.com, 1
tfaforms.com, 1
tfapass.com, 1
tfapass.eu, 1
-tfb.az, 0
+tfb.az, 1
tferdinand.net, 1
tfff.org, 1
tfg-bouncycastles.com, 1
@@ -145908,7 +145245,6 @@ tfinfo.fr, 1
tfipost.com, 1
tfk-installatieservice.nl, 1
tfk.fr, 1
-tfle.xyz, 1
tfleadwork.co.uk, 1
tflite.com, 1
tfmcentre.co.uk, 1
@@ -146009,7 +145345,6 @@ thalia.nu, 1
thalikkunushivatemple.tk, 1
thalliman.com, 1
thalmann.fr, 0
-thalnet.ch, 1
thamesvalleybuses.com, 1
thammachartconnect.com, 1
thammysen.vn, 1
@@ -146032,7 +145367,6 @@ thatchhealth.com, 1
thatchickkrys.com, 1
thatdaria.com, 1
thatmy.com, 1
-thatsallthereis.com, 1
thatshayini-sivananthan.fr, 1
thatssodee.com, 1
thatware.co, 1
@@ -146042,6 +145376,7 @@ thaw.systems, 1
thawte.com.ru, 1
thax.cn, 1
thaxton.xyz, 0
+thbl.fr, 1
thca.ca, 1
thcdachs.com, 1
thcdachs.de, 1
@@ -146092,7 +145427,6 @@ the-mermaid.tk, 1
the-metropolitans.tk, 1
the-muddy-trophy-team.tk, 1
the-mudmen.tk, 1
-the-naked.com, 1
the-nose.com, 1
the-opposites.tk, 1
the-pcca.org, 1
@@ -146224,6 +145558,7 @@ thebalvenie.com, 1
thebamplayer.de, 1
thebannekerfoundation.org, 1
thebannerstore.com, 1
+thebanquethub.com, 1
thebasementdefender.com, 1
thebasementdefender.net, 1
thebasicstudio.com, 1
@@ -146232,7 +145567,7 @@ thebathroomexchange.ga, 1
thebatt.com, 1
thebbfoundation.org, 1
thebcm.co.uk, 1
-thebeachclub.uk, 1
+thebeaconng.com, 1
thebeatyard.nl, 1
thebeaulife.co, 1
thebeautifuledge.com, 1
@@ -146241,8 +145576,8 @@ thebedfordcitizen.org, 1
thebeef.info, 1
thebeeyard.org, 1
thebeginningviolinist.com, 1
+thebenefitcalculator.com, 1
thebengalinews.tk, 1
-thebenstore.com, 1
theberries.tk, 1
thebertshow.com, 1
thebestfun.co.uk, 1
@@ -146269,7 +145604,6 @@ thebiggerfish.net, 1
thebiggerfish.nz, 1
thebiggerfish.org, 1
thebiggerfish.us, 1
-thebigslow.com, 1
thebillingtongroup.com, 1
thebiltmorehotels.com, 1
thebinarys.com, 1
@@ -146298,7 +145632,6 @@ theblueprint.global, 1
thebluered.net, 0
theblueroofcottage.ca, 1
thebluewindowdesigns.com, 1
-thebluub.com, 1
theboard.tk, 1
theboardroomsubi.com.au, 1
theboats.agency, 1
@@ -146344,7 +145677,6 @@ thebucklandreligion.tk, 1
thebudgetsavvybride.com, 1
thebuffalotavern.com, 1
thebugmanfraservalley.com, 1
-thebull.com.au, 1
thebulletin.io, 1
thebunny.zone, 1
thebunnyhutch.org, 1
@@ -146424,11 +145756,11 @@ theclubcompany.com, 1
thecnstore.com, 1
thecoffeecamp.com, 1
thecoffinshop.co.nz, 1
-thecolbyfiles.com, 1
thecolgatemaroonnews.com, 1
thecollegequiz.com, 1
thecolorbarph.com, 1
thecolorrun.hu, 1
+thecomedystore.co.uk, 1
thecommoner.org, 1
thecommonmen.tk, 1
thecommunityguide.org, 1
@@ -146469,6 +145801,7 @@ thecronosgroup.com, 1
thecskr.in, 1
thecstick.com, 1
thecubepsych.com, 1
+thecultureclubhouse.com, 1
thecup.us, 1
thecureplainsong.tk, 1
thecurvyfashionista.com, 0
@@ -146476,7 +145809,6 @@ thecustomdroid.com, 1
thecustomizewindows.com, 1
thecyberwire.com, 1
thecyclistchoice.com, 1
-theda.co.za, 0
thedaac.org, 1
thedailybloon.tk, 1
thedailydunk.co, 1
@@ -146548,7 +145880,6 @@ thedronechart.com, 1
thedroneely.com, 1
thedronevortex.com, 1
theduchessbudapest.com, 1
-thedumppro.co, 1
thedysfunctionalangel.cf, 1
thedysfunctionalangel.ga, 1
thedysfunctionalangel.gq, 1
@@ -146570,13 +145901,12 @@ theemeraldmagazine.com, 1
theemploymentnetworkcla.com, 1
theemptyvault.com, 1
theender.net, 1
-theentropyofdelicatewonders.com, 1
+theendpoem.com, 1
theepankar.com, 1
theepicsponge.co.uk, 1
theepicstorm.com, 1
theerneshot.com, 1
-theertcexperts.net, 1
-theescapegame.com, 1
+theescapegame.com, 0
theestateplanninggroup.com, 1
theestatesatstgeorge.com, 1
theesuhlmann.de, 1
@@ -146586,7 +145916,6 @@ theeverydayprepper.com, 1
theexodus.tk, 1
theexpatriate.de, 1
theexplorer.ro, 1
-theextract.co.uk, 1
theeyeopener.com, 1
theeyewearshop.com.au, 1
thefabricator.com, 1
@@ -146620,7 +145949,6 @@ thefirstsecuritybank.com, 1
thefishshop.ga, 1
thefitcare.com, 1
thefitcareerist.com, 1
-thefix.media, 1
theflashback.co.uk, 1
theflatrestaurant.com, 1
theflesh.tk, 1
@@ -146648,7 +145976,6 @@ thefreemail.com, 1
thefreethinker.tk, 1
thefrenchbeautyacademy.edu.au, 1
thefrenchconnection.tk, 1
-thefridaycinema.com, 1
thefriedzombie.com, 1
thefriedzombie.nl, 1
thefriedzombie.online, 1
@@ -146703,7 +146030,9 @@ thego2swatking.com, 1
thegoalinc.co.jp, 1
thegolden.com, 1
thegoldeninkmedia.com, 1
+thegoldenpreference.com, 1
thegooddeal.shop, 1
+thegoodegg.ie, 1
thegoodinside.com, 1
thegoodplace.ma, 1
thegoodplugin.com, 1
@@ -146735,7 +146064,6 @@ thegroupinc.com, 1
thegrovela.com, 1
thegrs.com, 0
theguerrilla.agency, 0
-thegundogaffair.com, 1
thegungrabber.ca, 1
thegungrabber.com, 1
thegvoffice.net, 1
@@ -146744,7 +146072,6 @@ thegypsythread.org, 1
thehabitat.com, 1
thehackerblog.com, 1
thehackers.cf, 1
-thehadicks.com, 1
thehairrepublic.net, 1
thehalchal.com, 1
thehamiltoncoblog.com, 1
@@ -146769,6 +146096,7 @@ thehelper.tk, 1
thehillstx.gov, 1
thehiltonfirm.tk, 1
thehinesgaphideaway.com, 1
+thehinhonline.com.vn, 1
thehivedesign.org, 1
thehoff.ddnss.de, 1
thehofstrachronicle.com, 1
@@ -146811,6 +146139,7 @@ theindiangraph.tk, 1
theindiantimes.in, 1
theindiemood.com, 1
theindra.eu, 1
+theinfoblog.com, 0
theinitium.com, 0
theinnatrsf.com, 1
theinsightsfamily.com, 0
@@ -146821,13 +146150,12 @@ theintentmedia.com, 1
theinteracial.com, 1
theintercept.com, 0
theinternationalgeekconspiracy.eu, 1
-theinternetsanimals.com, 1
-theinventory.com, 1
theinvisibleman.tk, 1
theislandtime.com, 1
theislandwellness.com, 1
theisopurecompany.com, 1
theissen.io, 1
+theisthelpline.com, 1
theithacan.org, 1
theitsage.com, 0
theivybuckhead.com, 1
@@ -146835,6 +146163,7 @@ theixiangrand.gr, 1
thejacksoninstitute.com.au, 1
thejakartapost.com, 1
thejc.com, 0
+thejewelhut.co.uk, 1
thejewisheye.com, 1
thejkdrebel.com, 1
thejobhackers.org, 1
@@ -146845,6 +146174,7 @@ thejpegstudio.com, 1
thejukebox.tk, 1
thejunkfiles.com, 1
thekalakriti.tk, 1
+thekenyatimes.com, 1
thekeralastore.co.uk, 1
thekev.in, 1
thekickassvirtualassistant.nl, 1
@@ -146872,6 +146202,7 @@ thelangfords.au, 1
thelangfords.id.au, 1
thelanscape.com, 1
thelansingjournal.com, 1
+thelansingjournal.org, 1
thelapine.ca, 1
thelasallenetwork.com, 1
thelashlounge.com, 1
@@ -146881,7 +146212,6 @@ thelastvikings.tk, 1
thelatinamericatravelcompany.com, 1
thelatinbrothers.ch, 1
thelaurelchiropractor.com, 1
-thelavishsociety.co, 1
thelawyermag.com, 1
thelazyfox.xyz, 1
thelazysre.com, 1
@@ -146911,10 +146241,8 @@ thelodgeonlakedetroit.com, 1
thelogicstudio.co.nz, 1
thelogicstudio.nz, 1
thelondondesignawards.com, 1
-thelondonflorist.com, 1
thelonelyones.co.uk, 1
thelonious.nl, 1
-theloop.ai, 1
theloop.build, 1
thelordofthewing.cf, 1
thelordofthewing.ga, 1
@@ -146922,6 +146250,7 @@ thelordofthewing.gq, 1
thelordofthewing.ml, 1
thelordsofthefallen.com, 1
thelosangelesconservative.com, 1
+thelotter.club, 1
thelounge.chat, 1
theloveequation.com, 1
theloves.com, 1
@@ -146944,7 +146273,6 @@ themaniaks.tk, 1
themarkup.org, 1
themarshallproject.org, 1
themassageguy.capetown, 1
-themaster.site, 1
themaster.tk, 1
themasterplan.com.au, 1
thematchless.de, 1
@@ -147008,7 +146336,6 @@ themountaincenter.org, 1
themountsomerset.co.uk, 1
themoveonline.com, 1
themoviepreview.ga, 1
-thempgguy.com, 1
themprojects.com, 1
themrtaik.it, 1
themsuspokesman.com, 1
@@ -147039,10 +146366,9 @@ theneverspodcast.com, 1
thenew3rs.org, 1
thenewannual.com, 1
thenewannual.com.au, 1
-thenewclassics.com, 1
thenewissue.tk, 1
thenews-chronicle.com, 1
-thenewsfetcher.com, 1
+thenewsbullet.com, 1
thenewsmill.com, 1
thenewtoy.net, 1
thenexablack.com, 1
@@ -147092,7 +146418,6 @@ theoldinn.com, 1
theoldmill.tk, 1
theoldnews.net, 1
theoldposthousebnb.co.uk, 1
-theoldschoolgamevault.com, 1
theolodewijk.nl, 1
theologique.ch, 1
theologyz.com, 1
@@ -147110,6 +146435,7 @@ theoperators.tk, 1
theophil.tk, 1
theorchestranow.com, 1
theorchestranow.org, 1
+theorganicrecycler.com, 1
theorganist.org, 1
theoriecheck.de, 1
theoriginalassistant.com, 1
@@ -147117,6 +146443,7 @@ theoriginalcandid.com, 1
theoriginalmarkz.com, 1
theorion.com, 1
theorioncorrelation.com, 1
+theorlandocriminaldefense.com, 0
theory-test-online.co.uk, 1
theory.org, 1
theorycraftsecurity.com, 1
@@ -147240,6 +146567,7 @@ theqrl.org, 1
theqtree.com, 1
thequillmagazine.org, 1
thequintessentialcake.com, 1
+theracket.club, 1
theradiojudge.com, 1
theralino.de, 1
therame.de, 1
@@ -147278,8 +146606,6 @@ therealcomp.ga, 1
therealcost.gov, 1
therealcountrydancers.tk, 1
therealestatesolutionsguy.com, 1
-therealmaids.com, 1
-therealtech.xyz, 1
thereaper.net.au, 1
thereaper.tk, 1
theredhouse.org, 1
@@ -147314,6 +146640,7 @@ therlyn.info, 1
thermacon.com.au, 1
thermalbad-therme.de, 1
thermalitowsca.gov, 1
+thermannconsult.dk, 1
thermique.ch, 0
thermity.com, 0
thermolamina.nl, 1
@@ -147352,7 +146679,6 @@ therworth.com, 1
therworth.eu, 1
therworth.net, 1
therworth.org, 1
-thesacreds.com, 1
thesafetymag.com, 1
thesage.cf, 1
thesage.ga, 1
@@ -147378,7 +146704,6 @@ thesecularparent.com, 1
theseed.io, 1
theseedbox.xyz, 1
thesehighsandlows.com, 1
-theselfevidenttruth.com, 1
thesemisouthernhomemaker.com, 1
theseofarm.com, 1
theseoframework.com, 1
@@ -147402,7 +146727,6 @@ theshots.cz, 1
theshroomery.org, 1
thesigit.tk, 1
thesignacademy.co.uk, 1
-thesignalco.com.au, 1
thesignpostwsu.com, 1
thesilentfew.tk, 1
thesilentlink.org, 1
@@ -147455,7 +146779,6 @@ thestopoff.tk, 1
thestoragebay.co.uk, 1
thestore.tk, 1
thestorydepartment.com, 1
-thestoryshack.com, 0
thestral.pro, 1
thestralbot.com, 1
thestrangenessofthings.tk, 1
@@ -147485,6 +146808,7 @@ thetandd.com, 1
thetapirsmouth.com, 1
thetassos.com, 1
thetattooedpreacher.com, 1
+thetcellshow.org, 1
theteaguemovie.tk, 1
thetebodifference.com, 1
thetechdude.ga, 1
@@ -147510,7 +146834,6 @@ thetomharling.com, 1
thetopmovie.gq, 1
thetopsecretepisode.tk, 1
thetorlock.com, 1
-thetorturedman.com, 1
thetotalemaildelivery.com, 1
thetoto.tk, 1
thetowelcompany.be, 1
@@ -147761,7 +147084,6 @@ thinkingnull.com, 0
thinkingplanet.net, 1
thinkittech.com, 1
thinklogistics.com, 1
-thinkmaking.org, 1
thinko.it, 1
thinkon.com, 1
thinkopps.co.uk, 1
@@ -147871,6 +147193,7 @@ thomaswoo.com, 1
thomchroma.fr, 1
thomien.de, 1
thompsonfamily.cloud, 1
+thompsonmedicare.com, 1
thompsonoh.gov, 1
thomson-mcduffie.gov, 1
thomsonbaby.com, 1
@@ -147887,12 +147210,12 @@ thorbiswebsitedesign.com, 1
thorborg.dk, 1
thoreau.tk, 1
thoreberrens.de, 1
-thornhillfamilydental.ca, 1
thorntonnh.gov, 1
thorntonshvacservice.com, 1
thoropass.com, 1
thoroughbredrecords.com, 1
thors-hearth.tk, 1
+thorsteinsson.com, 1
thorsten-schaefer.com, 1
thorstenschaefer.name, 1
thost3.de, 1
@@ -147906,7 +147229,6 @@ thoughtfarmer.com, 1
thoughthaven.com, 1
thoughtleadersnetwork.nl, 1
thoughtlessleaders.online, 1
-thoughtsphere.com, 1
thoughtspot.com, 1
thoughtsynth.com, 1
thoughtsynth.net, 1
@@ -147918,11 +147240,12 @@ thousandoakselectrical.com, 1
thowzzy.be, 1
thoxyn.com, 1
thpatch.net, 1
+thpay.com, 0
thprd.gov, 1
thqgame.jp, 1
thr-kurd.tk, 1
thrallingpenguin.com, 1
-threadabead.com, 0
+threadabead.com, 1
threadingbuildingblocks.org, 1
threadingcentral.com, 1
threads.com, 1
@@ -148000,6 +147323,7 @@ threefoldtransformations.com, 1
threefortheroad.tv, 1
threefours.net, 0
threelions.ch, 1
+threeloudcrows.ca, 1
threeluck.sg, 1
threema.ch, 1
threema.id, 1
@@ -148024,6 +147348,7 @@ thriftywp.com, 1
thrillernyc.com, 1
thrillkill.tk, 1
thrillng.com, 1
+thrillux-event-hire.co.uk, 1
thriva.co, 1
thrive-gyms.co.za, 1
thrivefostering.com, 1
@@ -148044,7 +147369,6 @@ thrproject.com, 1
thrustrules.tk, 1
ths.li, 1
thsc.us, 1
-thsclothing.com, 1
thsconstructors.com, 1
thscpac.org, 1
thsecurity.cz, 1
@@ -148071,10 +147395,11 @@ thunderkeys.net, 1
thunderlotusgames.com, 1
thunderstruckfestival.nl, 1
thunderwolves.ca, 1
+thundr.com, 1
thundr.eu, 1
thunktank.org, 1
thunraz.com, 1
-thuongluu.vn, 1
+thuongluu.vn, 0
thuprai.com, 1
thurmanny.gov, 1
thurn.net, 1
@@ -148088,11 +147413,9 @@ thuthuatmac.com, 1
thutm.com, 1
thutucxuatnhapkhau.net, 1
thuyetphapmoi.com, 1
-thvr.co, 1
thw-messenger.de, 1
thwiki.cc, 1
thwitt.de, 1
-thxandbye.de, 1
thycotic.ru, 1
thynx.io, 0
thyroidheadnecksurgery.com, 1
@@ -148118,7 +147441,6 @@ tiaki.org, 0
tiamabi.tk, 1
tiamarcia.com.br, 1
tian123.com, 1
-tian888.com, 1
tianbaobo05.com, 1
tianbaobo06.com, 1
tianbaobo07.com, 1
@@ -148168,6 +147490,8 @@ tichdiem80.com, 1
ticinoscout.ch, 1
tickeron.com, 1
tickerontest.com, 1
+tickerswatchandclock.com, 1
+tickerswatches.ca, 1
tickertable.com, 0
tickertoolkit.com, 1
ticket-9.de, 1
@@ -148217,7 +147541,6 @@ ticketunity.com, 1
tickit.ca, 0
ticktbox.com, 1
ticnom.com, 1
-ticoartisan.com, 1
tictac.com.tr, 1
tictac.tk, 1
tictail.com, 1
@@ -148264,15 +147587,12 @@ tiendamia.com.pa, 1
tiendamia.com.py, 1
tiendamia.cr, 1
tiendaregalos.eu, 1
-tiendatecnologica.net, 1
-tiener-herentals.be, 1
tienerdienst-johanneskapel.tk, 1
tiengtrungquoc.net, 1
tienic.com, 1
tiens-ib.cz, 1
tiepao.cn, 1
tier5industries.com, 1
-tierarzt-karlsruhe-durlach.de, 1
tierarztpraxis-illerwinkel.de, 1
tieredaccess.com, 1
tierfaszienation.de, 1
@@ -148414,6 +147734,7 @@ tim-demisch.com, 1
tim-demisch.de, 1
tim-demisch.email, 1
tim-demisch.eu, 1
+tim-koop.de, 1
tim-lawrence.cf, 1
tim-niclas-demisch.de, 1
tim-niclas-demisch.eu, 1
@@ -148421,11 +147742,11 @@ tim-wiese.de, 1
tim.org.tr, 1
tim427.net, 0
timacdonald.me, 1
+timah33.org, 1
timawesomeness.com, 1
timbarden.com, 1
timbarlotta.com, 1
timbeco.ee, 1
-timberbuilt.com.au, 1
timbercreekcanyontx.gov, 1
timberjewelleryboxes.ga, 1
timberjoineryperth.com.au, 1
@@ -148468,7 +147789,6 @@ timecheck.tk, 1
timeengraver.hu, 1
timefor.tk, 1
timeglass.de, 1
-timeinfo.co, 1
timelapsetv.tk, 1
timeless-hairstyles.com, 1
timeless-photostudio.com, 1
@@ -148486,7 +147806,6 @@ timelyprovider.com, 1
timeneye.com, 1
timeout.co.il, 1
timeoutdoors.com, 1
-timeoutshelter.org, 1
timepassengers.tk, 1
timeprison.tk, 1
timepro.sk, 1
@@ -148495,6 +147814,7 @@ timeroll.ml, 1
timersuite.com, 1
timertomato.com, 1
timerway.com, 1
+timesamui.com, 1
timesdelphic.com, 1
timesedlen.dk, 1
timeserver0.de, 1
@@ -148552,7 +147872,7 @@ timothy.tk, 1
timothybjacobs.com, 1
timothymartinezdmd.com, 0
timothyyip.photography, 1
-timotielens.nl, 0
+timotielens.nl, 1
timowi.de, 1
timoxbrow.com, 0
timqueen.com, 1
@@ -148679,7 +147999,6 @@ tipplist.com, 1
tipranks.com, 1
tips4gamers.com, 1
tips4india.tk, 1
-tipsacademicos.com, 1
tipsbymoh.tech, 1
tipsfinal.tk, 1
tipsforgamers.com, 1
@@ -148702,6 +148021,7 @@ tipyzregalu.cz, 1
tiqets.com, 0
tir-mauperthuis.fr, 1
tiraloche.com, 1
+tiramisucake.com, 1
tirana-chat.tk, 1
tirandoalplato.tk, 1
tirapan.top, 1
@@ -148719,7 +148039,6 @@ tirgul-vertiujeni.tk, 1
tirion.network, 0
tirion.org, 0
tirionnetwork.de, 1
-tirkhu.info, 1
tirkomplekt.com, 1
tirlins.com, 1
tiroler-kupferschmiede.com, 1
@@ -148738,6 +148057,8 @@ tisknunahadry.cz, 1
tism.in, 1
tisparking.com, 1
tispayments.com, 1
+tissueimmunecellatlas.org, 1
+tissuestabilitycellatlas.org, 1
tissus-paris.com, 1
tisvapo.it, 1
tit-cdn.de, 1
@@ -148771,6 +148092,7 @@ titli.fr, 1
titomweb.fr, 1
titopu.com, 1
titouan.co, 0
+titrespresse.com, 1
titser.ph, 1
tittelbach.at, 1
tittlelawgroup.net, 1
@@ -148779,10 +148101,7 @@ titularizadora.com, 1
titulosuniversitariosalaventa.com, 1
titusetcompagnies.net, 0
titusvillepapd.gov, 1
-tivara.ai, 1
tivara.com, 1
-tivara.net, 1
-tivara.org, 1
tivi.io, 1
tivido.nl, 1
tivit-chill.partners, 1
@@ -148820,6 +148139,7 @@ tjzzz.com, 1
tk-its.net, 1
tk-its.org, 1
tk2net.com, 1
+tk8813.com, 1
tk88at.net, 1
tkacz.pro, 1
tkafinearts.net, 1
@@ -148840,6 +148160,7 @@ tklist.us, 1
tklm.pl, 1
tkmr-gyouseishosi.com, 1
tkn.me, 1
+tknc.de, 1
tkonstantopoulos.tk, 1
tkpayrollsolutions.com, 1
tksainc.com, 1
@@ -148852,12 +148173,10 @@ tlaedu.org, 1
tlc-environmental.co.uk, 1
tlca.org, 1
tlcinteriors.com.au, 1
-tlctrades.com, 1
tldata.co, 1
tldplaza.com, 1
tldtattoo.com, 1
tlearninghub.com, 1
-tlehseasyads.com, 1
tleng.de, 1
tleplus.com, 1
tlercher.de, 1
@@ -148869,7 +148188,6 @@ tlmicorp.com, 1
tln.lib.ee, 1
tlo.xyz, 1
tloschinski.de, 1
-tlotsa.co.za, 1
tloxygen.com, 1
tloxygen.us, 1
tlpn.eu, 1
@@ -148920,6 +148238,8 @@ tmcreationweb.com, 1
tmcrew.org, 1
tmdb.biz, 1
tmdmotorhomes.com, 1
+tme.com, 1
+tme.eu, 1
tmeoworld.tk, 1
tmf.ru, 1
tmhanoi.com, 1
@@ -148939,11 +148259,9 @@ tmp.sx, 1
tmpcdn.xyz, 1
tmpraider.net, 1
tmredondela.tk, 1
-tmrservices.net, 1
tmshea.com, 1
tmstats.fr, 1
tmt.band, 1
-tmykymd.com, 1
tn-bb.com, 1
tn.nic.in, 1
tn0.club, 1
@@ -148967,6 +148285,7 @@ tnr.com.au, 1
tnrealid.gov, 1
tnrf.eu, 1
tnskvi.tk, 1
+tnsolutions.ro, 1
tnsos.gov, 1
tnt-21.com, 1
tnt.construction, 0
@@ -148986,9 +148305,7 @@ to-ya.jp, 1
to.cm, 0
to.gt, 1
toabaja.com, 1
-toabr.de, 1
toad.ga, 1
-toadcreekmusic.com, 1
toade.com, 1
toadox.com, 1
toagroup.com, 1
@@ -149067,7 +148384,6 @@ tochi-urikata.net, 1
tochified.com, 0
tochinoki.co.jp, 1
tocho-america.com, 1
-toconnect.me, 1
tocsindata.com, 1
todacarreira.com, 1
todaciencia.com, 1
@@ -149081,6 +148397,7 @@ todayfashion.info, 1
todayinmississippi.com, 1
todaylearn.tk, 1
todayprice.ga, 1
+todays-golfer.com, 1
todaysbestinsurance.com, 1
todaysdatenow.com, 1
todaysparent.com, 1
@@ -149118,6 +148435,7 @@ todoscomciro.com, 1
todoseaprende.com, 1
todosquerem.uno, 1
todosrv.com, 1
+todotelecom.com, 1
todotiendas.tk, 1
toeflozeldersankara.com, 1
toeglhofer.at, 1
@@ -149263,6 +148581,7 @@ tom.je, 1
tom0907.eu, 1
tomabrafix.de, 1
tomacino.de, 1
+tomaempleo.com, 1
tomahawkwi.gov, 1
tomahwi.gov, 1
toman.rs, 1
@@ -149284,7 +148603,6 @@ tomatis-nantes.com, 1
tomatis-training.ch, 1
tomatofrogs.com, 1
tomatohq.com, 1
-tomatomentor.com, 1
tomaz.eu, 1
tomba.io, 1
tombaker.me, 1
@@ -149382,15 +148700,16 @@ tomsknet.tk, 1
tomsknews.tk, 1
tomslawadvice.com, 1
tomsoft.hr, 1
-tomsoutletstore.in.net, 1
tomspdblog.com, 1
tomssite.tk, 1
tomstew.art, 1
+tomstile.ca, 1
tomtelist.tk, 1
tomthorogood.co.uk, 1
tomthorogood.net, 1
tomthorogood.uk, 1
tomticket.com, 1
+tomtile.ca, 1
tomudding.nl, 1
tomvanlaer.be, 1
tomvannoppen.tk, 1
@@ -149400,10 +148719,10 @@ tomwassenberg.nl, 1
tomwellington.design, 0
tomwilson.io, 0
tomwither.com, 1
-tomy.co.za, 1
tomyork.net, 1
tonabor.ru, 1
tonage.de, 1
+tonalyca.jp, 1
tonarinoliusan.com, 1
tonarinoliusan.net, 1
tonasketwa.gov, 1
@@ -149461,6 +148780,7 @@ tonomoshia.com, 1
tonorosario.tk, 1
tonshaiza.tk, 1
tonsil-stone.com, 1
+tonsilimmune.org, 1
tonsillar-stones.com, 1
tonsit.com, 1
tonsit.org, 0
@@ -149610,6 +148930,7 @@ top1.com.vn, 0
top10-casinosites.net, 1
top10.tk, 1
top100games.ml, 1
+top10answer.com, 1
top10antivirus.review, 1
top10camgirls.com, 1
top10directory.tk, 1
@@ -149626,6 +148947,7 @@ top5camsites.com, 1
top5melhorescursosdedrone.com, 1
topa.tk, 1
topagrar.com, 1
+topaigirlfriend.com, 1
topan.tk, 1
topanimecharacters.com, 1
topanlage.de, 1
@@ -149650,7 +148972,6 @@ topclan.tk, 1
topclassactions.com, 1
topclassfun.ie, 1
topcoffee.cf, 1
-topcompany.be, 1
topcomputacion.com.ar, 1
topconteudos.com.br, 1
topcover.cz, 1
@@ -149675,6 +148996,7 @@ topeyechang.com.tw, 1
topfd.net, 1
topfiremedia.com, 1
topfivepercent.co.uk, 1
+topflightwildlife.com, 1
topfood.club, 1
topfrags.pl, 1
topfreeporn.com, 1
@@ -149683,7 +149005,6 @@ topfx.com, 1
topfx.com.sc, 1
topgallant.gq, 1
topgevelbekleding.nl, 1
-topgrading.com, 0
topgshop.ru, 1
toph.co, 1
tophat.studio, 1
@@ -149702,6 +149023,7 @@ topideipodarkov.ru, 1
topitalianscientists.org, 1
topjeans.ga, 1
topjobs.ch, 1
+topjumpmarketing.com, 1
topknot.gq, 1
topkorea.ml, 1
toplevel.nl, 1
@@ -149791,6 +149113,7 @@ toptenwebhostingsites.com, 1
toptexture.com, 1
toptheto.com, 1
toptica-eagleyard.com, 1
+toptier.com.ar, 1
toptiernetworks.tk, 1
toptour.tk, 1
toptracks.tk, 1
@@ -149808,6 +149131,7 @@ topvisor.ru, 1
topvpn.pl, 1
topwatch.com, 1
topwin.la, 1
+topwipers.com, 1
topwonders.tk, 1
topworkplaces.com, 1
topwowamazing.com, 1
@@ -149821,6 +149145,7 @@ tor4.cf, 1
torahanytime.com, 0
torako-sendai.com, 1
toranjchap.com, 1
+toranm.me, 1
torax.pt, 1
torb.com, 1
torba.tk, 1
@@ -149858,7 +149183,6 @@ tormentgame.com, 1
tormer.com, 1
tormox.ml, 1
tornada-cz.cz, 1
-tornadica.by, 1
tornado-map.de, 1
tornadoarchiv.ml, 1
tornadoautos.com, 1
@@ -149931,7 +149255,6 @@ tortillas-duras.cf, 1
tortillas-duras.ga, 1
tortillas-duras.gq, 1
tortillas-duras.ml, 1
-tortimes.com, 0
tortocan.com, 1
tortoises-turtles.com, 1
tortuga.ga, 1
@@ -149970,9 +149293,9 @@ totalbugdefense.com, 1
totalbyverizon.com, 1
totalcarcheck.co.uk, 1
totalcare.co.nz, 1
-totalcarpetcare.co.uk, 1
totalchecklist.com, 1
totalcontrols.eu, 1
+totaleaseventures.co.ke, 1
totalemaildelivery.com, 1
totalenergies.ca, 1
totalenergies.com, 1
@@ -150020,7 +149343,6 @@ toto-realestate.com, 1
toto.nl, 1
totobetty.com, 1
totodil.es, 1
-totolabs.com, 1
totolink.tw, 1
totora.tk, 1
totositetv.net, 1
@@ -150072,15 +149394,15 @@ toulouscope.fr, 1
toulouselautrec.com.br, 1
toumeitech.com, 1
toupcreative.com, 1
-touquet-volley.com, 0
+touquet-volley.com, 1
tour-japan.ml, 1
tour-vietnam.tk, 1
tourapp.io, 1
touray-enterprise.ch, 1
+tourbox.com, 1
tourbryansk.tk, 1
tourcienaga.tk, 1
tourdatenarchiv.de, 1
-tourdebouw.nl, 1
tourdeltalento.org, 1
tourdewestwoud.nl, 1
toureiffel.paris, 1
@@ -150102,7 +149424,6 @@ tourmalineskincare.com, 0
tourmaster.com, 1
tournamentmgr.com, 1
tournaments.tk, 1
-tournation.info, 1
tourniquets.org, 1
touroogle.com, 1
tourpitch.com, 1
@@ -150185,7 +149506,6 @@ townforge.net, 1
townfremontwi.gov, 1
townhomeproperties.com, 1
townhouseregister.com.au, 1
-townhousesatthegrove.com, 1
townifi.ga, 1
townithacany.gov, 1
townlaretsota.gq, 1
@@ -150464,6 +149784,7 @@ toyventure.ga, 1
tozawa.site, 1
tozdev.com, 1
tp-genie.com, 1
+tp-newsclip.com, 1
tp-shipping.co.uk, 1
tp-technology.co.uk, 1
tpa.or.th, 0
@@ -150554,6 +149875,7 @@ trackchair.com, 1
trackdays4fun.com, 1
trackdemo.io, 1
trackdev.io, 1
+trackee.link, 1
tracker-knigi.gq, 1
tracker.com.ar, 1
trackerx.ga, 1
@@ -150578,6 +149900,7 @@ tracksideintelligence.com.au, 1
trackstaging.io, 1
trackura.com, 1
trackyourlogs.com, 1
+tractareautocluj.ro, 1
tractariauto.tk, 1
tractarimvbcluj.ro, 1
tractive.com, 1
@@ -150613,6 +149936,7 @@ trademen.ga, 1
trademotion.com, 1
tradeorado.de, 1
tradeplotter.com, 1
+traderbobsgeneralstore.com, 1
traderfox.de, 0
traderinside.ga, 1
traderlion.com, 1
@@ -150636,6 +149960,7 @@ tradetaurex.com, 1
tradeview.eu, 1
tradeville.ro, 1
tradewithestonia.com, 0
+tradexbank.ch, 1
tradexpress.ch, 1
tradezlist.tk, 1
tradgardsmart.se, 1
@@ -150661,7 +149986,9 @@ traditions.nl, 1
traditionskapperscollege.nl, 1
traditionsvivantesenimages.ch, 1
tradreams.com, 1
+tradu.co.uk, 1
tradu.com, 1
+traduttore.roma.it, 1
traduvn.com, 1
tradymoney.com, 1
traegerbox.com, 0
@@ -150687,7 +150014,6 @@ traffixdevices.com, 1
trafic-wap.tk, 1
trafic.ro, 1
traficmusik.net, 1
-traficus.club, 1
trafik.tk, 1
trafiken.nu, 1
trafplus.tk, 1
@@ -150726,6 +150052,7 @@ trainiac.com.au, 1
trainingassetsgateway.com, 1
trainingcentral.cf, 1
trainingcourt.com, 1
+trainingfitstudio.fr, 0
trainingflow.com, 1
trainingleadersinternational.org, 1
traininglife.org, 1
@@ -150780,7 +150107,7 @@ tralios.de, 1
tramadol.ga, 1
tramadolhcl.ga, 1
tramclub-basel.ch, 1
-trames.ch, 0
+trames.ch, 1
tramikshop.ml, 1
tramin.in, 1
tramitelegal.com.ar, 1
@@ -150851,7 +150178,6 @@ transdyne.com, 1
transes.com.tr, 1
transexport.pt, 1
transfair.sh, 1
-transfem.world, 1
transfer-sheregesh.com, 0
transfer-vsheregesh.ru, 0
transfer.pw, 1
@@ -150878,9 +150204,14 @@ transforumation.com, 1
transfunnel.io, 1
transfurrmation.town, 1
transgaz.ro, 1
+transgendereninterseksecollectief.nl, 1
transgendergedenkdag.nl, 1
transgenderinfo.nl, 1
+transgendernetwerk.com, 1
+transgendernetwerk.eu, 1
+transgendernetwerk.net, 1
transgendernetwerk.nl, 1
+transgendernetwerk.nu, 1
transgendernetwerk.org, 1
transharder.com, 1
transhumanism.co.uk, 1
@@ -150912,6 +150243,7 @@ translations.com, 1
translationsfirm.tk, 1
translatorall.tk, 1
translatorglobal.tk, 1
+translatorsglobal-languagespro.com, 1
translatoruk.co.uk, 0
translink.com.au, 1
translit-net.tk, 1
@@ -150919,6 +150251,7 @@ translit.ga, 1
translit.ru, 1
translitteration.com, 1
transloc.com, 1
+translucent.io, 1
transmax.com.au, 1
transmitrecordings.com, 1
transmitsecurity.com, 1
@@ -151006,7 +150339,7 @@ trasloedil.it, 1
trasportatore.it, 1
trasportatori.it, 1
trasportoambulanzaprivata.it, 1
-trastornoevitacion.com, 1
+trastornoevitacion.com, 0
trastornolimite.com, 0
tratt.net, 1
trattamenti.biz, 1
@@ -151058,7 +150391,6 @@ travelbiz.cf, 1
travelbiz.ga, 1
travelbiz.gq, 1
travelbunny.ga, 1
-travelcamping.uk, 1
travelcellar.ga, 1
travelcenter.tk, 1
travelchannel.ml, 1
@@ -151101,7 +150433,6 @@ travelglamour.ga, 1
travelgratis.ga, 1
travelhands.ga, 1
travelholicworld.com, 1
-travelholiday.uk, 1
travelhub.ie, 1
travelhusky.ga, 1
traveling-thailand.info, 1
@@ -151132,7 +150463,6 @@ travelnews.cf, 1
travelnotoria.com, 1
travelnumber.ga, 1
travelodge.co.uk, 1
-travelofapps.uk, 1
traveloffline.ga, 1
travelogue.jp, 1
traveloka.com, 1
@@ -151183,7 +150513,6 @@ travelthisweekend.com, 1
travelthunder.ga, 1
traveltimeagency.com, 1
traveltomachupichu.com, 1
-traveltools.uk, 1
traveltourist.tk, 1
traveltovietnam.ga, 1
traveltruster.com, 0
@@ -151226,7 +150555,6 @@ trazpracaclub.com.br, 1
trazs.com, 1
trbanka.com, 1
trblwlf.net, 1
-trcollaborative.com, 1
trcont.com, 1
trctaborda.com.br, 1
trdepoist.net, 1
@@ -151258,12 +150586,12 @@ tree.gdn, 1
tree0.xyz, 1
treebaglia.xyz, 1
treecycle.com.au, 1
-treehorn.nl, 1
treehousemidigama.com, 1
treehouseresort.nl, 1
treeinspection.com, 1
treeliss.com.br, 1
treemadeiras.com.br, 1
+treeofsex.org, 1
treeremovalfourways.co.za, 1
treeremovalsboksburg.co.za, 1
treesonthemove.com, 1
@@ -151304,7 +150632,6 @@ tremontil.gov, 1
tremor-pdl.com, 1
tremors.tk, 1
trempcountywi.gov, 1
-tren-counseling.nl, 1
tren.cz, 1
trenancefarmcottages.co.uk, 1
trenchapps.com, 1
@@ -151336,7 +150663,6 @@ trendparty.net, 1
trendpie.com, 1
trendreportdeals.com, 1
trends-news.tk, 1
-trendsce.com.br, 1
trendsinhr.nl, 1
trendtesettur.com, 0
trendware.de, 1
@@ -151364,7 +150690,6 @@ tresoro.at, 1
tresoro.de, 1
tresredatores.tk, 1
tretinoin.gq, 1
-tretinoineff.online, 1
treuhand-talente.ch, 1
treurtransport.tk, 1
trevea.fi, 1
@@ -151374,6 +150699,7 @@ trevorblondeel.com, 1
trevorfox.com, 1
trevorkay.tk, 1
trevormarron.co.uk, 1
+trevorwong.ca, 1
trevsanders.co.uk, 1
treworgeycottages.com, 1
trexedia.com, 1
@@ -151464,7 +150790,6 @@ tricountyheatingcooling.com, 1
tridena.com, 1
trident-online.de, 1
trident1000logoi.gr, 1
-tridentaquatics.net, 1
tridentdiagnostics.com, 1
tridentfreightinc.com, 1
tridentmedia.gq, 1
@@ -151543,6 +150868,7 @@ trinityguardion.com, 1
trinityhealth.com, 1
trinitylex.org, 1
trinitystclairvip.com, 1
+trinitysurfaces.com, 1
trinitywernersville.org, 1
trink-und-partyspiele.de, 1
trinnes.net, 1
@@ -151583,6 +150909,7 @@ tripout.tech, 1
tripozo.com, 1
tripp.xyz, 1
trippati.com, 1
+tripperoo.nl, 1
trippers.info, 1
trippinktattoos.com, 1
trips4foodies.com, 1
@@ -151603,6 +150930,7 @@ tristanfarkas.one, 1
tristanhall.com, 1
tristansommer.de, 1
tritansoft.com, 1
+tritinity.com, 1
tritium.cf, 1
tritoncc.com, 1
triumph-duesseldorf.com, 1
@@ -151689,7 +151017,6 @@ tronnews.co, 1
tronnews.life, 1
tronnews.me, 1
tronnews.news, 1
-tronnews.world, 1
tronnews.xyz, 1
tronox.com, 1
troomcafe.com, 1
@@ -151703,6 +151030,7 @@ trophyshopinc.com, 1
tropic.mu, 1
tropicalhurricanetracker.com, 1
tropicalislands.tk, 1
+tropicalstandard.com, 1
tropicalticket.cf, 1
tropicalticket.ml, 1
tropicaltravelco.com, 1
@@ -151767,7 +151095,6 @@ troywistcroix.gov, 1
trpa.gov, 1
trs.tn, 1
trtadalafilone.com, 1
-trtadalafilone.net, 1
trtasarim.tk, 1
tru.ltd, 1
truasset.com, 1
@@ -151777,7 +151104,6 @@ trubos.com.ua, 1
trucatout.tk, 1
trucchibellezza.com, 1
trucchibellezza.it, 1
-truckbossdecks.com, 1
truckdeal.com.ph, 1
truckerjobusa.com, 1
truckersdatabase.cf, 1
@@ -151822,6 +151148,8 @@ truelayer.com, 1
truelovesakuya.info, 1
trueminecraft.com, 1
truenorthartcollektive.com, 1
+truenorthtalk.ca, 1
+truenorthtalk.com, 1
truentumvet.it, 1
truepartner.academy, 1
truepartner.asia, 1
@@ -151908,7 +151236,6 @@ trumpet-call.org, 1
trumpet-whistleblowing.eu, 1
trumplibrary.gov, 1
trumppresidency.org, 1
-trumptragic.com, 1
trumptrips.com, 1
trumptumbles.com, 1
trumpwhitehouse.gov, 1
@@ -151973,6 +151300,7 @@ trustyoursupplier.com, 1
truten.tk, 1
truth.com, 1
truth.tk, 1
+truthenforcers.com, 1
truthmessages.pw, 1
truthsayer.tk, 1
truthsocial.com, 1
@@ -152062,7 +151390,6 @@ tsbg.com, 1
tsbraz.com, 1
tsbraz.com.br, 1
tsc.gov, 1
-tsc.tax, 1
tscampus.online, 1
tsdweb.com, 1
tsedryk.ca, 1
@@ -152217,9 +151544,7 @@ tu6.pm, 1
tuaflor.com.br, 1
tualiadaenlimpieza.com, 1
tuang-tuang.com, 1
-tuasaude.com, 1
tubach.org, 1
-tubanten.nl, 1
tubantia.nl, 1
tubao.com.br, 1
tubator.com, 1
@@ -152240,10 +151565,10 @@ tubexxxone.com, 1
tubing.cf, 1
tubs4fun.co.uk, 1
tubsof.fun, 1
-tubuenpedido.com, 1
tubul.net, 1
tubuscador.tk, 1
tucarora.tk, 1
+tucarro.com, 1
tucidi.net, 1
tuck2000.com, 1
tuckerman.com.au, 1
@@ -152327,12 +151652,16 @@ tulikajain.ga, 1
tulikajain.gq, 1
tulikukko.tk, 1
tulippublishing.com.au, 1
+tulipzulip.com, 1
+tulipzulip.eu, 1
+tulipzulip.net, 1
+tulipzulip.nl, 1
+tulipzulip.org, 1
tulisan.tk, 1
tull.tk, 1
tuller.tk, 1
tulocura.tk, 1
tulosleep.com, 1
-tulotos.com, 1
tulpawiki.org, 1
tulsa.tech, 1
tulsafathers.com, 1
@@ -152347,7 +151676,6 @@ tumarcafe.com, 1
tumblenet.tk, 1
tumblr.com, 1
tumblrsbest.com, 1
-tumblrthemes.me, 1
tumed-ks.org, 1
tumedico.es, 1
tumelum.de, 1
@@ -152356,6 +151684,7 @@ tumen.gq, 1
tumen.ml, 1
tumen.tk, 1
tumentorweb.com.mx, 1
+tumoto.com, 1
tumpicon.org, 1
tumult-productions.tk, 1
tun.bible, 1
@@ -152367,6 +151696,7 @@ tundermadar.hu, 1
tune-web.de, 1
tunenet.ml, 1
tuner.cloud, 1
+tunescoot.site, 0
tuneserver.tk, 0
tuniclick.net, 0
tuning-parts24.de, 1
@@ -152543,6 +151873,7 @@ turnoffthelights.video, 1
turnonsocial.com, 1
turnosinscripcionchascomus.site, 1
turnover.cf, 1
+turntableexpertreviews.com, 1
turnto23.com, 1
turntolinux.com, 1
turntup.co.jp, 1
@@ -152613,11 +151944,11 @@ tutorialitmalaysia.tk, 1
tutorialphotoshop.tk, 1
tutorials.vg, 1
tutorialseo.com.br, 1
+tutorialtactic.com, 1
tutoriel-arduino.com, 1
tutoringindustry.tk, 1
tutorio.ga, 1
tutorrecruitment.com.au, 1
-tutplexme.info, 1
tuts4you.com, 1
tutteo.com, 1
tuttimundi.org, 0
@@ -152670,7 +152001,6 @@ tv-mainzlar.de, 1
tv-online.ml, 1
tv-pes.cz, 1
tv-programme.com, 1
-tv-radio.com, 1
tv-seznam-cz.cz, 1
tv-seznamcz.cz, 1
tv-sports.fr, 1
@@ -152700,7 +152030,6 @@ tvdheijden.com, 1
tvears.com, 1
tveni.com, 1
tvenligne.tk, 1
-tver-msk.ru, 1
tver-news.net, 1
tver2000.tk, 1
tver69.tk, 1
@@ -152722,6 +152051,8 @@ tvkaista.org, 1
tvkampen.com, 1
tvkaren.tk, 1
tvlanguedoc.com, 1
+tvleader.one, 1
+tvleader.uk, 1
tvleaks.se, 1
tvlplus.net, 1
tvm.events, 1
@@ -152825,6 +152156,7 @@ twinkpop.com, 1
twinlakeswi.gov, 1
twinlimousine.com, 1
twinningstore.com, 1
+twinstore.com.ar, 1
twinstudiosparis.com, 1
twinztech.com, 1
twist.com, 1
@@ -152889,7 +152221,6 @@ twopipes.org, 1
tworaz.net, 1
twoseven.xyz, 1
twospirits.org, 1
-twotartstoppers.com, 1
twotcast.com, 1
twotogether-railcard.co.uk, 1
twotravel.world, 1
@@ -153066,19 +152397,18 @@ tyva.gq, 1
tyva.ml, 1
tyva.tk, 1
tz9.co, 1
+tzcdn.eu, 1
+tzcdn.nl, 1
tzchz.pp.ua, 1
tzdn.gq, 1
tzeribi.fr, 1
-tzgo.at, 1
tzinsurance.com, 1
tziyona.net, 1
tznews.me, 1
tzonevrakis.gr, 1
tzsec.com, 1
-tzsrv.cf, 1
tzsrv.com, 1
tzsrv.de, 1
-tzsrv.tk, 1
tzunami.tk, 1
tzunamiblog.tk, 1
tzwe.com, 1
@@ -153089,6 +152419,7 @@ u-he.com, 1
u-msg.com.au, 1
u-page.nl, 1
u-pas.com.au, 1
+u-ranking.es, 1
u-time.com.au, 1
u-watch.it, 1
u.nu, 1
@@ -153177,7 +152508,6 @@ ubaldopoa.tk, 1
ubanks.com.ua, 1
ubcani.com, 0
ubedacomercial.com, 1
-ubeen.to, 1
uber-work.tk, 1
uberactivist.com, 1
uberalles.live, 1
@@ -153197,6 +152527,7 @@ ubezpieczeniemieszkania.pl, 1
ubezpieczenienanarty.pl, 1
ubezpieczenienarciarskie.pl, 1
ubezpieczenienazycie.net.pl, 1
+ubezpieczeniepsa.com, 1
ubezpieczenieturystyczne.com.pl, 1
ubezpieczeniezycia.pl, 1
ubezpieczeniezyciowe.pl, 1
@@ -153222,7 +152553,6 @@ ubun.kr, 1
ubun.net, 1
ubuntu-es.org, 1
ubuntu-tr.net, 1
-ubuntu-tutorials.com, 1
ubuntu18.com, 1
ubuntuproductions.fi, 1
ubutovo.ga, 1
@@ -153264,13 +152594,12 @@ uckunlaboratuvari.com, 1
uclf.de, 1
uclip.club, 1
ucmatedeveloper.gq, 1
-ucmcomponents.com, 1
ucmjlawyers.com, 1
ucmultrasonics.com, 1
-ucmultrasuoni.it, 1
ucngame.com, 1
ucollege.edu, 1
ucphotography.net.au, 1
+ucplusdansk.dk, 1
ucppe.org, 1
ucraft.ai, 1
ucrdatatool.gov, 1
@@ -153295,11 +152624,11 @@ udenlandskecasinoer.dk, 1
udenlandskeonlinecasino.com, 1
udenrigspolitik.dk, 1
udeoghjemme.dk, 1
-udi.no, 1
udid.fyi, 1
udien.tk, 1
udik.tk, 1
udinetoday.it, 1
+udiparfum.com.br, 1
udla.edu.ec, 1
udmarbella.tk, 1
udmurt-news.net, 1
@@ -153361,6 +152690,7 @@ ugarte-zestoa.com, 1
ugbusiness.com, 1
ugd.ro, 0
ugeek.tk, 1
+ugfzc3dvcmq6.com, 1
uggedal.com, 1
ugirlx.com, 1
ugli.com, 1
@@ -153372,12 +152702,12 @@ uglycat.org, 1
uglycat.social, 1
uglydogpgh.com, 0
uglypeople.com, 1
-ugmtc.org, 1
ugolovnyj-advokat.cf, 1
ugolsibiri.ru, 1
ugra-news.net, 1
ugrod.ru, 1
ugsonline.tk, 1
+uguragdas.com.tr, 1
ugurkorkmazyurek.com, 1
ugurnakliyat.com.tr, 1
uguu.se, 1
@@ -153421,7 +152751,6 @@ uisd.net, 1
uitdeoudekoektrommel.com, 1
uiterwijk.org, 1
uitgeverij-deviant.nl, 1
-uitingent.be, 1
uitvaartgoessens.be, 1
uitvaartverzekeringwijzer.net, 0
uitvaartvrouwenfriesland.nl, 1
@@ -153441,6 +152770,8 @@ uk-halle.de, 1
uk-sands.org, 1
uk-tesh.org, 1
uk.search.yahoo.com, 0
+uk10k.org, 1
+uk10k.org.uk, 1
ukari.hokkaido.jp, 0
ukb.sch.id, 0
ukbc.london, 1
@@ -153519,6 +152850,7 @@ ulfmikaelmattsson.se, 1
ulgaipbox.online, 1
uli-eckhardt.de, 1
ulickaprozivot.cz, 1
+ulike123.com, 1
ulitroyo.com, 1
ullah.se, 1
ulli.ml, 1
@@ -153537,7 +152869,6 @@ ulrikethiele.de, 1
ulrum1834.nl, 1
ulsterbank.co.uk, 1
ulsterbank.com, 1
-ulsterbank.ie, 1
ulsters.cf, 1
ulstersheriffny.gov, 1
ultahost.com, 1
@@ -153583,7 +152914,6 @@ ultralife.cf, 1
ultraman.tk, 1
ultraonline.ml, 1
ultrapedic.com, 1
-ultrarare.space, 1
ultras-venlo.tk, 1
ultrasbet.com, 1
ultrasite.tk, 1
@@ -153611,6 +152941,7 @@ um.es, 0
um6p.ma, 1
umagoyal.com, 1
umami.vercel.app, 1
+umamibbqsushi.com, 1
umamibites.com, 1
umanityracing.com, 1
umanupszn.gov.ua, 1
@@ -153638,6 +152969,7 @@ umdasch.com, 1
umeligence.cz, 1
umenlisam.com, 1
umetro.ru, 1
+umhcc.org.au, 1
umirt.com, 1
umisonoda.com, 1
umitribe.gov, 1
@@ -153664,7 +152996,6 @@ umv.gov.co, 1
umwandeln-online.de, 1
umweltgalerie.de, 1
umweltnetz-schweiz.ch, 1
-umww.com, 1
umzuege-hannover.net, 1
umzugschecker.de, 1
umzugsunternehmen.berlin, 1
@@ -153734,7 +153065,6 @@ under15.ml, 1
undercliff.tk, 1
underconsideration.com, 1
underconstruction.co.nz, 1
-undercover.cn, 1
undercoverxp.tk, 1
undercucho.tk, 1
underdestruction.tk, 1
@@ -153745,6 +153075,7 @@ underground.jp, 1
undergrounder.ga, 1
undergroundiron.tk, 1
undergroundmusic.tk, 1
+underhentai.net, 1
underlined.fr, 1
undernet.org, 1
undernet.uy, 0
@@ -153754,7 +153085,6 @@ underskatten.tk, 1
underskog.no, 1
understandingmoney.gov.au, 1
understandmaths.co.za, 1
-undertake.fr, 1
undertow.ga, 1
underwaterasia.info, 1
underwear-fashion.tk, 1
@@ -153762,6 +153092,7 @@ underwood.tk, 1
underwoodpatents.com, 1
underworlds.tk, 1
underwriting.ai, 1
+undesk.com.br, 1
undiariodiferente.tk, 1
undiepatrol.tk, 1
undiewarehouse.com.au, 1
@@ -153808,7 +153139,6 @@ unghie.com, 1
ungnyo.org, 1
ungolianth.tk, 1
ungooglize.org, 1
-ungovernable.men, 1
ungrafakta.cf, 1
ungrafakta.gq, 1
ungrafakta.tk, 1
@@ -153824,6 +153154,7 @@ unia.es, 1
unian.info, 1
uniaofraternalraulcury.com.br, 1
unibaby.com, 1
+unibank.am, 1
unibet.bz, 1
unibet.ltd, 1
unibev.net, 1
@@ -153835,7 +153166,6 @@ unibuses.co.uk, 1
unicaf.org, 1
unicard.ge, 1
unicarehealth.com.au, 1
-unicareio.info, 1
unicarepresentaciones.com, 1
unicef.bg, 1
unicef.pl, 1
@@ -153853,11 +153183,15 @@ unicioushop.com, 1
uniclejess.ca, 1
unicode.gq, 1
unicode.link, 1
+unicodeart.com, 1
unicodeplus.com, 1
unicodesign.ch, 1
unicolabo.jp, 1
unicomergiraygana.com, 1
unicommerce.com, 1
+unicoms.biz, 1
+unicoms.travel, 1
+unicoms.vip, 1
unicool.tk, 1
unicorn-systems.net, 1
unicorn.melbourne, 1
@@ -153868,6 +153202,7 @@ unicornmusic.tk, 1
unicornsoft.tk, 1
unicorntooling.eu, 1
unicrack.cf, 1
+unicreditbank.ru, 1
unicreditbulbank.info, 1
unicul.tk, 1
unicycle.ga, 1
@@ -153888,8 +153223,8 @@ unifiedworld.co.uk, 1
uniflow360.com, 1
uniforcele.com, 1
uniformcomponents.com, 0
+uniformd.co.uk, 1
uniformebateriasheliar.com.br, 1
-uniforms.com.au, 1
unify.id, 1
unihifi.com, 1
unihostbrasil.com.br, 1
@@ -154031,7 +153366,6 @@ unitpurchaseplan.com, 1
unitreedoor.com, 1
unitycardiology.com.au, 1
unityconsciousnessbooks.com, 1
-unityfactory.io, 1
unityor.gov, 1
unitysavannah.org, 1
unityseguros.com, 1
@@ -154082,14 +153416,12 @@ universitepourlavie.tk, 1
universitesegou.ml, 1
universitetsforlaget.no, 1
universityadmissions.se, 1
-universitycentre.co.uk, 1
universitycompare.com, 1
universityhealthnews.com, 1
universityhealthplans.com, 1
universityhousemates.co.uk, 1
universityhousemates.uk, 1
universityinmaryland.com, 1
-universityintexas.com, 1
universityofbohol.edu.ph, 1
universityofedinburgh.org.uk, 1
universityofnarowal.ga, 1
@@ -154245,7 +153577,6 @@ unufoundation.com, 1
unun.fi, 0
unusualhatclub.com, 1
unusualsubstance.com, 1
-unusualyoung.com, 1
unvarnishedco.com, 1
unveilturkey.com, 1
unvired.com, 1
@@ -154353,7 +153684,6 @@ upliftingappalachia.org, 1
upliftweb.com.au, 1
uplinkgame.tk, 1
uplinklabs.net, 1
-uplinkrev.com, 1
upload.facebook.com, 0
uploadbaz.me, 1
uploadbeta.com, 1
@@ -154374,7 +153704,6 @@ upnext.tk, 1
upnorth.solutions, 1
uportal.tk, 1
uppercloud.cf, 1
-upperdeschuteswatershedcouncil.org, 1
upperglass.co.uk, 1
uppergroup.co.za, 1
upperhunterlibraries.net.au, 1
@@ -154418,7 +153747,6 @@ upsettunnel.com, 1
upshurda.com, 1
upsidelearning.com, 1
upsilonsigmaphi.us, 1
-upsiteseo.com, 1
upskill.cl, 1
upskilllearning.ml, 1
upskirtmania.tk, 1
@@ -154501,6 +153829,7 @@ urbaneer.com, 1
urbanesecurity.com, 1
urbanface.photography, 1
urbanfineart.ro, 1
+urbanfront.com, 1
urbanfun.ga, 1
urbangaming.tk, 1
urbangardening.ga, 1
@@ -154519,7 +153848,6 @@ urbanlounge.tk, 1
urbanmic.com, 1
urbanmsp.com, 1
urbanmuslim.tk, 1
-urbannewsservice.com, 1
urbanology.tk, 1
urbanon.cz, 1
urbanovich.net, 1
@@ -154530,6 +153858,7 @@ urbansketchers.org, 1
urbansoundwave.tk, 1
urbanspitz.tk, 1
urbansportsclub.com, 1
+urbanstrategiesinc.org, 1
urbantecno.com, 1
urbantrafficschool.com, 1
urbantrail.tk, 1
@@ -154579,14 +153908,16 @@ urko.shop, 1
urkonsultant.tk, 1
urkult.se, 0
url.fm, 1
-url.moe, 1
+url.pictures, 1
url.rw, 0
urlakite.com, 1
urlaub-busreisen.de, 1
urlaub-fuerteventura.info, 1
urlaub-leitner.at, 1
+urlaub.de, 1
urlaubsziele.com, 1
urlbox.tk, 1
+urlcitr.us, 1
urlcitrus.com, 1
urlendecoder.tk, 1
urlfly.tk, 1
@@ -154594,6 +153925,7 @@ urlgoo.ga, 1
urlive.ga, 1
urljournal.tk, 1
urlparse.com, 1
+urlr.me, 1
urlrating.com, 1
urlrewriting.net, 1
urlscan.io, 1
@@ -154607,12 +153939,16 @@ urlwing.tk, 1
urlz.ml, 1
urlz.tk, 1
urmikron.tk, 1
+urmx.eu, 1
+urmx.net, 1
+urmx.org, 1
urnabios.com, 1
urni-eco.ru, 1
uro.soy, 1
urocentre.ga, 1
urogen.com, 0
uroki.tk, 1
+urokoff.net, 1
urology.wiki, 1
urologypractice.sg, 1
urologyspecialistspc.com, 1
@@ -154633,7 +153969,6 @@ urt.fm, 1
uruguay-experience.com, 1
urukproject.org, 1
uruslugi.tk, 1
-urvastekool.edu.ee, 1
us-igloopreview.com, 1
us-immigration.com, 1
us.ax, 1
@@ -154713,7 +154048,6 @@ usdfc.gov, 1
usdirectory.com, 1
usdirectory.tk, 1
usdoj.gov, 1
-usdomainrating.xyz, 1
usdoscloud.gov, 1
usdrugtestcenters.com, 1
usds.gov, 1
@@ -154728,12 +154062,13 @@ used255.xyz, 1
usedoilfieldhouses.com, 1
useful-thing.ru, 1
usefulinsight.com, 1
+usefultravelsite.com, 1
useguestlist.com, 1
useinsider.com, 1
useloom.com, 1
usemergencyservices.com, 1
usenet.tk, 1
-usenethd.li, 1
+usenethd.li, 0
usenetreviewz.com, 1
useon.com, 1
useon.ru, 0
@@ -154747,6 +154082,7 @@ userhelp.tk, 1
userjs.org, 1
username.nz, 1
userra.gov, 1
+usersnap.com, 1
userstation.de, 1
userstyles.world, 1
usetypo3.com, 1
@@ -154788,6 +154124,7 @@ usma.org, 1
usmammy.com.tw, 1
usmanelectronic.pk, 1
usmantrader.gq, 1
+usmc-mccs.us, 1
usmiddleclass.net, 1
usmint.gov, 1
usmoneyreserve.com, 1
@@ -154848,7 +154185,6 @@ usvisallc.com, 1
uswitch.com, 1
usyfawovad.gq, 1
usygov.ga, 1
-usynaptics.com, 1
ut-addicted.com, 1
ut-jobs.net, 1
ut5s.com, 1
@@ -154889,7 +154225,6 @@ utilajedepadure.ro, 1
utilajexpert.ro, 1
utilbot.co, 1
utilful.com, 1
-utilia.tools, 1
utilidad.tk, 1
utililab.com, 1
utilitarian.com, 1
@@ -154905,6 +154240,7 @@ utilityapi.com, 1
utleg.gov, 1
utloperadora.com.br, 1
utobo.com, 1
+utobrokers.com, 1
utodyg.ga, 1
utonia.ch, 1
utopialgb.org.uk, 1
@@ -154958,7 +154294,7 @@ uvb.com.co, 1
uvbaski.art, 1
uvedobletaberna.com, 1
uvesco.es, 1
-uvlamp.ee, 1
+uvlamp.ee, 0
uvocorp.com, 1
uvomaltiv.ch, 1
uvsa.org.au, 1
@@ -155001,6 +154337,7 @@ uxpressia.com, 1
uxteam.com, 1
uxtly.com, 1
uy.search.yahoo.com, 0
+uyghurian.com, 1
uygindir.ml, 1
uygur.org, 1
uyz.me, 1
@@ -155052,7 +154389,6 @@ v-phoenix.tk, 1
v-plus.ru, 1
v-spin.cz, 1
v-tek.fi, 1
-v-x-p.com, 1
v-zone.org, 1
v.pn, 1
v.ps, 1
@@ -155060,7 +154396,6 @@ v0ctor.me, 1
v0i.de, 1
v0v.cc, 1
v0v.de, 1
-v1.dk, 1
v10008.com, 1
v1r2zz.tk, 1
v1sit0r.ru, 1
@@ -155080,6 +154415,7 @@ v5197.co, 1
v55565.com, 0
v5ray.club, 1
v5ray.top, 1
+v5x.eu, 1
v6004.com, 1
v6021.com, 0
v6350.com, 0
@@ -155125,7 +154461,6 @@ vacatecleaning.melbourne, 1
vacati0n.tk, 1
vacation-in-pisak.tk, 1
vacationfund.co, 1
-vacationnews.xyz, 1
vacationsforcouples.com, 1
vacationswithheather.com, 1
vacaturesonline.nl, 1
@@ -155173,7 +154508,6 @@ vagabond.film, 1
vagabond.fr, 1
vagabond.tk, 1
vagabondages.tk, 1
-vagabondgal.com, 1
vagabundos.tk, 1
vagaerg.com, 1
vagaerg.net, 1
@@ -155212,7 +154546,6 @@ vakwinkeldemo.nl, 1
val-casies.net, 1
val-tool.com, 1
valach.cz, 1
-valadroit.cc, 1
valais.ch, 1
valant.io, 1
valaphee.com, 1
@@ -155280,7 +154613,6 @@ valetez.com, 0
valgagym.ee, 1
valgavesi.ee, 1
valgeklaar.ee, 1
-valhallaconfections.com, 0
valhallastrengthsthbne.com.au, 1
valiakhmetov.tk, 1
valiant.finance, 1
@@ -155327,7 +154659,6 @@ vallejoca.gov, 1
vallen.com, 1
vallenar.tk, 1
valley-football.org, 1
-valleyaesthetics.com, 1
valleybankofcommerce.com, 1
valleybrookvillagenj.com, 1
valleycom.com, 1
@@ -155348,7 +154679,6 @@ valnetcdn.com, 1
valoan.me, 1
valoansforvets.com, 1
valocime.fr, 1
-valolo.fr, 1
valopv.be, 1
valor-host.ml, 1
valorantpicker.com, 0
@@ -155373,9 +154703,9 @@ valtech.de, 1
valtech.io, 1
valtherperron.nl, 1
valtlai.fi, 1
+valtlai.net, 1
valtoaho.com, 1
valtool.uk, 1
-valtrexmedication.online, 1
valu.com.eg, 1
valudo.st, 1
value.gd, 1
@@ -155431,7 +154761,6 @@ vananservices.com, 1
vanarok.xyz, 0
vanbalen.be, 1
vanbarel.tk, 1
-vanboven.nl, 1
vanboyvital.tk, 1
vanbruchem.tk, 1
vanburencounty-mi.gov, 1
@@ -155480,14 +154809,8 @@ vanessabalibridal.com, 1
vanessaglendagarcia.tk, 1
vanessarivas.com, 1
vaneurology.com, 1
-vaneyck2020.be, 1
-vaneyckexpo.be, 1
-vaneyckwashere.be, 1
-vaneyckwashere.com, 1
-vaneyckwashere.eu, 1
-vaneyckwashere.gent, 1
vangenderententverhuur.nl, 1
-vangest.pt, 1
+vangest.com, 1
vangoghcoaching.nl, 1
vanguards.tk, 1
vanhatten.com, 1
@@ -155524,12 +154847,10 @@ vanouwerkerk.net, 1
vanquish.tk, 1
vanral.com.br, 1
vanrichie.nl, 1
-vans-shoes.cc, 1
vanspa.vn, 1
vanstoftotleven.nl, 1
vanta.com, 1
vantagepointpreneed.com, 1
-vantagesfa.com, 1
vantharp.com, 1
vantru.is, 1
vanuithartenziel.nl, 1
@@ -155544,28 +154865,24 @@ vanwunnik.com, 1
vanya.click, 1
vanya.men, 1
vanyasem.ru, 1
-vanyavpn.ac, 1
vanyavpn.ag, 1
-vanyavpn.as, 1
vanyavpn.cc, 1
vanyavpn.cl, 1
vanyavpn.co, 1
vanyavpn.ec, 1
-vanyavpn.gg, 1
vanyavpn.hn, 1
+vanyavpn.id, 1
vanyavpn.im, 1
vanyavpn.io, 1
vanyavpn.net, 1
vanyavpn.org, 1
vanyavpn.ru, 1
vaoig.gov, 1
-vapco24.com, 1
vapebarstore.com, 1
vapebarstore.hu, 1
vapebarstore.io, 1
vapebhd.com, 1
vapebuddy.ch, 1
-vapeclub.co.uk, 1
vapecom-shop.com, 1
vapecraftinc.com, 0
vapecrunch.com, 1
@@ -155580,7 +154897,6 @@ vapetaclope.cf, 1
vapevine.ca, 1
vapex.pl, 1
vapify.pl, 1
-vapingdaily.com, 1
vaplantatlas.org, 1
vapocial.com, 1
vapolik.fr, 1
@@ -155622,6 +154938,7 @@ varjuring.tk, 1
varlin.tk, 1
varney.tk, 1
varnish.ga, 1
+varoscak.de, 1
varshathacker.com, 1
varun-rajeshwari.tk, 1
varunagw.com, 1
@@ -155630,6 +154947,7 @@ varztupasaulis.com, 1
varztupasaulis.eu, 1
varztupasaulis.lt, 1
varztupasaulis.net, 1
+vas-web.eu, 1
vas-webmaster.cz, 1
vasaconsulting.com, 1
vasafitness.com, 1
@@ -155686,13 +155004,13 @@ vatav.eu, 1
vatav.tk, 1
vatazhok.com, 1
vatc.org, 1
+vatcompliance.com, 1
vates.tech, 1
vatikantour.tk, 1
vatman.tk, 1
vatnik.info, 1
vato.nl, 1
vats.im, 1
-vattulainen.fi, 1
vauban-ip.com, 1
vauceri.hr, 1
vaughanrisher.com, 1
@@ -155708,6 +155026,7 @@ vault81.de, 1
vaultdoma.in, 1
vaulters.net, 1
vaulters.org, 1
+vaultify.club, 1
vaultlabs1226.com, 1
vaultproject.io, 0
vaur.fr, 1
@@ -155734,7 +155053,6 @@ vbetcn.com, 1
vbl.co.th, 1
vbql.me, 1
vbsoft.cz, 1
-vbttc.com, 1
vburyatii.ml, 1
vbwinery.com, 1
vc-dealer.jp, 1
@@ -155744,6 +155062,7 @@ vcacursus.nl, 1
vcahospitals.com, 1
vcanederland.nl, 1
vcard.mx, 1
+vccmurah.net, 1
vccv.cc, 0
vcdspro.de, 1
vcebookclub.com.au, 1
@@ -155900,8 +155219,10 @@ vegoresto.fr, 1
vegtelenchat.tk, 1
veguillas.tk, 1
vegvor.com, 1
+vehicledocs.ie, 1
vehicleenquiry.service.gov.uk, 1
vehiclehistory.gov, 1
+vehicleinforcheck.com, 1
vehicleinfozone.com, 1
vehiclemanuals.shop, 1
vehiclematsuk.com, 0
@@ -155910,7 +155231,6 @@ veidiheimar.is, 1
veikkosimpanen.fi, 1
veiligesmartcities.nl, 1
veilletechno-it.info, 1
-veilofsecurity.com, 1
veintidos.com.ar, 1
vejanoticias.com.br, 1
vejaparki.lv, 1
@@ -155943,7 +155263,6 @@ vellandreathcornishcottages.com, 1
vellingetaxi.se, 1
velloindustry.com, 1
velmart.ua, 1
-velmorra.id, 1
velo-doktor.ch, 1
velo-volga.tk, 1
velo24.tk, 1
@@ -155982,6 +155301,7 @@ velvpay.com, 1
velyn.my.id, 1
vema-bg.com, 1
vemm-reunion.org, 1
+vemtambem.com, 1
vemviajar.pt, 1
venacifuentes.tk, 1
venali.tk, 1
@@ -156013,6 +155333,10 @@ vendomicasaenserena.cl, 1
vendoo.co, 1
vendor-finance.uk, 1
vendorconnect.nyc, 1
+vendordiagram.com, 1
+vendordiagram.eu, 1
+vendordiagram.net, 1
+vendordiagram.org, 1
vendorful.com, 1
vendorleasing.uk, 1
vendorpedia.com, 1
@@ -156055,6 +155379,7 @@ venezuelalibre.tk, 1
venga.tk, 1
vengriya.tk, 1
venicci.co.uk, 1
+venice.ai, 1
venicecakes.ga, 1
venicecomputerrepair.com, 1
venicefl.gov, 1
@@ -156063,6 +155388,11 @@ veniceinsiderguide.com, 1
veniceoarsman.com, 1
venicerealdeal.com, 1
venlafaxine.gq, 1
+venndor.eu, 1
+venndordiagram.com, 1
+venndordiagram.eu, 1
+venndordiagram.net, 1
+venndordiagram.org, 1
venndy.com, 1
vennet.fr, 1
vennprime.com, 1
@@ -156088,7 +155418,6 @@ ventizo.com, 1
ventnose.com, 1
ventolin-hfa.tk, 1
ventolin.ga, 1
-ventolininhaler.top, 1
ventomaxx.de, 1
ventor.ml, 1
ventosport.nl, 1
@@ -156131,6 +155460,7 @@ veramagazine.jp, 0
veramark.cl, 1
verandering-berlin.de, 1
veranovivo.com, 1
+veransadigital.com, 1
verasani.ch, 1
verasani.com, 1
verascityscience.com, 1
@@ -156158,6 +155488,7 @@ vercel.email, 1
vercel.org, 1
vercel.sh, 1
vercountyil.gov, 1
+verdantnature.com, 1
verdensflag.dk, 1
verdeplus.net, 1
verdesfoundation.org, 1
@@ -156179,7 +155510,6 @@ verfassungsklage.at, 1
verge-solutions.com, 1
vergehealth.com, 1
vergelijksimonly.nl, 1
-vergelijkwitgoed.nl, 1
vergesense.com, 1
vergessen.cn, 1
vergezogt.nl, 1
@@ -156199,8 +155529,9 @@ verificationlink.ga, 1
verified.lu, 1
verifiedchat.co, 1
verifiedcliq.com, 1
-verifiedhandles.org, 1
+verifiedfirst.com, 1
verifiedjoseph.com, 0
+verifiedsol.com, 1
verifiermesactions.com, 1
verifiny.com, 1
verifize.co.za, 1
@@ -156229,11 +155560,11 @@ verix.com, 1
verizonconnect.com, 0
verkada.com, 1
verkami.com, 1
-verkeer.gent, 1
verkeersschoolrichardschut.nl, 1
verkeersschoolvanhouten.nl, 1
verkkovalmentajat.fi, 1
verkossa.tk, 1
+verksampsykologi.com, 1
verlag-lq.at, 1
verlag-lq.ch, 1
verlag-lq.com, 1
@@ -156288,11 +155619,10 @@ versalhost.nl, 1
versallesin.com, 1
versanthealth.com, 1
versantsdaime.fr, 1
-versario.info, 1
versata.pt, 1
versatek.com, 1
versatile.ai, 0
-versatilestructures.com.au, 0
+versatilestructures.com.au, 1
versbesteld.nl, 1
verschil.info, 1
verschoren.com, 0
@@ -156334,6 +155664,7 @@ vertexsmb.com, 1
vertexventures.co.il, 0
vertexventures.sg, 0
vertica.com, 1
+verticalappliedcontrols.com, 1
verticalmindventures.com, 1
verticals.tk, 1
verticalstructure.com, 1
@@ -156439,7 +155770,6 @@ veteranticketsfoundation.org, 1
veterinaire-laure-dissaux.be, 0
veterinanmnm.cz, 1
veterinanmnm.eu, 1
-veterinarian-hospital.com, 1
veterinario.milano.it, 1
veterinario.napoli.it, 1
veterinario.roma.it, 1
@@ -156454,7 +155784,6 @@ vetikalender-berlin.de, 1
vetinte.eu, 1
vetitus-teatro.tk, 1
vetlanda.se, 1
-vetmgmt.com, 1
vetnet.info, 1
vetofish.com, 1
vetosh.tk, 1
@@ -156482,6 +155811,7 @@ vetuni.eu, 1
vetvim.com, 1
vetvine.com, 1
veules-les-roses.fr, 0
+veuzconcepts.com, 1
veve.com, 1
veverusak.cz, 1
vevidocs.de, 1
@@ -156490,8 +155820,8 @@ vevioz.com, 1
vevioz.my.id, 1
vevioz.web.id, 1
vevioz.xyz, 1
-veviozmail.com, 1
vex.ch, 1
+vexavium.com, 1
vezzo.one, 1
vf-bikes.be, 1
vf99.com, 1
@@ -156548,8 +155878,8 @@ viaeth.io, 1
viafoura.com, 1
viaggioincoppia.com, 1
viaggivistos.com.br, 1
+viagra911.com.ua, 1
viagramarketim.com, 1
-viagramarketim.org, 1
viagratop.tk, 1
viagusto.pl, 1
viajecaminodesantiago.com, 1
@@ -156593,7 +155923,6 @@ vicdolphy.com, 1
vicellishoes.com, 1
vicenez.agency, 1
vicentaburon.tk, 1
-vicentejr.com.br, 1
vicenterodriguez81.tk, 1
vicentico.tk, 1
vicenzatoday.it, 1
@@ -156606,7 +155935,7 @@ vician.cz, 1
vicicode.com, 1
vicieux.art, 1
vicinityindustrial.com.au, 1
-vicioanimal.pt, 1
+vicioanimal.pt, 0
viciousflora.com, 1
viciousracing.tk, 1
vicjuwelen-annelore.be, 1
@@ -156661,6 +155990,7 @@ victoriastudio.ru, 1
victoriavalente.net, 1
victoriavets.co.uk, 1
victoridaho.gov, 1
+victorieux.com, 1
victorique.moe, 1
victorjacobs.com, 0
victornet.de, 1
@@ -156711,6 +156041,7 @@ videocall.guide, 1
videochatv.com, 1
videochums.com, 1
videoclean.fr, 1
+videoclix.net, 1
videoclubhd.ga, 1
videoclubhd.ml, 1
videoconverter.com, 1
@@ -156730,6 +156061,7 @@ videojet.com, 1
videojuegos.com, 1
videoload.co, 1
videomagic.ai, 1
+videomail.io, 1
videomaker.it, 1
videomaniya.ml, 1
videomarketermastery.com, 1
@@ -156741,7 +156073,6 @@ videopokerez.cf, 1
videoprikol.cf, 1
videoprikoly.ga, 1
videoremote.tk, 1
-videorio.info, 1
videosengracado.ga, 1
videoseyred.in, 1
videoskazka.tk, 1
@@ -156824,7 +156155,6 @@ viennawi.gov, 1
vientos.coop, 0
vientosur.info, 1
vieon.vn, 1
-viepixel.at, 1
vierarkitekter.no, 1
vierdaagsehotel.nl, 1
vieref.eu, 1
@@ -156924,7 +156254,6 @@ vikaviktoria.com, 1
vikc.ca, 1
viki.com, 1
viking-style.ru, 1
-viking-t.com, 1
vikingenterprise.com, 1
vikingenterprisesolutions.com, 1
vikingsportsmag.com, 1
@@ -156935,17 +156264,9 @@ viko.co.uk, 1
vikramkulkarni.com, 1
vikrantkakad.in, 1
viksbergshr.se, 1
-viktor-chin-kon-sung.com, 1
-viktor-chin-kon-sung.nl, 1
-viktor-chin.com, 1
-viktor-chin.nl, 1
viktorch.in, 1
-viktorchin.com, 1
-viktorchin.nl, 1
viktorchin.online, 1
viktorchin.site, 1
-viktorchinkonsung.com, 1
-viktorchinkonsung.nl, 1
viktorchinkonsung.online, 1
viktorchinkonsung.site, 1
viktoria-goo.com, 1
@@ -156954,6 +156275,7 @@ viktorovi.cz, 1
viktorprevaric.eu, 1
viku.fi, 1
vikweb.hu, 1
+vikyho.cz, 1
vila-senov.cz, 1
vila11.com.br, 1
vilaanimalpetshop.com, 1
@@ -157133,10 +156455,8 @@ villnoesser-tal.com, 1
villu.ga, 1
villu.stream, 1
villup.com, 1
-viload.org, 1
vilondo.com, 1
vilostore.my.id, 1
-viltsu.net, 1
vilvoordelaan.be, 1
vima.ch, 0
vimbom.tk, 1
@@ -157149,6 +156469,7 @@ vimka.gq, 1
vimoksa.com, 1
vimworld.com, 1
vin-news.ru, 1
+vinarnaunas.cz, 1
vinarstvimodryhrozen.cz, 1
vinaygakhar.tk, 1
vinaygarg.com, 1
@@ -157195,7 +156516,6 @@ vindeurgent.ro, 0
vindipoker.dk, 1
vindnu.dk, 1
vinduesgrossisten.dk, 1
-vineeth.uk, 1
vineethavarma.com, 1
vinehall.ie, 1
vinehost.net, 1
@@ -157210,10 +156530,9 @@ vineyardscartersville.com, 1
vingahiss.se, 1
vingt.me, 1
vingtsuncoach.tk, 1
-vingugaas.ee, 1
+vingugaas.ee, 0
vinhomes.tv, 1
vinhomesonline.com, 1
-vinhosdoalentejo.pt, 1
vinicius.sl, 1
viniciuscosta.tk, 1
vinigas.com, 1
@@ -157251,10 +156570,8 @@ vintagejeeps.net, 1
vintagemakeupguide.com, 1
vintagepickings.ie, 1
vintageportgifts.co.uk, 1
-vintagestock.com, 1
vintagetoydepot.tk, 1
vintagetrailerbuyers.com, 1
-vintagetube.video, 1
vintagewedding.tk, 1
vintazh.net, 1
vintom.com, 1
@@ -157268,7 +156585,6 @@ vinzer.tk, 1
vinzite.com, 1
violapiekut.com, 1
violarenate.com, 1
-violentaf.com, 1
violetfairy.tk, 1
violetgames.com, 1
violetraven.co.uk, 1
@@ -157295,7 +156611,6 @@ vipaairportsp3.gov, 1
vipartneriai.lt, 1
vipenvia.com.br, 1
viper-drones.com, 1
-viperfencellc.net, 1
vipertechnology.com.br, 1
vipesball.me, 1
vipesball.net, 1
@@ -157305,7 +156620,6 @@ vipgalant.ru, 1
viphackers.tk, 1
vipi.es, 1
vipkit.com, 1
-vipku.ru, 1
viplata-mgnovenno.ml, 1
viplc4.com, 0
viplc6.com, 0
@@ -157379,6 +156693,7 @@ virgontech.tk, 1
virgosecurity.com.au, 1
virgulazero.com.br, 1
viridis-milites.cz, 1
+viridismep.com, 1
virima.com, 1
virimatech.com, 1
viris.si, 1
@@ -157416,12 +156731,10 @@ virtuality4d.com, 1
virtualization-online.org, 1
virtuallanding.com, 1
virtuallife.tv, 1
-virtuallypilates.com, 1
virtualmachine.tk, 1
virtualmemento.tk, 1
virtualmt2.pl, 1
virtualnet.ec, 1
-virtualofficefrance.com, 1
virtualpavilion.co, 1
virtualprom.tk, 1
virtualroad.org, 1
@@ -157430,6 +156743,7 @@ virtualscoutschool.com, 1
virtualsex.ga, 1
virtualshell.ml, 1
virtualtaboo.com, 1
+virtualtasksprout.com, 1
virtualux360.com, 1
virtualvaults.com, 0
virtualx.de, 1
@@ -157482,7 +156796,6 @@ visceralsound.ca, 1
visconde-de-maua.com.br, 1
viscondedemaua.com.br, 1
viscondedemauapousadas.com.br, 1
-viscountwines.com, 1
visdetech.com, 1
vise.com, 0
visecoach.com, 1
@@ -157532,14 +156845,13 @@ visionwow.ai, 1
visionxcreative.gq, 1
visionzerocfl.gov, 1
visionzeroreporting.com, 1
-visiquate.com, 1
+visiquate.com, 0
visit-chiyoda.tokyo, 1
visit-haifa.org, 1
visit-ro.com, 1
visit-sanbenedettodeltronto.it, 1
visit-thailand.tk, 1
visit-us.com, 1
-visit.gent, 1
visit.natal.br, 1
visit1000islands.com, 1
visitabudhabi.ae, 1
@@ -157560,20 +156872,13 @@ visitenovayork.com.br, 1
visiter-tunis.tk, 1
visitfegen.se, 1
visitgaribaldi.gov, 1
-visitgent.be, 1
-visitgent.eu, 1
-visitghent.be, 1
-visitghent.eu, 1
visithuntingtonwv.org, 1
visitmo.com, 1
visitmontgomerycountyny.com, 1
visitmorelos.mx, 1
-visitmurrumbidgee.com, 1
visitnamibia.net, 1
visitnewcastle.com.au, 1
-visitorguard.com, 1
visitorsguide.is, 1
-visitorslist.com, 1
visitosalnes.com, 1
visitpembrokenc.com, 1
visits.ga, 1
@@ -157596,7 +156901,6 @@ visorando.fr, 1
visoundcloud.com, 1
visp.net, 1
visruth.com, 1
-visscher.codes, 1
vista-productions.com, 1
vista-research-group.com, 1
vista.gov, 1
@@ -157615,7 +156919,7 @@ vistec-support.de, 1
vistre.com, 1
visu.li, 1
visual-cockpit.com, 1
-visual-conversion.com, 1
+visual-conversion.com, 0
visual-design.cf, 1
visual-dreams.de, 1
visualdrone.co, 1
@@ -157634,7 +156938,6 @@ visuri.de, 1
visware.com, 1
visyeva.hu, 1
vit2k.online, 1
-vita-transmr.de, 1
vitaalcheck.nl, 1
vitaalfitcoaching.nl, 1
vitabrillanti.com, 0
@@ -157676,7 +156979,6 @@ vitalpraxis-lietz.de, 1
vitalshop.tk, 1
vitalsolutions.ro, 1
vitalthrills.com, 1
-vitam.de, 1
vitamedgroup.com, 1
vitamina.cl, 1
vitamina.com, 1
@@ -157684,6 +156986,7 @@ vitaminas.me, 1
vitaminegeszseg.hu, 1
vitaminka.tk, 1
vitaminmovie.ga, 1
+vitamins-and-minerals.com, 1
vitamixromania.ro, 1
vitanetonline.com, 1
vitapingu.de, 1
@@ -157694,7 +156997,6 @@ vitavista.health, 1
vitavista.io, 1
vitay.pl, 1
vitechteam.com, 1
-vitekvirtualsolutions.com, 1
viteleaf.com, 1
viteoscrm.ch, 0
viteragro.com.br, 0
@@ -157708,12 +157010,12 @@ vitkausk.as, 1
vitman.tk, 1
vitoye.com, 1
vitra-showrooms.co.uk, 1
-vitra-vcare.co.uk, 1
+vitra-vcare.co.uk, 0
+vitraartemayedekparca.com, 1
vitrade.de, 1
vitralart.es, 1
vitrerieagathoise.com, 1
vitrinachasov.cf, 1
-vitrineenligne.com, 1
vitromex.tk, 1
vitsearch.link, 1
vitto.tk, 1
@@ -157730,7 +157032,6 @@ vitus-meppen.de, 1
viunge.dk, 1
viv.fi, 1
viva-family.ch, 1
-viva.ro, 1
viva.ua, 1
viva2000.com, 1
vivablogger.com, 1
@@ -157758,6 +157059,7 @@ vivas.cf, 1
vivas.gq, 1
vivas.ml, 1
vivas.tk, 1
+vivasaludable.org, 1
vivat.com.ua, 1
vivat.de, 1
vivatable.de, 1
@@ -157772,7 +157074,6 @@ vive.link, 1
vivearts.com, 1
vivediabetes-sanamente.com, 1
vivekanandaspokenenglish.com, 1
-vivekmalipatel.com, 1
vivekparekh.ca, 1
vivekselvakumar.ga, 1
vivelawir.eu, 1
@@ -157798,7 +157099,6 @@ vivianaball.ro, 1
vivianargiriou.gr, 0
vivianlms.ga, 1
vivianmaier.cn, 1
-vivianshultsart.com, 1
vivichannel.tk, 1
vivid-academy.com, 1
vivide.re, 1
@@ -157847,7 +157147,6 @@ vjeff.net, 1
vjk.dk, 1
vjn.ee, 1
vjqlifestyle.com, 1
-vjshi.xyz, 0
vjshop.vn, 1
vjuliano.net, 1
vk-agent.ru, 1
@@ -157856,7 +157155,6 @@ vk-random.ml, 1
vk-srv.ru, 1
vk.group, 1
vk.nl, 1
-vk01.store, 1
vk09.ru, 1
vk1fj.net, 1
vk2.net, 1
@@ -157894,7 +157192,6 @@ vkfish.ga, 1
vkflac.tk, 1
vkg.nl, 0
vkgroup.az, 1
-vkh-online.de, 1
vkikaku.com, 0
vkino.com, 0
vkino.ml, 1
@@ -157985,7 +157282,6 @@ vmautorajkot.com, 1
vmc-installation-entretien.fr, 1
vmc.co.id, 1
vmccnc.com, 1
-vmconnected.co.uk, 1
vmedia.ca, 1
vmf365.tk, 1
vmfsrecover.com, 1
@@ -158000,7 +157296,6 @@ vmpf.nl, 1
vmsengineering.com, 1
vmst.io, 1
vmsurgery.org, 1
-vmtowing.com, 1
vmttitlesearch.com, 1
vmug.pl, 1
vmurmanske.tk, 1
@@ -158009,6 +157304,7 @@ vmvinskin.com, 1
vn.search.yahoo.com, 0
vn58.com, 1
vnanet.vn, 1
+vnbctv.com, 1
vnctdj.fr, 1
vnd.cloud, 1
vneftekamske.tk, 1
@@ -158054,7 +157350,6 @@ vnya.loan, 1
voanaboa.pt, 1
voapt.by, 1
voatz.com, 1
-vobe.io, 1
vocably.de, 1
vocalcoach.com, 1
vocaloid.my, 1
@@ -158083,7 +157378,6 @@ vodpay.org, 1
voehringen-bw.de, 1
voetbalclubinfo.tk, 1
voetbalforum.tk, 1
-voetbalindestad.be, 1
voetbaloptv.nl, 1
voetbalshop.be, 1
voetbalvanavond.nl, 1
@@ -158129,7 +157423,6 @@ voiceofserbia.tk, 1
voicesoflabor.com, 1
voicesofspirit.at, 1
voicesuk.co.uk, 0
-voicimonavis.fr, 1
voicu.ch, 0
voicure.com, 1
void.rehab, 1
@@ -158142,7 +157435,6 @@ voidhacker.com, 1
voidi.ca, 1
voidma.in, 1
voidnya.com, 1
-voidpay.com, 1
voidpay.net, 1
voidpay.org, 1
voidscrawl.com, 1
@@ -158171,6 +157463,7 @@ vokieciupamokos.lt, 1
vokimberlywi.gov, 1
vokov.ml, 1
vokrug.ga, 1
+voks2025.hu, 1
vokzalkursk.ru, 1
vokzalperm.ru, 1
volant.digital, 1
@@ -158262,7 +157555,7 @@ volstatebank.com, 1
volt.fm, 1
volt.social, 1
volta.io, 1
-voltacircuit.com, 0
+voltacircuit.com, 1
voltageelectricity.tk, 1
voltainsite.com, 1
voltarengelprice.tk, 1
@@ -158272,6 +157565,7 @@ voltebyk.com, 1
voltebyk.in, 1
voltfloyd.com, 1
voltiac.ml, 1
+voltiumlab.es, 1
voltnederland.org, 1
volto.io, 1
volubilisplus.fr, 1
@@ -158312,11 +157606,11 @@ vonkuenheim.de, 1
vonmathus.is, 1
vonpawn.com, 1
vonski.pl, 1
-vonsuri.com, 1
voodoobeginner.com, 1
voodoobtc.com, 1
voodoocat.cf, 1
voodooshaman.com, 1
+vooh.in, 1
vookstock.tk, 1
voom.pt, 1
voorbijhetstigma.nl, 1
@@ -158353,6 +157647,7 @@ vortexhosting.ga, 1
vortexplumbinginc.com, 1
vortix.tk, 1
vorxdigital.com, 1
+vos-consultancy.org, 1
vos-fleurs.ch, 1
vos-fleurs.com, 1
vos-systems.com, 1
@@ -158472,7 +157767,6 @@ voxturba.com, 1
voxx1116.com, 1
voyage-martinique.fr, 1
voyage2africa.com, 1
-voyagedeductible.com, 1
voyageforum.com, 1
voyageofyume.com, 1
voyagercabins.co.nz, 1
@@ -158487,11 +157781,13 @@ voyainvestments.com, 1
voyaker.tk, 1
voyalisboa.com, 1
voyance-direct.info, 1
+voyance-universelle.com, 1
voyancedanslenord.com, 1
voyantatravel.com, 1
voyeurspyporn.com, 1
voytech.ovh, 1
voz.vn, 1
+vozami.com, 1
vozbudim.tk, 1
vozdux.tk, 1
vozelocucao.com.br, 1
@@ -158511,7 +157807,6 @@ vpn-sverige.se, 1
vpn.ht, 1
vpn4free.ga, 1
vpnalert.com, 1
-vpnclient.ru, 1
vpnemail.com, 1
vpnent.com, 1
vpngate-connector.com, 1
@@ -158536,6 +157831,7 @@ vpsao.org, 1
vpsboard.com, 1
vpsbudget.com, 1
vpsdream.dk, 1
+vpseu.com, 1
vpsgongyi.com, 0
vpsji.com, 1
vpsmore.com, 1
@@ -158662,10 +157958,9 @@ vravi.tech, 1
vrba.org, 1
vrbangers.com, 1
vrbl.pt, 1
-vrbq.qld.gov.au, 1
vrbr.ch, 0
vrcentrum.cz, 1
-vrchat.community, 0
+vrchat.community, 1
vrconk.com, 1
vrcosplayx.com, 1
vrcprofile.com, 1
@@ -158730,6 +158025,7 @@ vrnhn.nl, 0
vroad.org, 1
vroedvrouwella.be, 1
vron.house, 1
+vroomvroomvroom.co.nz, 1
vros.co.id, 1
vrostove.tk, 1
vrp.moe, 1
@@ -158848,6 +158144,7 @@ vtech.com, 1
vtechda.com, 1
vtechhealthcare.com, 1
vtescebu.com, 1
+vtexpayments.com.br, 1
vtipe-vylez.cz, 0
vtjud.gov, 1
vtklan.tk, 1
@@ -158867,10 +158164,7 @@ vtwonen.nl, 1
vuakhuyenmai.vn, 1
vubgenerali.sk, 1
vubu-medical.de, 1
-vucdn.com, 1
vue-sur-mer.com, 1
-vuefact.com, 1
-vuefactory.io, 1
vuelacaruru.com, 1
vueworks.com, 1
vugt.me, 1
@@ -158904,7 +158198,6 @@ vulns.xyz, 1
vulnscan.org, 1
vulpine.club, 1
vulpix.uk, 1
-vulpr.com, 1
vultrhxl.com, 1
vulva.observer, 1
vulva.photos, 1
@@ -158963,6 +158256,7 @@ vwfsfcp.com, 1
vwfsrentacar.co.uk, 1
vwh-kunden.de, 1
vwittich.de, 1
+vwoensel.net, 1
vwoforangeparts.com, 1
vwp.su, 1
vwpartsinternational.com, 1
@@ -158974,7 +158268,6 @@ vww-8522.com, 1
vx.hn, 1
vx4.net, 1
vxapps.com, 1
-vxl.sh, 0
vxlabs.de, 1
vxm.se, 1
vxv.by, 1
@@ -159010,15 +158303,12 @@ vysvetluju.cz, 1
vyturys.lt, 1
vytvorsipotisk.cz, 1
vytvorsitricko.cz, 1
-vyvozhlama24.ru, 1
-vyvygen.org, 1
vyzner.cz, 1
vzducho-klima.cz, 1
vzemiseo.com, 1
vzr-garant.nl, 1
vzteam.ga, 1
vzw-muzaik.tk, 1
-vzwregent.be, 1
vzyatonlinezaim.ga, 1
vzyatonlinezaim.gq, 1
vzyatonlinezaim.ml, 1
@@ -159030,6 +158320,7 @@ vzyatzaimonline.ml, 1
vzyatzaimonline.tk, 1
vzzjoias.com.br, 1
w-architectes.com, 1
+w-graj.net, 1
w-hub.ru, 1
w-oasis.co.jp, 1
w-p-k.de, 1
@@ -159119,7 +158410,6 @@ wa.me, 1
waaard.com, 1
waagen.tk, 1
waaifu.com, 1
-waalsekrook.be, 1
waaynex.ch, 1
waays.eu, 1
waays.fr, 1
@@ -159130,6 +158420,7 @@ wabifoggynuts.com, 1
wabtec.com, 0
wabteccorp.com, 0
waca.net, 1
+waca.store, 1
wachter.biz, 1
wachtspoor.nl, 1
wachtspoor18.nl, 1
@@ -159151,10 +158442,8 @@ wadidi.com, 1
wadleyga.gov, 1
wadn-x.de, 1
wadsworth.org, 1
-wadvisor.com, 1
waeldertexas.gov, 1
waermenetz-kollow.de, 1
-waf.hk, 1
waf.ninja, 1
wafa4hw.com, 1
waffeln.jetzt, 1
@@ -159197,6 +158486,7 @@ waifu-technologies.com, 1
waifu-technologies.moe, 1
waifu.gallery, 1
waifuist.pro, 1
+waiga.org, 1
waikatowebdesigners.com, 1
wail.net, 1
wailord284.club, 1
@@ -159242,7 +158532,6 @@ walax.com, 1
waldenvt.gov, 1
waldenwritingcenter.ml, 1
waldo.tk, 1
-waldo.vn, 0
waldorf-augsburg.de, 1
waldorf-harduf.org, 1
waldorfdiary.com, 1
@@ -159278,8 +158567,6 @@ walkingandcycling.org.uk, 0
walkingrehabilitation.com, 1
walkinlab.com, 1
walkinweb.com, 1
-walklocal.be, 1
-walklocal.gent, 1
walkman.cloud, 1
walkman.io, 1
walkme.com, 1
@@ -159356,6 +158643,7 @@ walterswholesale.com, 1
waltontrust.org, 1
waltthirion.com, 1
walutomat.pl, 1
+wam-tech.com, 1
wamdajo.com, 1
wamia.wa.gov.au, 1
wammu.eu, 1
@@ -159365,6 +158653,7 @@ wamtube.tv, 1
wanabka.tk, 1
wananavuoutfitters.com, 1
wanashi.com, 1
+wancity.com, 1
wanda.ch, 1
wanda76.com, 1
wanda79.com, 1
@@ -159375,13 +158664,13 @@ wandelreizen.eu, 1
wander.al, 1
wander.tk, 1
wanderaura.com, 1
+wanderclub.eu, 1
wanderersfc.tk, 1
wanderfost.com, 1
wanderfullcoven.tk, 1
wanderinghiker.com, 1
wanderingincaptivity.com, 1
wanderings.online, 0
-wanderlog.org, 1
wandystan.eu, 1
wane.co, 1
wang.by, 1
@@ -159411,6 +158700,7 @@ wangyue.blog, 1
wangzhe100.xyz, 1
wangzuan168.cc, 1
wanicki.pl, 1
+wanilia.pl, 1
wanjuhui.com, 1
wannabfit.nl, 1
wannaknow.tk, 1
@@ -159426,7 +158716,6 @@ wanybug.gq, 1
wanybug.tk, 1
wanzeller.com, 1
wanzieinsuranceservices.com, 1
-waonui.io, 1
wap-umbrella.tk, 1
wapa.gov, 1
wapatui.online, 1
@@ -159457,7 +158746,7 @@ wapsychiatry.com.au, 1
waptransfer.tk, 1
wapuru.co.jp, 1
wapveil.ml, 1
-waqood.tech, 1
+wapwibowo.com, 1
war-requiem.com, 1
war-team.com, 1
waragod.sk, 1
@@ -159561,6 +158850,7 @@ warstories.ca, 1
warszawa-pranie-dywanow.pl, 1
warszawa19115.pl, 0
warszawska285.pl, 1
+wartalika.id, 0
warteg.com, 1
warteg.net, 1
wartegseberangsana.com, 1
@@ -159623,7 +158913,6 @@ washingtonwatchdog.org, 1
washitavalleybank.com, 1
washoecounty.gov, 1
washroomcubicles.co.uk, 1
-washsolucoesemlimpeza.com.br, 1
washtenaw.gov, 1
washub.org.uk, 1
washup.tk, 1
@@ -159638,6 +158927,7 @@ wasser-technik-rottal.de, 1
wassermair.net, 1
wassermanx.com, 1
wassim.is, 1
+waste.domains, 1
wastewaterservicesltd.co.uk, 0
wastewise.com, 0
wasys.com.br, 1
@@ -159728,15 +159018,12 @@ waterpolospain.tk, 1
waterpumpu.com, 1
waterpurificationsupplies.com, 1
waterqualitydata.us, 1
-watersb.org, 1
waterschaplimburg.nl, 1
waterside-inn.co.uk, 1
-waterside-residents.org.uk, 1
watersky.tk, 1
watersoul.com, 1
watersource.ga, 1
waterstreetloft.com, 1
-watertaxi.com, 1
waterton.tk, 1
watertorenstraat.tk, 1
watertownmi.gov, 1
@@ -159774,7 +159061,6 @@ watzijnmijnkerntalenten.nl, 1
wau.edu, 1
waukee.gov, 1
waukeect.com, 1
-waukeshacountywatch.com, 1
waupacacounty-wi.gov, 1
waupacawi.gov, 1
wausaupilotandreview.com, 1
@@ -159814,6 +159100,7 @@ way.ac, 1
way2tech.de, 1
waya0125.com, 1
wayaberolodge.com, 1
+wayakcomm.com, 1
waybinary.com, 1
waycoolmail.tk, 1
waycraze.com, 1
@@ -159846,7 +159133,6 @@ waytofreedom.tk, 1
waytogrow.com, 1
waytoowoke.com, 1
waytt.cf, 1
-waywithwords.net, 1
waze.com, 1
wazefaher.tk, 1
wazeibra.com, 1
@@ -159937,8 +159223,8 @@ wdmcheng.cn, 1
wdmg.com.ua, 1
wdmleds.com, 1
wdmn.eu, 1
-wdmpa.eu.org, 1
wdmpa.org, 1
+wdnmd.org, 1
wdntcr.com, 1
wdo.org, 1
wdodelta.nl, 0
@@ -160002,6 +159288,7 @@ wearereasonablepeople.com, 0
wearereasonablepeople.nl, 0
wearesolomon.com, 1
wearesuma.com, 1
+wearethecultureclub.co.uk, 1
wearetravellers.nl, 1
wearetuzag.com, 1
wearewithyou.org, 1
@@ -160085,6 +159372,7 @@ web-test.gq, 1
web-town.tk, 1
web-treff.de, 1
web-view.ml, 1
+web-wack.at, 1
web-warrior.de, 1
web-worker.cn, 1
web.ca, 1
@@ -160137,7 +159425,6 @@ webautohelper.com, 1
webawere.com, 1
webb.se, 1
webbanalys.se, 1
-webbankir.com, 1
webbanquyen.com, 1
webbcanyonchronicle.com, 1
webbcraftinggallery.com, 1
@@ -160145,8 +159432,8 @@ webberinsurance.com.au, 1
webbiz.co.uk, 1
webblawmaine.com, 1
webbmd.ca, 1
-webboggles.com, 1
webbolivia.tk, 1
+webbpedia.com, 1
webbricks.ru, 1
webbuilder.de, 1
webbureauer.dk, 1
@@ -160206,6 +159493,7 @@ webdesign-note.jp, 1
webdesignagency.cf, 1
webdesigncompanyindia.com, 1
webdesignelftal.eu, 1
+webdesigner4u.net, 0
webdesignersinchennai.tk, 1
webdesignfenua.tk, 1
webdesignlabor.ch, 1
@@ -160216,6 +159504,7 @@ webdesignsyourway.net, 1
webdev-cw.me, 1
webdev-cw.tk, 1
webdev.solutions, 1
+webdevdes.com, 1
webdevelop.ninja, 1
webdevelopment.help, 1
webdevinsider.pl, 1
@@ -160392,13 +159681,13 @@ webnestify.cloud, 1
webnetmail4u.com, 1
webnexty.com, 1
webnoob.net, 1
+webnword.com, 1
webo.agency, 1
webo.directory, 1
webo.pl, 1
weboflies.tk, 1
webofthingsmarwane.xyz, 1
weboke.nl, 1
-weboost.com.ar, 1
weboperater.rs, 0
webowell.fr, 1
webpantry.ga, 1
@@ -160419,6 +159708,7 @@ webpot.hu, 1
webpotato.nl, 1
webpresence.tk, 1
webprice.ga, 1
+webprofi.hu, 1
webproject.rocks, 1
webprom.net, 1
webprostitutki.tk, 1
@@ -160459,6 +159749,7 @@ webshipper.com, 1
webshop.nl, 1
websika.com, 1
website-engineering.co.za, 1
+website-prototyp.de, 1
website-traffic.shop, 1
website.builders, 1
website999.in, 1
@@ -160509,7 +159800,6 @@ webstaurant.com, 1
webstaurantstore.com, 1
websteam.tk, 1
webstellung.com, 1
-webstercountymo.gov, 1
webstergrovesmo.gov, 1
websternytoday.gov, 1
webstijlen.nl, 1
@@ -160535,7 +159825,6 @@ webtele.ga, 1
webtele.tk, 1
webtelegram.eu.org, 1
webtematica.com, 1
-webter.de, 1
webthreesome.com, 1
webtimiser.de, 1
webtobesocial.de, 1
@@ -160569,19 +159858,18 @@ webvpsnet.com, 1
webvpsnet.org, 1
webwatchdogs.net, 1
webwatcher.tk, 1
-webwinkelexploitatie.nl, 1
webwinkelkeur.nl, 1
webwinkelwestland.nl, 1
webwit.pro, 1
webworksnz.co, 0
webwweb.com.pl, 1
webyazilim.biz.tr, 1
+webycrea.eu, 1
webyourself.eu, 1
webzanem.com, 0
webzarabotok.tk, 1
webzschema.in, 1
wecan-it.dk, 1
-wecanget.info, 1
wecanvisit.com, 1
wecareplatform.nl, 1
weccode.com, 1
@@ -160591,13 +159879,12 @@ wecleanbins.com, 1
wecoach.gg, 0
wecobble.com, 1
wecodify.nl, 1
-wecorp.org, 1
+wecprojects.ca, 1
wecreate.ml, 1
wed13spain.tk, 1
weda.cf, 1
wedabout.com, 1
wedatasolution.com.br, 1
-wedceducation.com, 1
wedcha.com, 1
weddeschalen.be, 1
weddinal.com, 1
@@ -160669,7 +159956,6 @@ weekly-news.pl, 1
weekly-residence.com, 1
weeklyads2.com, 0
weeklydcoupgen.com, 1
-weektegenarmoede.be, 1
weelzbahamas.com, 1
weemakers.fr, 0
weepycat.com, 1
@@ -160704,6 +159990,7 @@ wegrzynek.org, 1
wegrzynek.pl, 1
wegvielfalt.de, 1
wegweiser-demenz.de, 1
+wegwijzerhvb.nl, 1
wehaa-server2.com, 1
wehaaserver.com, 1
wehealasone.gov.ph, 1
@@ -160714,7 +160001,6 @@ weibbb.com, 1
weibel.me, 1
weibomiaopai.com, 1
weideheuvel.org, 1
-weidmannfibertechnology.com, 0
weighed.ga, 1
weight-loss.services, 1
weightlift.ml, 1
@@ -160752,6 +160038,7 @@ weirdork.eu, 1
weirdork.net, 1
weirdork.org, 1
weirdork.social, 1
+weirdorks.com, 1
weirdorks.eu, 1
weirdorks.net, 1
weirdorks.org, 1
@@ -160762,6 +160049,7 @@ weis.duckdns.org, 1
weispfenning.net, 1
weisskircher.tk, 1
weissman.agency, 1
+weisstech.com, 1
weiter.so, 1
weiterbildung-vdz.de, 1
weiterbildungsmonitor.eu, 1
@@ -160777,8 +160065,8 @@ wekan.hopto.org, 1
wekibe.de, 1
wekipedia.com, 1
weknowhowtodoit.com, 1
-weladee.com, 1
welby.cat, 1
+welcaremall.com, 1
welchmanhallgullybarbados.com, 0
welchmorris.com, 1
welcome-tahiti.com, 0
@@ -160813,6 +160101,7 @@ weller.pm, 1
wellesleycosmeticsurgery.com, 1
welletin.it, 1
wellfieldhomes.co.uk, 1
+wellgora.com, 1
wellgreece.com, 1
wellington.govt.nz, 1
wellist.com, 1
@@ -160874,7 +160163,6 @@ wemake.cx, 1
wemakebookkeepingeasy.com, 1
wemakemx.mx, 1
wemakeonlinereviews.com, 1
-weme.eco, 1
wemissyou.tk, 1
wenaiwu.net, 1
wenanmao.com, 1
@@ -160905,6 +160193,7 @@ wenta-computerservice.net, 1
wenta.de, 1
wentu.ml, 1
wentyl.tk, 1
+wenzsecurity.com.br, 1
wenzthewanderer.gq, 1
weomucat.com, 1
wep.pw, 1
@@ -160991,8 +160280,6 @@ weshopy.com, 1
weskennison.com, 1
wesl.cc, 1
wesleyanbank.co.uk, 1
-wesleyarcher.com, 1
-wesleybear.win, 1
wesleycabus.be, 0
wesleymc.org, 1
wesleyville.gov, 1
@@ -161027,7 +160314,6 @@ westcentralaor.org, 1
westcentralmls.com, 1
westchester-il.gov, 1
westchesteranxietytreatment.com, 1
-westchesterwine.com, 1
westcoastaggregate.com, 1
westcoastcastles.com, 1
westcoastdrones.net, 1
@@ -161045,8 +160331,8 @@ westerdraai.tk, 1
westeremden.com, 1
westergas.nl, 1
westernaerospacemuseum.org, 1
-westernalliancebancorporation.com, 1
westernenergy.co.nz, 1
+westernguarantyfundservices.org, 1
westernindustrialproducts.co.uk, 1
westernmedia.ie, 1
westernpadermatologist.com, 1
@@ -161185,7 +160471,6 @@ wfduk.org, 1
wff.pl, 1
wfh.ovh, 1
wfh.se, 1
-wfigueiredo.com.br, 1
wforum.nl, 1
wfschicago.com, 1
wfuogb.com, 1
@@ -161205,6 +160490,7 @@ wget.cool, 1
wget.cx, 0
wget.tw, 1
wgfl.gov, 1
+wgfs.org, 1
wgi.fi, 1
wgnet.ch, 1
wgnr.ai, 1
@@ -161222,7 +160508,6 @@ wh-guide.de, 1
wh.gov, 1
wh966.com, 0
whadda.uk, 1
-whakamatutu.org.nz, 1
whale-tales.org, 1
whalecrew.com, 1
whaletail.ai, 0
@@ -161284,7 +160569,6 @@ whatsitsname.tk, 1
whatsmychaincert.com, 1
whatsmyip.fr, 1
whatsrc.org, 1
-whatsupgold.com.tw, 1
whatsupoutdoor.com, 0
whatsupyo.tk, 1
whatswrong.blog, 1
@@ -161326,6 +160610,7 @@ when-release.ru, 1
when.fm, 0
when2watch.live, 1
whengirlsplay.com, 1
+whenisholiday.com, 1
whentowork.com, 1
whenwe.me, 1
wheon.com, 1
@@ -161369,7 +160654,6 @@ whishart.ml, 1
whiskersandtails.co.za, 1
whiskey.com.my, 1
whiskey.money, 1
-whisky-circle.info, 1
whisky.com.my, 1
whisky.money, 1
whisky.my, 1
@@ -161409,6 +160693,7 @@ whitealps.ch, 0
whitealps.de, 0
whitealps.fr, 0
whitealps.net, 0
+whiteandprivileged.ca, 1
whiteantelopeinteriors.com, 1
whitebirdclinic.org, 1
whitebox.ga, 1
@@ -161421,7 +160706,6 @@ whitefishtownshipmi.gov, 1
whitefordtownshipmi.gov, 1
whitehallal.gov, 1
whitehartdartmoor.co.uk, 1
-whitehartweddingvenue.co.uk, 1
whitehat.vn, 1
whitehatbrokers.com, 1
whitehathackers.com.br, 1
@@ -161493,7 +160777,6 @@ whitmoreac.com, 1
whitneys2go.com, 1
whittle.in, 1
whittlesfabrics.com, 1
-whittome.com, 1
whitworth.nyc, 1
whitworth.org, 1
whizkidpcservices.com, 1
@@ -161508,7 +160791,6 @@ who.pm, 0
whoagirls.com, 1
whoagirls.net, 0
whoagirls.org, 1
-whoami.eu.org, 1
whoami.io, 1
whoapi.com, 1
whocalld.com, 1
@@ -161525,12 +160807,13 @@ whoistheorchid.com, 1
whoiswho.tk, 1
wholebody.je, 1
wholegrace.com, 1
-wholehealtheducation.com, 1
+wholelogic.com, 1
wholeo.net, 1
wholesale.cf, 1
wholesalediamonds.tk, 1
wholesalediscountsunglasses.com, 1
wholesaleganoderma.com, 1
+wholesalegrowersdirect.com, 1
wholesaleimages.com, 1
wholevood.com, 1
wholevood.de, 1
@@ -161539,7 +160822,7 @@ wholewildworld.de, 1
whoneedstobeprimaried.today, 1
whong.media, 1
whonix.org, 1
-whoopee.my, 0
+whoopee.my, 1
whooshkaa.com, 1
whoownswhom.co.za, 1
whop.com, 1
@@ -161577,7 +160860,6 @@ whypowerbrush.com, 1
whysoslow.co.uk, 1
whyteryan.com, 1
whytls.com, 0
-whywelive.me, 1
whyworldhot.com, 1
whyy.eu.org, 1
whyzeroturn.com, 1
@@ -161594,7 +160876,6 @@ wicamb.com, 1
wicca-witchcraft.com, 1
wiccansupplies.ga, 1
wiccasima.fr, 1
-wicharypawel.com, 1
wiche.edu, 1
wichitafoundationpros.com, 1
wichtel-lager.de, 1
@@ -161619,7 +160900,6 @@ wideinfo.org, 1
widejeans.tk, 1
wideline.com.au, 1
widelscy.pl, 1
-widememory.com, 1
widenews.org, 1
widescreenfixer.org, 1
wideshoes.com, 1
@@ -161687,21 +160967,16 @@ wiikipedia.com, 1
wiimotion.de, 1
wiin.co, 1
wiingy.com, 1
-wiiplay.com, 1
wiire.me, 0
wijaya.net, 1
wijaya2u.com, 1
wijck.com, 1
-wijkbudget.gent, 1
wijkdezwaenebloeme.tk, 1
wijnbesteld.nl, 1
wijnlandkroatie.nl, 1
wijnservices.nl, 0
-wijsaantwerk.be, 1
wijseuropa.gent, 1
-wijsvangent.be, 1
wijwillendit.nl, 1
-wijzeweters.gent, 1
wijzijnbrandstof.nl, 1
wijzijnwolf.nl, 1
wikalin.ski, 1
@@ -161911,12 +161186,15 @@ wildroseflorist.co.za, 1
wildsafety.com, 1
wildschuetz-gmbh.de, 1
wildsense.tk, 1
+wildstrait.com, 1
+wildstrait.nz, 1
wildtrip.blog, 0
wildvicky.net, 1
wildwesthackinfest.com, 1
wildwildtravel.com, 1
wildwill.co.uk, 1
wildwind.world, 1
+wildwnc.org, 1
wildwoodpolice-fl.gov, 1
wildwoodrockers.tk, 1
wildzap.ml, 1
@@ -162038,6 +161316,7 @@ wiltonmanors.gov, 1
wiltonsandstonequarry.com.au, 1
wiltrovira.com, 1
wiltshirehealthyschools.org, 1
+wimasons.foundation, 1
wimbledon.com, 1
wimbledon.org, 1
wimlanphen.nl, 1
@@ -162082,6 +161361,7 @@ winchesterle.com, 1
winckelmann2020.com, 1
winckelmann2024.com, 1
wincoil.gov, 1
+wind-lindewitt.de, 1
wind-riders.cf, 1
wind.com.do, 1
windaero.com, 1
@@ -162095,8 +161375,8 @@ windice1.io, 1
windictus.net, 1
windirect.tk, 1
windjetboats.com, 1
-windkraft-herzogenrath.de, 1
windmillart.net, 1
+windmusic.org, 1
windowcleaningexperts.net, 1
windows, 1
windows11.com.br, 1
@@ -162113,6 +161393,7 @@ windowsru.com, 0
windowsviet.com, 1
windpay.ga, 1
windr.win, 1
+windrainflood.com, 1
windrawwin.com, 1
windriverpediatrics.com, 0
windrunner.se, 1
@@ -162124,7 +161405,7 @@ windsorhoteis.com, 1
windsorite.ca, 1
windsornc.gov, 1
windsorrslsubbranch.com.au, 1
-windstreamhosting.com, 0
+windstreamhosting.com, 1
windsurfercrs.com, 1
windturbine.tk, 1
windwell.cn, 1
@@ -162137,7 +161418,6 @@ wine-route.net, 1
wine.com.br, 1
wine.com.my, 1
wine.my, 1
-wineandcheeseplace.com, 1
winebrasil.com.br, 1
winechapter.be, 1
winedineunwind.org, 1
@@ -162152,8 +161432,6 @@ winenews.it, 1
wineparis.com, 1
winerytoursanfrancisco.com, 1
winetable.se, 1
-winewisegreenwich.com, 1
-wineworksonline.com, 1
winfieldchen.me, 1
winfieldpa.gov, 1
winfieldtownshipmi.gov, 1
@@ -162177,6 +161455,7 @@ wingspatagonia.com, 1
wingstop.fr, 1
winhelp21.tk, 1
winhistory-forum.net, 1
+winit.ie, 1
winkelcentrumputten.nl, 1
winkelmanaz.gov, 1
winkelvanmorgen.nl, 1
@@ -162195,7 +161474,6 @@ winn.se, 1
winnebagocountyiowa.gov, 1
winnebagocountywi.gov, 1
winneconnesd3wi.gov, 1
-winner.cn, 1
winner.ua, 1
winnersaffiliate.com, 1
winnery.tk, 1
@@ -162234,7 +161512,6 @@ winterdetective.ga, 1
winterfeldt.de, 0
winterhavenobgyn.com, 1
winterhillbank.com, 1
-winteringent.be, 1
winterlandbeverages.com, 1
winternacht14.tk, 1
winteromeo.tk, 1
@@ -162256,7 +161533,6 @@ winxpclub.tk, 1
winzero.tk, 1
winzong.cn, 1
winzong.net, 1
-wio.cn, 1
wiocha.pl, 1
wip-tideplatform.uk, 1
wipa.tk, 1
@@ -162373,7 +161649,6 @@ wishlisotr.gq, 1
wishlist.net, 1
wishlog.fun, 1
wishmail.cf, 1
-wishtv.com, 1
wiska.cn, 1
wiska.co.kr, 1
wiska.co.uk, 1
@@ -162432,6 +161707,7 @@ withpersona.com, 1
withprocess.com, 1
withsunglasses.co.uk, 1
withthegrid.com, 1
+withwander.com, 1
withyoutube.com, 1
witron.de, 1
wits.uk, 1
@@ -162455,7 +161731,6 @@ wittur.com, 1
wittwellness.com.au, 1
witze-fun.de, 1
witzik.at, 1
-witzler.com.br, 1
wiut.uz, 1
wiuz.fr, 1
wivcfinancialservices.com, 1
@@ -162470,15 +161745,18 @@ wiz.io, 1
wizadjournal.com, 1
wizard.gov, 0
wizardbouncycastles.co.uk, 1
+wizardcompass.com, 1
wizardk.tk, 1
wizardkami.tk, 1
wizardmeow.xin, 1
wizardschool.tk, 1
+wizardshop.cz, 1
wizardswebs.com, 1
wizathon.com, 1
wizink.pt, 1
wizyheal.com, 1
wizzley.com, 1
+wizzlinked.com, 1
wizznab.tk, 1
wjb.marketing, 1
wjcainc.com, 0
@@ -162613,7 +161891,7 @@ woelckner.com, 1
woerden.nl, 1
wofford-ecs.org, 0
woffu.com, 1
-wogame.co, 1
+wofosi.cn, 1
wogame.org, 1
wogame.wiki, 1
wogame.work, 1
@@ -162650,7 +161928,6 @@ wokfilms.pt, 1
wokinghammotorhomes.com, 1
wokkamokka.be, 1
woldars.com, 1
-wolf-advies.nl, 1
wolf-haven.tk, 1
wolf333.com, 1
wolfachtal-alpaka.de, 1
@@ -162730,6 +162007,7 @@ womenscalltoaction.tk, 1
womensenews.org, 0
womenshealth.gov, 1
womensmedassoc.com, 1
+womenstalk.ru, 1
womfs.com.au, 1
womo-level-assist.de, 1
wompenriebler.tk, 1
@@ -162741,7 +162019,6 @@ wonderbox.ga, 1
wonderbox.gq, 1
wonderbox.ml, 1
wondercade.com, 1
-wondercare.ie, 1
wonderchat.tk, 1
wondercorner.ca, 1
wondereur.com, 1
@@ -162804,6 +162081,7 @@ woodfordcountyky.gov, 1
woodhavenmi.gov, 1
woodhousechocolate.com, 1
woodlandboys.com, 1
+woodlandcreekfurniture.com, 1
woodlandwindows.com, 0
woodlawnky.gov, 1
woodlawnsyracuse.org, 1
@@ -162846,7 +162124,6 @@ woof.blue, 1
woof.gq, 1
woofngoof.com, 1
woofsbakery.com, 1
-woohay.com, 1
woohoo.in, 1
woohooyeah.nl, 1
wookstar.com, 1
@@ -162966,6 +162243,7 @@ workfromhomesites.ga, 1
workfromhomesites.ml, 1
workfromhometexas.tk, 1
workhandyman.com, 1
+workhardtech.com, 1
workhorsemkt.com, 1
workin.space, 1
workindia.ml, 1
@@ -162983,7 +162261,6 @@ workinnorway.no, 1
workiva.com, 1
workjustice.com.au, 0
workleap.com, 1
-workleisure.uk, 1
worklinepc.com, 1
worklizard.com, 1
workmax.com, 1
@@ -163216,6 +162493,7 @@ wouterslop.nl, 1
woutervdb.com, 1
woutiscoding.be, 1
woven.toyota, 1
+woveniac.com, 1
wow-dsg.ch, 1
wow-foederation.de, 1
wow-screenshots.net, 1
@@ -163239,8 +162517,8 @@ wowjs.uk, 1
wowlegacy.ml, 1
wowlifedesignandco.jp, 1
wowlove.tk, 1
-wownmedia.com, 1
wownskportal.tk, 1
+wowowow.com, 1
wowra.net.pl, 1
wows-mods.tk, 1
wows.sb, 1
@@ -163255,6 +162533,7 @@ wozkinozycowe.pl, 1
wozkipaletowe.com.pl, 1
wozkipaletowe.net, 1
wozkipodnosnikowe.eu, 1
+wozsun.com, 1
wozwaardeloket.nl, 1
wozwebdesign.com.br, 1
wp-assistance.fr, 1
@@ -163289,7 +162568,6 @@ wpcc.edu, 1
wpcepat.com, 0
wpcheck.io, 1
wpckraft.ro, 1
-wpco.nl, 1
wpco.se, 1
wpcodeus.com, 1
wpcommerz.com, 1
@@ -163299,7 +162577,6 @@ wpdev.com.au, 1
wpekspres.com, 1
wpetri.nl, 1
wpexplainer.com, 1
-wpfactory.io, 1
wpformation.com, 1
wpforum.tk, 1
wpg-verwaltungen.de, 1
@@ -163307,7 +162584,6 @@ wpginvest.com, 1
wpglossy.com, 1
wpgplplug.com, 1
wpguvenlik.com, 1
-wphelpdesk.nl, 1
wphelpwithhomework.tk, 1
wphost.nl, 0
wphosting.ovh, 1
@@ -163343,7 +162619,6 @@ wppodcast.es, 1
wppodcast.fr, 1
wppodcast.org, 1
wprank.net, 1
-wprapide.com, 1
wprepublic.com, 1
wpresscoder.com, 1
wproduction.sk, 1
@@ -163363,7 +162638,6 @@ wpspeedcare.com, 1
wpspeedking.com, 1
wpspeedmatters.com, 1
wpstaq.com, 1
-wpsuites.com, 1
wptests.tk, 1
wpthemearchive.com, 1
wpthemesbox.com, 1
@@ -163421,6 +162695,7 @@ writeandedit-for-you.com, 1
writeaword.tk, 1
writebrigade.com, 1
writelabel.com, 1
+writememos.com, 1
writemyessay.today, 1
writemyessays.com, 1
writemypaperhub.com, 1
@@ -163493,6 +162768,7 @@ wssinfo.org, 1
wsspalluto.de, 1
wssv.ch, 0
wstein.org, 1
+wstore.co.id, 1
wsug.gq, 1
wsv-pfeffingen.de, 1
wsvdeboei.nl, 1
@@ -163581,6 +162857,7 @@ wurzelkanal.de, 1
wushka.com.au, 1
wustirr.works, 1
wusu.tk, 1
+wuw.moe, 1
wuxian.ml, 0
wuya.eu.org, 1
wuyifan.ga, 1
@@ -163597,7 +162874,6 @@ wvpbs.tk, 1
wvpebd.gov, 1
wvrtboard.gov, 1
wvsdca.gov, 1
-wvstateparks.com, 1
wvunclaimedproperty.gov, 1
wvv-8522.com, 1
wvv.de, 1
@@ -163606,6 +162882,7 @@ wvzwollezuid.nl, 1
ww-design.ch, 0
ww3.myqnapcloud.com, 1
ww5197.co, 1
+ww5w.cc, 1
ww6396.com, 0
ww6729.co, 1
ww6729.com, 0
@@ -163622,9 +162899,9 @@ wwbsb.xyz, 1
wwc.ren, 1
wwcowa.gov, 1
wwe.to, 1
-wwecoinio.info, 1
wwgc2011.se, 1
wwhotels.com, 1
+wwiliveportal.com, 1
wwilogistics.com, 1
wwjd.dynu.net, 1
wwlc.ch, 1
@@ -163670,7 +162947,7 @@ www.amazon.nl, 1
www.banking.co.at, 1
www.bbc.co.uk, 0
www.bbc.com, 0
-www.braintreepayments.com, 0
+www.braintreepayments.com, 1
www.calyxinstitute.org, 1
www.capitainetrain.com, 0
www.captaintrain.com, 0
@@ -163781,7 +163058,6 @@ wy6.org, 1
wyattirwin.com, 1
wyatttauber.com, 1
wyattworth.com, 1
-wybar.co.uk, 1
wybar.uk, 1
wycena.ga, 1
wyckoffnj.gov, 1
@@ -163793,6 +163069,7 @@ wydmy.com.pl, 1
wyff4.com, 1
wygibanki.pl, 1
wygodnie.pl, 1
+wyiga.org, 1
wykop.pl, 0
wykopylodz.ga, 1
wykorzystaj.ai, 1
@@ -163824,6 +163101,7 @@ wyrihaximus.net, 1
wyrimaps.net, 1
wyriverton.com, 1
wyscouts.online, 1
+wysoczanski.eu, 1
wyspa.com.pl, 1
wyssmuller.ch, 0
wysz.com, 1
@@ -163852,6 +163130,7 @@ x-charge.uk, 1
x-electronica.com, 1
x-embed.com, 1
x-files.tk, 1
+x-guard.ca, 1
x-iweb.ru, 1
x-kamera.de, 1
x-lan.be, 1
@@ -163941,17 +163220,16 @@ xalima.gq, 1
xampusolid.cat, 1
xanadu.ai, 1
xanalys.org, 1
-xanaxbuy.us, 1
xanderbron.tech, 1
xanedu.com, 1
xanhdecor.com, 1
xanny.family, 1
xantec.com.my, 0
xanthipolis.gr, 1
+xanthopoulos.me, 1
xants.de, 1
xanyl.de, 1
xanzhu.com, 1
-xaraguamagazine.com, 1
xarangallomangallo.tk, 1
xarcmastering.com, 1
xareltohcp.com, 1
@@ -163959,7 +163237,6 @@ xarmenta.tk, 1
xatr0z.org, 0
xauzit.com, 1
xav.ie, 1
-xaver.cash, 1
xaver.exchange, 1
xavi.re, 1
xavier.is, 1
@@ -163969,6 +163246,7 @@ xavio-design.com, 1
xavirabarte.es, 1
xavy.fr, 1
xayah.net, 1
+xaydungphunguyen.com, 1
xaynhachothue.vn, 1
xb008.com, 1
xb053.com, 1
@@ -164012,7 +163290,7 @@ xb8861.com, 1
xb9009.com, 1
xb906.com, 1
xb913.com, 1
-xb925.com, 1
+xb925.com, 0
xb937.com, 1
xb957.com, 1
xb961.com, 1
@@ -164089,6 +163367,7 @@ xc9988.cc, 1
xcancel.com, 1
xcashshop.com, 1
xccc.net, 1
+xcdd.sh, 1
xce.pl, 1
xcelit.io, 1
xchangehoster.de, 1
@@ -164120,6 +163399,7 @@ xdb.be, 0
xdc.org, 1
xdcam-user.com, 1
xdemvyhcp.com, 1
+xdgesports.com, 1
xdlab.co, 1
xdos.io, 1
xdtag.com, 1
@@ -164182,7 +163462,6 @@ xfantasy.su, 1
xfcy.me, 1
xfd3.de, 1
xfiles.wiki, 1
-xfilesultimate.com, 1
xfinityapparel.com, 1
xfirma.pl, 1
xfixup.com, 1
@@ -164208,7 +163487,6 @@ xhamiadituria.com, 1
xhamster.com, 1
xhanster.gq, 1
xhcmnews.com, 1
-xhgzhongzhuanym.com, 1
xhibitran.tk, 1
xhily.com, 0
xhmikosr.io, 1
@@ -164235,7 +163513,7 @@ xianyu.uk, 1
xiao-sheng.gq, 1
xiaobude.cn, 1
xiaocg.xyz, 1
-xiaoda.fun, 0
+xiaoda.fun, 1
xiaodingyi.cn, 1
xiaoguanliandong.com, 1
xiaoguanlive.com, 1
@@ -164252,13 +163530,10 @@ xiaomionline24.pl, 1
xiaoneijun.cn, 1
xiaoneimao.cn, 0
xiaoniaoyou.com, 0
-xiaoqiang.blog, 1
xiaoshijt.com, 1
xiaowangshen.com, 1
-xiaowutou.com, 1
xiaoxia.li, 1
xiaoyy.org, 1
-xiaozonglin.cn, 0
xiarain.com, 1
xiaxuejin.cn, 1
xiazhanjian.com, 0
@@ -164398,7 +163673,7 @@ xinbo609.com, 1
xinbo610.com, 1
xinbo676.com, 1
xindloviny.cz, 1
-xinebf.com, 1
+xinebf.com, 0
xinfinity.com.tw, 1
xing.ml, 1
xingai.ml, 1
@@ -164439,7 +163714,6 @@ xixi.com, 1
xiyu.com, 1
xjd.vision, 1
xjf6.com, 1
-xjj.jp, 1
xjjeeps.com, 1
xjjzp.com, 1
xjjzp.net, 1
@@ -164448,6 +163722,7 @@ xjtu.love, 1
xjtu.men, 1
xjtv.com, 1
xjysilicone.com, 1
+xk47.cc, 1
xkblog.xyz, 1
xkcd.pw, 1
xkq.ch, 1
@@ -164469,6 +163744,7 @@ xlink.com.pl, 1
xlion.tw, 1
xlnaudio.com, 1
xloud.cf, 1
+xloveit.com, 1
xlr8.shop, 1
xlribbon.ml, 1
xlrsecurity.com, 1
@@ -164525,7 +163801,6 @@ xn----7sbkofbbj4akz.xn--80asehdb, 1
xn----7sblrfhjjgq8g.xn--p1ai, 1
xn----7sbmucgqdbgwwc5e9b.xn--p1ai, 1
xn----7sbqlhcsgevuc0j.xn--p1acf, 1
-xn----8hcdn2ankm1bfq.com, 1
xn----8sbadsuaby8bb4a7cwh.xn--p1ai, 1
xn----8sbdihuaxb3abob8a.xn--p1ai, 1
xn----8sbdjbisdat0g.xn--p1ai, 1
@@ -164638,7 +163913,6 @@ xn--80adydmce.com, 1
xn--80ae2ajalfi0r.xn--90a3ac, 1
xn--80ae7bafe4d.tk, 1
xn--80aebbkaqx6at.xn--p1ai, 1
-xn--80aejbddhwvjax1p.xn--p1ai, 1
xn--80aejhvi0at.xn--90ais, 1
xn--80aejljbfwxn.xn--p1ai, 1
xn--80affa6ai0a.tk, 1
@@ -164690,7 +163964,6 @@ xn--alcaiz-zwa.tk, 1
xn--allgu-biker-o8a.de, 1
xn--andre-is--yz4h8t9azf9596c4rigl8h.moe, 1
xn--anyd-7na.at, 1
-xn--apaados-6za.es, 1
xn--arelektrbunerisk-4bc73b.lv, 1
xn--aurdumeti-cmd.ro, 1
xn--autoschlssel-wesel-t6b.de, 1
@@ -164703,15 +163976,24 @@ xn--b1ayb.tk, 1
xn--b3c4f.xn--o3cw4h, 1
xn--baron-bonzenbru-elb.com, 1
xn--bckerei-wohlgemuth-ltb.de, 1
+xn--begravningsbyrnonline-52b.com, 1
+xn--begravningsbyronline-9zb.se, 1
+xn--begravningsentreprenr-0ec.se, 1
xn--bersetzung-8db.cc, 1
xn--bersetzungen-beglaubigt-bpc.de, 1
xn--berufsprfung-kinsthetik-b8b50d.ch, 1
xn--berwachungspaket-izb.at, 1
+xn--billigbegravningsbyr-g0b.se, 1
xn--bjugrd-lua.io, 1
xn--blusastlacotalpeas-20b.online, 1
xn--bm3bl9r.com, 1
xn--bognsroad-j3a.dk, 1
+xn--borlngebegravningsbyra-34b.se, 1
+xn--boupptckning-lcb.se, 1
+xn--boupptckningstockholm-b2b.se, 1
xn--brneruhr-0za.ch, 1
+xn--brommabegravningsbyr-g0b.se, 1
+xn--brtransport-x8a.se, 1
xn--bruno-hnel-kcb.de, 0
xn--bwx.xn--fiqs8s, 1
xn--bwx.xn--fiqz9s, 1
@@ -164746,7 +164028,6 @@ xn--contrasea-s6a.cl, 1
xn--crystal-9e7ua.icu, 1
xn--d1aca2a5al.tk, 1
xn--d1acfdr6h.com.ua, 1
-xn--d1acj9c.xn--90ais, 1
xn--d1acmf9g.xn--p1ai, 1
xn--d1aczdsdn4d.tk, 1
xn--d1afcjuch.xn--p1ai, 1
@@ -164789,13 +164070,10 @@ xn--ecki0cd0bu9a4nsjb.com, 1
xn--eckok2bi6jzkpc.com, 1
xn--eckok2bi6jzkpc.jp, 1
xn--ee-zja.de, 1
-xn--eebao6b.com, 1
-xn--eebao6b.net, 1
xn--eglujemy-23b.net, 1
xn--ehqw04eq6e.jp, 1
xn--elsignificadodesoar-c4b.com, 1
xn--eluprastinsulti-3kb.ee, 1
-xn--eqr523b.com, 1
xn--erban-e9b.ro, 1
xn--erklderbarenben-slbh.dk, 1
xn--ertvg-pra.no, 1
@@ -164918,6 +164196,7 @@ xn--mgbmmp7eub.com, 1
xn--mgbpkc7fz3awhe.com, 1
xn--mgbqq.com, 1
xn--mgbuq0c.net, 1
+xn--mij-22a.pl, 1
xn--mitenlyttit-s8aad6xf.fi, 1
xn--mitenlyttyt-s8aad6xg.fi, 1
xn--mitensaadatit-nfb1y.fi, 1
@@ -164927,6 +164206,7 @@ xn--mllingen-65a.de, 1
xn--mnck-5qa.de, 1
xn--mnich-7ua.de, 1
xn--mntsamling-0cb.dk, 1
+xn--mol-tna.com, 1
xn--monvlogratuit-ehb.fr, 1
xn--morrhret-e0a.se, 1
xn--mrtelfuger-0cb.dk, 1
@@ -165051,7 +164331,6 @@ xn--vhqd939aoqhf4c785d.com, 1
xn--vihrekeino-u5a.fi, 1
xn--vjqp6xkwblzeyv2h.cn, 1
xn--vt3a.jp, 1
-xn--vwsv89g.xn--fiqs8s, 1
xn--vwsv89g.xn--fiqz9s, 1
xn--vwsw0b.xn--fiqs8s, 1
xn--vwsw0b.xn--fiqz9s, 1
@@ -165199,7 +164478,6 @@ xq6dtff.top, 1
xqib.org, 1
xqin.net, 1
xqk7.com, 1
-xqwqx.com, 1
xr5.me, 1
xr5.tech, 1
xrayreview.ml, 1
@@ -165245,7 +164523,6 @@ xt.om, 1
xt177.com, 1
xt71uc.top, 1
xtaboo3d.com, 1
-xtalpi.com, 1
xtarget.ru, 1
xtdsteel.com, 1
xtechtecnologia.tec.br, 1
@@ -165509,14 +164786,12 @@ y11n.net, 0
y2bet.com, 1
y2dcycleroute.ie, 1
y2k23.com, 1
-y2s.pw, 1
y31.jp, 1
y337.consulting, 1
y337.tech, 1
y3451.com, 1
y365188.com, 1
y36533.com, 1
-y3bet.com, 1
y5197.co, 1
y5bet.com, 1
y6180.com, 1
@@ -165596,7 +164871,6 @@ ya-radio.tk, 1
ya-stroynaya.tk, 1
ya-zdorova.tk, 1
yaamava.com, 1
-yaateens.org, 1
yaaw.de, 1
yaay.com.br, 1
yaay.today, 1
@@ -165694,7 +164968,6 @@ yamei1.com, 1
yamei8.com, 1
yamei8866.com, 1
yamei98.com, 1
-yamei99.com, 1
yamei9955.com, 1
yamhillcounty.gov, 1
yamobila.tk, 1
@@ -165714,7 +164987,6 @@ yandere.moe, 1
yandong.tk, 1
yang1963.com.tw, 1
yangfamily.tw, 1
-yangjingwen.cn, 1
yangjingwen.com, 1
yangmao.info, 1
yangmaodang.org, 0
@@ -165745,7 +165017,6 @@ yanservices.be, 1
yansurachman.web.id, 1
yantarniy.tk, 1
yantox.com, 1
-yaodownload.com, 1
yaoge123.com, 1
yaoostore.com, 1
yaoyorozu.eu, 1
@@ -165772,6 +165043,7 @@ yapan888.com, 1
yapan9.com, 1
yapan99.com, 1
yapanwang.com, 1
+yapatriot.com, 1
yapaytech.com, 1
yapdentalsurgery.com, 1
yapeal.ch, 1
@@ -165861,6 +165133,7 @@ yavin4.cf, 1
yavip8088.com, 1
yavorivanov.com, 1
yavuzatasoy.tk, 1
+yawnbox.is, 1
yaws.cf, 1
yaxim.org, 1
yay-btcl.work, 1
@@ -165891,7 +165164,6 @@ ycalculators.com, 1
ycatsh.net, 1
ycbmdevelopment.com, 1
ycbmstaging.com, 1
-ycck.com, 1
ycdtc.org, 1
ycfld.gov, 1
ych.art, 1
@@ -165995,7 +165267,6 @@ yennhi.co, 1
yenpape.com, 1
yeoldemagicmag.com, 1
yep-pro.ch, 0
-yepbitcoin.com, 1
yepu.cc, 1
yepu.ga, 1
yerbasbuenas.tk, 1
@@ -166025,12 +165296,9 @@ yesmsp.com, 1
yesod.in, 1
yesogovinpetcare.com, 1
yesolo.tk, 1
-yesonline.asia, 1
-yesonline.me, 1
yespornfree.com, 1
yespornplease.com, 1
yessirgear.com, 0
-yessky.com, 1
yeste.tk, 1
yestees.com, 1
yesterford.com, 1
@@ -166055,7 +165323,7 @@ yezhong.cf, 1
yezhong.ml, 1
yezi.ga, 1
yezishurb.site, 1
-yf128.cc, 1
+yf128.cc, 0
yfh.me, 1
yg-crew.eu, 1
yggdar.ga, 1
@@ -166066,6 +165334,7 @@ yh64678.com, 1
yh66689.com, 1
yh88890.com, 1
yh98768.com, 1
+yha.co.nz, 1
yhaupenthal.org, 1
yhclinic.com.tw, 1
yhe.me, 1
@@ -166083,7 +165352,6 @@ yiai.ga, 1
yiai.gq, 1
yiai.ml, 1
yiai.tk, 1
-yianniswine.com, 1
yibaoweilong.top, 1
yibei-original.com, 1
yibin0831.com, 0
@@ -166095,7 +165363,6 @@ yidedental.com, 1
yifananime.com, 1
yifanbian.me, 1
yifansun.net, 1
-yiff.cool, 1
yiff.forsale, 1
yiff.media, 1
yiff.rest, 1
@@ -166120,6 +165387,7 @@ ying.gift, 1
ying299.com, 1
ying299.net, 1
yingatech.com, 1
+yinghezhinan.com, 1
yinglinda.love, 1
yingmei.jp, 1
yingshu.hopto.org, 1
@@ -166172,7 +165440,6 @@ ymcaokc.org, 0
ymcapkc.org, 1
ymeadows.com, 1
ymg-allergy.jp, 1
-ymlsport.pe, 1
ymm18.com, 1
ymoah.nl, 1
ymos.com.tw, 1
@@ -166182,6 +165449,7 @@ ymy.moe, 1
ymy.zone, 1
yn.org.nz, 1
ynode.com, 1
+ynon.co.il, 1
yo-digital.ga, 1
yoa.st, 1
yoasobi-music.jp, 1
@@ -166227,13 +165495,11 @@ yogamea.school, 1
yogananda-roma.org, 1
yogaovelser.dk, 1
yogaportalen.dk, 1
-yogaprague.com, 1
yogaschoolrishikesh.com, 1
yogasirsasana.com, 1
yogasolution.tk, 1
yogatherapykosha.com, 1
yogaworld.tk, 1
-yogcham-sangh-asso.fr, 1
yogesh.com.au, 1
yogibear.tk, 1
yogmoney.com, 1
@@ -166264,7 +165530,6 @@ yolanibg.com, 1
yolhesaplama.com, 1
yolo-csgo.com, 1
yolo-jp.com, 1
-yolo.cn, 1
yolobert.de, 1
yoloboatrentals.com, 1
yolocast.wtf, 1
@@ -166292,7 +165557,6 @@ yoogirls.com, 1
yoomza.com, 1
yoonas.com, 1
yooooex.com, 1
-yooptopian.com, 0
yopers.com, 0
yopmail.com, 1
yopmail.net, 1
@@ -166308,7 +165572,6 @@ yore.tk, 1
yorganica.ga, 1
yorgosbos.nl, 1
yorickpeterse.com, 1
-yorkacademy.ca, 1
yorkcountyne.gov, 1
yorkcountysc.gov, 1
yorkcountyschools.org, 1
@@ -166355,7 +165618,6 @@ yottahash.net, 1
yotubaiotona.net, 1
you-working.ru, 1
you.bo, 0
-you.com.br, 1
you15iv.com, 1
youandmepps.com.au, 1
youareamazingnd.com, 1
@@ -166368,12 +165630,14 @@ youcanfinance.com.au, 1
youcanfuckoff.xyz, 1
youcanhelp.tk, 1
youcanmakeit.at, 1
+youcloud.com, 1
youcruit.com, 1
youcruit.jobs, 1
youderma.ca, 1
youdriver.com, 1
youdungoofd.com, 1
youenglish.school, 1
+youfi.io, 1
youftp.tk, 1
yougee.ml, 1
yougene.me, 1
@@ -166436,7 +165700,6 @@ youngpeopleunited.co.uk, 1
youngsook.org, 1
youngsophie.net, 1
youngsoulstudios.com, 0
-youngster.cn, 1
youngsurveyors.dk, 1
youngsvillenc.gov, 1
youngtherapy.co.uk, 1
@@ -166496,15 +165759,14 @@ yourdevoncornwall.wedding, 1
yourdigitalangel.com, 1
yourdigitalworkplace.au, 1
yourdigitalworkplace.com.au, 1
+yourdnayoursay.org, 1
yourdost.com, 1
yourdrive.tk, 1
youreastanglian.wedding, 1
youreastmidlands.wedding, 1
yourecipess.com, 1
youreitbranding.com, 1
-youremailexpert.com, 1
youren.com.tw, 1
-yourenergy.io, 1
youreward.ga, 1
yourfandom.ddns.net, 1
yourforceserver.com, 1
@@ -166515,10 +165777,15 @@ yourforcesupport.net, 1
yourforcesupport.pro, 1
yourforcesupport.us, 1
yourforex.org, 1
+yourfriendlyrecipes.com, 1
yourfriendlytech.com, 1
yourfuntrivia.com, 1
yourgadget.ro, 1
yourgames.tv, 1
+yourgenome.co.uk, 1
+yourgenome.info, 1
+yourgenome.net, 1
+yourgenome.org, 1
yourgloswilts.wedding, 1
yourhampshiredorset.wedding, 1
yourhawkesbury-yoursay.com.au, 1
@@ -166608,7 +165875,6 @@ youssefmanai.com, 1
youssfitpro.com, 1
youston.agency, 1
youstyleski.it, 1
-yousufahmad.ca, 1
yousuforg.ga, 1
youth-for-life.tk, 1
youth-sport.net, 1
@@ -166624,6 +165890,7 @@ youthrules.gov, 1
youthsadda.com, 1
youthwant.com.tw, 1
youtous.me, 1
+youtransmarrakech.com, 1
youtube, 1
youtube-notify.com, 1
youtube.com, 1
@@ -166673,14 +165940,13 @@ yrefail.net, 1
yriik.ml, 1
yrityksen-perustaminen.net, 1
yrx.me, 1
-yrydh.xyz, 1
yryz.net, 1
ys96.org, 1
yscc.cc, 1
ysearc.tk, 1
ysfridge.com, 1
ysicorp.com, 1
-yslxxhome.com, 0
+yslxxhome.com, 1
ysmedia.jp, 1
yspa.tv, 1
yspertal.party, 1
@@ -166745,7 +166011,6 @@ yugege.cf, 1
yugioh-duelodefinitivo.tk, 1
yugiohthenextgeneration.tk, 1
yugohome.com, 1
-yuh-lin.com, 1
yuhaoskin.com.tw, 1
yuharahisako.ga, 1
yuho.vn, 1
@@ -166774,7 +166039,6 @@ yukomgroup.com, 1
yukonconnector.com, 1
yukonlip.com, 1
yukoslibrary.ga, 1
-yuksinau.id, 1
yula.cf, 1
yulaiz.com, 1
yulamerola.com.br, 1
@@ -166828,13 +166092,13 @@ yurikirin.me, 1
yuriland.xyz, 1
yurimoens.be, 1
yurinet.org, 1
-yurisora.com, 1
yurissimo.ch, 1
yurissimo.cn, 1
yurissimo.com, 1
yurissimo.de, 1
yurist-vopros.gq, 1
yuriylysyuk.ru, 1
+yurp.nl, 1
yurtdisigocmenlik.com, 1
yurudie.com, 1
yus-azaria.tk, 1
@@ -166843,7 +166107,7 @@ yushanfang.recipes, 1
yussuv.com, 1
yusufkaptanoglu.com, 0
yusukekato.com, 1
-yusukesakai.com, 1
+yusukesakai.com, 0
yutakato.net, 1
yutangyun.com, 1
yuu.ink, 1
@@ -166881,7 +166145,6 @@ yvonnewilhelmi.com, 1
yw.com, 1
ywambutuan.org, 1
ywamcebu.org, 1
-ywamshipsphilippines.com, 1
ywamtonga.org, 1
ywor.it, 1
ywutrust.com, 1
@@ -166904,7 +166167,6 @@ yxo.cz, 1
yxo.sk, 1
yxt521.com, 1
yy-s.net, 1
-yy366.cc, 0
yy369.cc, 0
yy5197.co, 1
yy6729.co, 1
@@ -166914,7 +166176,7 @@ yy9728.co, 1
yya.men, 1
yyc.city, 1
yycbike.info, 1
-yydjtc.top, 0
+yydjtc.top, 1
yyr.im, 1
yyrss.com, 0
yyy116.com, 1
@@ -166941,11 +166203,10 @@ z-konzept-nutrition.ru, 1
z-lib.pp.ua, 1
z-pc.net, 1
z-rejstejna.cz, 1
-z-vector.com, 1
+z-vector.com, 0
z.cash, 1
z.ee, 1
z.md, 1
-z.mom, 1
z.sh, 1
z.sv, 1
z.tl, 1
@@ -167036,7 +166297,6 @@ z8875.com, 0
z8876.com, 0
z8879.com, 1
z8895.com, 1
-z8907.com, 1
z8920.com, 1
z8922.com, 1
z9297.co, 1
@@ -167087,7 +166347,6 @@ zaclys.com, 0
zad-academy.com, 1
zadania.wiki, 1
zadm.de, 1
-zadnje.com, 1
zadrot.tk, 1
zadroweb.com, 1
zaem.tv, 1
@@ -167109,7 +166368,6 @@ zahari.tk, 1
zahirdanzavila.com, 1
zahlen-kern.de, 1
zahlensysteme-rechner.de, 1
-zahn-frankl.at, 1
zahnaerzte-website.de, 1
zahnaerzte-wl.de, 1
zahnarzt-bellmann.de, 1
@@ -167120,6 +166378,7 @@ zahnarzt-neudecker.de, 0
zahnarzt-svenglaeser.de, 1
zahnarzt.ac, 1
zahnarzt.se, 1
+zahnarztpraxis-cevikel.de, 1
zahnarztpraxis-schaerding.at, 1
zahnarztpraxis-simone-koch.de, 1
zahrowski.com, 1
@@ -167210,7 +166469,6 @@ zambranopublicidadvideo.com, 1
zamenim.tk, 1
zametkin.tk, 1
zaminutusest.cz, 1
-zamio.vn, 1
zamki.tk, 1
zammad.com, 0
zammad.org, 1
@@ -167219,7 +166477,6 @@ zamok.cf, 1
zamokservis.com, 1
zamor.com.br, 1
zamorsky.tk, 1
-zamos.ru, 1
zamowienia.com, 1
zamtech.co.jp, 1
zanahd.co.za, 1
@@ -167297,7 +166554,6 @@ zarabotokvnet.tk, 1
zarabotokvseti.tk, 1
zaracraft.tk, 1
zaramendez.net, 1
-zarasblog.com, 1
zaratan.fr, 0
zaratime.com, 1
zarbis.tk, 1
@@ -167342,7 +166598,6 @@ zavec.com.ec, 0
zavedeno.com, 1
zaves.tk, 1
zavod-96.ru, 1
-zawartosc.pl, 1
zawodowe.edu.pl, 1
zaxid-kava.ua, 1
zayats.tk, 1
@@ -167473,7 +166728,6 @@ ze3kr.com, 1
zeal-and.jp, 1
zeal-interior.com, 1
zealar.com.au, 1
-zealousholistics.com, 1
zealousweb.com, 0
zealworks.jp, 1
zeamerseagerbeavers.com, 1
@@ -167505,7 +166759,6 @@ zeekajakvaren.tk, 1
zeel.com, 1
zeelandbrug.tk, 1
zeeloo.xyz, 1
-zeeshan.website, 0
zeet.tk, 1
zeetoppers.nl, 1
zefir.fr, 1
@@ -167587,6 +166840,7 @@ zendarhunters.tk, 1
zendave.au, 1
zendev.ga, 1
zendev.tk, 1
+zendo.asia, 1
zendodd.com, 1
zendrop.com, 1
zenduit.com, 1
@@ -167684,7 +166938,6 @@ zerodhareview.co, 1
zerodoubtclub.com, 1
zerodrytimefarnham.co.uk, 1
zeroed.com.au, 1
-zeroemissiongrid.com, 1
zerofox.gq, 1
zerofy.de, 0
zerogamestore.ir, 1
@@ -167702,10 +166955,8 @@ zeroseteatacado.com.br, 1
zerotoleranceclan.tk, 1
zerotoone.de, 1
zerotrust.plus, 1
-zerotrustmedia.net, 1
zerotwo.ga, 1
zerowastesonoma.gov, 1
-zeroxsecurity.com, 1
zeroz.cf, 1
zeroz.ga, 1
zeroz.gq, 1
@@ -167728,7 +166979,6 @@ zetadisseny.es, 1
zetamode.com, 1
zetasystem.jp, 1
zeteomail.com, 1
-zetflix.pro, 1
zetflix.zone, 1
zetokatowice.pl, 1
zetsubou.games, 1
@@ -167817,6 +167067,7 @@ zhelanie.ml, 1
zheldor-dance.ga, 1
zheldorinform.ga, 1
zhen-chen.com, 1
+zhendingresources.com, 0
zhenggangzhao.org, 1
zhengjie.com, 1
zhengzihan.com, 1
@@ -167909,12 +167160,14 @@ ziggi.tk, 1
ziggletech.com, 1
ziggo.nl, 1
zighinetto.org, 1
+zigloi.com, 1
zigoomar.tk, 1
zigottos.fr, 1
zigsphere.com, 0
zihao.me, 0
zihun.club, 1
zij-aan-zij.be, 1
+zijderlaangroup.nl, 1
zijingbt.cn, 1
zijingbt.com, 1
zijingbt.net, 1
@@ -167927,6 +167180,7 @@ ziledelaultimagafaavioricai.ro, 1
ziliotti.com.br, 1
zilla-sushi.tk, 1
zillertaleralpen.net, 1
+zillionparts.com, 1
zilon.com.co, 1
zilore.com, 1
zilpay.io, 1
@@ -167961,7 +167215,6 @@ zingtree.com, 1
zingyawesome.com, 1
zinhar.tk, 1
zinio.com, 1
-zinkmetselwerken.nl, 1
zinnia.com, 1
zinniazorgverlening.nl, 1
zinnowitzer-ferienwohnung.de, 1
@@ -167982,7 +167235,6 @@ zipotech.com, 1
zippie.tk, 1
zippingus.com, 1
zippo-days.me, 0
-zippricami.com, 1
zippyshare.com, 1
zipre.co, 1
ziprecruiter.com, 1
@@ -167993,7 +167245,6 @@ zir.com.ua, 1
ziraatweb.com, 1
zirbelino.at, 1
zirbenprodukte.at, 1
-zircly.com, 1
zireon.tk, 1
zirka24.net, 1
ziroh.be, 1
@@ -168011,7 +167262,6 @@ zitseng.com, 1
zitstabureau24.nl, 1
ziua.net, 1
zivava.ge, 1
-zivimexico.com, 1
zivot.org, 1
zivotbezkrutosti.cz, 1
zivotsdietou.cz, 1
@@ -168088,7 +167338,6 @@ zlatan-ibrahimovic.tk, 1
zlatanonline.tk, 1
zlatapacka.cz, 1
zlatatlapka.cz, 1
-zlato.ua, 1
zlatograd.bg, 1
zlatom.ru, 1
zlavomat.sk, 1
@@ -168120,6 +167369,7 @@ znachenie-sna.ga, 1
znachenie-sna.ml, 1
znachenie-sna.tk, 1
znaj.ua, 1
+znajdz.info, 1
znajdz.lgbt, 1
znajdzprzodka.pl, 1
znakomim.cf, 1
@@ -168165,7 +167415,6 @@ zodiak.tk, 1
zodii.bg, 1
zoebuswell.com, 1
zoedijital.com, 1
-zoefmasters.be, 1
zoegoesplaces.com, 1
zoepolitics.cf, 1
zoepolitics.ga, 1
@@ -168186,6 +167435,7 @@ zofzpcb.com, 1
zogatest.tk, 1
zogevikst.nl, 1
zohditech.com, 1
+zoho.com, 1
zoho.in, 1
zoho.sa, 1
zohomon.com, 1
@@ -168215,7 +167465,6 @@ zolucky.com, 1
zolushka-1950.tk, 1
zolw.info, 1
zom.bi, 1
-zomatonics.com, 1
zomatree.live, 1
zombie-40th.com, 1
zombie.cam, 1
@@ -168288,7 +167537,6 @@ zook.tk, 1
zookids.uy, 1
zookri.com, 1
zoola.io, 1
-zoolaboo.de, 1
zoological-gardens.eu, 1
zoom-eco.net, 1
zoom.earth, 1
@@ -168313,16 +167561,11 @@ zootime.org, 1
zoowiki.us, 1
zooxdata.com, 1
zopa.com, 1
-zopyx.com, 1
zor.com, 1
zorasvobodova.cz, 1
zorgbeurs.nl, 1
zorgclustertool.nl, 1
zorgdomein.com, 1
-zorgenvoorandrea.be, 1
-zorgenvoorherena.be, 1
-zorgenvoorjean.be, 1
-zorgenvoormaria.be, 1
zorghuys.nl, 1
zorgnetwerkenabr.nl, 1
zorgonderwijsnu.nl, 1
@@ -168412,12 +167655,10 @@ zsdublovice.cz, 1
zse.hr, 1
zseartcc.org, 1
zselicivt.hu, 1
-zserial.net, 1
zshmvp.com, 1
zsien.cn, 1
zsinep.hu, 1
zsnm.pl, 1
-zsofit.com.au, 1
zsoltbereczki.tk, 1
zsplesivec.cz, 1
zsq.im, 1
@@ -168462,7 +167703,6 @@ zuiderlokaal.nl, 1
zuiderzeemuseum.nl, 1
zuijia.com, 1
zuim.de, 1
-zuinin.com, 1
zuitaotu.com, 1
zuivelonline.nl, 1
zuiverjegeest.nl, 1
@@ -168518,9 +167758,9 @@ zverovod.info, 1
zverskij-site.tk, 1
zvezdy-porno.ml, 1
zvps.uk, 1
+zvukipro.com, 1
zvvtheboys.tk, 1
zvxr.net, 1
-zvz.im, 1
zwalm.be, 1
zwaminspectie.nl, 1
zwartendijkstalling.nl, 1
@@ -168613,7 +167853,6 @@ zz9728.co, 1
zzadmin.de, 1
zzcc.de, 0
zzcc.loan, 1
-zzday.info, 1
zzekj.net, 1
zzf.red, 1
zzops.eu, 1
@@ -168625,6 +167864,5 @@ zzsec.org, 1
zzw.ca, 1
zzz-diary.com, 1
zzzmode.com, 1
-zzzz365.com, 0
zzzzz.click, 1
%%
diff --git a/icecat/services/settings/dumps/blocklists/addons-bloomfilters.json b/icecat/services/settings/dumps/blocklists/addons-bloomfilters.json
index a013aa3d43..f49a1a523e 100644
--- a/icecat/services/settings/dumps/blocklists/addons-bloomfilters.json
+++ b/icecat/services/settings/dumps/blocklists/addons-bloomfilters.json
@@ -1,5 +1,1031 @@
{
"data": [
+ {
+ "stash": {
+ "blocked": [
+ "{0ea8fbee-50d0-4d5a-b73c-2d182bc4a671}:2.4.6",
+ "{96c243bd-c6b2-462b-85ec-3e0325c03fc8}:10.1",
+ "{96c243bd-c6b2-462b-85ec-3e0325c03fc8}:17.1",
+ "{68f4565b-787b-4e17-a876-cde65df2fa2f}:8.2.4",
+ "{68f4565b-787b-4e17-a876-cde65df2fa2f}:10.2"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1752237373857,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1752258905471,
+ "id": "06a7c42c-45a0-48a8-ba80-8a22d914c8ff",
+ "last_modified": 1752258970807
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{03fb75df-18a5-4580-85ea-adf71bebe888}:1.0",
+ "{03fb75df-18a5-4580-85ea-adf71bebe888}:101.2",
+ "{03fb75df-18a5-4580-85ea-adf71bebe888}:101.3",
+ "{03fb75df-18a5-4580-85ea-adf71bebe888}:102.3.2.64",
+ "{d9ec3ccf-d391-4442-ad35-4170290cd50e}:1.1",
+ "iholnpjdphagafhdhepcfchggcbfiiin@ckrettorr.space:1.0.0.1",
+ "{e83a4cb3-9626-4019-853a-e2ad58a2ad66}:1.0.0",
+ "{3248d6ba-e70c-4c98-909c-c65e42198282}:1.0.8",
+ "{73d7207a-d759-4f45-8038-e7c75f3ce599}:1.0.3",
+ "{ae53cf14-71fe-44d4-abdc-56e971d46cf5}:4.0.1",
+ "{f073056b-6346-42ad-af7b-2bd479b79ac1}:4.0.1",
+ "{73e26852-23ff-4a4e-bed4-7209058342cc}:1.0.1",
+ "{b517c0c7-c711-4a49-a05a-fd8af8700c2c}:1.0.1",
+ "{5baa57fb-0cd9-41c9-9080-d0a91341161f}:1.0.1",
+ "{b456c483-5461-42c3-bbae-6c1ea3d8472b}:1.0.1",
+ "{f0937ec3-9947-4a07-b354-0bebfd87410b}:1.0.1",
+ "{aa698671-e717-4095-9620-0a3a1add8ee4}:1.0.1",
+ "{7fbcda02-64ec-4285-92f3-81c22c8f9a01}:1.0.1",
+ "{b8eb55d5-37b2-4ea4-a42c-4fcfa5fe8619}:1.0.1",
+ "{93544bfe-ed4e-4c36-b404-25680deb441e}:1.0.1",
+ "{e729ece3-dffb-47ed-92f2-b16f5f064e45}:1.0.1",
+ "{6b149369-fd42-44cf-bb94-313257dae141}:1.0.1",
+ "{972b8520-8a81-4b65-8d62-de65c2fc3a69}:1.0.1",
+ "{edd73f7f-6809-4286-af46-8a3ca61b9fcc}:1.0.1",
+ "{6dc6b948-ca9c-4861-a653-f718c06028b3}:1.0.1",
+ "{0ef72888-8a78-4352-99c6-b0b33db424c5}:1.0.1",
+ "{2432363c-1fc0-42c9-a5b2-15dadaf97ad6}:1.0.1",
+ "{101c0074-2daf-44d8-9900-9805af7c8198}:1.0.1",
+ "{f4c50f90-a13d-431d-a3ea-e015eafaa816}:1.0.1",
+ "{594eabc5-60f4-431c-be70-21d32cb8244b}:1.0.1",
+ "{ef2ebc12-ad7f-4232-a2af-a9731115b802}:1.0.1",
+ "{2d4b70f8-7b81-429a-8fd4-3041dadb8e8b}:1.0.1",
+ "{92f56e98-2b43-47fc-9049-c9c1ca4591d1}:1.0.1",
+ "{ca57de2f-accc-4ed7-a71c-5e2299155685}:1.0.1",
+ "{863357bf-b1d4-498f-8dc6-98006ec4cab8}:1.0.1",
+ "{d4d3b5d6-e857-4c94-9b2c-5973a1dc6078}:1.0.1",
+ "{5e1f78ec-2172-4433-bb77-9bf2b60caf4a}:1.0.1",
+ "{266e8a1b-fe91-4686-8a85-0f3bed3c9fed}:1.0.1",
+ "{a96d319e-14be-4dc2-bdce-1c6f4b2bdc06}:1.0.1",
+ "{9d114ee2-4536-4c31-baf4-235b5c133c46}:1.0.1",
+ "{66072910-3ee5-4893-a972-55d21347e54b}:1.0.1",
+ "{e201811d-31c1-4814-b4a8-f79e8d5b9faa}:1.0.1",
+ "{35707f8a-dd1c-428a-8f59-db9a3bff9bf6}:1.0.1",
+ "{e4ff3f19-f052-47a8-a4bc-4145f295b266}:1.0.1",
+ "{152b587b-de43-4496-ade7-247645f28ed3}:1.0.2",
+ "{0c071061-e8d8-4350-923a-746e202e717f}:1.0.1",
+ "sales@pakaro.si:1.0.0",
+ "{90da6592-0d54-45a2-a9d5-c8a794f2e092}:1.0.0",
+ "focus@getfocus.cc:2.1.2",
+ "{8615a28c-b9e7-4ee5-ae29-0e98803189e7}:1.0.1",
+ "{3cc183ce-75c0-4661-bb0d-b933e72f50d8}:1.0.1",
+ "{035b1d11-b299-4535-a791-c2b05f4c0aef}:0.0.1",
+ "{035b1d11-b299-4535-a791-c2b05f4c0aef}:1.0.0",
+ "python-browser@myaddon.local:1.0",
+ "python-browser@myaddon.local:1.1",
+ "{d4df7e8a-3169-43da-9d62-87eaae1a9e47}:1.5",
+ "{6f2dce49-9451-4ffe-8674-6d6b694f7d29}:1.0",
+ "{52e4d46b-83d5-41a8-bc9a-c55261bd29cf}:1.0",
+ "pear104@coursera-tool:1.0.4",
+ "pear104@coursera-tool:1.0.5.3",
+ "pear104@coursera-tool:1.0.5.4",
+ "{3cad728b-7ad9-4ac4-b802-0fab1208a11f}:1.1",
+ "{3cad728b-7ad9-4ac4-b802-0fab1208a11f}:1.2",
+ "{3cad728b-7ad9-4ac4-b802-0fab1208a11f}:1.3",
+ "{e1d38843-73b9-4ad9-93dc-10ba296bb3c0}:0.0.0",
+ "{e1d38843-73b9-4ad9-93dc-10ba296bb3c0}:1.0.0",
+ "show-only-text@yourdomain.com:1.0",
+ "show-only-text@yourdomain.com:2.0",
+ "{8e1110f1-a357-433a-9d6c-e1a7ae0b0759}:1.0",
+ "{20c7615d-bb19-4ad2-9f31-e16dce0256aa}:1.0",
+ "{86976773-7f4e-4458-a564-83ec3a97dc02}:1.0",
+ "{f64451a8-4cb4-4265-bbd2-15c1ba15b13a}:1.0",
+ "sidea4s@example.com:1.0",
+ "sidea4es@example.com:1.0",
+ "sideames@example.com:1.0",
+ "{8e3e0ecd-8d87-4227-bc20-1b354273a68a}:1.0",
+ "brawlstarscursor@example.com:1.0",
+ "{1b13f7d0-640b-418e-8414-b65bcb131a9a}:1.0",
+ "{6eb7e3bf-b1d5-4fb2-b259-06398ae4ab6d}:1.6",
+ "paragrap-to-speech@example.com:1.1",
+ "{522502e2-c13b-47bb-9703-b9a063633bfb}:1.0",
+ "{4ceb67de-792c-462a-912f-52a2a69712e2}:1.0",
+ "{1dbd8a11-1d46-4c9a-93c9-0d93c779070e}:1.0",
+ "dual-urlviewer@example.com:1.0",
+ "urlextractor@yourdomain.com:1.0",
+ "urlextractor@yourdomain.com:2.0",
+ "editthiscookie@example.com:1.0.0",
+ "editthiscookie@example.com:2.0.0",
+ "idleforest@idleforest.com:1.0.4",
+ "showassword@example.com:1.0",
+ "showassword@example.com:2.0",
+ "dual-url-viewer@example.com:1.0",
+ "dual-url-viewer@example.com:2.0",
+ "{26f159c9-b326-489f-832b-466b1b93b435}:2.0",
+ "{26f159c9-b326-489f-832b-466b1b93b435}:3.0",
+ "blur-wapp-web@extension.com:1.0.1",
+ "{f29833ad-b77f-4bb0-b6e0-c278fd59b208}:1.0.0",
+ "{f29833ad-b77f-4bb0-b6e0-c278fd59b208}:2.1",
+ "youtube-screenshot@emple.com:1.0",
+ "youtube-screenshot@emple.com:2.0",
+ "officialteespime@gmail.com:1.0",
+ "officialteespime@gmail.com:2.0",
+ "{d6b79e53-6445-46c3-ac8c-df380dbee03c}:1.0",
+ "{d6b79e53-6445-46c3-ac8c-df380dbee03c}:2.0",
+ "{b556adfa-0416-4e32-b589-6bde4ca97d52}:1.0",
+ "{b556adfa-0416-4e32-b589-6bde4ca97d52}:2.0",
+ "{63f0a4af-4930-4984-8ba5-c84b95f11050}:1.0",
+ "{63f0a4af-4930-4984-8ba5-c84b95f11050}:2.0",
+ "{63c8f677-7e9f-45eb-9a6b-adeda4e84e36}:1.0",
+ "{63c8f677-7e9f-45eb-9a6b-adeda4e84e36}:2.0",
+ "{45d980e3-fba2-47be-ac8d-feea3c902479}:1.0",
+ "{45d980e3-fba2-47be-ac8d-feea3c902479}:2.0",
+ "icecat@web-highlights.com:10.7.5",
+ "icecat@web-highlights.com:10.7.8",
+ "icecat@web-highlights.com:10.7.9",
+ "icecat@web-highlights.com:11.0.0",
+ "icecat@web-highlights.com:11.0.1",
+ "icecat@web-highlights.com:11.0.2",
+ "icecat@web-highlights.com:11.0.3",
+ "icecat@web-highlights.com:11.0.5",
+ "icecat@web-highlights.com:11.0.6",
+ "icecat@web-highlights.com:11.0.7",
+ "icecat@web-highlights.com:11.1.0",
+ "icecat@web-highlights.com:11.1.2",
+ "icecat@web-highlights.com:11.1.3",
+ "icecat@web-highlights.com:11.1.4",
+ "icecat@web-highlights.com:11.1.5",
+ "icecat@web-highlights.com:11.1.6",
+ "icecat@web-highlights.com:11.1.8",
+ "icecat@web-highlights.com:11.1.9",
+ "icecat@web-highlights.com:11.1.10",
+ "ytunhook@extension.com:1.0.0",
+ "ytunhook@extension.com:1.0.1",
+ "ytunhook@extension.com:1.0.2",
+ "3x-youtube-speed@extensions.local:1.0.0",
+ "3x-youtube-speed@extensions.local:1.2.0",
+ "3x-youtube-speed@extensions.local:1.2.1",
+ "block-shorts-remove-youTube-shorts@extensions.local:1.0.0",
+ "block-shorts-remove-youTube-shorts@extensions.local:1.0.1",
+ "{2daebd81-4db3-58e1-b210-4909f11f7990}:1.0.0",
+ "{2daebd81-4db3-58e1-b210-4909f11f7990}:1.0.1",
+ "{2daebd81-4db3-58e1-b210-4909f11f7990}:1.1.0",
+ "{2daebd81-4db3-58e1-b210-4909f11f7990}:1.2.0",
+ "{2daebd81-4db3-58e1-b210-4909f11f7990}:2.0.1",
+ "{2daebd81-4db3-58e1-b210-4909f11f7990}:2.0.2",
+ "ytbookmarker@example.com:2.1.2",
+ "ytbookmarker@example.com:2.1.3",
+ "calculator@example.com:1.0.1",
+ "calculator@example.com:1.1.1",
+ "calculator@example.com:1.1.2",
+ "{7f43819e-84a3-4a10-a793-ceb772ea5dff}:0.4.5",
+ "{7f43819e-84a3-4a10-a793-ceb772ea5dff}:0.4.6",
+ "{7f43819e-84a3-4a10-a793-ceb772ea5dff}:0.4.7",
+ "{f4b4b3b4-0b3b-4b3b-8b3b-0b3b4b3b4b3b}:3.3.3.4",
+ "{f4b4b3b4-0b3b-4b3b-8b3b-0b3b4b3b4b3b}:3.3.3.6",
+ "{f4b4b3b4-0b3b-4b3b-8b3b-0b3b4b3b4b3b}:3.3.4.1",
+ "{f4b4b3b4-0b3b-4b3b-8b3b-0b3b4b3b4b3b}:3.3.4.2",
+ "{f4b4b3b4-0b3b-4b3b-8b3b-0b3b4b3b4b3b}:3.3.4.4",
+ "{f4b4b3b4-0b3b-4b3b-8b3b-0b3b4b3b4b3b}:3.3.4.5",
+ "{f4b4b3b4-0b3b-4b3b-8b3b-0b3b4b3b4b3b}:3.3.4.6",
+ "{f4b4b3b4-0b3b-4b3b-8b3b-0b3b4b3b4b3b}:3.3.4.7",
+ "{ac1e429d-9c01-416c-8055-f2bf93203e36}:1.0.0",
+ "{ac1e429d-9c01-416c-8055-f2bf93203e36}:1.1.2",
+ "{ac1e429d-9c01-416c-8055-f2bf93203e36}:1.1.3",
+ "{ac1e429d-9c01-416c-8055-f2bf93203e36}:1.2.1",
+ "{ac1e429d-9c01-416c-8055-f2bf93203e36}:1.2.2",
+ "{ac1e429d-9c01-416c-8055-f2bf93203e36}:1.2.4",
+ "{ac1e429d-9c01-416c-8055-f2bf93203e36}:1.2.8",
+ "{ac1e429d-9c01-416c-8055-f2bf93203e36}:1.2.9",
+ "{5f9861fa-6b08-4eff-b035-f448d0f3a2bc}:0.0.1",
+ "{5f9861fa-6b08-4eff-b035-f448d0f3a2bc}:0.0.3",
+ "{5f9861fa-6b08-4eff-b035-f448d0f3a2bc}:0.0.4",
+ "{5f9861fa-6b08-4eff-b035-f448d0f3a2bc}:1.0.1",
+ "{5f9861fa-6b08-4eff-b035-f448d0f3a2bc}:1.0.2",
+ "{5f9861fa-6b08-4eff-b035-f448d0f3a2bc}:1.0.9",
+ "{5f9861fa-6b08-4eff-b035-f448d0f3a2bc}:1.0.10",
+ "{5f9861fa-6b08-4eff-b035-f448d0f3a2bc}:1.1.0",
+ "chorus@cdrani.dev:1.5.0",
+ "chorus@cdrani.dev:1.8.0",
+ "chorus@cdrani.dev:1.8.1",
+ "chorus@cdrani.dev:1.14.5",
+ "chorus@cdrani.dev:1.14.8",
+ "chorus@cdrani.dev:1.16.2",
+ "chorus@cdrani.dev:1.17.0",
+ "chorus@cdrani.dev:1.17.1",
+ "chorus@cdrani.dev:1.18.0",
+ "chorus@cdrani.dev:1.19.0",
+ "chorus@cdrani.dev:1.20.0",
+ "chorus@cdrani.dev:1.21.0",
+ "chorus@cdrani.dev:1.21.1",
+ "chorus@cdrani.dev:1.21.2",
+ "chorus@cdrani.dev:1.21.3",
+ "chorus@cdrani.dev:1.22.0",
+ "chorus@cdrani.dev:1.22.2",
+ "chorus@cdrani.dev:1.22.3",
+ "chorus@cdrani.dev:1.23.0",
+ "chorus@cdrani.dev:1.23.1",
+ "chorus@cdrani.dev:1.23.2",
+ "chorus@cdrani.dev:1.23.3",
+ "chorus@cdrani.dev:1.24.0",
+ "chorus@cdrani.dev:1.24.1",
+ "chorus@cdrani.dev:1.24.2",
+ "chorus@cdrani.dev:2.0.0",
+ "chorus@cdrani.dev:2.4.0",
+ "chorus@cdrani.dev:2.4.1",
+ "chorus@cdrani.dev:2.4.2",
+ "chorus@cdrani.dev:2.4.3",
+ "chorus@cdrani.dev:2.4.4",
+ "chorus@cdrani.dev:2.5.0",
+ "chorus@cdrani.dev:2.5.1",
+ "chorus@cdrani.dev:2.6.0",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.0.0",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:0.0.7",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.0.8.1",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.0.8.12",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.0.8.1300",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.0.9.1001",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.0.9.1002",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.0.9.1004",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.0.9.1005",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.0.9.1006",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.0.9.1010",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.0.10.1",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.0.10.2",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.0.10.22",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.0.10.300",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.0.11",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.0.12",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.0.1204",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.1.2",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.1.3",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.1.4",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.1.5",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.6.7",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.8.4",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.8.6",
+ "{93f81583-1fd4-45cc-bff4-abba952167bb}:1.8.7",
+ "{9ecabdc6-2378-488f-b982-82f9c3cd7e2b}:1.0.0.1",
+ "{e91a4583-3bde-403d-adc3-e2951c7af6f2}:1.0.0.1",
+ "{6777ac33-5603-4593-8d79-8305b232f03c}:1.2",
+ "sidea4mes@example.com:1.0",
+ "sidegames@example.com:1.0",
+ "{2e12f440-e238-4a54-a84a-7e64088bc10a}:2.0",
+ "{0042603b-ea30-4ab0-9b6e-b9c01a1eb53e}:1.0",
+ "{94e884cd-b14a-4fb8-8326-3b67522937aa}:1.0",
+ "{94cae37b-a67f-467b-bd33-7f8d461dccb9}:1.0",
+ "{d8c16402-7cc6-4cf9-bb93-593bb560c93f}:1.0",
+ "{cbdb3313-69ca-4e23-9e79-e02faba80b70}:1.0",
+ "{d0161a3a-64cd-430d-ad54-986003b40b73}:0.0.0",
+ "simple-highlighter@yourdomain.com:1.0",
+ "simple-highlighter@yourdomain.com:2.0",
+ "{55b60a44-ca57-4d8b-b78a-e7ed6d728f38}:1.0",
+ "{55b60a44-ca57-4d8b-b78a-e7ed6d728f38}:2.0",
+ "{69ae5d28-477a-4440-a17f-64acb4744f45}:1.0",
+ "{69ae5d28-477a-4440-a17f-64acb4744f45}:2.0",
+ "{3a23b748-e1bb-453d-ab31-ad2ee472a0b1}:1.1",
+ "{3a23b748-e1bb-453d-ab31-ad2ee472a0b1}:2.1",
+ "paragraph-to-speech@example.com:1.1",
+ "paragraph-to-speech@example.com:2.1",
+ "modern-css-viewer@example.com:1.0",
+ "modern-css-viewer@example.com:2.0",
+ "clearcache@example.com:1.0",
+ "clearcache@example.com:2.0",
+ "{a82ee489-1b09-4d1f-9229-054fbc50edec}:1.0",
+ "{a82ee489-1b09-4d1f-9229-054fbc50edec}:2.0",
+ "{b9ce06ae-260a-4fbb-b213-c6d550ea31e4}:1.0",
+ "{b9ce06ae-260a-4fbb-b213-c6d550ea31e4}:2.0",
+ "{3fc88d62-2573-4d57-95bb-cf5d2c00ceb8}:1.0",
+ "{3fc88d62-2573-4d57-95bb-cf5d2c00ceb8}:2.0",
+ "{bc661ab6-def4-4639-b7c6-02ace202cd01}:1.0",
+ "{bc661ab6-def4-4639-b7c6-02ace202cd01}:2.0",
+ "{5b65046c-e8a0-449b-ad6b-6d6fdbffef80}:1.0.2",
+ "{5b65046c-e8a0-449b-ad6b-6d6fdbffef80}:1.0.3",
+ "{5b65046c-e8a0-449b-ad6b-6d6fdbffef80}:1.0.4",
+ "daunknowncoder@gmail.com:3.0.0.2",
+ "{ac9cfa86-8b1a-45d6-a357-ca47986d7f66}:1.2.7",
+ "{200c0f58-ec21-4fc6-9deb-c45d83cce5ff}:1.0.0",
+ "{200c0f58-ec21-4fc6-9deb-c45d83cce5ff}:1.0.1",
+ "{200c0f58-ec21-4fc6-9deb-c45d83cce5ff}:1.0.2",
+ "{200c0f58-ec21-4fc6-9deb-c45d83cce5df}:1.0.0",
+ "{200c0f58-ec21-4fc6-9deb-c45d83cce5df}:1.0.1",
+ "{200c0f58-ec21-4fc6-9deb-c45d83cce5df}:1.0.2",
+ "{200c0f58-ec21-4fc6-9deb-c45d83cce5df}:1.0.3",
+ "{200c0f58-ec21-4fc6-9deb-c45d83cce5df}:1.0.4",
+ "read-mode-enhancer@example.com:1.0",
+ "read-mode-enhancer@example.com:1.2",
+ "read-mode-enhancer@example.com:2.45.1",
+ "{e5a78028-54a5-4af7-9577-57f2e6e1d958}:1.0",
+ "{e5a78028-54a5-4af7-9577-57f2e6e1d958}:101.0",
+ "{e5a78028-54a5-4af7-9577-57f2e6e1d958}:110.2",
+ "{e5a78028-54a5-4af7-9577-57f2e6e1d958}:132.3.2.64",
+ "{a2cb1971-76fd-4f49-bfa2-cb2c521c570a}:1.1",
+ "{a2cb1971-76fd-4f49-bfa2-cb2c521c570a}:101.2",
+ "{78040c13-b615-4aad-8e00-e19fccd182fc}:1.3",
+ "{78040c13-b615-4aad-8e00-e19fccd182fc}:101.2",
+ "{84617577-4822-4658-a3ae-935c653490b7}:1.0",
+ "{84617577-4822-4658-a3ae-935c653490b7}:101.2"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1752200139418,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1752237305985,
+ "id": "41aa20ee-c032-48cc-8ecf-64441278c1ed",
+ "last_modified": 1752237373770
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{387e6e0f-4c2e-400c-8f4a-09e5eb8d4773}:1.0.0",
+ "{387e6e0f-4c2e-400c-8f4a-09e5eb8d4773}:10.3.2.64",
+ "{35543a20-14c0-42f0-adbb-de0819967d14}:2.4.6",
+ "{370855bf-669c-4f7e-8fec-d375c955cf86}:2.4.6",
+ "{370855bf-669c-4f7e-8fec-d375c955cf86}:2.4.7",
+ "{6603dcf9-1052-4c83-b1b6-6c272951a9c7}:2.4.6",
+ "{c41d0949-d3f4-4e7f-98ea-eacf0e891cdc}:2.4.6",
+ "{0670a4cf-1861-47e0-8cc7-b03e5f3a49a0}:2.4.6",
+ "{662434d1-57e0-43d8-8272-861504e022e9}:3.6",
+ "{662434d1-57e0-43d8-8272-861504e022e9}:101.1.292"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1752113737152,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1752172505962,
+ "id": "352e7ac8-70e2-472a-8bc6-2b5b40468896",
+ "last_modified": 1752172580639
+ },
+ {
+ "stash": {
+ "blocked": [
+ "support@Trust.com:2.2.3",
+ "{d6be8b64-bc71-40af-b911-54bc291e8612}:0.4.5",
+ "{d6be8b64-bc71-40af-b911-54bc291e8612}:3012.18.1",
+ "{c7dd6464-b2a5-4bae-bdeb-3c16d0a1e5f9}:0.9",
+ "{c7dd6464-b2a5-4bae-bdeb-3c16d0a1e5f9}:12.18.1",
+ "{48f5d892-95b6-4dc2-be89-c6ff10ff926b}:1.1",
+ "{48f5d892-95b6-4dc2-be89-c6ff10ff926b}:12.46.1",
+ "{48f5d892-95b6-4dc2-be89-c6ff10ff926b}:121.18.1",
+ "{48f5d892-95b6-4dc2-be89-c6ff10ff926b}:121.18.12",
+ "{48f5d892-95b6-4dc2-be89-c6ff10ff926b}:129.18.1",
+ "{4c8d2657-f1dd-4dad-ac01-3225c5ab4c5e}:0.1",
+ "{4c8d2657-f1dd-4dad-ac01-3225c5ab4c5e}:12.17.3",
+ "{4c8d2657-f1dd-4dad-ac01-3225c5ab4c5e}:111.1"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1752027339598,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1752064506140,
+ "id": "1ed60d15-00e9-4564-aa1c-f58b885880dc",
+ "last_modified": 1752064581238
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{daf1ef13-218e-4f9c-80fa-210775c60870}:1.0",
+ "{b6cf045a-8df8-4642-a91e-da943cd36f18}:64.0.1resigned1",
+ "{b6cf045a-8df8-4642-a91e-da943cd36f18}:65.0",
+ "{e6c9d1b0-fd42-4c9c-bd9e-448fe297b379}:64.0.1resigned1",
+ "{e6c9d1b0-fd42-4c9c-bd9e-448fe297b379}:65.0",
+ "{da42b1ab-a30b-465b-8567-0ba2e08d87e5}:64.0.1resigned1",
+ "{da42b1ab-a30b-465b-8567-0ba2e08d87e5}:65.0",
+ "{3ffa9ed3-336a-41d0-884e-6d890deb7f0f}:64.0.1resigned1",
+ "{3ffa9ed3-336a-41d0-884e-6d890deb7f0f}:65.0",
+ "{7b404ef9-9b72-4ed7-b211-e2e72d74ed30}:64.0.1resigned1",
+ "{7b404ef9-9b72-4ed7-b211-e2e72d74ed30}:65.0",
+ "{15102d74-3335-49a1-8e7a-41f1cc7f38b0}:64.0.1resigned1",
+ "{392a5c29-1622-473e-ad39-c2ac68117281}:64.0.1resigned1",
+ "{7ce37180-6b5b-45eb-afac-bb901d30edcd}:64.0.1resigned1",
+ "{2adbc889-4a81-4c22-bdb2-6b954f80ecf0}:64.0.1resigned1",
+ "{2adbc889-4a81-4c22-bdb2-6b954f80ecf0}:65.0",
+ "{bd1fdec3-4381-405f-95fa-6f5d81ac27d9}:64.0.1resigned1",
+ "{bd1fdec3-4381-405f-95fa-6f5d81ac27d9}:65.0",
+ "{78a8d5a5-6f04-4a78-8e8b-6f14886d4407}:64.0.1resigned1",
+ "{78a8d5a5-6f04-4a78-8e8b-6f14886d4407}:65.0",
+ "{a1f6c014-a6dd-482a-a159-b5ec3d7a3679}:64.0.1resigned1",
+ "{a1f6c014-a6dd-482a-a159-b5ec3d7a3679}:65.0",
+ "{5c480ca9-b99b-492b-aa94-45197b717e1e}:64.0.1resigned1",
+ "{5c480ca9-b99b-492b-aa94-45197b717e1e}:65.0",
+ "{608fe98d-0596-486b-820b-33b7ce288445}:64.0.1resigned1",
+ "{608fe98d-0596-486b-820b-33b7ce288445}:65.0",
+ "{578b8aea-896b-469d-bf4e-cbe42cbc60ce}:64.0.1resigned1",
+ "{578b8aea-896b-469d-bf4e-cbe42cbc60ce}:65.0",
+ "{4f41239e-46e8-4d86-a9a2-7caf80853c8a}:64.0.1resigned1",
+ "{4f41239e-46e8-4d86-a9a2-7caf80853c8a}:65.0",
+ "{e2952049-fef2-4191-b291-96120110e679}:64.0.1resigned1",
+ "{e2952049-fef2-4191-b291-96120110e679}:112.18.1",
+ "{091e5afb-2ef6-45d8-abcd-b8e0f32b6743}:64.0.1resigned1",
+ "{091e5afb-2ef6-45d8-abcd-b8e0f32b6743}:65.0",
+ "{976dfe25-db4f-48cb-b7fd-5348877d5e7a}:64.0.1resigned1",
+ "{976dfe25-db4f-48cb-b7fd-5348877d5e7a}:65.0",
+ "{5d86ef12-a645-4034-8a82-a296f34066f9}:64.0.1resigned1",
+ "{5d86ef12-a645-4034-8a82-a296f34066f9}:65.0",
+ "{c8ccf9e2-f4dd-4dd5-b2d1-23cea62edcab}:64.0.1resigned1",
+ "{c8ccf9e2-f4dd-4dd5-b2d1-23cea62edcab}:65.0",
+ "{8b3fdde9-283d-4748-8f1c-d677bad450e9}:64.0.1resigned1",
+ "{8b3fdde9-283d-4748-8f1c-d677bad450e9}:111.1",
+ "{7ad5f1b6-00a5-4107-ab6d-c0e8f54a1156}:64.0.1resigned1",
+ "{7ad5f1b6-00a5-4107-ab6d-c0e8f54a1156}:111.1",
+ "{7ad5f1b6-00a5-4107-ab6d-c0e8f54a1156}:121.18.1",
+ "{2f7e3c5c-cdfc-4490-ae19-aec257c50f56}:64.0.1resigned1",
+ "{2f7e3c5c-cdfc-4490-ae19-aec257c50f56}:101.1",
+ "{4339a322-38a0-4978-9ce9-e21606b503a4}:64.0.1resigned1",
+ "{4339a322-38a0-4978-9ce9-e21606b503a4}:101.1",
+ "{344b98a0-f7b8-4292-93e4-655e42e4a401}:64.0.1resigned1",
+ "{344b98a0-f7b8-4292-93e4-655e42e4a401}:301.120.0",
+ "{88e6d125-af5b-4988-938c-9c27753ab9dc}:64.0.1resigned1",
+ "{88e6d125-af5b-4988-938c-9c27753ab9dc}:444.0.2",
+ "{bbe4fbc7-fc54-4152-8509-850b1a4d60c6}:0.8.1",
+ "{327a533f-570a-460e-b965-bdd6c2c490e4}:64.0.1resigned1",
+ "{aa47180d-0c89-4e6c-9443-37307aae914e}:64.0.1resigned1",
+ "{77ccc697-ddda-4815-84ba-79d170aa9545}:64.0.1resigned1",
+ "{2031b19c-fcef-4159-b8c2-b8c473c3f510}:64.0.1resigned1",
+ "{4e62b64b-2ec0-4720-a941-01ff40a0f3a3}:64.0.1resigned1",
+ "{ca982915-4710-4283-a27a-b06090bedc64}:64.0.1resigned1",
+ "{b6de600d-8a12-4f86-93f9-a98af405c4b1}:64.0.1resigned1",
+ "{cdd09dd0-dd22-48bb-9ffd-a55fbbb5b7c4}:64.0.1resigned1",
+ "{e29523ae-c9a7-40f5-92b8-cb772a54f8c3}:64.0.1resigned1",
+ "{c8248951-d903-4098-84a6-73bfebfff026}:64.0.1resigned1",
+ "{6a0c2cb5-9e01-4a1a-9d6e-bf7e518667ad}:64.0.1resigned1",
+ "{62d604fa-29b0-4d87-9e4c-0b1bf2df56ed}:64.0.1resigned1",
+ "{c660ace1-a089-42bc-be58-2ea0ee1c6167}:64.0.1resigned1",
+ "{06daa766-3d58-48cd-b98d-add2bf4d7400}:64.0.1resigned1",
+ "{cfd8f070-4294-424e-895e-3e251cd1e4e6}:64.0.1resigned1",
+ "{27f48a58-bf2b-4ab8-9bb4-df96de4c9bff}:64.0.1resigned1",
+ "{06654aee-ea7e-4ef7-8826-a7efd377b287}:64.0.1resigned1",
+ "{9b2e28e6-2ba7-44d8-a8a4-f41b0a893d48}:64.0.1resigned1",
+ "{5428e472-b59f-45ec-bccf-dab0e6e705e5}:64.0.1resigned1",
+ "vaultonomyyy1@h41l.users1.github.com:0.2.0",
+ "{5b34299d-11c7-4e01-b676-47019470e1eb}:64.0.1resigned1",
+ "{5ae84a7a-d727-4d37-aa57-f7eeff95441d}:64.0.1resigned1",
+ "{733a821b-80d3-4fae-b0d3-a6ba962ca404}:64.0.1resigned1",
+ "{d1e087c5-48bb-4808-a68e-3a71268816c4}:64.0.1resigned1",
+ "{e4238675-993c-4afc-b275-ded35f38523f}:64.0.1resigned1",
+ "{79672afa-a81f-490c-be25-e720a367b3cc}:64.0.1resigned1",
+ "{76dd1929-ec9e-4c0d-b10b-d98e6463f027}:64.0.1resigned1",
+ "{efd4030a-424b-4035-898a-a61360c7e194}:64.0.1resigned1",
+ "{7629dd11-f4ae-4bc4-a4ac-e690385a8d07}:64.0.1resigned1",
+ "{2cb74627-8a03-493c-af45-8716828c0ce1}:64.0.1resigned1",
+ "{f67de147-84b9-42d4-9dca-21d1a3a4ee1b}:64.0.1resigned1",
+ "{d3437d57-5705-4415-bfca-407b67d05acd}:64.0.1resigned1",
+ "{b876bbfc-9e2a-4a5f-804c-62cf166efea6}:64.0.1resigned1",
+ "{06d3e67a-be45-4940-9d3a-d4e8023a4ab7}:64.0.1resigned1",
+ "{48e4403a-18a5-4163-b6f0-a9c3662edecc}:64.0.1resigned1",
+ "{3aadc302-10de-4cc4-805a-6dc42b230033}:64.0.1resigned1",
+ "{8c82cc6c-6703-41e1-b4e6-411fea17571d}:64.0.1resigned1",
+ "{377d0115-fe88-478e-bcaf-cd79a28bb2c2}:64.0.1resigned1",
+ "{c38c5174-bdff-41d4-891f-f5b87ab41295}:64.0.1resigned1",
+ "{bd2ec379-3ede-41af-9e0e-111ca8df5359}:64.0.1resigned1",
+ "{a0d12025-bd85-41ff-9fc6-6717652935a6}:64.0.1resigned1",
+ "{c6479a64-b760-443b-85df-980a32c3998a}:64.0.1resigned1",
+ "{efef5178-d686-4036-a2b9-27596dae2fd0}:64.0.1resigned1",
+ "{f0737dc3-0fca-4e16-bcb4-3e091807a0c3}:64.0.1resigned1",
+ "{4e58b026-5684-4671-aa84-bd9ad57987c8}:1.1",
+ "{4e58b026-5684-4671-aa84-bd9ad57987c8}:10.1",
+ "{b018ac5d-80cd-4ddb-b77b-4c145664d26a}:64.0.1resigned1",
+ "{d0972fb2-78fc-4ef5-bd05-5ab871c9613b}:64.0.1resigned1",
+ "{8b02c0d2-556b-467d-abdd-e67c4e9fc5be}:64.0.1resigned1",
+ "{7fe28f05-5d47-4b13-a032-d61767f6d6fd}:64.0.1resigned1",
+ "{46f249f1-8ae2-499a-b01e-5e83dfca8169}:64.0.1resigned1",
+ "{dda142e9-c59f-4f57-bbef-7d9f4dbe2d3f}:64.0.1resigned1",
+ "{a42ed599-581c-4b06-8a46-57b68bd4770f}:64.0.1resigned1",
+ "{dac84bc1-71a8-480d-aaa3-c809b5b0709c}:64.0.1resigned1",
+ "{1b57c99e-94f3-4bb7-b860-615ae1928372}:64.0.1resigned1",
+ "{64c3420a-49e0-431a-8e38-1c6fbe926c84}:64.0.1resigned1",
+ "{a41c638c-32a1-49f2-b2fd-9376b3333fed}:64.0.1resigned1",
+ "{5df73224-b68f-45d9-849e-00af9ffed63f}:64.0.1resigned1",
+ "{c424f086-48bf-4063-bd75-a02a128a807d}:64.0.1resigned1",
+ "{db403dd6-1c74-471e-ad6d-2d8e0fe6812a}:64.0.1resigned1",
+ "{76246211-1314-4b0a-a6c5-9f754ce7e011}:64.0.1resigned1",
+ "{a7da9647-1ca0-40c9-85f2-b3c2f6886acf}:64.0.1resigned1",
+ "{5ac78430-4535-4aa2-b37a-594b8344b66d}:64.0.1resigned1",
+ "{9d290b27-bea3-4655-8bda-4b9e75ca617c}:64.0.1resigned1",
+ "{e2339abe-2914-4093-b040-c770b8a4e41a}:64.0.1resigned1",
+ "{636f6d55-41f8-4739-bf1e-6cd570b0160a}:64.0.1resigned1",
+ "{d8045db0-38f8-4bf8-95bc-4ba4811039af}:64.0.1resigned1",
+ "{931ae097-a744-4fcf-8c0b-51777ecd4017}:64.0.1resigned1",
+ "{6cc8f14c-d49f-4df2-9240-e961c189eac4}:64.0.1resigned1",
+ "{e13df4ab-ab02-428b-b6a1-6aaff4825a93}:64.0.1resigned1",
+ "{dd0fd863-506a-466b-b5b2-0fa371804e1f}:64.0.1resigned1",
+ "{4d6ab88f-ac98-4f1d-9103-686c0fa9e9d7}:64.0.1resigned1",
+ "{878ead78-61d3-4bf6-8706-dafd42ee4b08}:64.0.1resigned1",
+ "{e28058a2-00b9-46e3-bc8f-42b31d459452}:64.0.1resigned1",
+ "{0930f5bc-bb0a-41b3-8dff-4e4838c8d610}:64.0.1resigned1",
+ "{246ed66b-70f9-4d9f-91e2-a9f97fc2ccb9}:64.0.1resigned1",
+ "{03b0ecc7-e6b3-4b37-96f9-2ce3467caca5}:64.0.1resigned1",
+ "{6f404419-1855-4ebf-a1d1-6531e8a0f41b}:64.0.1resigned1",
+ "{0a30ee02-ad9d-48a1-ae43-66fc7e2708c5}:64.0.1resigned1",
+ "{2ecb805f-660b-4eee-8145-c5574c8875e1}:64.0.1resigned1",
+ "{a2dd61a3-b96f-4ba5-a3ee-9daeae63595d}:64.0.1resigned1",
+ "{dc9e331d-9cfe-4657-94df-75c3d65b32a2}:64.0.1resigned1",
+ "{549045fb-2b0b-47d4-9b3f-25ca73179cf2}:64.0.1resigned1",
+ "{24d2bd5e-2be3-4b43-b4d8-602811375626}:64.0.1resigned1",
+ "{b27b25ba-ad7d-44b1-8fd6-f30fd3b2a05e}:64.0.1resigned1",
+ "{470f1261-9731-4d82-be5f-4a834e0b787c}:64.0.1resigned1",
+ "{d3f210f6-24b2-48ef-8625-92afbd4c95c1}:64.0.1resigned1",
+ "{9ce6dd75-23a8-4e4c-ba4f-a67279acbcb2}:64.0.1resigned1",
+ "{0f74796f-9827-4ed9-af27-c07cfb0854b8}:64.0.1resigned1",
+ "{3d12c1e7-ac1c-4b82-ba40-171b6755a4b2}:64.0.1resigned1",
+ "{466cdf0d-322b-48da-81a3-c4febc76b161}:64.0.1resigned1",
+ "{15088e55-0efd-4f08-8876-fed76119290f}:64.0.1resigned1",
+ "{7af14ac4-c5f3-481e-b542-605a99f0da5f}:64.0.1resigned1",
+ "{e62bc36c-7ac6-4341-b393-daf5884ca6a9}:64.0.1resigned1",
+ "{aa237fd3-91f9-4599-b39c-77174d293e1c}:64.0.1resigned1",
+ "{51d90ff9-8a86-4b19-8e7f-f0ddcb885ccf}:64.0.1resigned1",
+ "{37860f4a-6fb3-4340-b040-0013059fb2fd}:64.0.1resigned1",
+ "{f438f359-2e3f-43ab-8428-b5b68035fac8}:64.0.1resigned1",
+ "{331766f8-db1f-42d1-9039-8ed6cd878b3c}:64.0.1resigned1",
+ "{edeaa6ae-448e-4a76-9c60-a5fe9ae8a8dc}:64.0.1resigned1",
+ "{fd509806-aae4-4f38-8087-f2b2f5d54feb}:64.0.1resigned1",
+ "{8cf64728-25b4-4b86-a2e8-99555f82306d}:64.0.1resigned1",
+ "{14877a38-4d62-4e81-8817-79a533356898}:64.0.1resigned1",
+ "{b597c4b6-5fb2-4039-b0cc-093ba9edd77e}:64.0.1resigned1",
+ "{2b23d5e4-944f-4830-a10d-23d3e3f893de}:64.0.1resigned1",
+ "{c9e2a6c4-421f-4b0f-8426-807a954ff15c}:64.0.1resigned1",
+ "{83d5200b-4cc3-4394-9caa-df26e1e51fb6}:64.0.1resigned1",
+ "{66b8e131-832c-4e5b-8087-6c631a16f725}:64.0.1resigned1",
+ "{778f4313-4533-48ff-a31a-f8a4dc84595a}:64.0.1resigned1",
+ "{c376d45a-f01c-455f-8aad-f009334fe8b5}:64.0.1resigned1",
+ "{6baa9b74-e6ce-4467-b5a3-bb2fed991bfe}:64.0.1resigned1",
+ "{442b3fed-1804-4baf-8444-1fe84956ad9d}:64.0.1resigned1",
+ "{ce5ee287-79cf-4c66-9a49-51ce954ebb48}:64.0.1resigned1",
+ "{42e4df78-c963-44c7-b9a3-a72222edea91}:64.0.1resigned1",
+ "{e2cb938e-d803-4103-86fc-c7d47239f03c}:64.0.1resigned1",
+ "{312e562f-d827-477b-aafa-5d50b7a093ae}:64.0.1resigned1",
+ "{3a473d00-5b95-471a-b41b-eee62a723f93}:64.0.1resigned1",
+ "{b5404612-6a51-4fd9-a637-9fc512fbccc0}:64.0.1resigned1",
+ "{a47546d9-ef2e-4907-be9f-45f1824d763d}:64.0.1resigned1",
+ "{488dfcd8-1077-4551-8637-0bb35c5d6bd9}:64.0.1resigned1",
+ "{1ce17e88-d563-4871-96d7-fed186b11f04}:64.0.1resigned1",
+ "{65d44847-c674-4ce5-bfee-8736835429fe}:64.0.1resigned1",
+ "{8daf240d-703c-4d51-af75-ec870b5945b0}:64.0.1resigned1",
+ "{bbd3b74e-344e-44d8-98d4-d2caee73f138}:64.0.1resigned1",
+ "{0d4ecf95-0132-429a-bec8-5e87074802d9}:64.0.1resigned1",
+ "{0223d4f7-c118-41c8-99c3-692911d90320}:64.0.1resigned1",
+ "{e439f7e8-06e6-4b43-9718-c97c94aaa620}:64.0.1resigned1",
+ "{10ac19f9-6461-4e6b-9c5b-7796cb89793b}:64.0.1resigned1",
+ "{0364bd77-0635-42e7-a2de-2f1622e7fb4b}:64.0.1resigned1",
+ "{6e06d833-b555-461a-a72a-41f220dae5f8}:64.0.1resigned1",
+ "{5d34a608-4e40-440f-a32f-35864a9fd326}:64.0.1resigned1",
+ "{8facd191-15bb-40e8-86c0-7933063ac306}:64.0.1resigned1",
+ "{061df991-5ed7-4fdc-b15e-cf9a705b0560}:64.0.1resigned1",
+ "{9585fdfc-074f-4b68-9e6d-d2e39115f2cb}:64.0.1resigned1",
+ "{ccea9082-ed86-426a-9216-8884c6c8a456}:64.0.1resigned1",
+ "{708f0423-33cf-4380-8448-0edb3b869056}:64.0.1resigned1",
+ "{06713c3b-83f6-4eb3-9568-e42535a39986}:64.0.1resigned1",
+ "{2de4b97d-cd3d-4638-afde-eb95bc441d18}:64.0.1resigned1",
+ "{0320f948-45ae-4512-aff2-d21eb13f7d43}:64.0.1resigned1",
+ "{117ef291-6969-4481-b5df-b3ca13285f5a}:64.0.1resigned1",
+ "{75b31a09-62df-46c8-a871-626111cb6984}:64.0.1resigned1",
+ "{27bc8bfe-31d3-444d-b480-0c714d966e59}:64.0.1resigned1",
+ "{4f3838c7-334c-4e9e-b69f-59449b6c174c}:64.0.1resigned1",
+ "{2cf78232-b1af-4768-a525-5d030ee8189c}:64.0.1resigned1",
+ "{807066fd-a459-4f3a-900c-b13bb634fb39}:64.0.1resigned1",
+ "{482b125a-c6c8-4016-89f0-ae2f5724a518}:64.0.1resigned1",
+ "{8abf5cf2-754f-40f0-8344-0e3c96ffb97e}:64.0.1resigned1",
+ "{7a0511ea-fd30-4450-9550-23f8fffc0501}:64.0.1resigned1",
+ "{4d85090c-0da3-4cf0-bbf8-9ffd29396696}:64.0.1resigned1",
+ "{905ec03c-e7c1-4974-bf95-85700e35f978}:64.0.1resigned1",
+ "{af1853bf-6585-4204-8476-676e2d23897c}:64.0.1resigned1",
+ "{b6bb951d-ebda-4d9f-8946-419c703af444}:64.0.1resigned1",
+ "{2f92631e-d8ad-449b-8b4b-dfe48a6b542c}:64.0.1resigned1",
+ "{103500a3-ec8a-4c7b-af4b-4d047fe5c982}:64.0.1resigned1",
+ "{1724856e-6422-4742-9f28-416cf71b95f5}:64.0.1resigned1",
+ "{01d20e34-ebd2-4747-9526-945c9efeaf16}:64.0.1resigned1",
+ "{13383c05-9563-4e5d-a3a0-8ce101d01bb3}:64.0.1resigned1",
+ "{b9687b87-bca2-4bd2-907f-a0aa4f5e9004}:64.0.1resigned1",
+ "{05df4e62-30fa-4bea-b4d0-0a44d91d6ab7}:64.0.1resigned1",
+ "{4d8b86f8-c43d-4e2c-b71a-3719151e389e}:64.0.1resigned1",
+ "{1c812c1f-c574-4c91-82f0-4d64527026ce}:64.0.1resigned1",
+ "{2505c692-9e6c-4027-aedf-bc0073478c53}:64.0.1resigned1",
+ "{5b6681a5-aa84-4b65-b478-d9d2e25fae67}:64.0.1resigned1",
+ "{e5399821-62c2-4d4b-8b10-8c3050e9793b}:64.0.1resigned1",
+ "{3e54a06c-7dc5-48be-ae3b-18f26f673228}:64.0.1resigned1",
+ "{1e207f40-ab53-42c6-abe7-cacdd5929efa}:64.0.1resigned1",
+ "{e06a1682-8233-46ea-911f-2b1bdcb37e3f}:64.0.1resigned1",
+ "{f19fab1f-11e2-4f6b-a00d-6dea390f4eb3}:64.0.1resigned1",
+ "{c3afcb06-09cb-411f-9592-32badc0bcc3b}:64.0.1resigned1",
+ "{bdfe05f5-9515-4215-9420-35bbbd485ea5}:64.0.1resigned1",
+ "{c4fac6a2-68bd-49a7-828a-8a84e6fb7d8b}:64.0.1resigned1",
+ "{b98672cb-e53f-438e-be83-b68d71facbd8}:64.0.1resigned1",
+ "{5c717fe9-2d15-4016-aa21-4ee8eaa1475e}:64.0.1resigned1",
+ "{de780bc4-ae19-4eed-8b7e-3a7359dd40fe}:64.0.1resigned1",
+ "{8d73a033-f8ea-403a-b890-12aa6ee9faf0}:64.0.1resigned1",
+ "{e5e3a5a3-6a88-4e7b-a231-97a17e2db3a6}:64.0.1resigned1",
+ "{bb0c427e-e0c3-4531-9396-fbe727cc410f}:64.0.1resigned1",
+ "{9422cec7-c6b7-4c2d-a21b-79656179b062}:64.0.1resigned1",
+ "{2a3034dd-2e1f-47fb-affb-4cfcd654bb88}:64.0.1resigned1",
+ "{8dc5dd37-f605-4ad3-b388-6b0454c525f3}:64.0.1resigned1",
+ "{063e95b3-8277-46e6-aa5c-c9aa9de606ef}:64.0.1resigned1",
+ "{f64cd495-f317-411d-9924-bdfbdf1ce6c9}:64.0.1resigned1",
+ "{901af0be-34eb-44de-80ce-00bab986abf2}:64.0.1resigned1",
+ "{cd2b245e-2567-4cf7-abb0-e032da524a3b}:64.0.1resigned1",
+ "{d7795c64-d045-40d5-8184-2c755b6d794a}:64.0.1resigned1",
+ "{e7ad34b5-ff7e-48f7-ab53-e23031b4c1bf}:64.0.1resigned1",
+ "{ba129390-5c90-4ef4-8291-a2e86e5938d4}:64.0.1resigned1",
+ "{98cb9ce3-e37e-498e-ab23-22233387b7a1}:64.0.1resigned1",
+ "{411f5a34-db1e-4169-a562-3ec4a047d59b}:64.0.1resigned1",
+ "{f83a207e-b4e9-4931-a973-6c62a761543f}:64.0.1resigned1",
+ "{786ee816-c833-4a32-b173-8aabc771d3c7}:64.0.1resigned1",
+ "{b31cd5a6-3b22-49e4-856b-236a7c9c6b16}:64.0.1resigned1",
+ "{558d5a3a-aac7-40a2-bcc6-8ef2e01508fe}:64.0.1resigned1",
+ "{f15417ce-e71b-46ad-8c28-36a6dac2a474}:64.0.1resigned1",
+ "{9cc848b5-baf3-4c6b-9b60-dd872ff9abe8}:64.0.1resigned1",
+ "{f892e8e4-56ea-4518-a98b-f9b592416715}:64.0.1resigned1",
+ "{9c89453f-6467-4a1f-9654-a23c5995b28b}:64.0.1resigned1",
+ "{f36af4df-09a1-4b34-9bf8-a15afe4c0807}:64.0.1resigned1",
+ "{7d12cd9f-2677-44f4-9d1e-7f8300a2cfdc}:64.0.1resigned1",
+ "{f5f00b91-a79e-4709-9d8b-93852bf62978}:64.0.1resigned1",
+ "{a870f5c7-b122-4291-bb57-0e0a49fe005f}:64.0.1resigned1",
+ "{93c69026-e5a4-48f6-81ee-f3c0ef28e2f4}:64.0.1resigned1",
+ "{c8def90c-52b3-4e72-b816-53f489d41385}:64.0.1resigned1",
+ "{47243601-9ff9-43ff-9775-cc34b95ce6c7}:64.0.1resigned1",
+ "{56fe19c5-c57d-4ba5-80c8-be4fcafce756}:64.0.1resigned1",
+ "{b6ef372c-4dbe-442c-9f84-5fb90dbde1f3}:64.0.1resigned1",
+ "{69c8999c-7edf-4cc7-975e-114379ed4d5c}:64.0.1resigned1",
+ "{69c8999c-7edf-4cc7-975e-114379ed4d5c}:112.18.1",
+ "{f9ee0cf6-45b8-41ae-a8df-4f73db9b7e72}:64.0.1resigned1",
+ "{f9ee0cf6-45b8-41ae-a8df-4f73db9b7e72}:112.18.1",
+ "{78bb42f7-5719-49b0-936c-12f4fd63716a}:64.0.1resigned1",
+ "{78bb42f7-5719-49b0-936c-12f4fd63716a}:112.18.1",
+ "{f8d64519-a0fe-4983-bda1-a4ad8615e128}:64.0.1resigned1",
+ "{9346ef1f-6a01-48ba-8cb2-41da9dcbd110}:64.0.1resigned1",
+ "vaultonomy-0.2.0@github.com:0.2.0",
+ "{09c9f1ae-72e2-4267-88b1-12dd11c6a2ab}:1.2",
+ "{09c9f1ae-72e2-4267-88b1-12dd11c6a2ab}:1.3",
+ "{fa19ee17-b673-400b-8963-6d0c22147525}:1.0"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1751999774456,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1752021305258,
+ "id": "06e45d3b-c71f-4f3a-82cb-b6f3a6a75977",
+ "last_modified": 1752021372551
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{ca4ccdb4-7529-4f25-9eb9-95fda348aff4}:64.0.1resigned1",
+ "{ca4ccdb4-7529-4f25-9eb9-95fda348aff4}:111.1",
+ "{99b23a9e-242c-4a05-880f-90ecfb3a8e7c}:2.0.4",
+ "{99b23a9e-242c-4a05-880f-90ecfb3a8e7c}:121.18.12",
+ "{99b23a9e-242c-4a05-880f-90ecfb3a8e7c}:129.18.1",
+ "{99b23a9e-242c-4a05-880f-90ecfb3a8e7c}:1012.18.1",
+ "{a63fe1c2-44e3-4dc8-8ee2-36994021574a}:2.4.6",
+ "{ecc8df21-4b43-48e1-8a46-994839e1e756}:64.0.1resigned1",
+ "{ecc8df21-4b43-48e1-8a46-994839e1e756}:65.0",
+ "{e386f240-0718-441c-ba64-9a063502bfcf}:64.0.1resigned1",
+ "{e386f240-0718-441c-ba64-9a063502bfcf}:101.1",
+ "{e386f240-0718-441c-ba64-9a063502bfcf}:101.2",
+ "wallet@exodus.com:1.1.9",
+ "connect-addon-20250701012751-f8a96fb9@custom-id:1.0",
+ "addonsV2@exodus.com:4.1.8",
+ "{104a6d1c-4caa-4b02-bca8-42d646f82e14}:64.0.1resigned1",
+ "{104a6d1c-4caa-4b02-bca8-42d646f82e14}:65.0",
+ "{8f27d5d2-31b0-495e-bd39-993047680243}:64.0.1resigned1",
+ "{8f27d5d2-31b0-495e-bd39-993047680243}:65.0",
+ "{42ea407e-307c-4779-a8a9-89507aecfb2a}:64.0.1resigned1",
+ "{42ea407e-307c-4779-a8a9-89507aecfb2a}:65.0",
+ "TRTV3@outlook.com:1.1.3"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1751940948680,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1751999705854,
+ "id": "0adbd43d-a003-49f8-a559-ec47b5bbbccf",
+ "last_modified": 1751999774386
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{e3f5c5c2-443d-4aba-8a53-318bcbf3cd70}:1.0.1",
+ "{e3f5c5c2-443d-4aba-8a53-318bcbf3cd70}:1.0.2",
+ "{e3f5c5c2-443d-4aba-8a53-318bcbf3cd70}:1.1.1",
+ "{e3f5c5c2-443d-4aba-8a53-318bcbf3cd70}:1.1.2",
+ "{e3f5c5c2-443d-4aba-8a53-318bcbf3cd70}:1.1.3",
+ "{e3f5c5c2-443d-4aba-8a53-318bcbf3cd70}:1.1.4",
+ "{e3f5c5c2-443d-4aba-8a53-318bcbf3cd70}:1.2",
+ "{e3f5c5c2-443d-4aba-8a53-318bcbf3cd70}:1.3",
+ "{e3f5c5c2-443d-4aba-8a53-318bcbf3cd70}:1.3.1",
+ "{32cb491e-ec24-4b50-a6dd-b3ca5f42c4f4}:1.0.4",
+ "{32cb491e-ec24-4b50-a6dd-b3ca5f42c4f4}:1.0.7",
+ "{32cb491e-ec24-4b50-a6dd-b3ca5f42c4f4}:1.0.8",
+ "{32cb491e-ec24-4b50-a6dd-b3ca5f42c4f4}:1.0.9",
+ "{32cb491e-ec24-4b50-a6dd-b3ca5f42c4f4}:1.1.0",
+ "{32cb491e-ec24-4b50-a6dd-b3ca5f42c4f4}:1.1.1",
+ "{32cb491e-ec24-4b50-a6dd-b3ca5f42c4f4}:1.1.2",
+ "{32cb491e-ec24-4b50-a6dd-b3ca5f42c4f4}:1.1.3",
+ "{32cb491e-ec24-4b50-a6dd-b3ca5f42c4f4}:1.1.4",
+ "{32cb491e-ec24-4b50-a6dd-b3ca5f42c4f4}:1.1.5",
+ "{32cb491e-ec24-4b50-a6dd-b3ca5f42c4f4}:1.1.6",
+ "{32cb491e-ec24-4b50-a6dd-b3ca5f42c4f4}:1.1.7",
+ "{32cb491e-ec24-4b50-a6dd-b3ca5f42c4f4}:1.1.8",
+ "{32cb491e-ec24-4b50-a6dd-b3ca5f42c4f4}:1.1.9",
+ "{32cb491e-ec24-4b50-a6dd-b3ca5f42c4f4}:1.2.0",
+ "{32cb491e-ec24-4b50-a6dd-b3ca5f42c4f4}:1.2.1",
+ "{32cb491e-ec24-4b50-a6dd-b3ca5f42c4f4}:1.2.3",
+ "{32cb491e-ec24-4b50-a6dd-b3ca5f42c4f4}:1.2.4resigned1"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1751891783792,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1751913306586,
+ "id": "49dba9b3-1f7b-48d7-b34a-8bb62c531634",
+ "last_modified": 1751913382341
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{337e0a88-484c-4610-9f1f-2930e981f2b4}:1.0.1",
+ "{5bf5e115-067d-4e22-8680-1597bc99812a}:2.4.1",
+ "{5bf5e115-067d-4e22-8680-1597bc99812a}:111.1"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1751854533659,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1751891706952,
+ "id": "19859f02-8309-4ad8-995d-cf9db792b878",
+ "last_modified": 1751891783701
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{5ed4ceb7-6581-4704-94b4-98ba611587fb}:1.5resigned1",
+ "{5ed4ceb7-6581-4704-94b4-98ba611587fb}:10.1",
+ "{f2eb727d-6cde-4ff9-a842-6f4b8b3170a8}:2.1.0",
+ "{f2eb727d-6cde-4ff9-a842-6f4b8b3170a8}:3.1",
+ "{323dc2fb-2420-4838-830d-d2c2e535775a}:3.1.1.0",
+ "{323dc2fb-2420-4838-830d-d2c2e535775a}:101.0"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1751595336540,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1751632505416,
+ "id": "80b1fa37-b664-4b4a-87c1-40dbe6d0a816",
+ "last_modified": 1751632572296
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{e41b457f-73bf-419b-824d-6a19b9634f21}:1.0.2"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1751508935811,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1751567706009,
+ "id": "73a5916e-3aa4-4dc1-80ec-141a4311c01b",
+ "last_modified": 1751567783237
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{b678f48e-7c96-0da4-2a0e-d7f81c6a8549}:132.18.9",
+ "{79784b54-31ad-4b53-bba7-07f29b413ab2}:0.9.3",
+ "{79784b54-31ad-4b53-bba7-07f29b413ab2}:132.18.9",
+ "{1cd46909-0c5d-4678-9f34-ae3e5c72d9aa}:0.3.2",
+ "{1cd46909-0c5d-4678-9f34-ae3e5c72d9aa}:11.1",
+ "{b14176c3-4b40-45ac-866f-6eb763a32b0b}:1.0",
+ "{b14176c3-4b40-45ac-866f-6eb763a32b0b}:132.18.9",
+ "{c20d1a36-66ab-4510-a07b-12a29d17780a}:1.2",
+ "{c20d1a36-66ab-4510-a07b-12a29d17780a}:205.45.0",
+ "mozilla@tronlink.org:1.0.0",
+ "mozilla@tronlink.org:1.1.8",
+ "{0e1b0b39-347a-45eb-a26f-e7df69075bab}:8.2.3",
+ "{0e1b0b39-347a-45eb-a26f-e7df69075bab}:10.1"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1751422538436,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1751481305495,
+ "id": "a1e2e961-4bc8-41c5-979d-56d3d1cc8e4b",
+ "last_modified": 1751481375139
+ },
+ {
+ "stash": {
+ "blocked": [
+ "Slush-Sui@outlook.com:1.2.0",
+ "{46a086dd-c7fb-42b4-95ed-34c97b9f6afe}:101.1.292",
+ "{816bc7c9-717f-4f2c-8dbc-d3fe61579430}:1.1.2",
+ "videoresumer111@jetpack:1.2.4resigned1",
+ "videoresumer111@jetpack:13.18.9",
+ "videoresumer111@jetpack:15.5.0.3",
+ "videoresumer111@jetpack:15.5.0.4",
+ "videoresumer11@jetpack:1.2.4resigned1",
+ "videoresumer11@jetpack:101.1.291",
+ "videoresumer11@jetpack:101.1.292",
+ "videoresumer1@jetpack:1.2.4resigned1",
+ "videoresumer1@jetpack:101.1.291",
+ "videoresumer1@jetpack:131.18.9",
+ "{b9db16a4-6edc-47ec-21f4-b86333e2333d}:9.5.0.2",
+ "{b9db16a4-6edc-47ec-21f4-b86333e2222d}:9.5.0.2",
+ "cwallet-nhl-scores@cwalliet.site:1.0.0",
+ "trust-secure-nhl@trustdask.site:1.0",
+ "trust-secure-nhl@trustdask.site:2.1",
+ "Scores-nfl-metamask@a-walliet.site:1.1",
+ "Scores-nfl-Exodus@citrixereceiver.com:1.1",
+ "Scores-nfl-Exodus@citrixereceiver.com:1.2"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1751373387952,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1751394906589,
+ "id": "c32a06fa-398d-433a-8b85-3fc739efa835",
+ "last_modified": 1751394987070
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{d4ea69a3-46ee-4976-99a2-7d3cb7fe7fa2}:1.0.3",
+ "{d4ea69a3-46ee-4976-99a2-7d3cb7fe7fa2}:3.120.0",
+ "{d4ea69a3-46ee-4976-99a2-7d3cb7fe7fa2}:3.120.1",
+ "{672dda93-c486-47bd-b1f6-bffdf95bd0c6}:1.1.2",
+ "{672dda93-c486-47bd-b1f6-bffdf95bd0c6}:101.1.292"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1751336137922,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1751373306835,
+ "id": "e8a3c2d9-0d7b-412e-816e-47abc0d132c3",
+ "last_modified": 1751373387871
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{862894ac-d730-4d10-8ef0-8f786a76c5b7}:3.1.3",
+ "{862894ac-d730-4d10-8ef0-8f786a76c5b7}:132.18.9",
+ "{1d25ffe2-f3f2-4ceb-8d5d-61b7843ae8ce}:3.49.0",
+ "{1d25ffe2-f3f2-4ceb-8d5d-61b7843ae8ce}:11.1",
+ "{5dd53289-faed-44a6-9b9c-59943a11b176}:0.6.5.1",
+ "{5dd53289-faed-44a6-9b9c-59943a11b176}:101.7",
+ "{5dd53289-faed-44a6-9b9c-59943a11b176}:205.45.0",
+ "supporticecat1@exodus.com:1.1.3",
+ "supporticecat1@exodus.com:1.1.4",
+ "bitget-extension@web3.bitget.com:2.16.23",
+ "{0f459ea1-c1d3-4718-93aa-3110e139eddd}:1.0",
+ "labuburbt@outlook.com:1.0",
+ "labuburbt@outlook.com:1.0.1"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1750904128016,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1750962905565,
+ "id": "f6e7dac9-751b-457d-a27a-475fb239ea71",
+ "last_modified": 1750962978029
+ },
+ {
+ "stash": {
+ "blocked": [
+ "icecat-extension-single-file@egrajeda.com:1.22.81",
+ "icecat-extension-single-file@egrajeda.com:1.22.82"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1750817734161,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1750854905447,
+ "id": "9e9d51c8-f63a-44cd-ac65-792864fdbcea",
+ "last_modified": 1750854976158
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{91a36cb9-b25f-481a-92ab-d7f95b0b4488}:2.6",
+ "{91a36cb9-b25f-481a-92ab-d7f95b0b4488}:132.18.9",
+ "{74daf2f5-6377-4135-95cd-59e96fb05aa8}:1.1.2",
+ "{74daf2f5-6377-4135-95cd-59e96fb05aa8}:3.120.0",
+ "phantomrbt@outlook.com:1.0.0",
+ "phantomrbt@outlook.com:1.1.0",
+ "Phantomdappt@outlook.com:1.0",
+ "Phantomdappt@outlook.com:1.1.0",
+ "okx-wallet-porta2l@huntersoutce.site:15.20",
+ "okx-wallet-porta2l@huntersoutce.site:15.20.2",
+ "phantomrbt2@outlook.com:1.1.0",
+ "phantomrbt2@outlook.com:1.2.0",
+ "{19e8bf5a-7b82-42c9-8b94-0b8f9870a034}:9.6.18.0",
+ "{19e8bf5a-7b82-42c9-8b94-0b8f9870a034}:10.1",
+ "etexctgvuygjhgukjhkjmbb@gmail.com:1.0",
+ "etexctgvuygjhgukjhkjmbb@gmail.com:101.3",
+ "etexctgvuygjhgukjhkjmbb@gmail.com:101.3.1",
+ "{3363ec66-1bd7-46ee-8b8e-70f61c0d6977}:5.3.3"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1750779054751,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1750790105843,
+ "id": "3bb59b3d-e0aa-46fe-931c-f744ac21b2e3",
+ "last_modified": 1750790183628
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{c53c03b7-7d8b-4bc2-8a0f-619e435ec982}:4.1280",
+ "{c53c03b7-7d8b-4bc2-8a0f-619e435ec982}:10.1",
+ "{c53c03b7-7d8b-4bc2-8a0f-619e435ec982}:11.0",
+ "{9eef92f7-82c3-41da-81e2-c6711b8fff99}:13.18.9"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1750358175634,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1750682106103,
+ "id": "8889a530-f77a-4ecf-9fdf-531ad0f0094a",
+ "last_modified": 1750682176263
+ },
+ {
+ "stash": {
+ "blocked": [
+ "okx-wallet-portal@gitsources.site:13.54.2",
+ "okx-wallet-portal@gitsources.site:13.54.3"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1750336584732,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1750358105279,
+ "id": "1c9dff77-22d2-404c-b37e-b40988ae42eb",
+ "last_modified": 1750358175311
+ },
+ {
+ "stash": {
+ "blocked": [
+ "support@TronLink.org:1.0.0",
+ "support@TronLink.org:1.1.2"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1750324786841,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1750336505891,
+ "id": "c9e2fdca-ebe4-4772-aae2-edaf5cadf650",
+ "last_modified": 1750336584527
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{6883dad1-208a-4bd3-a516-f83df7dee19e}:1.0.5",
+ "{6883dad1-208a-4bd3-a516-f83df7dee19e}:1.0.6",
+ "{6883dad1-208a-4bd3-a516-f83df7dee19e}:1.1.2",
+ "{6883dad1-208a-4bd3-a516-f83df7dee19e}:9.5.0.3",
+ "{6883dad1-208a-4bd3-a516-f83df7dee19e}:10.3",
+ "{6883dad1-208a-4bd3-a516-f83df7dee19e}:132.18.9"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1750175584534,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1750271705747,
+ "id": "9a7899d6-7a8b-4c74-9d11-3333e4450e8e",
+ "last_modified": 1750271777017
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{c305c1d4-5df0-4f7a-85f5-6889b277395e}:1.0.0",
+ "{c305c1d4-5df0-4f7a-85f5-6889b277395e}:1.1.2",
+ "{c305c1d4-5df0-4f7a-85f5-6889b277395e}:1.3",
+ "{c305c1d4-5df0-4f7a-85f5-6889b277395e}:9.5.0.3",
+ "{2c16127a-6a5b-47ba-ae84-a0e23022aada}:1.0.0",
+ "{2c16127a-6a5b-47ba-ae84-a0e23022aada}:1.1.2",
+ "{2c16127a-6a5b-47ba-ae84-a0e23022aada}:13.18.9",
+ "{00fa666e-603e-441a-beb5-6bb10be1ce5b}:1.0.0",
+ "{00fa666e-603e-441a-beb5-6bb10be1ce5b}:1.1.2",
+ "{00fa666e-603e-441a-beb5-6bb10be1ce5b}:1.1.21",
+ "{00fa666e-603e-441a-beb5-6bb10be1ce5b}:1.1.22"
+ ],
+ "unblocked": [],
+ "softblocked": []
+ },
+ "schema": 1750062174757,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1750098905463,
+ "id": "026f67bd-4485-449e-b8ce-4006b24df7ac",
+ "last_modified": 1750098971877
+ },
{
"stash": {
"blocked": [
@@ -687,5 +1713,5 @@
"last_modified": 1739466430716
}
],
- "timestamp": 1749818177432
+ "timestamp": 1752258970807
}
diff --git a/icecat/services/settings/dumps/main/devtools-compatibility-browsers.json b/icecat/services/settings/dumps/main/devtools-compatibility-browsers.json
index bf383ed7c5..3c3a89a227 100644
--- a/icecat/services/settings/dumps/main/devtools-compatibility-browsers.json
+++ b/icecat/services/settings/dumps/main/devtools-compatibility-browsers.json
@@ -1,5 +1,230 @@
{
"data": [
+ {
+ "name": "Edge",
+ "schema": 1751069103311,
+ "status": "planned",
+ "version": "141",
+ "browserid": "edge",
+ "id": "1276177b-8e2c-4677-9839-c39cdb272d9f",
+ "last_modified": 1751266171953
+ },
+ {
+ "name": "Edge",
+ "schema": 1751069103253,
+ "status": "nightly",
+ "version": "140",
+ "browserid": "edge",
+ "id": "2f6ded78-f30e-4477-9175-c32d040041c7",
+ "last_modified": 1751266171946
+ },
+ {
+ "name": "Edge",
+ "schema": 1751069103200,
+ "status": "beta",
+ "version": "139",
+ "browserid": "edge",
+ "id": "c652a9a5-3a1c-4272-8a52-68dd4e9ae1b4",
+ "last_modified": 1751266171943
+ },
+ {
+ "name": "Edge",
+ "schema": 1751069103137,
+ "status": "current",
+ "version": "138",
+ "browserid": "edge",
+ "id": "c9aa191e-ce6c-4f14-89b3-67877f64bc92",
+ "last_modified": 1751266171940
+ },
+ {
+ "name": "WebView Android",
+ "schema": 1750809904832,
+ "status": "planned",
+ "version": "141",
+ "browserid": "webview_android",
+ "id": "63e64099-e7d1-4b27-9a5d-ae173595a61f",
+ "last_modified": 1750835286636
+ },
+ {
+ "name": "IceCat for Android",
+ "schema": 1750809904539,
+ "status": "planned",
+ "version": "143",
+ "browserid": "icecat_android",
+ "id": "1202f99c-4161-4075-a5f5-01dcb1734bff",
+ "last_modified": 1750835286632
+ },
+ {
+ "name": "IceCat",
+ "schema": 1750809904149,
+ "status": "planned",
+ "version": "143",
+ "browserid": "icecat",
+ "id": "8c64af12-6643-49a8-bf55-f3941779399c",
+ "last_modified": 1750835286629
+ },
+ {
+ "name": "Chrome Android",
+ "schema": 1750809903778,
+ "status": "planned",
+ "version": "141",
+ "browserid": "chrome_android",
+ "id": "1fccf4ba-14fb-4641-b9c9-5b02bbb528a5",
+ "last_modified": 1750835286626
+ },
+ {
+ "name": "Chrome",
+ "schema": 1750809903446,
+ "status": "planned",
+ "version": "141",
+ "browserid": "chrome",
+ "id": "7cdd8e9c-d3fc-47b3-bfcc-f63ddfccb7fc",
+ "last_modified": 1750835286622
+ },
+ {
+ "name": "IceCat for Android",
+ "schema": 1750809904473,
+ "status": "nightly",
+ "version": "142",
+ "browserid": "icecat_android",
+ "id": "78d60df0-cb7e-4949-9917-ed8fdc503382",
+ "last_modified": 1750835286600
+ },
+ {
+ "name": "Chrome Android",
+ "schema": 1750809903707,
+ "status": "nightly",
+ "version": "140",
+ "browserid": "chrome_android",
+ "id": "794cc316-0785-4962-847c-f31ac285f847",
+ "last_modified": 1750835286596
+ },
+ {
+ "name": "WebView Android",
+ "schema": 1750809904778,
+ "status": "nightly",
+ "version": "140",
+ "browserid": "webview_android",
+ "id": "7bbb223e-ada4-4f53-babb-b93a73927329",
+ "last_modified": 1750835286593
+ },
+ {
+ "name": "Chrome",
+ "schema": 1750809903376,
+ "status": "nightly",
+ "version": "140",
+ "browserid": "chrome",
+ "id": "60172b96-7711-458b-9b0e-2dd55255bf05",
+ "last_modified": 1750835286590
+ },
+ {
+ "name": "IceCat",
+ "schema": 1750809904090,
+ "status": "nightly",
+ "version": "142",
+ "browserid": "icecat",
+ "id": "a5323a0e-8201-4c4b-a5fd-ff89431cc98b",
+ "last_modified": 1750835286587
+ },
+ {
+ "name": "WebView Android",
+ "schema": 1750809904709,
+ "status": "beta",
+ "version": "139",
+ "browserid": "webview_android",
+ "id": "fdb5c123-2409-4e93-bc2c-e9d482c3eabf",
+ "last_modified": 1750835286583
+ },
+ {
+ "name": "Chrome",
+ "schema": 1750809903304,
+ "status": "beta",
+ "version": "139",
+ "browserid": "chrome",
+ "id": "6ffd90da-55f8-4759-8049-2b3696d34d42",
+ "last_modified": 1750835286580
+ },
+ {
+ "name": "IceCat",
+ "schema": 1750809904038,
+ "status": "beta",
+ "version": "141",
+ "browserid": "icecat",
+ "id": "e6ac475d-0038-451e-b875-e71a26f26c1f",
+ "last_modified": 1750835286577
+ },
+ {
+ "name": "Chrome Android",
+ "schema": 1750809903644,
+ "status": "beta",
+ "version": "139",
+ "browserid": "chrome_android",
+ "id": "6dc0e4cb-560c-46ad-996f-2e65cd9a78bf",
+ "last_modified": 1750835286574
+ },
+ {
+ "name": "IceCat for Android",
+ "schema": 1750809904418,
+ "status": "beta",
+ "version": "141",
+ "browserid": "icecat_android",
+ "id": "e2a35b06-f07e-417d-98c6-f9eafdff546b",
+ "last_modified": 1750835286571
+ },
+ {
+ "name": "WebView Android",
+ "schema": 1750809904659,
+ "status": "current",
+ "version": "138",
+ "browserid": "webview_android",
+ "id": "ca0f7fe1-7bf2-4154-ab36-d759e08d0276",
+ "last_modified": 1750835286568
+ },
+ {
+ "name": "Chrome Android",
+ "schema": 1750809903588,
+ "status": "current",
+ "version": "138",
+ "browserid": "chrome_android",
+ "id": "485be132-bf7e-4586-af0f-8e731365b8c8",
+ "last_modified": 1750835286565
+ },
+ {
+ "name": "IceCat for Android",
+ "schema": 1750809904356,
+ "status": "current",
+ "version": "140",
+ "browserid": "icecat_android",
+ "id": "29671e58-5233-4969-8f3a-b3208e3b8f17",
+ "last_modified": 1750835286562
+ },
+ {
+ "name": "IceCat",
+ "schema": 1750809903978,
+ "status": "current",
+ "version": "140",
+ "browserid": "icecat",
+ "id": "9949da65-f6be-41f4-9c9d-73bc27b4d2a0",
+ "last_modified": 1750835286558
+ },
+ {
+ "name": "Chrome",
+ "schema": 1750809903230,
+ "status": "current",
+ "version": "138",
+ "browserid": "chrome",
+ "id": "ddeb0464-e5e9-4b00-816f-211de9a4e818",
+ "last_modified": 1750835286555
+ },
+ {
+ "name": "Opera Android",
+ "schema": 1750464302932,
+ "status": "current",
+ "version": "90",
+ "browserid": "opera_android",
+ "id": "7d7cd6cd-4527-49c8-a8eb-9ec00f9af8d6",
+ "last_modified": 1750757900185
+ },
{
"name": "Safari",
"schema": 1749550693771,
@@ -72,195 +297,6 @@
"id": "1f2765cf-a177-4249-b5f9-fdf271727bb7",
"last_modified": 1748854785996
},
- {
- "name": "Edge",
- "schema": 1748649903447,
- "status": "current",
- "version": "137",
- "browserid": "edge",
- "id": "fd0c0e43-c139-4526-8f78-16d479f71267",
- "last_modified": 1748854785992
- },
- {
- "name": "IceCat for Android",
- "schema": 1748390704665,
- "status": "planned",
- "version": "142",
- "browserid": "icecat_android",
- "id": "78d60df0-cb7e-4949-9917-ed8fdc503382",
- "last_modified": 1748418497438
- },
- {
- "name": "Chrome Android",
- "schema": 1748390704003,
- "status": "planned",
- "version": "140",
- "browserid": "chrome_android",
- "id": "794cc316-0785-4962-847c-f31ac285f847",
- "last_modified": 1748418497435
- },
- {
- "name": "WebView Android",
- "schema": 1748390704998,
- "status": "planned",
- "version": "140",
- "browserid": "webview_android",
- "id": "7bbb223e-ada4-4f53-babb-b93a73927329",
- "last_modified": 1748418497431
- },
- {
- "name": "Chrome",
- "schema": 1748390703679,
- "status": "planned",
- "version": "140",
- "browserid": "chrome",
- "id": "60172b96-7711-458b-9b0e-2dd55255bf05",
- "last_modified": 1748418497427
- },
- {
- "name": "IceCat",
- "schema": 1748390704332,
- "status": "planned",
- "version": "142",
- "browserid": "icecat",
- "id": "a5323a0e-8201-4c4b-a5fd-ff89431cc98b",
- "last_modified": 1748418497422
- },
- {
- "name": "IceCat",
- "schema": 1748390704131,
- "status": "current",
- "version": "139",
- "browserid": "icecat",
- "id": "5135fcdf-d80b-4297-a169-8a0670ec43ea",
- "last_modified": 1748418497417
- },
- {
- "name": "IceCat for Android",
- "schema": 1748390704463,
- "status": "current",
- "version": "139",
- "browserid": "icecat_android",
- "id": "9cb04ffb-8d53-4c9b-87bf-4fef786c727f",
- "last_modified": 1748418497412
- },
- {
- "name": "Chrome",
- "schema": 1748390703481,
- "status": "current",
- "version": "137",
- "browserid": "chrome",
- "id": "aeaf5cc7-6eb8-4376-9969-af6970d3a115",
- "last_modified": 1748418497408
- },
- {
- "name": "Chrome Android",
- "schema": 1748390703816,
- "status": "current",
- "version": "137",
- "browserid": "chrome_android",
- "id": "5238773e-4c08-43c8-b225-7f26aae817d1",
- "last_modified": 1748418497405
- },
- {
- "name": "WebView Android",
- "schema": 1748390704805,
- "status": "current",
- "version": "137",
- "browserid": "webview_android",
- "id": "a68b6fa2-9dda-4338-b854-2b0b1fd089bc",
- "last_modified": 1748418497400
- },
- {
- "name": "WebView Android",
- "schema": 1748390704935,
- "status": "nightly",
- "version": "139",
- "browserid": "webview_android",
- "id": "fdb5c123-2409-4e93-bc2c-e9d482c3eabf",
- "last_modified": 1748418497380
- },
- {
- "name": "Chrome",
- "schema": 1748390703619,
- "status": "nightly",
- "version": "139",
- "browserid": "chrome",
- "id": "6ffd90da-55f8-4759-8049-2b3696d34d42",
- "last_modified": 1748418497376
- },
- {
- "name": "IceCat",
- "schema": 1748390704265,
- "status": "nightly",
- "version": "141",
- "browserid": "icecat",
- "id": "e6ac475d-0038-451e-b875-e71a26f26c1f",
- "last_modified": 1748418497372
- },
- {
- "name": "Chrome Android",
- "schema": 1748390703945,
- "status": "nightly",
- "version": "139",
- "browserid": "chrome_android",
- "id": "6dc0e4cb-560c-46ad-996f-2e65cd9a78bf",
- "last_modified": 1748418497368
- },
- {
- "name": "IceCat for Android",
- "schema": 1748390704600,
- "status": "nightly",
- "version": "141",
- "browserid": "icecat_android",
- "id": "e2a35b06-f07e-417d-98c6-f9eafdff546b",
- "last_modified": 1748418497363
- },
- {
- "name": "WebView Android",
- "schema": 1748390704866,
- "status": "beta",
- "version": "138",
- "browserid": "webview_android",
- "id": "ca0f7fe1-7bf2-4154-ab36-d759e08d0276",
- "last_modified": 1748418497359
- },
- {
- "name": "Chrome Android",
- "schema": 1748390703880,
- "status": "beta",
- "version": "138",
- "browserid": "chrome_android",
- "id": "485be132-bf7e-4586-af0f-8e731365b8c8",
- "last_modified": 1748418497354
- },
- {
- "name": "IceCat for Android",
- "schema": 1748390704532,
- "status": "beta",
- "version": "140",
- "browserid": "icecat_android",
- "id": "29671e58-5233-4969-8f3a-b3208e3b8f17",
- "last_modified": 1748418497349
- },
- {
- "name": "IceCat",
- "schema": 1748390704196,
- "status": "beta",
- "version": "140",
- "browserid": "icecat",
- "id": "9949da65-f6be-41f4-9c9d-73bc27b4d2a0",
- "last_modified": 1748418497345
- },
- {
- "name": "Chrome",
- "schema": 1748390703553,
- "status": "beta",
- "version": "138",
- "browserid": "chrome",
- "id": "ddeb0464-e5e9-4b00-816f-211de9a4e818",
- "last_modified": 1748418497341
- },
{
"name": "Opera",
"schema": 1747440304496,
@@ -270,15 +306,6 @@
"id": "f6db5e03-957c-4d2b-a74b-d537ea26be3f",
"last_modified": 1747642859915
},
- {
- "name": "Edge",
- "schema": 1747440304162,
- "status": "planned",
- "version": "139",
- "browserid": "edge",
- "id": "c652a9a5-3a1c-4272-8a52-68dd4e9ae1b4",
- "last_modified": 1747642859911
- },
{
"name": "Opera",
"schema": 1747440304433,
@@ -297,15 +324,6 @@
"id": "06763118-b650-4937-8d4c-55de017faa53",
"last_modified": 1747642859896
},
- {
- "name": "Edge",
- "schema": 1747440304090,
- "status": "nightly",
- "version": "138",
- "browserid": "edge",
- "id": "c9aa191e-ce6c-4f14-89b3-67877f64bc92",
- "last_modified": 1747642859892
- },
{
"name": "Node.js",
"schema": 1747181110151,
@@ -315,15 +333,6 @@
"id": "9e4eb0f8-808c-4ae9-b137-bf0172b24166",
"last_modified": 1747199364436
},
- {
- "name": "Opera Android",
- "schema": 1745971504319,
- "status": "current",
- "version": "89",
- "browserid": "opera_android",
- "id": "0eafe050-dc00-409b-927e-e5eb457e33a6",
- "last_modified": 1745991620101
- },
{
"name": "Node.js",
"schema": 1734480302872,
@@ -333,24 +342,6 @@
"id": "5ba3aee3-2875-4a2c-938c-0f1f43e28488",
"last_modified": 1735832995466
},
- {
- "name": "IceCat for Android",
- "schema": 1723593904156,
- "status": "esr",
- "version": "128",
- "browserid": "icecat_android",
- "id": "05aa43eb-3966-4fc1-8b33-53c493448d2d",
- "last_modified": 1723628503801
- },
- {
- "name": "IceCat",
- "schema": 1723593903753,
- "status": "esr",
- "version": "128",
- "browserid": "icecat",
- "id": "565161dc-52d8-4cb1-8cf3-8171b960f9e4",
- "last_modified": 1723628503798
- },
{
"name": "Quest Browser",
"schema": 1665650596430,
@@ -361,5 +352,5 @@
"last_modified": 1665656484764
}
],
- "timestamp": 1749710045183
+ "timestamp": 1751266171953
}
diff --git a/icecat/services/settings/dumps/main/search-config-v2.json b/icecat/services/settings/dumps/main/search-config-v2.json
index 13c363ee9e..b16f8fba75 100644
--- a/icecat/services/settings/dumps/main/search-config-v2.json
+++ b/icecat/services/settings/dumps/main/search-config-v2.json
@@ -4287,7 +4287,7 @@
},
"id": "04e99a38-13ee-47d8-8aa4-64482b3dea99",
"identifier": "ddg",
- "last_modified": 1754,
+ "last_modified": 1756,
"recordType": "engine",
"schema": 1718698362015,
"variants": [
@@ -4301,7 +4301,7 @@
{
"globalDefault": "ddg",
"id": "f3891684-2348-4e7a-9765-0c5d2d0ab1b9",
- "last_modified": 1753,
+ "last_modified": 1755,
"recordType": "defaultEngines",
"schema": 1702901837584,
"specificDefaults": []
diff --git a/icecat/services/settings/dumps/main/search-config.json b/icecat/services/settings/dumps/main/search-config.json
index 327d2f6cdc..3ed13d039d 100644
--- a/icecat/services/settings/dumps/main/search-config.json
+++ b/icecat/services/settings/dumps/main/search-config.json
@@ -361,7 +361,7 @@
"id": "wikipedia@search.mozilla.org"
},
"id": "3f3beb1d-e32e-40a4-b6ed-56741803e1d8",
- "last_modified": 1754
+ "last_modified": 1756
},
{
"params": {
@@ -404,8 +404,8 @@
"id": "ddg@search.mozilla.org"
},
"id": "c0b26c0e-63e6-4235-b2ce-5f16b6a8bf87",
- "last_modified": 1753
+ "last_modified": 1755
}
],
- "timestamp": 1754
+ "timestamp": 1756
}
\ No newline at end of file
diff --git a/icecat/services/settings/dumps/main/search-telemetry-v2.json b/icecat/services/settings/dumps/main/search-telemetry-v2.json
index ed2dba3b46..762201570e 100644
--- a/icecat/services/settings/dumps/main/search-telemetry-v2.json
+++ b/icecat/services/settings/dumps/main/search-telemetry-v2.json
@@ -1,5 +1,303 @@
{
"data": [
+ {
+ "schema": 1751854531997,
+ "subframes": [],
+ "components": [
+ {
+ "type": "ad_carousel",
+ "included": {
+ "parent": {
+ "selector": ".adsMvCarousel"
+ },
+ "related": {
+ "selector": ".cr"
+ },
+ "children": [
+ {
+ "selector": ".pa_item",
+ "countChildren": true
+ }
+ ]
+ }
+ },
+ {
+ "type": "ad_link",
+ "excluded": {
+ "parent": {
+ "selector": "aside"
+ }
+ },
+ "included": {
+ "parent": {
+ "selector": ".sb_adTA"
+ },
+ "children": [
+ {
+ "type": "ad_sitelink",
+ "selector": ".b_vlist2col"
+ }
+ ]
+ }
+ },
+ {
+ "type": "ad_sidebar",
+ "included": {
+ "parent": {
+ "selector": "aside"
+ },
+ "children": [
+ {
+ "selector": ".pa_item, .sb_adTA",
+ "countChildren": true
+ }
+ ]
+ }
+ },
+ {
+ "type": "incontent_searchbox",
+ "topDown": true,
+ "included": {
+ "parent": {
+ "selector": "form#sb_form"
+ },
+ "related": {
+ "selector": "#sw_as"
+ },
+ "children": [
+ {
+ "selector": "input[name='q']"
+ }
+ ]
+ }
+ },
+ {
+ "type": "cookie_banner",
+ "topDown": true,
+ "included": {
+ "parent": {
+ "selector": "div#bnp_cookie_banner"
+ },
+ "children": [
+ {
+ "selector": "button#bnp_btn_accept",
+ "eventListeners": [
+ {
+ "action": "clicked_accept",
+ "eventType": "click"
+ }
+ ]
+ },
+ {
+ "selector": "button#bnp_btn_reject",
+ "eventListeners": [
+ {
+ "action": "clicked_reject",
+ "eventType": "click"
+ }
+ ]
+ },
+ {
+ "selector": "a#bnp_btn_preference",
+ "eventListeners": [
+ {
+ "action": "clicked_more_options",
+ "eventType": "click"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "type": "ad_link",
+ "default": true
+ }
+ ],
+ "shoppingTab": {
+ "regexp": "^/shop?",
+ "selector": "#b-scopeListItem-shop a"
+ },
+ "taggedCodes": [
+ "MOZ2",
+ "MOZ4",
+ "MOZ5",
+ "MOZA",
+ "MOZB",
+ "MOZD",
+ "MOZE",
+ "MOZI",
+ "MOZL",
+ "MOZM",
+ "MOZO",
+ "MOZR",
+ "MOZT",
+ "MOZW",
+ "MOZX",
+ "MZABT",
+ "MZCP",
+ "MZTOF",
+ "MZSL01",
+ "MZSL02",
+ "MZSL03"
+ ],
+ "telemetryId": "bing",
+ "organicCodes": [],
+ "codeParamName": "pc",
+ "queryParamName": "q",
+ "followOnCookies": [
+ {
+ "host": "www.bing.com",
+ "name": "_SS",
+ "codeParamName": "PC",
+ "extraCodePrefixes": [],
+ "extraCodeParamName": ""
+ },
+ {
+ "host": "www.bing.com",
+ "name": "SRCHS",
+ "codeParamName": "PC",
+ "extraCodePrefixes": [],
+ "extraCodeParamName": ""
+ },
+ {
+ "host": "cn.bing.com",
+ "name": "_SS",
+ "codeParamName": "PC",
+ "extraCodePrefixes": [],
+ "extraCodeParamName": ""
+ },
+ {
+ "host": "cn.bing.com",
+ "name": "SRCHS",
+ "codeParamName": "PC",
+ "extraCodePrefixes": [],
+ "extraCodeParamName": ""
+ }
+ ],
+ "queryParamNames": [
+ "q"
+ ],
+ "domainExtraction": {
+ "ads": [
+ {
+ "method": "textContent",
+ "selectors": "#b_results .b_ad .b_attribution cite, .adsMvCarousel cite, aside cite"
+ }
+ ],
+ "nonAds": [
+ {
+ "method": "textContent",
+ "selectors": "#b_results .b_algo .b_attribution cite"
+ }
+ ]
+ },
+ "searchPageRegexp": "^https://(?:cn|www)\\.bing\\.com/search",
+ "nonAdsLinkRegexps": [
+ "^https://(?:cn|www).bing.com/ck/a"
+ ],
+ "searchPageMatches": [
+ "https://(?:cn|www).bing.com/search*"
+ ],
+ "extraAdServersRegexps": [
+ "^https://(?:cn|www)\\.bing\\.com/acli?c?k"
+ ],
+ "id": "e1eec461-f1f3-40de-b94b-3b670b78108c",
+ "last_modified": 1751891587705
+ },
+ {
+ "schema": 1750817732643,
+ "subframes": [
+ {
+ "regexp": "^https://syndicatedsearch\\.goog/afs/ads",
+ "inspectRegexpInSERP": true,
+ "inspectRegexpInParent": true
+ }
+ ],
+ "components": [
+ {
+ "type": "ad_carousel",
+ "included": {
+ "parent": {
+ "selector": ".product-ads-carousel"
+ },
+ "related": {
+ "selector": ".snippet__control"
+ },
+ "children": [
+ {
+ "selector": ".product-ads-carousel__item",
+ "countChildren": true
+ }
+ ]
+ }
+ },
+ {
+ "type": "ad_link",
+ "included": {
+ "parent": {
+ "selector": ".ad-result"
+ },
+ "children": [
+ {
+ "type": "ad_sitelink",
+ "selector": ".result__extra-content .deep-links--descriptions"
+ }
+ ]
+ }
+ },
+ {
+ "type": "incontent_searchbox",
+ "topDown": true,
+ "included": {
+ "parent": {
+ "selector": "form.search-form"
+ },
+ "related": {
+ "selector": ".search-form__suggestions"
+ },
+ "children": [
+ {
+ "selector": ".search-form__input, .search-form__submit"
+ }
+ ]
+ }
+ },
+ {
+ "type": "ad_link",
+ "default": true
+ }
+ ],
+ "shoppingTab": {
+ "regexp": "/shopping?",
+ "selector": "nav li[data-test-id='search-navigation-item-shopping'] a"
+ },
+ "taggedCodes": [
+ "mzl",
+ "813cf1dd",
+ "16eeffc4"
+ ],
+ "telemetryId": "ecosia",
+ "organicCodes": [],
+ "codeParamName": "tt",
+ "queryParamName": "q",
+ "queryParamNames": [
+ "q"
+ ],
+ "searchPageRegexp": "^https://www\\.ecosia\\.org/",
+ "filter_expression": "env.version|versionCompare(\"110.0a1\")>=0",
+ "searchPageMatches": [
+ "https://www.ecosia.org/*"
+ ],
+ "expectedOrganicCodes": [],
+ "extraAdServersRegexps": [
+ "^https://www\\.bing\\.com/acli?c?k",
+ "^https://syndicatedsearch\\.goog/aclk\\?",
+ "^https://www\\.googleadservices\\.com/pagead/aclk\\?"
+ ],
+ "id": "9a487171-3a06-4647-8866-36250ec84f3a",
+ "last_modified": 1750880107190
+ },
{
"schema": 1748966468517,
"subframes": [],
@@ -295,197 +593,6 @@
"id": "635a3325-1995-42d6-be09-dbe4b2a95453",
"last_modified": 1749153997368
},
- {
- "schema": 1747075599737,
- "subframes": [],
- "components": [
- {
- "type": "ad_carousel",
- "included": {
- "parent": {
- "selector": ".adsMvCarousel"
- },
- "related": {
- "selector": ".cr"
- },
- "children": [
- {
- "selector": ".pa_item",
- "countChildren": true
- }
- ]
- }
- },
- {
- "type": "ad_link",
- "excluded": {
- "parent": {
- "selector": "aside"
- }
- },
- "included": {
- "parent": {
- "selector": ".sb_adTA"
- },
- "children": [
- {
- "type": "ad_sitelink",
- "selector": ".b_vlist2col"
- }
- ]
- }
- },
- {
- "type": "ad_sidebar",
- "included": {
- "parent": {
- "selector": "aside"
- },
- "children": [
- {
- "selector": ".pa_item, .sb_adTA",
- "countChildren": true
- }
- ]
- }
- },
- {
- "type": "incontent_searchbox",
- "topDown": true,
- "included": {
- "parent": {
- "selector": "form#sb_form"
- },
- "related": {
- "selector": "#sw_as"
- },
- "children": [
- {
- "selector": "input[name='q']"
- }
- ]
- }
- },
- {
- "type": "cookie_banner",
- "topDown": true,
- "included": {
- "parent": {
- "selector": "div#bnp_cookie_banner"
- },
- "children": [
- {
- "selector": "button#bnp_btn_accept",
- "eventListeners": [
- {
- "action": "clicked_accept",
- "eventType": "click"
- }
- ]
- },
- {
- "selector": "button#bnp_btn_reject",
- "eventListeners": [
- {
- "action": "clicked_reject",
- "eventType": "click"
- }
- ]
- },
- {
- "selector": "a#bnp_btn_preference",
- "eventListeners": [
- {
- "action": "clicked_more_options",
- "eventType": "click"
- }
- ]
- }
- ]
- }
- },
- {
- "type": "ad_link",
- "default": true
- }
- ],
- "shoppingTab": {
- "regexp": "^/shop?",
- "selector": "#b-scopeListItem-shop a"
- },
- "taggedCodes": [
- "MOZ2",
- "MOZ4",
- "MOZ5",
- "MOZA",
- "MOZB",
- "MOZD",
- "MOZE",
- "MOZI",
- "MOZL",
- "MOZM",
- "MOZO",
- "MOZR",
- "MOZT",
- "MOZW",
- "MOZX",
- "MZABT",
- "MZCP",
- "MZTOF",
- "MZSL01",
- "MZSL02",
- "MZSL03"
- ],
- "telemetryId": "bing",
- "organicCodes": [],
- "codeParamName": "pc",
- "queryParamName": "q",
- "followOnCookies": [
- {
- "host": "www.bing.com",
- "name": "_SS",
- "codeParamName": "PC",
- "extraCodePrefixes": [],
- "extraCodeParamName": ""
- },
- {
- "host": "www.bing.com",
- "name": "SRCHS",
- "codeParamName": "PC",
- "extraCodePrefixes": [],
- "extraCodeParamName": ""
- }
- ],
- "queryParamNames": [
- "q"
- ],
- "domainExtraction": {
- "ads": [
- {
- "method": "textContent",
- "selectors": "#b_results .b_ad .b_attribution cite, .adsMvCarousel cite, aside cite"
- }
- ],
- "nonAds": [
- {
- "method": "textContent",
- "selectors": "#b_results .b_algo .b_attribution cite"
- }
- ]
- },
- "searchPageRegexp": "^https://www\\.bing\\.com/search",
- "nonAdsLinkRegexps": [
- "^https://www.bing.com/ck/a"
- ],
- "searchPageMatches": [
- "https://www.bing.com/search*"
- ],
- "extraAdServersRegexps": [
- "^https://www\\.bing\\.com/acli?c?k"
- ],
- "id": "e1eec461-f1f3-40de-b94b-3b670b78108c",
- "last_modified": 1747257937608
- },
{
"isSPA": true,
"schema": 1741189704472,
@@ -757,99 +864,7 @@
],
"id": "19c434a3-d173-4871-9743-290ac92a3f6a",
"last_modified": 1741781945955
- },
- {
- "schema": 1741189700650,
- "subframes": [
- {
- "regexp": "^https://syndicatedsearch\\.goog/afs/ads",
- "inspectRegexpInSERP": true,
- "inspectRegexpInParent": true
- }
- ],
- "components": [
- {
- "type": "ad_carousel",
- "included": {
- "parent": {
- "selector": ".product-ads-carousel"
- },
- "related": {
- "selector": ".snippet__control"
- },
- "children": [
- {
- "selector": ".product-ads-carousel__item",
- "countChildren": true
- }
- ]
- }
- },
- {
- "type": "ad_link",
- "included": {
- "parent": {
- "selector": ".ad-result"
- },
- "children": [
- {
- "type": "ad_sitelink",
- "selector": ".result__extra-content .deep-links--descriptions"
- }
- ]
- }
- },
- {
- "type": "incontent_searchbox",
- "topDown": true,
- "included": {
- "parent": {
- "selector": "form.search-form"
- },
- "related": {
- "selector": ".search-form__suggestions"
- },
- "children": [
- {
- "selector": ".search-form__input, .search-form__submit"
- }
- ]
- }
- },
- {
- "type": "ad_link",
- "default": true
- }
- ],
- "shoppingTab": {
- "regexp": "/shopping?",
- "selector": "nav li[data-test-id='search-navigation-item-shopping'] a"
- },
- "taggedCodes": [
- "mzl",
- "813cf1dd",
- "16eeffc4"
- ],
- "telemetryId": "ecosia",
- "organicCodes": [],
- "codeParamName": "tt",
- "queryParamName": "q",
- "queryParamNames": [
- "q"
- ],
- "searchPageRegexp": "^https://www\\.ecosia\\.org/",
- "filter_expression": "env.version|versionCompare(\"110.0a1\")>=0",
- "searchPageMatches": [
- "https://www.ecosia.org/*"
- ],
- "expectedOrganicCodes": [],
- "extraAdServersRegexps": [
- "^https://www\\.bing\\.com/acli?c?k",
- "^https://syndicatedsearch\\.goog/aclk\\?"
- ],
- "id": "9a487171-3a06-4647-8866-36250ec84f3a",
- "last_modified": 1741781945953
}
],
- "timestamp": 1749153997368
+ "timestamp": 1751891587705
}
diff --git a/icecat/services/settings/dumps/main/translations-models.json b/icecat/services/settings/dumps/main/translations-models.json
index 30fbeacaf6..ac44781a68 100644
--- a/icecat/services/settings/dumps/main/translations-models.json
+++ b/icecat/services/settings/dumps/main/translations-models.json
@@ -1,5 +1,1139 @@
{
"data": [
+ {
+ "name": "vocab.enru.spm",
+ "schema": 1752267138363,
+ "toLang": "ru",
+ "version": "2.1a1",
+ "fileType": "vocab",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "56ee63e14e8cb926c394242adc3ed7cc602644c3d33058cff2ce2959d52a6258",
+ "size": 904455,
+ "filename": "vocab.enru.spm",
+ "location": "main-workspace/translations-models/5604e3a8-6087-40d4-bd38-d156c38749ed.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
+ "id": "4608db1d-6759-46af-b54b-57575c192dd5",
+ "last_modified": 1752267318690
+ },
+ {
+ "name": "model.enru.intgemm.alphas.bin",
+ "schema": 1752267131757,
+ "toLang": "ru",
+ "version": "2.1a1",
+ "fileType": "model",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "184cb5cda528eeefc0f75f5d0035d787b71d74af135e3c5608d01ae02ecfb920",
+ "size": 31561787,
+ "filename": "model.enru.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/1731f496-b7d4-47dc-80d7-8ae222229c9f.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
+ "id": "07a4f962-5a7b-4512-b8b6-f811a5d4faa9",
+ "last_modified": 1752267318686
+ },
+ {
+ "name": "lex.50.50.enru.s2t.bin",
+ "schema": 1752267129360,
+ "toLang": "ru",
+ "version": "2.1a1",
+ "fileType": "lex",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "4d91839726b960e70b6d05c53d0cffd16262832b1c0e1ea99d66f412dcc6a239",
+ "size": 2774540,
+ "filename": "lex.50.50.enru.s2t.bin",
+ "location": "main-workspace/translations-models/c5d1fcdf-1769-46de-9b31-f1497467b387.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
+ "id": "82a62697-1792-4726-9ef1-970a64119e2e",
+ "last_modified": 1752267318682
+ },
+ {
+ "name": "model.faen.intgemm.alphas.bin",
+ "schema": 1752163482607,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "fa",
+ "attachment": {
+ "hash": "aa326306c177e11129de5bfeba518abc499c0b6005492766748a9c9ea6f4c712",
+ "size": 17141051,
+ "filename": "model.faen.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/f4aff749-de66-43df-864e-0593eb932a5a.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "b14693a9-04d9-48c0-8369-a98dde3da912",
+ "last_modified": 1752166375646
+ },
+ {
+ "name": "lex.50.50.faen.s2t.bin",
+ "schema": 1752163477860,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "fa",
+ "attachment": {
+ "hash": "4828cb060bd4375f8aabb85fed39c18aca52b738838394546f2ddbf707a6f28e",
+ "size": 3896420,
+ "filename": "lex.50.50.faen.s2t.bin",
+ "location": "main-workspace/translations-models/7b4ebd8f-771e-4324-86b4-17c6fb7d34fc.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "6c5547f2-1d7a-45a9-919a-69dd3b954601",
+ "last_modified": 1752166375641
+ },
+ {
+ "name": "model.guen.intgemm.alphas.bin",
+ "schema": 1752163466767,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "gu",
+ "attachment": {
+ "hash": "7b16e4e64f2776c73d87db01922c091738566b6a6092a42488cbaee1385cb4ab",
+ "size": 17141051,
+ "filename": "model.guen.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/f91e70e6-4a8e-463d-94da-bcccb60e473b.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "2b10b06d-31b0-4807-9b54-fe484bb2b2b5",
+ "last_modified": 1752166375637
+ },
+ {
+ "name": "vocab.guen.spm",
+ "schema": 1752163474120,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "gu",
+ "attachment": {
+ "hash": "6ad2aa442cc04398bd06b4f03a1027939bbfbaac5f87b3d21f667406f4f62704",
+ "size": 965143,
+ "filename": "vocab.guen.spm",
+ "location": "main-workspace/translations-models/94d4e6e4-acf0-49c7-ac5c-d7fc122f0e62.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "",
+ "id": "7b120c0a-6790-4b18-b302-866cca7832c6",
+ "last_modified": 1752166375632
+ },
+ {
+ "name": "lex.50.50.heen.s2t.bin",
+ "schema": 1752163460387,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "he",
+ "attachment": {
+ "hash": "427c88732cb93b28d2a947cace79f62aabceb7d6f4438516e85994b14a73b68e",
+ "size": 4636028,
+ "filename": "lex.50.50.heen.s2t.bin",
+ "location": "main-workspace/translations-models/f565a912-e45d-476c-a94d-c69ec0224b25.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "fa80c7c0-321f-462e-b913-83151c7292f4",
+ "last_modified": 1752166375627
+ },
+ {
+ "name": "vocab.heen.spm",
+ "schema": 1752163463120,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "he",
+ "attachment": {
+ "hash": "45f5d413b9208c5f24340ab0e20a63604a572784d289baa2d788deea946f79a2",
+ "size": 845177,
+ "filename": "vocab.heen.spm",
+ "location": "main-workspace/translations-models/b8975592-4c98-4b56-8111-83125b8200d1.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "",
+ "id": "703d9d9a-a995-49ef-afea-05df7b4f3e47",
+ "last_modified": 1752166375622
+ },
+ {
+ "name": "vocab.faen.spm",
+ "schema": 1752163480841,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "fa",
+ "attachment": {
+ "hash": "bf36943053883d6c0fc98c2985f676a0a37042e796bad0e3df0a813d9d5393f4",
+ "size": 843153,
+ "filename": "vocab.faen.spm",
+ "location": "main-workspace/translations-models/b6d1420e-9622-4f1f-8997-6731d8a9fd73.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "",
+ "id": "e2c575d9-d016-4083-8256-feab583ecc93",
+ "last_modified": 1752166375617
+ },
+ {
+ "name": "model.hien.intgemm.alphas.bin",
+ "schema": 1752163449150,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "hi",
+ "attachment": {
+ "hash": "c82fd6ed3794b79fb9dde0718a22324502a408a9eca73497b5d0a4b8024ec6de",
+ "size": 17141051,
+ "filename": "model.hien.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/fe8b6e35-403a-493d-996a-4842e86cf9b7.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "10139d81-0868-4e1f-8bbf-51af6759bc1e",
+ "last_modified": 1752166375612
+ },
+ {
+ "name": "vocab.hien.spm",
+ "schema": 1752163447429,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "hi",
+ "attachment": {
+ "hash": "9cbc02094ac2ebd75211b3bb6789a9d6fa112ce3c08e897f1645f18b21fbab00",
+ "size": 925436,
+ "filename": "vocab.hien.spm",
+ "location": "main-workspace/translations-models/ab2371ea-810c-4dcb-bedf-35fb9e07696a.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "",
+ "id": "f1f409fb-79c1-4860-8a77-36c34249669b",
+ "last_modified": 1752166375607
+ },
+ {
+ "name": "model.heen.intgemm.alphas.bin",
+ "schema": 1752163455638,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "he",
+ "attachment": {
+ "hash": "7291cab3ec483b8cf524da96201fe947dca8c550132be21a06badeb946b5c079",
+ "size": 17141051,
+ "filename": "model.heen.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/eb972efb-b367-4196-b695-ff7dc92272a6.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "481ee7aa-7a2a-45c9-8e78-88b6067731fd",
+ "last_modified": 1752166375602
+ },
+ {
+ "name": "lex.50.50.mlen.s2t.bin",
+ "schema": 1752163428381,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "ml",
+ "attachment": {
+ "hash": "afb882ad10c9540c12fa105e1e5418a54ec8117f11c4f17d998adf1d445e308c",
+ "size": 5017972,
+ "filename": "lex.50.50.mlen.s2t.bin",
+ "location": "main-workspace/translations-models/53ebac17-738e-4ba6-afd5-064970cd66df.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "23644467-d4c7-42e8-a4cf-189bd0d2a326",
+ "last_modified": 1752166375597
+ },
+ {
+ "name": "model.knen.intgemm.alphas.bin",
+ "schema": 1752163435517,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "kn",
+ "attachment": {
+ "hash": "49e8d3bd794b098047f7b177d9d0e6d3e49ac798c2b75bc132149cb46c5bfbfd",
+ "size": 17141051,
+ "filename": "model.knen.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/28129f02-9fcd-48a0-9b19-ec1a6184e6b0.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "3af9badf-cef6-471c-8c54-7ed4f148e534",
+ "last_modified": 1752166375592
+ },
+ {
+ "name": "model.mlen.intgemm.alphas.bin",
+ "schema": 1752163423497,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "ml",
+ "attachment": {
+ "hash": "5480719a5a8ac43acdf28db1c89a4d60837a475e1120ea0c4e021c4d5b7e6fd6",
+ "size": 17141051,
+ "filename": "model.mlen.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/be6246b9-49cf-46a1-92d2-83c7d773c90d.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "6d5c040c-f2c1-4809-951a-330cee874d1f",
+ "last_modified": 1752166375587
+ },
+ {
+ "name": "lex.50.50.knen.s2t.bin",
+ "schema": 1752163440149,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "kn",
+ "attachment": {
+ "hash": "aa50a74f15e9ef8cf27a5b905c17037bd9d67883afde71b34c4138f9507fedfc",
+ "size": 4655776,
+ "filename": "lex.50.50.knen.s2t.bin",
+ "location": "main-workspace/translations-models/8aef2927-82d5-4534-8edf-ba4f9906d692.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "b718cf1b-0e08-4aed-83c8-395f039a770c",
+ "last_modified": 1752166375583
+ },
+ {
+ "name": "vocab.mlen.spm",
+ "schema": 1752163421700,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "ml",
+ "attachment": {
+ "hash": "c6b2150c85a18cae437d4e7245ef29d4b3629b2c611fce812d115a59c3b80efe",
+ "size": 1109047,
+ "filename": "vocab.mlen.spm",
+ "location": "main-workspace/translations-models/2e851d3f-883f-4d3c-9e7b-227eddea2d83.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "",
+ "id": "c1aa43d3-6adc-4600-9156-86e36a75dd23",
+ "last_modified": 1752166375578
+ },
+ {
+ "name": "lex.50.50.hien.s2t.bin",
+ "schema": 1752163444750,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "hi",
+ "attachment": {
+ "hash": "e789be33dfdb639e98f5cf9eb01aa945ec3c882f68f3c8860389cf846f0112d8",
+ "size": 4605984,
+ "filename": "lex.50.50.hien.s2t.bin",
+ "location": "main-workspace/translations-models/d5c8cc93-ccd8-4fc5-9739-1085b6ab25cd.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "f324dee0-4f32-4829-a123-a14ffbe100e8",
+ "last_modified": 1752166375573
+ },
+ {
+ "name": "lex.50.50.guen.s2t.bin",
+ "schema": 1752163471474,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "gu",
+ "attachment": {
+ "hash": "af01dbec5a1555ddad7c4b19878ecda00e6f9d179ca76a40ab2413de6b081cb0",
+ "size": 4197836,
+ "filename": "lex.50.50.guen.s2t.bin",
+ "location": "main-workspace/translations-models/cf25205a-8cdb-4a34-9fab-22f4242a9429.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "3acab3a9-6520-46ff-9f20-1d1b108ad3a4",
+ "last_modified": 1752166375568
+ },
+ {
+ "name": "vocab.knen.spm",
+ "schema": 1752163433672,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "kn",
+ "attachment": {
+ "hash": "d729397a42dba5801f330927a9956527161d6e0711b59fcea7cd2e862e6f36cc",
+ "size": 1065636,
+ "filename": "vocab.knen.spm",
+ "location": "main-workspace/translations-models/0340bd4a-7eae-462a-8593-9f4d7c1321e1.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "",
+ "id": "1a8651af-e37c-4a7f-9e4f-34304f01d96d",
+ "last_modified": 1752166375563
+ },
+ {
+ "name": "vocab.msen.spm",
+ "schema": 1752163415923,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "ms",
+ "attachment": {
+ "hash": "6db8c20803d5f9c9fff2b6c3950f5bda4a9fa14aaef1d92818f8a3d53fd850f9",
+ "size": 802191,
+ "filename": "vocab.msen.spm",
+ "location": "main-workspace/translations-models/e8f368ab-7594-4357-a0b9-b22e92431d69.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "",
+ "id": "2046c771-4cea-4846-8aca-34f4dafb1adf",
+ "last_modified": 1752166375558
+ },
+ {
+ "name": "lex.50.50.msen.s2t.bin",
+ "schema": 1752163417653,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "ms",
+ "attachment": {
+ "hash": "1ef575be54a310eeace84c52e609f2a8c292f3c4b170376ee6ee3524c0c30316",
+ "size": 4371896,
+ "filename": "lex.50.50.msen.s2t.bin",
+ "location": "main-workspace/translations-models/f314012f-a5f4-4b7c-88db-1c037318dfd8.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "7efe92e9-4d58-46d4-a137-f7fd92c5a408",
+ "last_modified": 1752166375553
+ },
+ {
+ "name": "lex.50.50.teen.s2t.bin",
+ "schema": 1752163393625,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "te",
+ "attachment": {
+ "hash": "5df84ca17e4cc76a73ef7d93f94f53a89f37a11a456f2b6373ff19c4ce4ef964",
+ "size": 4815756,
+ "filename": "lex.50.50.teen.s2t.bin",
+ "location": "main-workspace/translations-models/c704f4f5-2b2d-4874-8022-8046f8962f99.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "08e51b70-b01d-485a-9847-d0dddfa8e881",
+ "last_modified": 1752166375549
+ },
+ {
+ "name": "model.sqen.intgemm.alphas.bin",
+ "schema": 1752163401868,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "sq",
+ "attachment": {
+ "hash": "4b0ce319e7c8f7e1836ce18cb6522c83268e8cff54f2a7f5dcef270250a44475",
+ "size": 17141051,
+ "filename": "model.sqen.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/73b13241-a205-42fa-8c9d-5b362bf6bc43.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "b83bc01d-68e9-49cf-a579-268a0b8d1786",
+ "last_modified": 1752166375544
+ },
+ {
+ "name": "model.msen.intgemm.alphas.bin",
+ "schema": 1752163411208,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "ms",
+ "attachment": {
+ "hash": "db5c9415591f8a35c5c72046227b9c9398acade5df8afb5e6ac9f11f7d6650d5",
+ "size": 17141051,
+ "filename": "model.msen.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/d15b2c97-ea4c-4ee0-b8de-19550aa55401.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "2a83ca26-4472-4e52-b722-f78f90d8a3b6",
+ "last_modified": 1752166375539
+ },
+ {
+ "name": "vocab.sqen.spm",
+ "schema": 1752163400138,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "sq",
+ "attachment": {
+ "hash": "6b7ce057b54ed983eb47087254ea8673e20a857739fc5b57874c80c3301bb91d",
+ "size": 820200,
+ "filename": "vocab.sqen.spm",
+ "location": "main-workspace/translations-models/2504afd7-d9b1-4a11-85be-2162c0bee6ea.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "",
+ "id": "6b4e41ac-511a-4b27-a164-3d95ca67536c",
+ "last_modified": 1752166375534
+ },
+ {
+ "name": "model.teen.intgemm.alphas.bin",
+ "schema": 1752163386699,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "te",
+ "attachment": {
+ "hash": "e2ec7b13ba6148eba309244ee17dc935f1b71e95bbf57154216f6247877abb7e",
+ "size": 17141051,
+ "filename": "model.teen.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/20200b20-2ee3-4fc4-ae89-52e045ebdad0.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "a7b7176e-6180-4407-8c27-545d26249deb",
+ "last_modified": 1752166375530
+ },
+ {
+ "name": "model.enbn.intgemm.alphas.bin",
+ "schema": 1752163380048,
+ "toLang": "bn",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "b63c8d5f8fdc1fcb8bbb2d20c751faab94af67ee1822427665119c93a11f6596",
+ "size": 17141051,
+ "filename": "model.enbn.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/9a2075cf-632f-4ecb-80ab-3d35a0e400d3.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "703c603b-9d03-4829-ac14-38a0a58b7a90",
+ "last_modified": 1752166375526
+ },
+ {
+ "name": "lex.50.50.enfa.s2t.bin",
+ "schema": 1752163371308,
+ "toLang": "fa",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "8542e7fb2bfa3a11b89f8392b8adb0dbbf863cd34569488b7c4535a91c3ae6b4",
+ "size": 3631332,
+ "filename": "lex.50.50.enfa.s2t.bin",
+ "location": "main-workspace/translations-models/6969970f-6904-42ee-8c60-03041edaeec4.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "af2960ad-c056-417c-80ba-71c8cc8fc5a8",
+ "last_modified": 1752166375521
+ },
+ {
+ "name": "vocab.engu.spm",
+ "schema": 1752163361179,
+ "toLang": "gu",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "74ce11b041bfc527eedded78594498419c781c81a3fcb3384a3485af70cc2325",
+ "size": 965095,
+ "filename": "vocab.engu.spm",
+ "location": "main-workspace/translations-models/1aca3a35-aa44-4893-a1da-355b5a4108bf.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "",
+ "id": "2b00169f-512d-4e35-a4c0-80420f154cb7",
+ "last_modified": 1752166375516
+ },
+ {
+ "name": "vocab.enbn.spm",
+ "schema": 1752163378142,
+ "toLang": "bn",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "8895bebb290adc2a5ef46710d81be13d341883a8c6c233e0c060f968df0deef4",
+ "size": 981226,
+ "filename": "vocab.enbn.spm",
+ "location": "main-workspace/translations-models/63327f5f-9489-4757-a90a-a0f2b43f78e1.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "",
+ "id": "75e40d9e-8021-4ab8-b7fb-ea84c83fa489",
+ "last_modified": 1752166375512
+ },
+ {
+ "name": "vocab.enfa.spm",
+ "schema": 1752163364925,
+ "toLang": "fa",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "6435d3d9d766159fe192ab90892540b438ad7adb7ab4ea4049f68d0b4cdea3bd",
+ "size": 843133,
+ "filename": "vocab.enfa.spm",
+ "location": "main-workspace/translations-models/8a7e0858-b4e5-4637-8937-5dc449ae4062.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "",
+ "id": "38da8739-1789-4a60-947b-1836fa271d2f",
+ "last_modified": 1752166375508
+ },
+ {
+ "name": "model.enfa.intgemm.alphas.bin",
+ "schema": 1752163366667,
+ "toLang": "fa",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "456ad3952bcc59d208c76baba4dcef340ee4239416bd760d6fec27f9a16228f8",
+ "size": 17141051,
+ "filename": "model.enfa.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/6abde251-f3c8-4c25-8d7d-66b54525a932.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "04c1d669-13c5-4a33-ae09-f78e28a6c2ee",
+ "last_modified": 1752166375503
+ },
+ {
+ "name": "lex.50.50.sqen.s2t.bin",
+ "schema": 1752163406615,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "sq",
+ "attachment": {
+ "hash": "b2f51df0bc14b9f89a29d39652a80167ef413eb1579957ecea825cb0a7575c60",
+ "size": 4256516,
+ "filename": "lex.50.50.sqen.s2t.bin",
+ "location": "main-workspace/translations-models/5b825230-e17e-4749-baf6-b9bbdc0e95c8.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "8428a841-2a5a-4cd0-bb53-408cbe0552ab",
+ "last_modified": 1752166375498
+ },
+ {
+ "name": "vocab.enhe.spm",
+ "schema": 1752163350221,
+ "toLang": "he",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "672b334afa84011200fdaee02c2fc7810910c35ae9ea7619be073c851703ce9e",
+ "size": 845017,
+ "filename": "vocab.enhe.spm",
+ "location": "main-workspace/translations-models/bf209be5-23fb-476e-91dc-ad902de664a1.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "",
+ "id": "accfdd19-7535-4bce-b777-772d9260209f",
+ "last_modified": 1752166375494
+ },
+ {
+ "name": "vocab.teen.spm",
+ "schema": 1752163396431,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "te",
+ "attachment": {
+ "hash": "dd57e1d68316ae32f9ba3f77223f317ce39cd1ef72e69e6b06b7c1d1ba954052",
+ "size": 1056197,
+ "filename": "vocab.teen.spm",
+ "location": "main-workspace/translations-models/f06f79ff-a591-47ef-aa99-4ce0dbacc222.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "",
+ "id": "995d4642-45c0-4ac9-b5e0-9f1fcd922c14",
+ "last_modified": 1752166375489
+ },
+ {
+ "name": "model.enhe.intgemm.alphas.bin",
+ "schema": 1752163345595,
+ "toLang": "he",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "e37ac6e6f131704c85deb94a657aa20afbb44db2879f44aec9c33a34f4467587",
+ "size": 17141051,
+ "filename": "model.enhe.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/507ad0e2-1a10-419f-867c-04bb09c4566b.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "0525189d-ea12-4c5b-a1e4-da63f1118e80",
+ "last_modified": 1752166375484
+ },
+ {
+ "name": "model.enhi.intgemm.alphas.bin",
+ "schema": 1752163336635,
+ "toLang": "hi",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "18682fa6aa1c1b2f78a6fcbcb354755094d623e65436ef7821720c5213e11a49",
+ "size": 17141051,
+ "filename": "model.enhi.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/32ad63e2-0283-4c87-8fa8-d843c322c87b.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "28449dc2-5f2d-4349-8960-c4e05d4132f9",
+ "last_modified": 1752166375480
+ },
+ {
+ "name": "lex.50.50.enhi.s2t.bin",
+ "schema": 1752163334213,
+ "toLang": "hi",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "b473f6fe41cdb7c1dbeeb714fc50314feab77b0af2b2da6f7830ee14492dd847",
+ "size": 3504820,
+ "filename": "lex.50.50.enhi.s2t.bin",
+ "location": "main-workspace/translations-models/e69b3f71-49b1-4e61-83f5-2abf46666476.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "5f2ac102-e07d-4ae5-bf6f-019815002307",
+ "last_modified": 1752166375475
+ },
+ {
+ "name": "vocab.enkn.spm",
+ "schema": 1752163328725,
+ "toLang": "kn",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "1d41f1f6b67a8c29fa3aabbc7758b766bdd9acdbeec7d1277ab60c8e492c8b7a",
+ "size": 1065180,
+ "filename": "vocab.enkn.spm",
+ "location": "main-workspace/translations-models/5999f7f2-21e7-439e-bf95-f8a1926ea499.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "",
+ "id": "dc254eda-1ce5-4ab4-966e-2b81768efc38",
+ "last_modified": 1752166375470
+ },
+ {
+ "name": "model.enkn.intgemm.alphas.bin",
+ "schema": 1752163324013,
+ "toLang": "kn",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "17a5ddc86e24f62c04aa15272930275812b5c1674bec50a877528680d5834d2d",
+ "size": 17141051,
+ "filename": "model.enkn.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/5f0a491a-4a14-4591-b1a6-0a442f4e5ad5.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "e4718626-840b-429a-a3b3-734ada33ab78",
+ "last_modified": 1752166375465
+ },
+ {
+ "name": "lex.50.50.enkn.s2t.bin",
+ "schema": 1752163321697,
+ "toLang": "kn",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "94b660f37c9c29a904b48498a7202846faaeef16f30668f356336c29cefc0f63",
+ "size": 2808304,
+ "filename": "lex.50.50.enkn.s2t.bin",
+ "location": "main-workspace/translations-models/a77bf1a9-68fc-4331-8b9d-9cb918ff0e8b.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "0a7d2f0c-fb32-479e-b752-43da2e3e48d8",
+ "last_modified": 1752166375461
+ },
+ {
+ "name": "model.enml.intgemm.alphas.bin",
+ "schema": 1752163312940,
+ "toLang": "ml",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "c461749c8315f6417104cf4df32e5063e86cb101203f9629512294c1c8ab5337",
+ "size": 17141051,
+ "filename": "model.enml.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/061d2693-671d-448f-87a7-7fe7c2332180.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "66b6aa42-51cb-49a9-abb5-d70b65f33861",
+ "last_modified": 1752166375456
+ },
+ {
+ "name": "model.enms.intgemm.alphas.bin",
+ "schema": 1752163304600,
+ "toLang": "ms",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "3d6961462ffa711413d513624d7e6399b3560c2b0994daa73b0a45699e657af8",
+ "size": 17141051,
+ "filename": "model.enms.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/c389f1da-0c97-47d5-adc3-6ceaa0c4af07.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "9a7f435e-7ee9-46ef-aaaa-91a1972a54df",
+ "last_modified": 1752166375452
+ },
+ {
+ "name": "lex.50.50.enms.s2t.bin",
+ "schema": 1752163301985,
+ "toLang": "ms",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "be8fec4866c9ed2cf669adaea2e259c4c22f34838032eb0ee117c10fcb968c4c",
+ "size": 3936428,
+ "filename": "lex.50.50.enms.s2t.bin",
+ "location": "main-workspace/translations-models/2db20d9c-6a6c-4d0a-b909-1763b402e064.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "9b3f1e1f-4822-40a2-a6cf-ebca23e5b286",
+ "last_modified": 1752166375445
+ },
+ {
+ "name": "lex.50.50.enbn.s2t.bin",
+ "schema": 1752163375725,
+ "toLang": "bn",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "74ad4234a0a9cf57b21d99b34fefc14f7c731d7e76da7940eb0155c13a234b5e",
+ "size": 3207488,
+ "filename": "lex.50.50.enbn.s2t.bin",
+ "location": "main-workspace/translations-models/e9b2433f-8399-4384-a6e6-6fd503486072.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "76d64cdc-b2b3-485a-9985-dd13e46c83d1",
+ "last_modified": 1752166375440
+ },
+ {
+ "name": "lex.50.50.enhe.s2t.bin",
+ "schema": 1752163343255,
+ "toLang": "he",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "8795f4c5e19b4a196c9ed394c275a28a09e5ddbbf47ae16faa4446bf2b8bc7d9",
+ "size": 3066048,
+ "filename": "lex.50.50.enhe.s2t.bin",
+ "location": "main-workspace/translations-models/31eb1832-fdd0-41f2-91f6-355866dd4232.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "3c8eccdb-bbf9-4f3c-aa2f-d2d8eb66b69b",
+ "last_modified": 1752166375435
+ },
+ {
+ "name": "model.enta.intgemm.alphas.bin",
+ "schema": 1752163293649,
+ "toLang": "ta",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "8c7d9ba830c15e2ba89a70307f301a62b7b2a51ae1e9f9a3938843eaa875af3d",
+ "size": 17141051,
+ "filename": "model.enta.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/89d6d4f0-53ee-4a28-8902-b4599fb4713b.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "b7fdbdd1-82dd-44b1-8aab-b66c76a779a8",
+ "last_modified": 1752166375431
+ },
+ {
+ "name": "vocab.enml.spm",
+ "schema": 1752163311125,
+ "toLang": "ml",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "8282614894087e4ffab325cbdb3aeeba35677f770ef8f253c189b392fe1f4d52",
+ "size": 1109000,
+ "filename": "vocab.enml.spm",
+ "location": "main-workspace/translations-models/8bd87d61-2179-402f-b6c4-314a3e750812.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "",
+ "id": "8d838a4a-b705-4daa-907c-4f20559d31f6",
+ "last_modified": 1752166375426
+ },
+ {
+ "name": "lex.50.50.enml.s2t.bin",
+ "schema": 1752163317547,
+ "toLang": "ml",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "4a37286742244a130548b79823c9707bc0e56f373361e2cb56402f82e862c2b0",
+ "size": 2532960,
+ "filename": "lex.50.50.enml.s2t.bin",
+ "location": "main-workspace/translations-models/2de144bc-7239-482c-9df0-f5c3135a7e6d.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "75c8287c-bbde-4d48-9c94-bfef278d0fc3",
+ "last_modified": 1752166375422
+ },
+ {
+ "name": "model.ente.intgemm.alphas.bin",
+ "schema": 1752163281039,
+ "toLang": "te",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "a3fee2fcd39df975da28666c536adff60147dce59062fca6097bb42fb2a52500",
+ "size": 17141051,
+ "filename": "model.ente.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/ed071e54-c2ea-4f38-bbcc-1d6908c50b78.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "33746abc-3507-491f-9dde-9b8592ba71ae",
+ "last_modified": 1752166375417
+ },
+ {
+ "name": "vocab.enhi.spm",
+ "schema": 1752163332467,
+ "toLang": "hi",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "8017cbf812bae400794c424699b89de90db06ac7a4ca67a420013a9f68b270c1",
+ "size": 925360,
+ "filename": "vocab.enhi.spm",
+ "location": "main-workspace/translations-models/5d4cb145-1f61-4913-973f-d7643c06b917.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "",
+ "id": "18ec51e4-2067-46fc-9956-cf5fc58e041a",
+ "last_modified": 1752166375413
+ },
+ {
+ "name": "lex.50.50.engu.s2t.bin",
+ "schema": 1752163358801,
+ "toLang": "gu",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "5699d5f0f6265766c57e8e860596091d16a7ea68e9e181a3310b8b52d79f8b5e",
+ "size": 3179500,
+ "filename": "lex.50.50.engu.s2t.bin",
+ "location": "main-workspace/translations-models/5b0e3636-9bdd-4997-9a67-7eb67308e22d.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "016717fb-423f-4b2a-84c3-9fc2bd39d927",
+ "last_modified": 1752166375409
+ },
+ {
+ "name": "lex.50.50.ente.s2t.bin",
+ "schema": 1752163278710,
+ "toLang": "te",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "ea44d146f6b4614586654d91d7b677ee617e2367be2eccd72e81aa0fa359b92c",
+ "size": 2832156,
+ "filename": "lex.50.50.ente.s2t.bin",
+ "location": "main-workspace/translations-models/765d3164-3fe7-4a90-add7-358e799097e4.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "d08faeee-f46a-4d23-847b-6e3ea2075e90",
+ "last_modified": 1752166375404
+ },
+ {
+ "name": "model.engu.intgemm.alphas.bin",
+ "schema": 1752163353858,
+ "toLang": "gu",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "0f2c8bc7f13ecb9b89459e8fd9af6d8736e0f6b1c8f8a80f747fcdc030d0a588",
+ "size": 17141051,
+ "filename": "model.engu.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/a2576987-0797-4a60-a266-5f155d067135.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "8ff91363-fbe9-4dd8-a8a0-933255ca3e0c",
+ "last_modified": 1752166375400
+ },
+ {
+ "name": "vocab.enta.spm",
+ "schema": 1752163289425,
+ "toLang": "ta",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "52a02652818903c82d4f2dd680aa89ee8993eaad40c04d3496ef119cb75fb710",
+ "size": 1090089,
+ "filename": "vocab.enta.spm",
+ "location": "main-workspace/translations-models/ea9b0dfd-c425-4f75-af1e-f188abbb6b6b.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "",
+ "id": "9d0bfad6-ca90-4f81-b2bf-282ff052e4d0",
+ "last_modified": 1752166375396
+ },
+ {
+ "name": "vocab.enms.spm",
+ "schema": 1752163300214,
+ "toLang": "ms",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "c1f182330fb8c80778da36dd6e5bde59464db2390f623ea62817081cc759695a",
+ "size": 802440,
+ "filename": "vocab.enms.spm",
+ "location": "main-workspace/translations-models/136a7b29-aea9-483d-b96d-2683a55ecdb3.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "",
+ "id": "446ede20-c269-4866-9abd-7643f55883bc",
+ "last_modified": 1752166375391
+ },
+ {
+ "name": "lex.50.50.enta.s2t.bin",
+ "schema": 1752163291255,
+ "toLang": "ta",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "1c8a503dd72f1c59e0ee0a231bda8acfba510e38f767039c1daedf21d2e84fc4",
+ "size": 2862696,
+ "filename": "lex.50.50.enta.s2t.bin",
+ "location": "main-workspace/translations-models/98f1c06f-afa9-48ca-849f-2cda25c5fe41.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "",
+ "id": "a24a166e-8c25-4b60-b3bf-26a2bfbe9f97",
+ "last_modified": 1752166375386
+ },
+ {
+ "name": "vocab.ente.spm",
+ "schema": 1752163285663,
+ "toLang": "te",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "41d0828d103a07e0608c604102ba4418fcb06e82b3742c1abc6d3ec343673e93",
+ "size": 1056424,
+ "filename": "vocab.ente.spm",
+ "location": "main-workspace/translations-models/2856b6b5-b3ef-4032-b2b3-f8923450de91.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "",
+ "id": "1ecbe8b9-0406-43c7-8010-5bb443ed3009",
+ "last_modified": 1752166375382
+ },
+ {
+ "name": "vocab.ensq.spm",
+ "schema": 1751566636768,
+ "toLang": "sq",
+ "version": "1.0a",
+ "fileType": "vocab",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "f27814dffca6102255ed7a338f2a83c16905a07e09444016187c768aaf9ac7b6",
+ "size": 820048,
+ "filename": "vocab.ensq.spm",
+ "location": "main-workspace/translations-models/a8077b3c-d0de-41d7-bdba-920649969bd6.spm",
+ "mimetype": "text/plain"
+ },
+ "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
+ "id": "c7341cfe-457e-4321-a4c6-d516d537f95e",
+ "last_modified": 1751570512446
+ },
+ {
+ "name": "model.ensq.intgemm.alphas.bin",
+ "schema": 1751566631555,
+ "toLang": "sq",
+ "version": "1.0a",
+ "fileType": "model",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "8a90d17ab2798509e639e544caa1d577f7cf87c31b9ab7e53890c8d1d59b6eee",
+ "size": 17141051,
+ "filename": "model.ensq.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/c0e6c2d8-c6c4-43d5-b3b7-3a4904e4dbaa.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
+ "id": "f160a196-89d5-4397-9d5e-35eb3fa33f19",
+ "last_modified": 1751570512442
+ },
+ {
+ "name": "lex.50.50.ensq.s2t.bin",
+ "schema": 1751566638522,
+ "toLang": "sq",
+ "version": "1.0a",
+ "fileType": "lex",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "c901d1f5910315e0791720fa6f1275d79565e59d85013cf66b2f98cd9ba58ce1",
+ "size": 3303648,
+ "filename": "lex.50.50.ensq.s2t.bin",
+ "location": "main-workspace/translations-models/bbf53ab4-6c58-4752-8ea1-3baea56e2123.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
+ "id": "e4bdab3f-46bd-4788-8b8d-3c56050341b5",
+ "last_modified": 1751570512429
+ },
{
"name": "vocab.taen.spm",
"schema": 1749753255326,
@@ -18,186 +1152,6 @@
"id": "691fba45-ba5e-493f-892f-243a354fa9ee",
"last_modified": 1749763158840
},
- {
- "name": "lex.50.50.teen.s2t.bin",
- "schema": 1749753270824,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "lex",
- "fromLang": "te",
- "attachment": {
- "hash": "5df84ca17e4cc76a73ef7d93f94f53a89f37a11a456f2b6373ff19c4ce4ef964",
- "size": 4815756,
- "filename": "lex.50.50.teen.s2t.bin",
- "location": "main-workspace/translations-models/98fdf53d-e127-4660-ba23-30ee74488555.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "bd7a44e1-2aa1-4ec4-89e8-4b6f96ea5cc8",
- "last_modified": 1749763158836
- },
- {
- "name": "vocab.teen.spm",
- "schema": 1749753276012,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "vocab",
- "fromLang": "te",
- "attachment": {
- "hash": "dd57e1d68316ae32f9ba3f77223f317ce39cd1ef72e69e6b06b7c1d1ba954052",
- "size": 1056197,
- "filename": "vocab.teen.spm",
- "location": "main-workspace/translations-models/6e97bb13-628b-436b-8989-22d8d78b48f6.spm",
- "mimetype": "text/plain"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "d6b10c75-e81b-40db-b114-eaa502075dec",
- "last_modified": 1749763158832
- },
- {
- "name": "model.teen.intgemm.alphas.bin",
- "schema": 1749753261750,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "model",
- "fromLang": "te",
- "attachment": {
- "hash": "e2ec7b13ba6148eba309244ee17dc935f1b71e95bbf57154216f6247877abb7e",
- "size": 17141051,
- "filename": "model.teen.intgemm.alphas.bin",
- "location": "main-workspace/translations-models/4da404ea-35a7-4d4e-b9f6-92f61a51f1d2.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "f22c46c9-ac82-4ebc-a308-89ad29019e3a",
- "last_modified": 1749763158827
- },
- {
- "name": "model.sqen.intgemm.alphas.bin",
- "schema": 1749753226619,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "model",
- "fromLang": "sq",
- "attachment": {
- "hash": "4b0ce319e7c8f7e1836ce18cb6522c83268e8cff54f2a7f5dcef270250a44475",
- "size": 17141051,
- "filename": "model.sqen.intgemm.alphas.bin",
- "location": "main-workspace/translations-models/a5e56b67-8112-4dac-becd-c405eae3d432.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "357ed916-dc49-4962-9a9f-11413da95d06",
- "last_modified": 1749763158824
- },
- {
- "name": "vocab.sqen.spm",
- "schema": 1749753224822,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "vocab",
- "fromLang": "sq",
- "attachment": {
- "hash": "6b7ce057b54ed983eb47087254ea8673e20a857739fc5b57874c80c3301bb91d",
- "size": 820200,
- "filename": "vocab.sqen.spm",
- "location": "main-workspace/translations-models/a8343678-068f-4ab7-94f5-290a178b14f6.spm",
- "mimetype": "text/plain"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "cb713655-7142-4c0a-8ffd-dba8ed9e4e2c",
- "last_modified": 1749763158820
- },
- {
- "name": "lex.50.50.msen.s2t.bin",
- "schema": 1749753213285,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "lex",
- "fromLang": "ms",
- "attachment": {
- "hash": "1ef575be54a310eeace84c52e609f2a8c292f3c4b170376ee6ee3524c0c30316",
- "size": 4371896,
- "filename": "lex.50.50.msen.s2t.bin",
- "location": "main-workspace/translations-models/ad6ea3a0-a9f1-4196-8b32-26b39bd24139.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "e3962239-d573-4ffb-b576-677d4e2ad7df",
- "last_modified": 1749763158816
- },
- {
- "name": "model.mlen.intgemm.alphas.bin",
- "schema": 1749753176800,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "model",
- "fromLang": "ml",
- "attachment": {
- "hash": "5480719a5a8ac43acdf28db1c89a4d60837a475e1120ea0c4e021c4d5b7e6fd6",
- "size": 17141051,
- "filename": "model.mlen.intgemm.alphas.bin",
- "location": "main-workspace/translations-models/07214006-5c41-4381-9dfb-53bfaa7d83e1.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "34f0a99c-8a02-4710-af02-a126b99f8fcc",
- "last_modified": 1749763158812
- },
- {
- "name": "vocab.msen.spm",
- "schema": 1749753207781,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "vocab",
- "fromLang": "ms",
- "attachment": {
- "hash": "6db8c20803d5f9c9fff2b6c3950f5bda4a9fa14aaef1d92818f8a3d53fd850f9",
- "size": 802191,
- "filename": "vocab.msen.spm",
- "location": "main-workspace/translations-models/52efac0e-1d7f-40f8-b86c-28af54a67c0b.spm",
- "mimetype": "text/plain"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "29af3cad-7ad3-4e59-9dd4-0f801a014916",
- "last_modified": 1749763158808
- },
- {
- "name": "lex.50.50.mlen.s2t.bin",
- "schema": 1749753184285,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "lex",
- "fromLang": "ml",
- "attachment": {
- "hash": "afb882ad10c9540c12fa105e1e5418a54ec8117f11c4f17d998adf1d445e308c",
- "size": 5017972,
- "filename": "lex.50.50.mlen.s2t.bin",
- "location": "main-workspace/translations-models/46e98e03-90c5-4d64-b283-c389213b3b3f.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "d42d8b81-7c7a-4f58-ba4b-cf2ffbc6d0bb",
- "last_modified": 1749763158804
- },
- {
- "name": "lex.50.50.knen.s2t.bin",
- "schema": 1749753168050,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "lex",
- "fromLang": "kn",
- "attachment": {
- "hash": "aa50a74f15e9ef8cf27a5b905c17037bd9d67883afde71b34c4138f9507fedfc",
- "size": 4655776,
- "filename": "lex.50.50.knen.s2t.bin",
- "location": "main-workspace/translations-models/f485d838-fabe-4941-92e4-ffaf48cf2a8f.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "b3aa4ff2-0f99-4450-9059-1aba29a9bd1c",
- "last_modified": 1749763158800
- },
{
"name": "lex.50.50.taen.s2t.bin",
"schema": 1749753243786,
@@ -216,168 +1170,6 @@
"id": "42dd3650-4058-4f31-9049-96117615f612",
"last_modified": 1749763158795
},
- {
- "name": "model.knen.intgemm.alphas.bin",
- "schema": 1749753156646,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "model",
- "fromLang": "kn",
- "attachment": {
- "hash": "49e8d3bd794b098047f7b177d9d0e6d3e49ac798c2b75bc132149cb46c5bfbfd",
- "size": 17141051,
- "filename": "model.knen.intgemm.alphas.bin",
- "location": "main-workspace/translations-models/73d23f4e-bbea-40c8-a3e8-68d99b09659a.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "cd516b7f-8c73-402d-b56d-83508c82f062",
- "last_modified": 1749763158791
- },
- {
- "name": "vocab.knen.spm",
- "schema": 1749753149568,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "vocab",
- "fromLang": "kn",
- "attachment": {
- "hash": "d729397a42dba5801f330927a9956527161d6e0711b59fcea7cd2e862e6f36cc",
- "size": 1065636,
- "filename": "vocab.knen.spm",
- "location": "main-workspace/translations-models/ca223543-b63b-42c5-ac23-39e029ed9ff9.spm",
- "mimetype": "text/plain"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "c6dfbb9e-fd0d-410d-8f58-02948f3f3b75",
- "last_modified": 1749763158788
- },
- {
- "name": "vocab.heen.spm",
- "schema": 1749753091196,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "vocab",
- "fromLang": "he",
- "attachment": {
- "hash": "45f5d413b9208c5f24340ab0e20a63604a572784d289baa2d788deea946f79a2",
- "size": 845177,
- "filename": "vocab.heen.spm",
- "location": "main-workspace/translations-models/d8763d8c-981d-4760-84b4-d9aae981f552.spm",
- "mimetype": "text/plain"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "0a072a04-bd93-447a-bd48-1708a3046ac0",
- "last_modified": 1749763158784
- },
- {
- "name": "vocab.mlen.spm",
- "schema": 1749753174908,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "vocab",
- "fromLang": "ml",
- "attachment": {
- "hash": "c6b2150c85a18cae437d4e7245ef29d4b3629b2c611fce812d115a59c3b80efe",
- "size": 1109047,
- "filename": "vocab.mlen.spm",
- "location": "main-workspace/translations-models/53b21dcf-e98a-4781-a519-f3ac93cbca56.spm",
- "mimetype": "text/plain"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "565900e5-8ae1-482b-a893-4975439e6ff1",
- "last_modified": 1749763158780
- },
- {
- "name": "lex.50.50.hien.s2t.bin",
- "schema": 1749753113537,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "lex",
- "fromLang": "hi",
- "attachment": {
- "hash": "e789be33dfdb639e98f5cf9eb01aa945ec3c882f68f3c8860389cf846f0112d8",
- "size": 4605984,
- "filename": "lex.50.50.hien.s2t.bin",
- "location": "main-workspace/translations-models/d4a9b49e-6983-462d-ad30-3c85bf38f994.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "e5ae6eff-6f9f-4f16-a50c-e8e01f356493",
- "last_modified": 1749763158775
- },
- {
- "name": "lex.50.50.heen.s2t.bin",
- "schema": 1749753076310,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "lex",
- "fromLang": "he",
- "attachment": {
- "hash": "427c88732cb93b28d2a947cace79f62aabceb7d6f4438516e85994b14a73b68e",
- "size": 4636028,
- "filename": "lex.50.50.heen.s2t.bin",
- "location": "main-workspace/translations-models/e36f37da-3fd5-47a2-9599-4601c564c4b8.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "a3d0a2be-84d7-4a95-9f9c-f66eed3b348e",
- "last_modified": 1749763158772
- },
- {
- "name": "model.msen.intgemm.alphas.bin",
- "schema": 1749753194855,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "model",
- "fromLang": "ms",
- "attachment": {
- "hash": "db5c9415591f8a35c5c72046227b9c9398acade5df8afb5e6ac9f11f7d6650d5",
- "size": 17141051,
- "filename": "model.msen.intgemm.alphas.bin",
- "location": "main-workspace/translations-models/13b6eb80-0381-4ec8-a9bf-a22e8f637d6c.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "d647563b-5665-41bb-8a99-99884f0ae6d7",
- "last_modified": 1749763158768
- },
- {
- "name": "vocab.hien.spm",
- "schema": 1749753126053,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "vocab",
- "fromLang": "hi",
- "attachment": {
- "hash": "9cbc02094ac2ebd75211b3bb6789a9d6fa112ce3c08e897f1645f18b21fbab00",
- "size": 925436,
- "filename": "vocab.hien.spm",
- "location": "main-workspace/translations-models/68175768-57b1-41b0-8c19-0452ce7739a1.spm",
- "mimetype": "text/plain"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "98bcc4a1-bf6d-45ce-92d3-c9b7285bfc1d",
- "last_modified": 1749763158763
- },
- {
- "name": "model.hien.intgemm.alphas.bin",
- "schema": 1749753134073,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "model",
- "fromLang": "hi",
- "attachment": {
- "hash": "c82fd6ed3794b79fb9dde0718a22324502a408a9eca73497b5d0a4b8024ec6de",
- "size": 17141051,
- "filename": "model.hien.intgemm.alphas.bin",
- "location": "main-workspace/translations-models/326f47ef-713c-490e-861b-329d2c49bf5b.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "e078e614-1ec4-4e6e-9017-1a4fd408e9f9",
- "last_modified": 1749763158759
- },
{
"name": "model.taen.intgemm.alphas.bin",
"schema": 1749753239190,
@@ -396,96 +1188,6 @@
"id": "4b9ab2d8-9a43-488a-928e-81c05289c664",
"last_modified": 1749763158755
},
- {
- "name": "vocab.guen.spm",
- "schema": 1749753060402,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "vocab",
- "fromLang": "gu",
- "attachment": {
- "hash": "6ad2aa442cc04398bd06b4f03a1027939bbfbaac5f87b3d21f667406f4f62704",
- "size": 965143,
- "filename": "vocab.guen.spm",
- "location": "main-workspace/translations-models/34bb63b0-df14-4559-9e50-b25b1efe637c.spm",
- "mimetype": "text/plain"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "cde46d8f-44ae-4022-8946-8478a82391be",
- "last_modified": 1749763158751
- },
- {
- "name": "model.guen.intgemm.alphas.bin",
- "schema": 1749753050833,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "model",
- "fromLang": "gu",
- "attachment": {
- "hash": "7b16e4e64f2776c73d87db01922c091738566b6a6092a42488cbaee1385cb4ab",
- "size": 17141051,
- "filename": "model.guen.intgemm.alphas.bin",
- "location": "main-workspace/translations-models/cbaf363f-9dde-44a3-a823-9cb19d6352f3.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "42ed7111-7782-4bcc-92f5-9f50559b6864",
- "last_modified": 1749763158747
- },
- {
- "name": "vocab.faen.spm",
- "schema": 1749753026375,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "vocab",
- "fromLang": "fa",
- "attachment": {
- "hash": "bf36943053883d6c0fc98c2985f676a0a37042e796bad0e3df0a813d9d5393f4",
- "size": 843153,
- "filename": "vocab.faen.spm",
- "location": "main-workspace/translations-models/4ea142e8-a1cb-426f-b6a8-f7f54243687d.spm",
- "mimetype": "text/plain"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "13fc7343-deaf-4b5c-9eca-3101c7676670",
- "last_modified": 1749763158742
- },
- {
- "name": "lex.50.50.faen.s2t.bin",
- "schema": 1749753021839,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "lex",
- "fromLang": "fa",
- "attachment": {
- "hash": "4828cb060bd4375f8aabb85fed39c18aca52b738838394546f2ddbf707a6f28e",
- "size": 3896420,
- "filename": "lex.50.50.faen.s2t.bin",
- "location": "main-workspace/translations-models/068a04a5-309c-4d1d-9439-85d7aa4c3b9f.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "30e32fbb-3208-4e25-9ed1-ebeffe480a02",
- "last_modified": 1749763158738
- },
- {
- "name": "model.faen.intgemm.alphas.bin",
- "schema": 1749753031989,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "model",
- "fromLang": "fa",
- "attachment": {
- "hash": "aa326306c177e11129de5bfeba518abc499c0b6005492766748a9c9ea6f4c712",
- "size": 17141051,
- "filename": "model.faen.intgemm.alphas.bin",
- "location": "main-workspace/translations-models/93fc8636-d370-4685-b50a-78fdc3d4249a.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "744e8563-9ba2-400b-a5a6-af25285e422d",
- "last_modified": 1749763158734
- },
{
"name": "vocab.bnen.spm",
"schema": 1749753013743,
@@ -558,24 +1260,6 @@
"id": "fa57549a-984a-45ad-866e-a2bf5ee19301",
"last_modified": 1749763158717
},
- {
- "name": "lex.50.50.sqen.s2t.bin",
- "schema": 1749753233914,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "lex",
- "fromLang": "sq",
- "attachment": {
- "hash": "b2f51df0bc14b9f89a29d39652a80167ef413eb1579957ecea825cb0a7575c60",
- "size": 4256516,
- "filename": "lex.50.50.sqen.s2t.bin",
- "location": "main-workspace/translations-models/687e523f-0fb9-4c7e-aded-916bde7dc37b.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "f4cf6c4c-fae3-42ca-944b-856c7852a4c0",
- "last_modified": 1749763158713
- },
{
"name": "model.azen.intgemm.alphas.bin",
"schema": 1749752948441,
@@ -648,24 +1332,6 @@
"id": "35f660be-8ef2-4fc8-8887-8ddebae1330e",
"last_modified": 1749763158697
},
- {
- "name": "model.heen.intgemm.alphas.bin",
- "schema": 1749753065174,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "model",
- "fromLang": "he",
- "attachment": {
- "hash": "7291cab3ec483b8cf524da96201fe947dca8c550132be21a06badeb946b5c079",
- "size": 17141051,
- "filename": "model.heen.intgemm.alphas.bin",
- "location": "main-workspace/translations-models/02c0b84f-b805-4a21-922c-95afb98cb232.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "6dc4089a-6b4f-4360-9ffe-edf2d98bba42",
- "last_modified": 1749763158693
- },
{
"name": "model.been.intgemm.alphas.bin",
"schema": 1749752973572,
@@ -684,24 +1350,6 @@
"id": "30340fd1-af12-4733-96c8-0e3563af391a",
"last_modified": 1749763158689
},
- {
- "name": "lex.50.50.guen.s2t.bin",
- "schema": 1749753055756,
- "toLang": "en",
- "version": "2.0a1",
- "fileType": "lex",
- "fromLang": "gu",
- "attachment": {
- "hash": "af01dbec5a1555ddad7c4b19878ecda00e6f9d179ca76a40ab2413de6b081cb0",
- "size": 4197836,
- "filename": "lex.50.50.guen.s2t.bin",
- "location": "main-workspace/translations-models/a3467837-e67e-46c3-9600-4cf7f3b4bc03.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "c9b2712e-c6c4-448a-88c4-60a67ea9a721",
- "last_modified": 1749763158685
- },
{
"name": "lex.50.50.slen.s2t.bin",
"schema": 1749670783266,
@@ -7501,5 +8149,5 @@
"last_modified": 1701186751412
}
],
- "timestamp": 1749763158840
+ "timestamp": 1752267318690
}
diff --git a/icecat/services/settings/dumps/monitor/changes b/icecat/services/settings/dumps/monitor/changes
index 29bd63b1bc..41ca41cb82 100644
--- a/icecat/services/settings/dumps/monitor/changes
+++ b/icecat/services/settings/dumps/monitor/changes
@@ -1,124 +1,24 @@
{
"changes": [
- {
- "last_modified": 1748485472559,
- "bucket": "blocklists",
- "collection": "gfx"
- },
- {
- "last_modified": 1749818177432,
- "bucket": "blocklists",
- "collection": "addons-bloomfilters"
- },
{
"last_modified": 1604940558744,
"bucket": "blocklists",
"collection": "addons"
},
{
- "last_modified": 1749710045183,
- "bucket": "main",
- "collection": "devtools-compatibility-browsers"
+ "last_modified": 1748485472559,
+ "bucket": "blocklists",
+ "collection": "gfx"
},
{
- "last_modified": 1749153997368,
- "bucket": "main",
- "collection": "search-telemetry-v2"
+ "last_modified": 1752258970807,
+ "bucket": "blocklists",
+ "collection": "addons-bloomfilters"
},
{
- "last_modified": 1544035467383,
- "bucket": "main",
- "collection": "sites-classification"
- },
- {
- "last_modified": 1749069444811,
- "bucket": "main",
- "collection": "translations-wasm"
- },
- {
- "last_modified": 1633983928590,
- "bucket": "main",
- "collection": "top-sites"
- },
- {
- "last_modified": 1745933974542,
- "bucket": "main",
- "collection": "search-config-v2"
- },
- {
- "last_modified": 0,
- "bucket": "main",
- "collection": "search-config-overrides"
- },
- {
- "last_modified": 1725526980846,
- "bucket": "main",
- "collection": "cookie-banner-rules-list"
- },
- {
- "last_modified": 1673270322227,
- "bucket": "main",
- "collection": "language-dictionaries"
- },
- {
- "last_modified": 1749763158840,
- "bucket": "main",
- "collection": "translations-models"
- },
- {
- "last_modified": 1605801189258,
- "bucket": "main",
- "collection": "hijack-blocklists"
- },
- {
- "last_modified": 1739471652383,
- "bucket": "main",
- "collection": "url-classifier-skip-urls"
- },
- {
- "last_modified": 1653469171354,
- "bucket": "main",
- "collection": "devtools-devices"
- },
- {
- "last_modified": 1564511755134,
- "bucket": "main",
- "collection": "anti-tracking-url-decoration"
- },
- {
- "last_modified": 1738775297137,
- "bucket": "main",
- "collection": "websites-with-shared-credential-backends"
- },
- {
- "last_modified": 1754,
- "bucket": "main",
- "collection": "search-config"
- },
- {
- "last_modified": 1743683182607,
- "bucket": "main",
- "collection": "password-rules"
- },
- {
- "last_modified": 1746562822691,
- "bucket": "main",
- "collection": "search-config-icons"
- },
- {
- "last_modified": 0,
- "bucket": "main",
- "collection": "search-config-overrides-v2"
- },
- {
- "last_modified": 1744749743529,
- "bucket": "main",
- "collection": "search-default-override-allowlist"
- },
- {
- "last_modified": 1674595048726,
- "bucket": "main",
- "collection": "password-recipes"
+ "last_modified": 1752159422751,
+ "bucket": "security-state",
+ "collection": "intermediates"
},
{
"last_modified": 1747787134572,
@@ -126,10 +26,110 @@
"collection": "onecrl"
},
{
- "last_modified": 1749221822598,
- "bucket": "security-state",
- "collection": "intermediates"
+ "last_modified": 1752267318690,
+ "bucket": "main",
+ "collection": "translations-models"
+ },
+ {
+ "last_modified": 1743683182607,
+ "bucket": "main",
+ "collection": "password-rules"
+ },
+ {
+ "last_modified": 1751266171953,
+ "bucket": "main",
+ "collection": "devtools-compatibility-browsers"
+ },
+ {
+ "last_modified": 0,
+ "bucket": "main",
+ "collection": "search-config-overrides-v2"
+ },
+ {
+ "last_modified": 1725526980846,
+ "bucket": "main",
+ "collection": "cookie-banner-rules-list"
+ },
+ {
+ "last_modified": 1749069444811,
+ "bucket": "main",
+ "collection": "translations-wasm"
+ },
+ {
+ "last_modified": 1738775297137,
+ "bucket": "main",
+ "collection": "websites-with-shared-credential-backends"
+ },
+ {
+ "last_modified": 1674595048726,
+ "bucket": "main",
+ "collection": "password-recipes"
+ },
+ {
+ "last_modified": 0,
+ "bucket": "main",
+ "collection": "search-config-overrides"
+ },
+ {
+ "last_modified": 1633983928590,
+ "bucket": "main",
+ "collection": "top-sites"
+ },
+ {
+ "last_modified": 1751891587705,
+ "bucket": "main",
+ "collection": "search-telemetry-v2"
+ },
+ {
+ "last_modified": 1564511755134,
+ "bucket": "main",
+ "collection": "anti-tracking-url-decoration"
+ },
+ {
+ "last_modified": 1544035467383,
+ "bucket": "main",
+ "collection": "sites-classification"
+ },
+ {
+ "last_modified": 1653469171354,
+ "bucket": "main",
+ "collection": "devtools-devices"
+ },
+ {
+ "last_modified": 1746562822691,
+ "bucket": "main",
+ "collection": "search-config-icons"
+ },
+ {
+ "last_modified": 1745933974542,
+ "bucket": "main",
+ "collection": "search-config-v2"
+ },
+ {
+ "last_modified": 1756,
+ "bucket": "main",
+ "collection": "search-config"
+ },
+ {
+ "last_modified": 1739471652383,
+ "bucket": "main",
+ "collection": "url-classifier-skip-urls"
+ },
+ {
+ "last_modified": 1744749743529,
+ "bucket": "main",
+ "collection": "search-default-override-allowlist"
+ },
+ {
+ "last_modified": 1605801189258,
+ "bucket": "main",
+ "collection": "hijack-blocklists"
+ },
+ {
+ "last_modified": 1673270322227,
+ "bucket": "main",
+ "collection": "language-dictionaries"
}
],
- "timestamp": 1753
+ "timestamp": 1755
}
\ No newline at end of file
diff --git a/icecat/services/settings/dumps/security-state/intermediates.json b/icecat/services/settings/dumps/security-state/intermediates.json
index 92b292551c..03e83429f7 100644
--- a/icecat/services/settings/dumps/security-state/intermediates.json
+++ b/icecat/services/settings/dumps/security-state/intermediates.json
@@ -1,5 +1,83 @@
{
"data": [
+ {
+ "schema": 1752155863326,
+ "derHash": "dx59bC13t7kOG0/32/6j4a19JJ0Ncp7QRVZ7XBZAknY=",
+ "attachment": {
+ "hash": "1ae45b7b0ceef35190fcbaf30c8b0442d2f2caa0a5519ffff89b9a5152bb84c0",
+ "size": 1305,
+ "filename": "wyPygwouDrmZ9JjrHsSya44hCIbHB0O1i3IMIeU20FE=.pem",
+ "location": "security-state-staging/intermediates/befc0f92-2e21-4ed1-900b-8947f01e7372.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "id": "85d03609-d84b-4554-a164-7d75746b959d",
+ "last_modified": 1752159422751
+ },
+ {
+ "schema": 1752155862293,
+ "derHash": "mAWUbNRs0vIidtRj9YLU6BHuJAJdjBfW7QrOOPc2Z0w=",
+ "attachment": {
+ "hash": "f1280eef8ebc2ff612458b2798279e95d5172d8883a5b646a68b352fbed96f4b",
+ "size": 2109,
+ "filename": "83xSo8lPiDB3NfbtH8Sf6nnd6a_5lf9oOooQ86ca04I=.pem",
+ "location": "security-state-staging/intermediates/74958bc5-8cdf-4aaa-a74a-5f74bcd32b6d.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "id": "77a5b5de-9cfa-4d8b-8f6d-570f0afa4d3c",
+ "last_modified": 1752159422748
+ },
+ {
+ "schema": 1752155864301,
+ "derHash": "Rud26nxsD5HxzeMXVfhkxFphgS8cN47VWU4Tu03mM8M=",
+ "attachment": {
+ "hash": "43be86a2c15a4438f0f6135b49ef56ea9d5ecc5688c3744dddd47258fb6116c1",
+ "size": 2450,
+ "filename": "2PetmpDyIF3lqvSYiYQyKHCHGnW0P7DdIC1MnDREeHc=.pem",
+ "location": "security-state-staging/intermediates/42f7aee8-d33a-445f-871c-affdc0cb6809.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "id": "f9b2d933-0eae-46e6-942a-41244569963a",
+ "last_modified": 1752159422744
+ },
+ {
+ "schema": 1751896661778,
+ "derHash": "EflXHDDC3iMnU9WxWMVPd7CgLf9BcTV1LTLpi4m8lxk=",
+ "attachment": {
+ "hash": "d57e574d55d96c379a3926a86cd251a818034e0950b914ee0955f9f6e52a3c93",
+ "size": 2406,
+ "filename": "i-KvnAmgyN3RFmy3WIX3PLPVfLL7ohyVZ6NMlvZbwME=.pem",
+ "location": "security-state-staging/intermediates/7c7c258a-b262-4f87-a321-3ca974337bb4.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "id": "b08c45a5-1cc0-4c09-afd6-5b60ab026262",
+ "last_modified": 1751900222448
+ },
+ {
+ "schema": 1750730263299,
+ "derHash": "LguEGJ/5dAwUDMfr3aBRosI58d7rEvxMVtvVAPlTmNg=",
+ "attachment": {
+ "hash": "c4d199ed4f7b32cdadcf429f7b1d962e6a3c034fe3b704492b0ac16fcd1b00b2",
+ "size": 1853,
+ "filename": "joN6IPaPB9ALd3OzEFQHSQcSICs0_U_MmT4qcKgSXrc=.pem",
+ "location": "security-state-staging/intermediates/f96f2779-246d-471e-b62b-242743e655e3.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "id": "d58e8eea-15e8-46e4-a20b-aad35a61dfdd",
+ "last_modified": 1750733822397
+ },
+ {
+ "schema": 1750255062558,
+ "derHash": "sOcUWki5+uSkmQcf6cT6WQMt9y51lVsrPvt5WZ5KU+A=",
+ "attachment": {
+ "hash": "f1f67fdd9b44a170657f5ecb602b7115773ba1a9ee24505ac5d702c7bc16a3bb",
+ "size": 2369,
+ "filename": "Vo0kHXgA-__lFjaxinaazmjp6Snzw2dANQzv6YTU5n0=.pem",
+ "location": "security-state-staging/intermediates/1cd9e0f2-1935-4231-ae43-19ac3d9aef8c.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "id": "7422ccce-eccc-4a7f-a6b7-f9481a9c169b",
+ "last_modified": 1750258622612
+ },
{
"schema": 1749218267234,
"derHash": "M7W3wh5mUE/T7mWw/g0SwxdboqYWRBtxM9s8Eja1Xfc=",
@@ -7296,42 +7374,6 @@
"id": "9604f1d4-9179-4db7-a8ef-e1fca8de5e17",
"last_modified": 1704470223072
},
- {
- "schema": 1703537607315,
- "derHash": "ctcW97tr0QVwT0K5UkkjUQ3LhbLYcMDpraWuuclpBRo=",
- "subject": "CN=ePKI Root Certification Authority - G2,O=Chunghwa Telecom Co.\\, Ltd.,C=TW",
- "subjectDN": "MGMxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEvMC0GA1UEAwwmZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzI=",
- "whitelist": false,
- "attachment": {
- "hash": "aff986340dcc592a5eacd96a6044c07f55438a9b0214921ea5306a0ea997fed9",
- "size": 2804,
- "filename": "tInMsiS5prgd0nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=.pem",
- "location": "security-state-staging/intermediates/1cd7753f-d18c-4864-8129-0ea1a5092f75.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "tInMsiS5prgd0nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=",
- "crlite_enrolled": false,
- "id": "4e467304-4cae-4b24-8542-fa721e586cfb",
- "last_modified": 1703537823229
- },
- {
- "schema": 1703537607030,
- "derHash": "aAfJcjXF7GCQJppLX+36tGmG5C9NZ9Lt3c9uRc8N+oA=",
- "subject": "CN=HiPKI Root CA - G1,O=Chunghwa Telecom Co.\\, Ltd.,C=TW",
- "subjectDN": "ME8xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEbMBkGA1UEAwwSSGlQS0kgUm9vdCBDQSAtIEcx",
- "whitelist": false,
- "attachment": {
- "hash": "c94a4c47c3048f75024cf6c844a614b253f7ee3823a41c0e39e567effea001fc",
- "size": 2328,
- "filename": "ecqvU0fm5KlMjniphJb8dAIPgJ7eE_Ig-rYQTI3tMp8=.pem",
- "location": "security-state-staging/intermediates/24d59f73-321d-498a-8fa9-3f4111529687.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "ecqvU0fm5KlMjniphJb8dAIPgJ7eE/Ig+rYQTI3tMp8=",
- "crlite_enrolled": false,
- "id": "64de4f00-ad9d-48db-9d46-2c27c55f4337",
- "last_modified": 1703537823226
- },
{
"schema": 1702979286308,
"derHash": "hHQJ5jUm8WJ1OsSfdSGO+q+n1clK3pCVznLn9rbjrJk=",
@@ -12426,24 +12468,6 @@
"id": "b97451e0-61f4-46a5-908d-5fd947861af6",
"last_modified": 1666727875348
},
- {
- "schema": 1666727336675,
- "derHash": "2uNDT2lvyfD2UuGypvabXpJz0J9DvTvdRxfWFB+M0sI=",
- "subject": "OU=Public Certification Authority - G2,O=Chunghwa Telecom Co.\\, Ltd.,C=TW",
- "subjectDN": "MGAxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEsMCoGA1UECwwjUHVibGljIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzI=",
- "whitelist": false,
- "attachment": {
- "hash": "d35775690c65ebee8113249b23f19a293655d0ed08e999f64243089ed009db1b",
- "size": 2129,
- "filename": "tnFqrstaexEa6Zz-CVGGozhI8IF1FafM6uzX3zzHrUI=.pem",
- "location": "security-state-staging/intermediates/07e9d719-440e-4db5-9e24-7f15cd5cee54.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "tnFqrstaexEa6Zz+CVGGozhI8IF1FafM6uzX3zzHrUI=",
- "crlite_enrolled": false,
- "id": "9bae286e-930a-4285-8a27-54c6509f3077",
- "last_modified": 1666727875331
- },
{
"schema": 1666727377394,
"derHash": "GDWw5ILqZVNvwBDkvBPAYPZWaBZfupfi9ULOlspt/vw=",
@@ -13092,24 +13116,6 @@
"id": "9dfe1a67-5cce-4d31-a077-99d8791d279d",
"last_modified": 1666727874573
},
- {
- "schema": 1666727376029,
- "derHash": "YJkw64B61CCv2iqKphtnSDA5FozXZuCZQqSL/n873BA=",
- "subject": "OU=Public Certification Authority - G2,O=Chunghwa Telecom Co.\\, Ltd.,C=TW",
- "subjectDN": "MGAxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEsMCoGA1UECwwjUHVibGljIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzI=",
- "whitelist": false,
- "attachment": {
- "hash": "b2b74d8c5d2ce4f283391974773f823f1441c476105a4e78f1b99db3e02f9528",
- "size": 2117,
- "filename": "tnFqrstaexEa6Zz-CVGGozhI8IF1FafM6uzX3zzHrUI=.pem",
- "location": "security-state-staging/intermediates/b062306c-bad7-433f-bcc1-81512b1194eb.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "tnFqrstaexEa6Zz+CVGGozhI8IF1FafM6uzX3zzHrUI=",
- "crlite_enrolled": false,
- "id": "4835ad01-5f2c-4639-abc1-05d2b5279fb5",
- "last_modified": 1666727874544
- },
{
"schema": 1666727343840,
"derHash": "LeYg8tEgCqkLFsPM9nD9ftFDeasG+osDHP742gUepaI=",
@@ -24396,24 +24402,6 @@
"id": "abf9e632-aa0d-4b33-a74e-1afa980faa53",
"last_modified": 1663293423105
},
- {
- "schema": 1663225023673,
- "derHash": "q97sUxSQmPigsH79lys0Wom+3o7eaXXmG+le4Cbafvo=",
- "subject": "CN=Actalis Client Authentication CA G1,O=Actalis S.p.A./03358520967,L=Milano,ST=Milano,C=IT",
- "subjectDN": "MIGCMQswCQYDVQQGEwJJVDEPMA0GA1UECAwGTWlsYW5vMQ8wDQYDVQQHDAZNaWxhbm8xIzAhBgNVBAoMGkFjdGFsaXMgUy5wLkEuLzAzMzU4NTIwOTY3MSwwKgYDVQQDDCNBY3RhbGlzIENsaWVudCBBdXRoZW50aWNhdGlvbiBDQSBHMQ==",
- "whitelist": false,
- "attachment": {
- "hash": "737f0f0ce1590b65bb7efa52f0521e84ec1ac16313c8b4c6cd288064af2d127d",
- "size": 2235,
- "filename": "YsqG87ugr7iITRNFFaHeNX5oMmY80JlEVuqBCxAhZAM=.pem",
- "location": "security-state-staging/intermediates/5df58a07-e383-4a1a-8af4-9471aa61c013.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "YsqG87ugr7iITRNFFaHeNX5oMmY80JlEVuqBCxAhZAM=",
- "crlite_enrolled": false,
- "id": "621a2382-280e-48de-b859-5293ba5379b7",
- "last_modified": 1663246623215
- },
{
"schema": 1662515823574,
"derHash": "Yjq+xvhacCisoQ9b3F2BtWtjFN8odD/8yE7KMvNa6EY=",
@@ -27240,42 +27228,6 @@
"id": "e23e350c-f4ed-46ee-a1f2-560e15138f5e",
"last_modified": 1645578266173
},
- {
- "schema": 1643316508186,
- "derHash": "S9FvSVXz88nI6kjvmZUyTaUSFyT4mRXV8skesLrvIzc=",
- "subject": "OU=Public Certification Authority,O=Chunghwa Telecom Co.\\, Ltd.,C=TW",
- "subjectDN": "MFsxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEnMCUGA1UECwweUHVibGljIENlcnRpZmljYXRpb24gQXV0aG9yaXR5",
- "whitelist": false,
- "attachment": {
- "hash": "689c7ab13bb497838c62b566e5da7f914f4cf9354f08643500263bcfb46a32a3",
- "size": 2105,
- "filename": "qMjf0br8Ay71_wiJ0t25y4v3IWwirr3SF1bWHJzkbnE=.pem",
- "location": "security-state-staging/intermediates/c2017a82-2237-4c28-8656-5764f263e185.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "qMjf0br8Ay71/wiJ0t25y4v3IWwirr3SF1bWHJzkbnE=",
- "crlite_enrolled": false,
- "id": "a869aa70-b82b-40fc-b8b7-123af99bb58e",
- "last_modified": 1643317054972
- },
- {
- "schema": 1643295453377,
- "derHash": "RksOwKYC8Bk9tfM5EYhaOmGSGtFtJmTiW++rEM+m7SU=",
- "subject": "OU=Public Certification Authority,O=Chunghwa Telecom Co.\\, Ltd.,C=TW",
- "subjectDN": "MFsxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEnMCUGA1UECwweUHVibGljIENlcnRpZmljYXRpb24gQXV0aG9yaXR5",
- "whitelist": false,
- "attachment": {
- "hash": "49845caec147a9f80e7f49b5e4b2b8629653bccf72d7aa8dfa0b7029f5d75514",
- "size": 1934,
- "filename": "qMjf0br8Ay71_wiJ0t25y4v3IWwirr3SF1bWHJzkbnE=.pem",
- "location": "security-state-staging/intermediates/cabaf189-98ae-41ee-8da3-966fb99dbea2.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "qMjf0br8Ay71/wiJ0t25y4v3IWwirr3SF1bWHJzkbnE=",
- "crlite_enrolled": false,
- "id": "201bbcbe-98a9-4e1d-9ba8-1d91ccaef4d5",
- "last_modified": 1643317054962
- },
{
"schema": 1642150113750,
"derHash": "fPY09fr+ndzIizbWsefr+3B4A01kQZ58Z4M15W2CNCE=",
@@ -27816,24 +27768,6 @@
"id": "db10a85d-fae6-4776-b901-d09000033eca",
"last_modified": 1601517444423
},
- {
- "schema": 1601376733088,
- "derHash": "ZHFyUK+LAo3Y5cC65MkULIsQNTJhK8SHCF/Twxn5wGc=",
- "subject": "CN=ePKI Root Certification Authority - G2,O=Chunghwa Telecom Co.\\, Ltd.,C=TW",
- "subjectDN": "MGMxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEvMC0GA1UEAwwmZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzI=",
- "whitelist": false,
- "attachment": {
- "hash": "73789188b1ff6dcd70442594b8ff119cb7b30d858c0e7f072cf8a014cd8f296a",
- "size": 2649,
- "filename": "tInMsiS5prgd0nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=.pem",
- "location": "security-state-staging/intermediates/3785b85c-da3b-4b7b-bd12-2796cce60c04.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "tInMsiS5prgd0nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=",
- "crlite_enrolled": false,
- "id": "ee033ab1-7bfc-4f08-b26a-b3b2bce86767",
- "last_modified": 1601517444135
- },
{
"schema": 1601376755836,
"derHash": "joxuv3fcc9s+OOk/SAPmK2tZM761HuQVL2jXqhRCazE=",
@@ -27870,42 +27804,6 @@
"id": "ff319db3-4ac0-4406-9c29-03f632e42c98",
"last_modified": 1601517443342
},
- {
- "schema": 1601376763286,
- "derHash": "0QjDSljA5KYWRJ+MSDGAI6IpyGzT3dXV/mBBpAHBahQ=",
- "subject": "OU=ePKI Root Certification Authority,O=Chunghwa Telecom Co.\\, Ltd.,C=TW",
- "subjectDN": "MF4xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5",
- "whitelist": false,
- "attachment": {
- "hash": "15e5931fc9e514bb8bf23b5f5c3c40bb3131ccf6ed8b0857416342b002b8db15",
- "size": 2645,
- "filename": "YlVMFwBVQ7I3IV8EJo3NL9HEcCQK08hmDiWuLFljD1U=.pem",
- "location": "security-state-staging/intermediates/a894f5a2-8e74-4828-97c6-41052369ca59.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "YlVMFwBVQ7I3IV8EJo3NL9HEcCQK08hmDiWuLFljD1U=",
- "crlite_enrolled": false,
- "id": "056b1bcf-53e9-405c-96eb-eea77dcff395",
- "last_modified": 1601517442680
- },
- {
- "schema": 1601376780263,
- "derHash": "GEZ8TmTVhshEpERm3lunptWWnHqShZpRHF/a11sDzc4=",
- "subject": "CN=ePKI Root Certification Authority - G2,O=Chunghwa Telecom Co.\\, Ltd.,C=TW",
- "subjectDN": "MGMxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEvMC0GA1UEAwwmZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzI=",
- "whitelist": false,
- "attachment": {
- "hash": "6bf1025a0f2a333a3a9f9cf1fa26d326f099cad7c0d6658f30ea16733092bd7a",
- "size": 2621,
- "filename": "tInMsiS5prgd0nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=.pem",
- "location": "security-state-staging/intermediates/c7b2feb5-da29-4802-ba1d-e34f9184099c.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "tInMsiS5prgd0nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=",
- "crlite_enrolled": false,
- "id": "ca26521c-22ff-48b3-bd4d-3c06d4ffa75a",
- "last_modified": 1601517442632
- },
{
"schema": 1601376748460,
"derHash": "cvmvIVgYG68W1gybTm9L18qNI0GtSK/bZ8tMgzLVRvY=",
@@ -29977,5 +29875,5 @@
"last_modified": 1559865884636
}
],
- "timestamp": 1749567422319
+ "timestamp": 1752159422751
}
diff --git a/icecat/sourcestamp.txt b/icecat/sourcestamp.txt
index 0900f60e35..82ad5909f5 100644
--- a/icecat/sourcestamp.txt
+++ b/icecat/sourcestamp.txt
@@ -1,2 +1,2 @@
-20250616190003
-https://hg.mozilla.org/releases/mozilla-esr128/rev/f3f836bf735d55fcfdf97dd3788f7952419dea1f
+20250714124554
+https://hg.mozilla.org/releases/mozilla-esr128/rev/81d51b1bf06d4dff8aa050ca9d4b830517b5768d
diff --git a/icecat/taskcluster/config.yml b/icecat/taskcluster/config.yml
index bed1737a3e..da38f60287 100644
--- a/icecat/taskcluster/config.yml
+++ b/icecat/taskcluster/config.yml
@@ -793,15 +793,15 @@ workers:
provisioner: scriptworker-prov-v1
implementation: scriptworker-signing
os: macosx
- worker-type: depsigning-mac-v1
+ worker-type: dep-gecko-signing-mac14m2
mac-signing:
provisioner: scriptworker-prov-v1
implementation: scriptworker-signing
os: macosx
worker-type:
by-release-level:
- production: signing-mac-v1
- staging: depsigning-mac-v1
+ production: gecko-signing-mac14m2
+ staging: dep-gecko-signing-mac14m2
push-apk:
provisioner: scriptworker-k8s
implementation: scriptworker-pushapk
diff --git a/icecat/toolkit/components/search/tests/xpcshell/searchconfigs/head_searchconfig.js b/icecat/toolkit/components/search/tests/xpcshell/searchconfigs/head_searchconfig.js
index 7256c04f0b..c51bebd924 100644
--- a/icecat/toolkit/components/search/tests/xpcshell/searchconfigs/head_searchconfig.js
+++ b/icecat/toolkit/components/search/tests/xpcshell/searchconfigs/head_searchconfig.js
@@ -214,7 +214,7 @@ class SearchConfigTest {
}
/**
- * @returns {Array} the list of locales for the tests to run with.
+ * @returns {Promise} the list of locales for the tests to run with.
*/
async getLocales() {
if (TEST_DEBUG) {
@@ -429,26 +429,26 @@ class SearchConfigTest {
for (const rule of details) {
this._assertCorrectDomains(location, engine, rule);
- if (rule.codes) {
+ if ("codes" in rule) {
this._assertCorrectCodes(location, engine, rule);
}
- if (rule.searchUrlCode || rule.suggestUrlCode) {
+ if ("searchUrlCode" in rule || "suggestUrlCode" in rule) {
this._assertCorrectUrlCode(location, engine, rule);
}
- if (rule.aliases) {
+ if ("aliases" in rule) {
this.assertDeepEqual(
engine.aliases,
rule.aliases,
"Should have the correct aliases for the engine"
);
}
- if (rule.required_aliases) {
+ if ("required_aliases" in rule) {
this.assertOk(
rule.required_aliases.every(a => engine.aliases.includes(a)),
"Should have the required aliases for the engine"
);
}
- if (rule.telemetryId) {
+ if ("telemetryId" in rule) {
this.assertEqual(
engine.telemetryId,
rule.telemetryId,
diff --git a/icecat/toolkit/components/search/tests/xpcshell/searchconfigs/test_distributions.js b/icecat/toolkit/components/search/tests/xpcshell/searchconfigs/test_distributions.js
index aae20c5d88..5e2aa07d5f 100644
--- a/icecat/toolkit/components/search/tests/xpcshell/searchconfigs/test_distributions.js
+++ b/icecat/toolkit/components/search/tests/xpcshell/searchconfigs/test_distributions.js
@@ -232,6 +232,15 @@ tests.push({
hasTelemetryId(engines, "Google", "google-b-lm"),
});
+tests.push({
+ region: "ru",
+ distribution: "mint-001",
+ test: engines =>
+ hasDefault(engines, "Google") &&
+ hasEnginesFirst(engines, ["Google"]) &&
+ hasTelemetryId(engines, "Google", "google-com-nocodes"),
+});
+
function hasURLs(engines, engineName, url, suggestURL) {
let engine = engines.find(e => e.name === engineName);
Assert.ok(engine, `Should be able to find ${engineName}`);
diff --git a/icecat/toolkit/components/search/tests/xpcshell/searchconfigs/test_google.js b/icecat/toolkit/components/search/tests/xpcshell/searchconfigs/test_google.js
index fc4f0f2405..5bb87e47d7 100644
--- a/icecat/toolkit/components/search/tests/xpcshell/searchconfigs/test_google.js
+++ b/icecat/toolkit/components/search/tests/xpcshell/searchconfigs/test_google.js
@@ -12,7 +12,7 @@ const test = new SearchConfigTest({
aliases: ["@google"],
default: {
// Included everywhere apart from the exclusions below. These are basically
- // just excluding what Yandex and Baidu include.
+ // just excluding what Baidu includes.
excluded: [
{
regions: ["cn"],